﻿@charset "utf-8"; /*文字コード指定*/

/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 5; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 5; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	background-color: #ffffff; /*背景色指定*/
	line-height: 2;	/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 100%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	color: #444; /*文字色指定*/
}


a { /*リンクの文字設定(マウスをのせる前)*/
	color: #2512ea; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #2512ea; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}


.color1 {
	color: #110964; /*文字色指定*/
}

hr {
	margin: 8; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	border: none; /*境界線指定*/
	background-color: #B0C4DE; /*背景色指定*/
	height: 1px; /*領域の高さ指定*/
}

img { 
    max-width: 100%; 
    height:auto;
}

img.left {
	float: left;
	margin-right: 0.8em;
	margin-bottom: 0.5em
}

img.right {
	float: right;
	margin-right: 0.8em;
	margin-bottom: 0.5em
}

p {
	margin-left: auto;
	margin-right: auto;
	clear: both;
	line-height: 1.4
}

/* clearfix 
---------------------------------------------------------------------*/
.clearfix:after {
	    content: ".";
	    display: block;
	    visibility: hidden;
	    height: 0;
	    clear: both;
}

/* WinIE7 only */
*:first-child+html .clearfix {
	    height: 1%;
}

/* WinIE6 and below */
/* hide \*/
	* html .clearfix {
	    height: 1%;
}   

	.nav {
	  width:100%;
	}

	.nav ul {
	  text-align:center;
	}
	
	.nav ul li {
          display: inline-block;
	  width: 14%;
}


/* ----- ヘッダー(ページの一番上の部分) ----- */

#wrapper {
  text-align: center;
  margin: 0 auto 0;
  width: 100%;
  font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
  font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}

#header {
	height: auto; /*領域の高さ指定*/
	width: 100%; /*幅指定(autoは初期値に戻す)*/
	margin: 0 auto 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: bold; /*フォントの太さ指定(normalは標準)*/
}

#wrapper h1 {
	margin: 0 auto 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	font-size: 1.4em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: bold; /*フォントの太さ指定(normalは標準)*/
        color:#110964;
}

#wrapper h2 {
	margin: 0 auto 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	font-size: 1.1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
        color:#110964;
}

#wrapper h3 {
	margin: 0 auto 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	font-size: 0.6em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
        color:#110964;
}


/* ----- ナビゲーションメニュー(ヘッダー内のメインメニュー) ----- */





.table{
 margin: auto;
 width:100%;
 border-collapse: separate;
 border-spacing: 0px;
 border-top: 0px solid #fff;
 border-left: 0px solid #fff;
 border-right: 0px solid #fff;
 border-bottom: 0px solid #fff;

 }
 .table th{
 padding: 0px;
 text-align: left;
 vertical-align: top;
 color: #606060;
 background-color: #fff;
 border-top: 0px solid #fff;
 border-left: 0px solid #fff;
 border-right: 0px solid #fff;
 border-bottom: 0px solid #fff;
 }



 .table td{
 width: 30%;
 padding: 3px;
 background-color: #fff;
 }



/* ----- レイアウト ----- */

#container { /*container(入れ物、容器)の中に各要素(ボックス)を配置*/
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: 0 auto; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}


#content {
	float: left; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: 0 auto 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}

/* ----- フッター(ページの一番下の部分) ----- */

#footer {
	clear: both; /*floatの回り込みを解除*/
	height: auto; /*領域の高さを指定*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	background-image: url(../images/foot2.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

#footer p {
	position: relative; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	right: 2px; /*右からの距離(positionで指定している場合に適用)*/
	top: 2px; /*下からの距離(positionで指定している場合に適用)*/
	font-size: 0.75em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #ffffff; /*文字色指定*/
	text-align: center;
	padding: 5px; 
}

#footer a { /*リンクの文字設定(マウスをのせる前)*/
	color: #f0f8ff; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

#footer a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #f0f8ff; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}

/* ----- コンテンツ ----- */


.newlist {
	width: auto; /*幅指定(autoは初期値に戻す)*/
	margin-bottom: 5px; /*ボックス外側下の余白*/
	border: solid 0px #B0C4DE; /*境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

.newlist dl {
	height: 100px; /*領域の高さ指定*/
	overflow: auto; /*領域に入りきらない内容の処理(autoはブラウザに依存(通常はみ出す場合はスクロール表示))*/
	padding-left: 5px; /*ボックス内側左の余白*/
	text-align: left; /*行の水平方向の揃え方(leftは左寄せ)*/
}

.newlist dd {
	border-bottom: solid 1px #B0C4DE; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	margin: 0px 0px 0px 0px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
}


