@charset "UTF-8";

/* == 全体設定 ============================================================= */
html {
	padding: 0;
	margin: 0;
}
/* BODY指定（共通） */
body {
	text-align: center;
	margin: 0;
	padding: 0;
	background: #FFF;
}

/* テキスト指定 */
body {
	color: #555;
	font-size: 0.9em;
	font-family: sans-serif;
	line-height: 1.4;
}


h1,h2,h3,h4,h5,h6,p,ul,ol,dl,form {
	margin-top: 0;
	margin-bottom:1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption {
	text-align: left;
}
th,td {
	text-align: left;
	vertical-align: top;
}


/* -- 全体枠 -- */
#wrapper {
	width: 100%;
	text-align: left;
	margin: 0 auto;
}


/* -------------------------------------------------------------------------
   ヘッダー
   ------------------------------------------------------------------------- */
#header {
	width:960px;
	margin:0 auto;
}
#header h1 {
	height: 38px;
	margin-top: 0;
	margin-bottom: 0;
	background: url(/en/img/bg_header.gif) repeat-x left bottom;
}
#header img {
	margin-top: 5px;
	margin-left:8px;
}




/* -- ヘッダーメニュー ----------------------------------------------------- */

/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	
	line-height:110%;
	text-align:left;

	/* 20121016 */
	border-right:1px solid #fff;
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(/en/css/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */



/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	color: #eee;
	background: #234;

}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: .2em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #fc3;
}

.menu a:visited, .menu li:visited>a {
	color: #eee;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #ccc;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */

.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	/*
	color: #eee;
	color: #567;
	*/
}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */
/*]]>*/


#headermenu {
	background: #234;
}

.menu {
	/*width:590px !important;*/
	margin:0;
}


/* -- 現在地(bodyでスイッチ) -- */
.home .menu-home,
.about .menu-about,
.program .menu-program,
.alumni .menu-alumni,
.employment .menu-employment,
.useful .menu-useful,
.contact .menu-contact {
	color:#fc3;
}



/* -------------------------------------------------------------------------
   ページボディ
   ------------------------------------------------------------------------- */
#pagebody {
	clear:both;
	position:relative;
	width:960px;
	margin:0 auto 1em auto;
}
#pagebody-inner {}


#pagebody h2 {
	padding-left:5px;
	color:#fff;
	font-size:1em;
	background: #2B5780;
}

/* -------------------------------------------------------------------------
   メインボックス
   ------------------------------------------------------------------------- */
#mainbox {
	float: right;
	/* 111031
	width: 580px;
	*/
	width:760px;
	font-size: 0.9em;
	padding-left: 10px;
}
/* -- ページタイトル --*/
#mainbox h2 {
	color: #00739D;
	font-size: 1.3em;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1em;
	margin-bottom: 0.2em;

}
/* -- 見出し -- */
#mainbox h3 {
	color: #666;
	font-size: 1em;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.2em;
}
/* -- 小見出し -- */
#mainbox h4 {
	color: #9F0E15;
	font-size: 1.1em;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: 0.5em;
}


.headimg {
	text-align:center;
	background:url(/en/img/headimg_bg.jpg) no-repeat;
}


/* -------------------------------------------------------------------------
   ナビボックス
   ------------------------------------------------------------------------- */
#navibox {
	width: 190px;
	float: left;
}
#navibox h2 {
	font-size: 1em;
	margin-bottom: 0;
	border-left: 3px solid #666;
}
#navibox h2 a {
	display: block;
	color: #666;
	font-weight: normal;
	font-family: "Times New Roman", Times, serif;
	text-decoration: none;
	padding: 0.2em 5px;
}
#navibox ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1em 0;
}
#navibox ul li {
	border-bottom: 1px dotted #666;
}
#navibox ul li a {
	display: block;
	font-size: 0.9em;
	text-decoration: none;
	padding: 0.2em 0.5em 0.2em 20px;
}
#navibox ul li a:link,
#navibox ul li a:visited {
	color: #6D6765;
}
#navibox ul li a:hover,
#navibox ul li a:active {
	color: #0086AE;
	background-color:#F0F0F0;
}


/* -- 現在地(bodyでスイッチ) -- */
.jj01 .subnavi-jj01,
.jj02 .subnavi-jj02,
.jj03 .subnavi-jj03,
.jj04 .subnavi-jj04,
.jj05 .subnavi-jj05,
.jj06 .subnavi-jj06,
.jj07 .subnavi-jj07,
.jj08 .subnavi-jj08,
.jj09 .subnavi-jj09,
.jj10 .subnavi-jj10,
.jj11 .subnavi-jj11,
.jj12 .subnavi-jj12,
.jj13 .subnavi-jj13,
.jj14 .subnavi-jj14,
.jj15 .subnavi-jj15,
.background .subnavi-background,
.history .subnavi-history,
.location .subnavi-location,

.director .subnavi-director,
.office .subnavi-office,

.record .subnavi-record,
.transcript .subnavi-transcript,
.association .subnavi-association,
.general .subnavi-general,
.jj .subnavi-jj,
.vae-japan .subnavi-vae-japan,
.s-information .subnavi-s-information,
.a-japans .subnavi-a-japans,
.toyoura .subnavi-toyoura,

.internship .subnavi-internship,
.instructor .subnavi-instructor

{
	background: url(/en/img/arrow.gif) no-repeat 5px center;
}



/* --------------------------------------------------------------------------
  フッター
  ---------------------------------------------------------------------------  */
#footer {
	text-align: center;
}

#footerlinks {
	color: #FFF;
	background: #0086AE;

	/* 070329add */
	height:10px;
}
#footerlinks h3 {
	display: inline;
	font-size: 0.9em;
	margin: 0;
}
#footerlinks ul {
	display: inline;
	font-size: 0.9em;
	line-height: 1em;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
}
#footerlinks ul li {
	display: inline;
	margin: 0 0.5em;
}
#footerlinks li a {
	color: #FFF;
	text-decoration: none;
	height: 20px;
	padding-right: 20px;
	background: url(/en/img/icon_footerlink.gif) no-repeat right center;
}

#footer p {
	color: #00739D;
	font-size: 0.7em;
	margin-top: 0;
}


/* == 共通パーツ ============================================================ */

/* アドビリーダー */
.getadobereader {
	line-height: 1em;
	font-size: 0.8em;
}
.getadobereader img {
	margin-bottom: 5px;
	margin-right: 5px;
	float: left;
}

/* 親の枠で .pkg すること */
/* -- 枠：左寄せ -- */
#box_left {
	float:left;
}
/* -- 枠：センター -- */
#box_center {
	float:left;
}
/* -- 枠：左寄せ -- */
#box_right {
	float:right;
}


/* -- 画像右寄せ -- */
.imgfloatright {
	margin-left: 5px;
	margin-bottom: 5px;
	float: right;
}
/* -- 画像左寄せ -- */
.imgfloatleft{
	margin-right: 5px;
	margin-bottom: 5px;
	float: left;
}
/* -- 回り込みクリア -- */
.floatclear {
	clear: both;
	height: 0;
}
.floatclear hr {
	display: none;
}


/* float等をCSSでクリアするためのhack
   http://blog.y-iweb.com/archives/000255.html */
.pkg:after
{
   content: " ";
   display: block;
   visibility: hidden;
   clear: both;
   height: 0.1px;
   font-size: 0.1em;
   line-height: 0;
}
* html .pkg { display: inline-block; }
/* no ie mac \*/
* html .pkg { height: 1%; }
.pkg { display: block; }


/* float等をCSSでクリアするためのhack
   http://stopnlisten.no.land.to/2006/11/ie7clearfixclear.html */
.clearfix {
zoom:1; /* for IE 5.5-7 */
}
.clearfix:after { /* for modern browser */
content:".";
display: block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix {display: inline-table;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */


/* Nifty Corners
   http://www.html.it/articoli/nifty/ */
b.rtop,
b.rbottom {
	display:block;
	background: #FFCC53;
}
b.rtop b,
b.rbottom b {
	display:block;
	height: 1px;
    overflow: hidden;
	background: #fff;
}
b.r1 {
	margin: 0 5px;
}
b.r2 {
	margin: 0 3px;
}
b.r3 {
	margin: 0 2px;
}
b.rtop b.r4,
b.rbottom b.r4 {
	margin: 0 1px;
	height: 2px;
}
