@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: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	background-color: #ffffff; /*背景色設定*/
	line-height: 1.5em;	/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 80%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	color: #000000; /*文字色指定*/
}
ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}
a { /*リンクの文字設定(マウスをのせる前)*/
	color: #0000FF; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #C74B15; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}
a img{
	opacity:1;
	filter:alpha(opacity=100);
-ms-filter: alpha( opacity=100 )
}
a:hover img{
 opacity:0.8;
filter:alpha(opacity=80);
-ms-filter: alpha( opacity=80 );
}
.color1 {
	color: #990000; /*文字色指定*/
}

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

#header {
	/*background-color: #e7e7eb; /*背景色設定*/
	/*position: fixed;*/ /*ボックスの配置方法(fixedは固定)*/
	height: 90px; /*領域の高さ指定*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	color: #000000; /*文字色指定*/
	background-image:url(../images/header01.gif);
	background-repeat:repeat-x;
}

#header h1 {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	right: 20px; /*右からの距離(positionで指定している場合に適用)*/
	top: 10px; /*上からの距離(positionで指定している場合に適用)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}

#logo {
	text-align: left; /*行の水平方向の揃え方(centerは中央揃え)*/
	margin-top: 0px; /*ボックス外側上の余白*/
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
#course {
	font-size:20px;
	margin-top:5px;
	font-weight:bold;
	width:650px;
}

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

#menu {
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#menu a {
	color: #000000; /*文字色指定*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	text-transform: uppercase; /*フォントの大文字小文字指定(uppercaseは全て大文字)*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	margin-right: 30px; /*ボックス外側右の余白*/
}

#menu a:hover, #menu a.active {
	color: #c9171e; /*文字色指定*/
}

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

#container { /*container(入れ物、容器)の中に各要素(ボックス)を配置*/
	width: 800px; /*幅指定*/
	height:auto;
	margin: 0 auto; /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
}
#home {
	padding-top: 10px; /*ボックス内側上の余白*/
	padding-bottom: 10px;
}
h2 {
	background-image:url(../images/titlebar_b.jpg);
	background-repeat:no-repeat;
	font-size:1.3em;
	line-height: 30px; /*行の高さ指定*/
	margin: 10px 10px; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-left: 7px;
	color:#362e2b;
}
h3 {
	background-image:url(../images/icn_square.jpg);
	background-repeat:no-repeat;
	font-size:15px;
	line-height: 15px; /*行の高さ指定*/
	margin: 5px 20px; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	padding-left: 15px;
}
h4 {
	font-size:15px;
	line-height: 15px; /*行の高さ指定*/
	margin: 10px 0 5px 20px; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}


table.kijitable{
    border-collapse: collapse;
    border: 1px #f08406 solid;
	margin:0 0 15px 15px;
	width:80%;
	font-size:14px;
}
.kijitable th{
   border-collapse: collapse;
   border: 1px #f08406 solid;
   padding: 5px;
   background-color: #fffcde;
   text-align:center;
}
.kijitable td {
   border-collapse: collapse;
   border: 1px #f08406 solid;
   padding: 5px;
   text-align:center
}

kijitable02.table {
	border:none;
	margin:0 0 10px 15px;
	width:100%;
}
.kijitable02 .td01{
	 text-indent:1em;
	 font-weight:bold;
	 font-size:15px;
	 color:#f08406;
 	 text-align:left;
	 padding:5px;
}
.kijitable02 .td02{
	text-indent:3em;
 	 text-align:left;
	 padding:3px;
}
.kijitable02 .td02 .span01{
	text-indent:3em;
}



#home table span{
	font-size:10px;
}
#home table span.red{
	color:#ff0000;
	font-size:20px;
	font-weight:bold;
	margin:3px;
}
ul {
    margin-left: 2em;
}
li {
    text-indent: -1.0em;
}

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

#footer {
	/*position: fixed;*/ /*ボックスの配置方法(fixedは固定)*/
	bottom: 0; /*下からの距離*/
	height: 60px; /*領域の高さ指定*/
	background-image:url(../images/footer.gif);
	background-repeat:repeat-x;
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}

#footer p {
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	font-size: 0.75em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #000000; /*文字色指定*/
	padding-top: 20px;
	padding-bottom: 10px;
}

/* ----- コンテンツ ----- */
#container div.info{
	margin: 10px 15px;
	bottom: 30px;
}
#container div.mypage{
	width: 600px;
	text-align: center;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
}
/*
#container a:hover img {
	border: solid 1px #c9171e; /*境界線の一括指定(solidは1本線,線の太さ,線の色)
}
*/

/* ----- フォーマット ----- */

.fL {
	float:left;
}
.fR {
	float:right;
}
.clear {
	clear:all;
}
.mT0 {
	margin-top:0px;
}
.mT5 {
	margin-top:5px;
}
.mT10 {
	margin-top:10px;
}
.mT15 {
	margin-top:15px;
}
.mT20 {
	margin-top:20px;
}
.mT25 {
	margin-top:25px;
}
.mT30 {
	margin-top:30px;
}
.mR0 {
	margin-right:0px;
}
.mR5 {
	margin-right:5px;
}
.mR10 {
	margin-right:10px;
}
.mR15 {
	margin-right:15px;
}
.mR20 {
	margin-right:20px;
}
.mB0 {
	margin-bottom:0px;
}
.mB5 {
	margin-bottom:5px;
}
.mB10 {
	margin-bottom:10px;
}
.mB15 {
	margin-bottom:15px;
}
.mB20 {
	margin-bottom:20px;
}
.mB25 {
	margin-bottom:25px;
}
.mB30 {
	margin-bottom:30px;
}
.mL0 {
	margin-left:0px;
}
.mL5 {
	margin-left:5px;
}
.mL10 {
	margin-left:10px;
}
.mL15 {
	margin-left:15px;
}
.mL20 {
	margin-left:20px;
}
.mL25 {
	margin-left:25px;
}
.mL30 {
	margin-left:30px;
}
.mL240 {
	margin-left:240px;
}

.w10{
     width:10%;
}
.w20{
     width:20%;
}
.w30{
     width:30%;
}
.w40{
     width:40%;
}
.w50{
     width:50%;
}
.w60{
     width:60%;
}
.w70{
     width:70%;
}
.w80{
     width:80%;
}
.w90{
     width:90%;
}
.w100 {
      width:100%;
}
#container #home #tbstyle02 {
}
#container #home .kijitable {
}
#container #home .kijitable {
}
