@charset "utf-8";

/*============================================
全般的なスタイル
============================================*/
* {
	margin:0; 
	padding:0; 	/*全要素のマージン・パディングをリセット*/
	line-height:1.5;	/*全要素の行の高さを1.5倍にする*/
	color:#333333;		/*文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
} 
body {
	background-color:#d5e6ee;	/*ページ全体の背景色*/
}
#pagebody {
	width:816px; 
	margin:0 auto;		/*内容全体をセンタリング*/
	text-align:left;	/*テキストの配置を左揃えにする*/
	background-color:#ffffff;	
}

/*============================================
ヘッダ
============================================*/
#header {
	height:55px;	/*背景画像のサイズに合わせてボックスの高さを指定*/
	background-color:#005382;	
}
h1 {
	color:#ffffff;
	text-align:right;
	padding:0px 20px 10px 0px;		/*見出し内容の位置調整*/
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
	text-shadow: -1px -1px #33b0ff;
	font-size: 30px;
}
h1 a {
	color:#ffffff;
	text-decoration:none;
} 			/*リンクの下線を無くす*/

/*============================================
メインメニュー
============================================*/
ul#menu {
	height:40px; 
	font-weight:bold;
	margin-left:6px;
	margin-right:6px;
	font-size: 16px;
}
li#menu01,li#menu02,li#menu03,li#menu04 {
	float:left;			/*リスト項目を横に並べる*/
	display:inline;			/*リスト項目をインライン表示にする*/
	list-style-type:none;		/*リストマーカー無しにする*/	
	width: 200px; 
	padding: 8px 0;
	background-color:#a2dbff; 
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
	color:#0e88b0;
}

li#menu02, li#menu03,li#menu04 {
	background-color:#38b8ff;
	color:#005382;
	border-right: solid 1px #ffffff; 
}

/*============================================
メニュー用体験版注記
============================================*/
[data-tooltip] {
	position: relative;
}

[data-tooltip]:after {
	content: attr(data-tooltip);
	position: absolute;
	display: block;
	left: 0px;
	font-size: 12px;
	font-weight:normal;
	padding: 4px;
	background-color:#666;
	color: #eee;
	white-space: nowrap;
	z-index: 9999;
	opacity: 0;
	bottom: 12px;
}

[data-tooltip]:hover:after {
	opacity: 1.0;
	bottom: 8px;
}

/*============================================
コンテンツ
============================================*/
.content {
	width:800px;
	margin:0 auto; 
}

/*============================================
メイン
============================================*/
/* 選択表 */
.main {
	background-color:#FFF;
	width:720px; 
	padding-top: 5px;
	margin: 0 40px 0 40px;
	font-size: 14px;
}

/*----見出し----*/
.midasi{
	position: relative;
	 
	/*色*/
	background-color: lightcoral;/*グラデーションが表示されないブラウザ用*/
	background: -webkit-gradient(linear,left top, left bottom,from(#0e88b0), to(#066686));/*古いSafariなど用*/
	background: -webkit-linear-gradient(#0e88b0, #066686);/*Safari、Chrome用*/
	background: -moz-linear-gradient(#0e88b0, #066686);/*Firefox用*/
	background: -o-linear-gradient(#0e88b0, #066686);/*Opera用*/
	background: linear-gradient(#0e88b0, #066686); /*標準*/
	 
	/*文字*/
	color: #FFF;
	font-size: 20px;
	font-weight:normal;
	text-align: center;
	text-shadow:0 1px 0 #005382;
	-webkit-text-shadow:0 1px 0 #005382;
	 
	/*幅と高さ*/
	width: 750px;
	line-height: 50px;
	 
	/*はみ出る部分*/
	margin-left: -15px;
	margin-right: -15px;

	/*シャドウ*/
	box-shadow:0 10px 30px -8px rgba(0,0,0,0.2); 
	-webkit-box-shadow:0 10px 30px -8px rgba(0,0,0,0.2); 
}

.midasi span {
	color:#0CF;
	text-shadow:0 1px 0 #ffffff;
}
 
h3 {
	color:#005382;
	font-size: 16px;
	/*margin-bottom:5px;*/
	padding:10px 10px 0px 10px;
	/*border-bottom:solid 1px #cccccc;*/
}

/*============================================
フッタ
============================================*/
div#footer {
	/*width:800px;*/
	height:30px;
	/*margin: 0 auto;
	padding:0;*/
	background-color:#005382;
}
address {
	font-family:Arial, Helvetica, sans-serif;	/*フォントの種類*/
	color:#FFF;
	text-align:center;
	font-style:normal;			 /*フォントスタイルを標準にする*/
	font-size: 12px;			 /*フォントサイズを小さくする*/
	padding:5px 0px;		 /*要素内容の位置調整*/
}

/*============================================
LOADING画面
============================================*/
#modal-overlay{
	z-index:1;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:120%;
	background-color:rgba(0,0,0,0.40);
}

#modal-content{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
	width: 530px;
	height: 250px;
	border:2px solid #aaa;
	background:#fff;
	z-index:5;
}

