/* 基本設定 */

* {														/* 全ての部品の基本設定 */
	margin: 0;
	padding: 0;
	font-size: 10pt;			/* px指定だと、IE6で90%指定時にベースフォントサイズを正しく認識しない */
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	line-height: 1.4;
}

body {
	text-align: center;							/* IE用・左右中央配置設定1（IE6のバグ） */
}

img {													/* 画像基本設定 */
	border-style: none;
	vertical-align:top;
}

a {														/* リンク基本設定 */
	color: #3366CC;
}

/* 言語バー設定 */
.ch {
	font-family: 'Hei','SimHei', sans-serif;
	color: #CCCCCC;
}

.ko {
	font-family: 'AppleGothic','Dotum',sans-serif;
	color: #CCCCCC;
}

/* 全体の幅制御 */
div#wrapper {
	margin-left: auto;		/* 本来の左右中央配置用設定1 */
	margin-right: auto;		/* 本来の左右中央配置用設定2 */
	text-align: justify;	/* IE用・左右中央配置設定2（bodyでのtext-align設定の上書き） */
}

html>/**/body div#wrapper {							/* IE以外に適用（IE以外はwidthの外側にborderがつく） */
	width: 741px;
}

* html body div#wrapper {							/* IEのみに適用（IEはwidthの内側にborderがつく） */
	width: 750px;
}

/* ヘッダーエリアの設定 */
div#banner {
	position: absolute;
	top: 0px;
	background-image: url(img/header_spacer.gif);
	background-repeat: repeat;
}

html>/**/body div#banner {							/* IE以外に適用 */
	width: 755px;									/* 「100%」にすると、Netscapeでレイアウト崩れる */
	height: 78px;
}

* html body div#banner {							/* IEのみに適用 */
	width: 750px;	
	height: 76px;
}

	div#banner-box1 {								/* ヘッダーエリア1行目の設定 */
		clear: both;
		height: 24px;
		border-bottom: 2px solid white;
}

html>/**/body div#banner-box1 {						/* IE以外に適用 */
		width: 100%;
}

* html body div#banner-box1 {						/* IEのみに適用 */
		width: 100%;
}

		div#banner-box1 a{
			color: white;
			text-decoration: none;
		}

	div#banner-box1-1 {								/* ヘッダーエリア1行目：言語メニューの設定 */
		float: left;
		width: 300px;								/* 固定値を指定しないとMacIE5でfloatしない */
		color: white;
		padding: 4px 0 1px 7px;
	}

	div#banner-box1-2 {								/* ヘッダーエリア1行目：サイトマップリンクの設定 */
		float: left;
		width: 440px;								/* 固定値を指定しないとMacIE5でfloatしない */
		text-align: right;
		padding: 4px 0 1px 0;
	}

	div#banner-box1-2 p{
		padding: 0;
	}
	
	div#banner-box2  {
		height: 76px;
		background-image: url(img/header_spacer.gif);
		background-repeat: repeat;
	}
			
	div#banner-box2-1 {								/* ヘッダーエリア2行目：会社バナーの設定 */
		clear: both;
		float: left;
		width: 201px;								/* 固定値を指定しないとMacIE5でfloatしない */
		height: 76px;
		border-right: 2px solid white;
	}
 
	div#banner-box2-2 {								/* ヘッダーエリア2行目：会社名画像の設定 */
		float: left;
		width: 547px;								/* 固定値を指定しないとMacIE5でfloatしない */
	}
		
#header_inquery a:visited  {
		color: white;
		text-decoration: none;
		}
	
/* タブナビゲーションエリアの設定 */
div#tabnav {
	width: 780px;
	clear: both;
	padding: 8px 0 7px 0;
	position: absolute;
	top: 100px;										/* ここで上位置を調整 */
}
	
	div#tabnav li {									/* リスト項目を横並びに */
		display:inline;
		float: left;
		height: 31px;
		/* height: 24px; */							/* タブを画像化しない場合 */			
		border-right: 2px solid white;
		text-align: center;
		margin: 6px 0 0 0;
		font-weight: bold;
	}
	* html body div#tabnav li {						/* IEのみに適用 */
		/* margin: 6px 1px 0 0; */					/* タブを画像化しない場合のみ */ 
	}

		div#tabnav a {
			color: white;							/* タブを画像化しない場合の文字色設定（白） */
			text-decoration: none;
		}

		div#tabnav a:hover {						/* タブ画像化しない場合のhover（マウスカーソルが乗ったとき）設定 */
			text-decoration: none;
		}
		
/* タブを画像化しない場合の背景設定 */
	.green {
		background-color: #C4DEAC;
		color: #0A5116;	
		font-size: 15px;
	}
	html>/**/body ul li.green {						/* IE以外に適用 */
		padding-top: 10px;
	}

	* html body ul li.green {						/* IEのみに適用 */
		padding-top: 5px;
	}
	.blue {
		font-size: 15px;
		padding-top: 6px;
		background-color: #217FB9;
	}
	html>/**/body ul li.blue {						/* IE以外に適用 */
		padding-top: 10px;
	}

	* html body ul li.blue {						/* IEのみに適用 */
		padding-top: 5px;
	}

	.blue:hover {									/* タブ画像化しない場合のhover（マウスカーソルが乗ったとき）設定 */
		color: #0A5116;								/* タブを画像化しない場合の文字色設定（緑） */
		background-color: #C4DEAC;
	}

	
/* タブ幅設定（htmlでは幅設定していない。MacIE5では幅指定しないとfloatしない。） */
/* タブ画像を背景化するmenu.css追加により、設定移動 */
	/*.home {	
		width: 112px;
	}
	* html body ul li.home {						/* タブを画像化しない場合のみ */ /* IEのみに適用 */
		/* width: 114px; */
	/*}
	
	.translation {
		width: 111px;
	}
	.planning {
		width: 140px;
	}
	.internet {
		width: 160px;
	}
	.sp {
		width: 111px;
	}
	.company {
		width: 111px;
	}*/
	
/* タブ下エリア（先頭文章エリア）の設定 */
div#tab-under {
	clear: both;
	background-color: #C4DEAC;
	border-width: 7px 7px 3.5px 7px;
	border-style: solid;
	border-color: #C4DEAC;

	margin: 145px 0 0 0;							/* ここで上位置を調整 */
}

html>/**/body div#tab-under{						/* IE以外に適用 */
	width: 733px;
	padding: 10px 0 0 8px;
}

* html body div#tab-under {							/* IEのみに適用 */		/* IE設定を後に書かないと、MacIE5で認識しない */
	width: 100%;
	padding: 10px 0 0 7px;
}


	.catch1 {										/* 先頭文章1行目の設定 */
		font-size: 100%;
		font-weight: normal;
	}

	.catch2 {										/* 先頭文章2行目の設定 */
		font-size: 100%;
		font-weight: normal;
		display: inline;
	}

	/* イメージ画像エリアの設定 */
	div#top-image {
		height: auto;
		width: 100%;
		text-align: center;
	}
	
	html>/**/body div#top-image {					/* IE以外に適用 */
		margin: 13px 6px 3px -3px;
		padding: 0 0 5px 0;
}

* html body div#top-image {							/* IEのみに適用 */		/* IE設定を後に書かないと、MacIE5で認識しない */
		margin: 13px 4px 3px -2px;
		padding: 12px 0 5px 0;
}

/* メインエリアの設定 */
div#top-contents {
	height: auto;
	width: 100%;
	border-width: 3.5px 7px 0 7px; 
	border-style: solid; 
	border-color: #C4DEAC;
	margin: -1px 0 0 0;
	text-align: left;			/* MacIE5用 */
}

	div#top-contents h2 {							/* （メインエリア内）h2共通文字設定*/
		padding: 10px 0 7px 0;
		font-size: 100%;
	}

	div#top-contents h3 {							/* （メインエリア内）h3共通文字設定*/
		font-size: 100%;
		font-weight:bold;
		}
	
	div#top-contents li {							/* （メインエリア内）li共通文字設定*/
		margin: 0.5em 0 0.5em 1.5em;
		list-style-image: url(img/sankaku-yoko.gif); 
		font-size: 100%;
	}

/* これ以降Mac IE 5のみに適用される ¥*//*/
	div#top-contents li {
		margin: 0 0 0.5em -1em;
	}
/* これ以降Mac IE 5以外にも適用される */
	
	div#top-contents p {							/* （メインエリア内）p共通文字設定*/
		margin: 0.5em 0 0 0;
		padding: 0;
		font-size: 100%;
	}
	
	.red {
		color: red;
	}
	
	div#top-contents-left {							/* （mainbox内）メニュー左エリアの設定 */
		height: auto;
		width: 220px;
		float: left;
		padding: 0;
	}

		html>body div#top-contents-left {			/* IE以外に適用（IE7はなぜかこちらを適用） */
			margin: 5px 7px -10px 12px;
		}

		* html body div#top-contents-left {			/* IEのみに適用（IE7は適用エラー） */
			margin: 5px 7px -10px 9px;
		}


	div#top-contents-center {						/* （mainbox内）メニュー中央エリアの設定 */
		height: auto;
		width: 210px;
		margin: 5px 5px 0 20px;
		padding: 0;
		float: left;
	}

/* これ以降Mac IE 5のみに適用される ¥*//*/
	div#top-contents-center {
		padding: 0 5px 0 0;
	}
/* これ以降Mac IE 5以外にも適用される */

		div#top-contents-center h2.internet {		/* （mainbox内）インターネットメニュー画像の上あけ設定 */
			padding-top: 1em;
		}

		div#top-contents li.tsume {					/* （mainbox内）インターネットメニュー画像の下つめ設定 */
			margin-top: 0em;
		}

	div#top-contents-right {						/* （mainbox内）メニュー右エリアの設定 */
		height: auto;
		width: 225px;
		padding: 0;
		float: right;
	}

		html>body div#top-contents-right {			/* IE以外に適用（IE7は適用エラー） */
			margin: 5px 12px 0 5px;
		}

		* html body div#top-contents-right {		/* IEのみに適用（IE7はなぜかこちらを適用） */
			margin: 5px 9px 0 5px;
		}

	div#right-under {								/* 右下（フッター上）設定*/
		clear: both;
		width: 100%; 
		margin: 0;
		padding: 0;
	}

		div#right-under p {
			margin: 0;
			padding: 0 10px 5px 10px;
		}
		
		div#right-under p.box a {
			width: 200px; 
			border: 2px solid #3366CC; 
			margin: 15px; 
			padding: 10px; 
			text-align: center; 
			text-decoration: none;
			font-weight: bold;
		}
		
		
/* フッターエリアの設定 */
div#footer {
	height: auto;
	width: 750px;
	border-width: 7px; 
	border-style: solid; 
	border-color: #C4DEAC;
	clear: both;
}

html>/**/body div#footer{							/* IE以外に適用 */
	width: 741px;
}

* html body div#footer {							/* IEのみに適用 */		/* MacIE5用 */
	width: 750px;
}

	div#footer-index {								/* （footer内）フッター目次エリアの設定 */
		border-bottom-width: 7px;
		border-bottom-style: solid;
		border-color:#C4DEAC;
}

html>/**/body div#footer-index {					/* IE以外に適用 */
		width: 741px;
}

* html body div#footer-index {						/* IEのみに適用 */
		width: 736px;
}


		html>/**/body div#footer-index {			/* IE以外に適用 */
			height: 2.5em;
			}

		* html body div#footer-index {				/* IEのみに適用 */	/* MacIE5用 */
			height: 3.8em;
		}

		div#footer-index ul {						/* （footer内）フッター目次エリアの左インデントを削除 */
			font-size: 100%;
			text-align: center;

			padding: 0 5px 10px 5px;
			margin-top: 15px;
		}

		div#footer-index li {						/* （footer内）フッター目次エリアのリスト項目を横並びに */
			display:inline;
		}

			/* （footer内）フッター目次エリア メールアイコンの縦位置 */　/* 下線はブラウザによってずれるため削除 */			
			.mail {	
				vertical-align: -0.3em;
				margin-left: 2px;
			}
							
	div#footer-company {
		width: 100%;
		padding: 15px 0 15px 120px; 				/* 2008/5/29 メールアドレス削除により50px→130pxに変更 */
}

	html>/**/body div#footer-company {				/* IE以外に適用 */
		height: 3.5em;
}

	* html body div#footer-company {				/* IEのみに適用 */
		height: 6em;
	}

		div#footer-company p {						/* （footer内）会社情報エリアの文字設定 */
			font-size: 100%;
	}
		

		div#footer-company-left {					/* （footer内）会社情報エリア・左（会社ロゴ）の設定 */
			height: auto;
			width: 80px;
			float: left;
			vertical-align: middle;
		}

		div#footer-company-right {					/* （footer内）会社情報エリア・右（会社情報）の設定 */
			height: auto;
			width: auto;
			float: left;
			margin-left: 10px;
		}

/* コピーライトエリアの設定 */
div#copy {
	height: auto;
	width: 100%;
	clear: both;
	border: 7px solid #217FB9;
	background-color: #217FB9;
	margin: -18px 0 0 0;
}
* html body div#copy {	/* IEのみに適用 */
	margin: -19px 0 0 0;
}
	div#copy p {
		padding: 10px 10px 10px 10px;
		color: white;
		font-size: 90%;
		text-align: center;
	}

div#shinobi {	
		position: absolute;
		left: 0px; 
}

