@charset "Shift_JIS";

/* No.0 全体くくり
---------------------------------------------------- */
body{
	margin:0;
	padding:0;
	text-align:left;
}

A:link { text-decoration: underline; color: #000000; }
A:visited { text-decoration: none; color: #6090EF ; }
A:active { text-decoration: none; color: #6090EF ; }
A:hover { color : #0099FF; }


#wrap{
	width: 800px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* No.1 ヘッダーDIV
---------------------------------------------------- */
#header{
	width:800px;
	background-image: url(../images/top_img-en.jpg);
	height: 200px;
	margin: 0px;
	padding: 0px;
}
#header2{
	width:800px;
	background-image: url(../images/top_img-en.jpg);
	height: 200px;
	margin: 0px;
	padding: 0px;
}
h1 {
	text-indent: -9999px;
}
/* No.2 メインDIV
---------------------------------------------------- */
#main{
	width:800px;
	margin: 0px;
	padding: 0px;
}

/*　No.2-1 メインメニューDIV
--------------------------------------------------------*/
#menu {
	width: 100px;
	float: left;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0px;
}
#menu li {
	margin: 0;
	padding: 0;
	width: 100px;
	height: 100px;
	text-indent: -9999px;
}
#menu li a {
	text-decoration: none;		/* ■Firefox等で線が表示されないようにする */
	display: block;
	width: 100px;
	height: 100px;
	margin: 0;
	padding: 0;
}
#menu li#menu1 a {
	background-image: url(../images/b01_off-en.jpg);
}

#menu li#menu2 a {
	background-image: url(../images/b02_off-en.jpg);
}

#menu li#menu3 a {
	background-image: url(../images/b03_off-en.jpg);
}

#menu li#menu4 a {
	background-image: url(../images/b04_off-en.jpg);
}

#menu li#menu5 a {
	background-image: url(../images/b05_off-en.jpg);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - サブメニュー用CSS! - - - */

.example {
	background: #eee;
}

/* - - - 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... */
}

.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(../code/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:#666666;
	background: url(../images/submenu_back.jpg) repeat-x;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #666666;
	padding: .4em 1em;
	display: block;
	position: relative;
	font-weight: bold;
}

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

.menu li li {	/* create borders around each item */
}
.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: #567;
}

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

/*]]>*/
</style>





[if lte IE 6]>
<style type="text/css" media="screen, tv, projection">
/*<![CDATA[*/

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

.menu, .menu ul {	/* float.clear */
	zoom: 1;
}

.menu li.adxmhover {
	z-index: 10000;
}

.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu .adxmhoverUL {	/* 1st-level submenu go below their parent item */
	top: 100%;
	left: 0;
}

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

/* - - - ADxMenu: DESIGN styles - - - */

.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menu li li {	/* fix white gap problem */
	float: left;
	width: 120%;
}

.menu li li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu a:hover, .menu .adxmhoverA {		/* li:hover>a selector */
	color: #fc3;
}

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

/*]]>*/



/*　各ページ用
--------------------------------------------------------*/

#menu li#menu1_2 a {
	background-image: url(../images/b01_on-en.jpg);
}
#menu li#menu1_2 a:active {
	background-image: url(../images/b01_on-en.jpg);
}


#menu li#menu2_2 a {
	background-image: url(../images/b02_on-en.jpg);
}
#menu li#menu2_2 a:active {
	background-image: url(../images/b02_on-en.jpg);
}

#menu li#menu3_2 a {
	background-image: url(../images/b03_on-en.jpg);
}
#menu li#menu3_2 a:active {
	background-image: url(../images/b03_on-en.jpg);
}

#menu li#menu4_2 a {
	background-image: url(../images/b04_on-en.jpg);
}
#menu li#menu4_2 a:active {
	background-image: url(../images/b04_on-en.jpg);
}

#menu li#menu5_2 a {
	background-image: url(../images/b05_on-en.jpg);
}
#menu li#menu5_2 a:active {
	background-image: url(../images/b05_on-en.jpg);
}




/*　No.2-2 メインコンテンツDIV
--------------------------------------------------------*/
#content{
	width:700px;
	float: right;
}
/*　No.2-2 検索用メインコンテンツDIV
--------------------------------------------------------*/
#content_search{
	width:700px;
	float: right;
	margin-top: 10px;
}


/*　No.2-2-1 コンテンツタイトルDIV
--------------------------------------------------------*/
#content_title{
	width:700px;
	background-image: url(../images/sub_back.jpg);
	background-position: left top;
	height: 71px;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin: 0px;
	padding-top: 29px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	letter-spacing: 0.2em;
	text-indent: -9999px;
}

/*　No.2-2-2 コンテンツボックスDIV
--------------------------------------------------------*/
#content_box{
	width:700px;
	padding: 0px;
	margin-top: -80px;
}
#right{
	float:right;
}

/*　No.2-2-2-1 ページコンテンツ左メニュー
--------------------------------------------------------*/
#content_submenu {
	width:680px;
	float: left;
}
#content_submenu ul {
	list-style: none;
	margin: 0;
	padding: 0px;
}
#content_submenu li {
	margin: 0;
	padding-top: 10px;
	float: left;
	background-image: url(../images/submenu_back.jpg);
	background-repeat: repeat-x;
	height: 24px;
	border-right-width: 1px;
	border-right-style: solid;
	border-left-style: none;
	border-top-color: #6699FF;
	border-right-color: #6699FF;
	border-bottom-color: #6699FF;
	border-left-color: #6699FF;
	white-space: nowrap;
	padding-left:5px;
	padding-right:5px;
}
#content_submenu li a {
	text-decoration: none;
	border-top-color: #99CCFF;
	border-right-color: #99CCFF;
	border-bottom-color: #99CCFF;
	border-left-color: #99CCFF;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 13px;
	font-weight: bold;
	color: #333333;
	letter-spacing: 0.1em;


}
#content_submenu li a:active {
	background-color: #CEE7FF;
}

#content_submenu li a:hover {
	background-color: #CEE7FF;
}

/*　No.2-2-2-2 コンテンツボックス右
--------------------------------------------------------*/
#content_right{
	padding-top:20px;
	width:690px;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
}
/*　No.ex01 インラインフレーム設定　その一
--------------------------------------------------------*/

.iframe{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
}

/*　No.ex01 メインテキスト英語
--------------------------------------------------------*/

.main_text_eng{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 1px;
	word-spacing: 1px;
}

/*　No.ex01 メインテキスト日本語
--------------------------------------------------------*/

.main_text_jap{
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 12px;
	line-height: 150%;
	width: 95%;
}

img.photo{ margin: 0px 14px 14px 14px; display:block; }


/* 　No.3 フッターDIV
---------------------------------------------------- */
#footer{
	width:800px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 120%;
	color: #333333;
	clear: both;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666666;
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#footer_left{
	float: left;
	width: 652px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
}
#footer_right{
	float: right;
	margin: 0px;
	padding: 0px;
	width: 136px;
}

/* 　TOPページ用
---------------------------------------------------- */

/*box*/

#content_top {
	width: 800px;
	background-color: #FFFFFF;
	z-index:3;

}

#about {
	float:left;
	margin-top: 17px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 15px;
	width: 363px;
	text-align:left;
	}
	
#news {
	float:right;
	margin-top: 17px;
	margin-right: 15px;
	margin-bottom: 20px;
	margin-left: 0px;
	width: 382px;
	text-align:left;
	}


/*about*/

#about_title {
	background-image:url(../images/top01-en.gif);
	background-repeat:no-repeat;
	width:238px;
	height:24px;
	text-indent:-9999px;
}

#about_bar {
	background-image:url(../images/top-border.gif);
	background-repeat:no-repeat;
	width:363px;
	height:11px;
	text-indent:-9999px;
}

#about_text {
	background-image:url(../images/top03-en.gif);
	background-repeat:no-repeat;
	width:363px;
	height:137px;
	text-indent:-9999px;
}


/*news*/

#news_title {
	background-image:url(../images/top02.gif);
	background-repeat:no-repeat;
	width:53px;
	height:23px;
	text-indent:-9999px;
}	
	


#news_area {
	width:382px;
	margin:0px;
	padding:0px;
	background-image:url(../images/news_area2.gif);
	background-repeat:repeat;
}

#news_area_contents {
	width:356px;
	padding: 0px 13px 0px 13px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	}

