﻿@charset "utf-8";

/*============================================
全般的なスタイル
============================================*/
* {
	margin:0; padding:0; 	/*全要素のマージン・パディングをリセット*/
}
body {
	width:100%;			/*ページ全体の横幅*/
	background-color:#ffffff;	/*ページ全体の背景色*/
	background-image:none;		/*ウェブページ全体の背景画像を無しにする*/
	font-size:100%;			/* フォントサイズを100%にする */
	font-family: Arial, Helvetica, sans-serif; 	/* フォントの種類をゴシック系にする */
	line-height:1.5; 		/* 行の高さを1.5倍にする */
	color:#333333; 			/* 文字色を濃い目のグレーにする */
}
div#pagebody {
	width:100%; margin:0 auto;	/*内容全体をセンタリング*/
	background-color:#ffffff;	/*内容全体の背景色*/
	background-image:none;		/*コンテンツ全体の背景画像を無しにする*/
	background-repeat:no-repeat;	/*背景画像を繰り返さない*/
}

/*============================================
ヘッダ
============================================*/
div#header {
	height:46px;	/*ヘッダ部分の高さ*/
}
div#header h1 {
	padding:0px;		/*見出しの位置調整*/
	font-size:18px;		/*フォントのサイズ*/
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
}
div#header h1 a {text-decoration:none;} 		/*リンクの下線を無くす*/
div#header h1 img {
	width:auto; height:46px;	/*会社ロゴ画像の幅と高さ*/
}
img {border:0;} 			/*画像のボーダーを0にする*/

div#header_left {
	width:50%;		/*ヘッダ部分の幅*/
	height:46px;		/*ヘッダ部分の高さ*/
	display:inline;		/*改行させないようにする*/
	float:left;		/*ロゴの左寄せ*/
}
div#header_right {
	float:right;		/*言語変換の右寄せ*/
	display:inline;		/*改行させないようにする*/
	text-align:right;	/*言語変換の右寄せ*/
	width:50%;		/*ヘッダ部分の幅*/
	height:46px;		/*ヘッダ部分の高さ*/
}
div#header_right p {
	width:90%;		/*ヘッダ部分の幅*/
	height:46px;		/*ヘッダ部分の高さ調整*/
	margin:0;		/*p記述箇所のリセット*/
	padding:0px 0px 0px 0px;	/*言語変換の位置調整*/
	font-size:80%;			/* フォントサイズを80%にする */
}


/*============================================
メインメニュー
============================================*/
ul#menu {
	width:100%; 	/*メインメニュー部分の幅*/
	margin:0px; 	/*マージン0px*/
}
#menu li {
	list-style-type:none;		/*リストマーカー無しにする*/
	display:inline;			/*リスト項目をインライン表示にする*/
	float:left;			/*リスト項目を横に並べる*/
}
#menu li a {
	background-color:#ffffff;	/*背景色*/
	color:blue;		/*文字色*/
	display:block;		/*リンク部分をブロック表示にする*/
	height:45px;		/*幅と高さ*/
	padding:20px 0px 0px 50px;	/*パディング*/
	text-align:left;	/*テキストを左揃えにする*/
	text-decoration:none;	/*リンク部分を下線無しにする*/
	background-image:url(images/icon_menu.png);	/*背景画像を指定*/
	background-repeat:no-repeat; 	/*背景画像を繰り返さない*/
}
#menu li a:hover {
	background-color:#ffffff; /*リンクにマウスが乗っても背景色は白のまま*/
	background-image:url(images/icon_menu.png);	/*リンクにマウスが乗っても同じ背景画像のまま*/
}

#menu .current_page a {
	background-color:#ffffff; /*現在選択中のページでも背景色は白のまま*/
	background-image:url(images/icon_menu.png);	/*現在選択中のページでも同じ背景画像のまま*/
}

/*============================================
ヘッダ画像
============================================*/
#img_index {
	display:none;	/*トップページのヘッダ画像を非表示にする*/
}
#img_subpage {
	display:none;	/*トップページ以外のヘッダ画像を非表示にする*/
}

/*============================================
サブメニュー
============================================*/
h2 {
	width:100%; height:40px;		/*幅と高さ*/
	padding:15px 0px 0px 10px;		/*パディング*/
	font-size:16px;				/*フォントサイズ*/
	background-image:none;			/*背景画像を無しにする*/
	background-repeat:no-repeat;		/*背景画像を繰り返さない*/
	background-color:#66aa00;		/*背景色*/
	color:#ffffff;		/*文字色*/
	clear:both;		/*フロートをクリアする*/
}
div#submenu {
	width:100%;		/*幅の指定*/
	margin:0px;		/*マージン*/
	float:none;		/*フロートしない*/
}
div#submenu ul li {
	list-style-type:none;		/*リストマーカー無しにする*/
}
div#submenu ul li a {
	display:block;			/*リンク部分をブロック表示にする*/
	width:100%; height:40px;	/*幅と高さ*/
	padding:10px 0px 0px 10px;	/*パディング*/
	text-decoration:none;		/*リンクの下線を無くす*/
	border-bottom:1px solid gray;		/*リンク領域の下部にボーダーを付ける*/
	background-image:none;		/*リンク領域に背景画像を無しにする*/
	background-repeat:no-repeat;	/*背景画像を繰り返さない*/
	color:#000000;			/*文字色*/
}

div#submenu ul li a:hover	{
	text-decoration:underline;	/*リンクにマウスが乗ったら下線を表示*/
}

/*============================================
インフォメーション
============================================*/
div#info {
	width:100%;		/*幅の指定*/
	float:none;		/*フロートしない*/
	padding:0px;		/*パディング*/
}
h3 {
	font-size:24px;		/*文字サイズ*/
	width:100%;		/*幅の指定*/
	margin:10px 0px 0px 0px;	/*マージン*/
	padding:10px 0px 10px 10px;	/*パディング*/
	border-radius:0px;		/*角丸にしない*/
	-moz-border-radius:0px; -webkit-border-radius:0px; -o-border-radius:0px; -ms-border-radius:0px;		/*角丸にしない（ベンダープレフィックス付きの指定）*/
}
p {
	width:95%;		/*幅の指定*/
	margin:10px;		/*マージン*/
}
.infoimg_index {
	display:block;	/*ブロック表示にする*/
	width:300px; height:225px;	/*画像の表示サイズを指定*/
	margin:0px 0px 20px 0px;	/*マージン*/
	float:none;			/*フロートしない*/
}
.infoimg_subpage {
	display:block;	/*ブロック表示にする*/
	width:650px; height:auto;	/*画像の表示サイズを指定*/
	margin:0px 0px 20px 0px;	/*マージン*/
	float:none;			/*フロートしない*/
}
.infoimg_tel {
	display:block;			/*ブロック表示にする*/
	width:300px; height:60px;	/*画像の表示サイズを指定*/
	margin:0px 0px 20px 0px;	/*マージン*/
}
hr {
	clear:both;			/*フロート配置をクリアする*/
	width:100%;			/*幅の指定*/
	margin:10px 0px;		/*マージン*/
	border:1px dotted #cccccc;	/*内容の区切りをグレーの点線表示にする*/
}

/*============================================
インフォメーション（中央用）
============================================*/
div#info_center {
	width:100%;		/*幅の指定*/
	float:none;		/*フロートしない*/
	clear:both;		/*フロート解除*/
	padding:0px;		/*パディング*/
}

/*============================================
備考情報
============================================*/
div.remarks {
	margin:0px 0px 10px 10px;
}
h4 {
	color:#000066;
}

/*============================================
フッタ
============================================*/
div#footer {
	clear:both;			/*フロート配置をクリアする*/
	height:40px;			/*高さの指定*/
	padding:10px 0px 0px 0px;	/*パディング*/
	font-size:x-small;		/*フォントサイズを小さくする*/
	text-align:center;		/*センタリング*/
}
