@charset "UTF-8";

/*
---------------------------------------------------------------------------
■制作元：テンプレートパーティー
■URL：http://template-party.com/
---------------------------------------------------------------------------*/

body {
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	text-align: center;
	font: 75%/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFFFFF;	/*背景色、背景画像の読み込み*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	margin-top: 15px;
	margin-bottom: 15px;
	border-top: solid 2px #5F5F5F;
	border-bottom: 2px solid #626262;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #19A5CE;	/*リンクテキストの色*/
}
a:hover {
	color: #376DC1;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	text-align: left;
	width: 965px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}
/*h1タグ*/
#container h1 {
	font-size: 10px;	/*文字サイズ*/
	text-align: right;	/*文字を右寄せ*/
	padding-top: 10px;
	padding-bottom: 10px;
}
#container h1 a {
	color: #000;
	text-decoration: none;
	font-size: 17px;
}

/*ヘッダー（ロゴが入った最上部ブロック）
---------------------------------------------------------------------------*/
#header {
	text-align: left;
	height: 90px;	/*ヘッダーの高さ*/
	width: 100%;	/*ヘッダーの幅*/
	position: relative;
	background: url(../images/header_bg.gif) no-repeat;	/*ヘッダー背景画像の読み込み*/
}
/*ロゴ画像*/
#header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーに対して左から20pxの位置に配置*/
	top: 22px;	/*ヘッダーに対して上から22pxの位置に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
ul#menu {
	background: #FFF;	/*背景色*/
	width: 945px;
	padding-left: 20px;
	height: 63px;
}
ul#menu li {
	float: left;
	margin-right: 5px;
	background-color: #FFFFFF;
	font-size: 15px;   text-decoration:none;   color:#fff;
	/* position:relative; */
	padding: 3.5px 19px;
	border-left: solid 1px #000000;
	margin-left: 43px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	border-radius: 10px;
	box-shadow: inset 0px 1px 0px #616161, 0px 5px 0px 0px #6C6C6C, 0px 5px 3px #999;
	width: 221px;
	margin-top: 10px;
	margin-bottom: 8px;
}
ul#menu img {
	vertical-align: bottom;
}

/*コンテンツ（mainを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	background: #FFF;	/*背景色*/
	overflow: hidden;
	padding-bottom: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 925px;	/*メインコンテンツ幅*/
	margin-right: auto;
	margin-left: auto;
	padding-top: 40px;
}
#top #main {
	padding-top: 0px;
	margin-top: 8px;
	border: 2px dotted;
	padding: 10px;
}
/*h2タグ設定*/
#main h2 {
	font-size: 125%;		/*文字サイズ*/
	color: #000000;			/*文字色*/
	clear: both;
	width: 884px;	/*背景画像の読み込み*/
	letter-spacing: 0.2em;	/*文字間に少しゆとりを持たせる設定。通常の間がいいならこの１行削除。*/
	line-height: 36px;
	height: 36px;
	padding-left: 7px;
	padding-top: 2px;
	overflow: hidden;
	border-left: 5px solid;
	border-bottom: 1px solid;
}
/*段落タグの余白設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*写真サムネイルボックス
---------------------------------------------------------------------------*/
#main .photobox {
	padding: 8px;	/*ボックス内の余白*/
	float: left;
	width: 202px;	/*ボックスの幅*/
	height: 190px;	/*ボックスの高さ*/
	display: inline;
	margin-left: 9px;		/*ボックス同士の左右間のスペース*/
	margin-bottom: 1em;		/*ボックス同士の上下間のスペース*/
	font-size: 11px;		/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #e5e5e5;	/*背景色*/
}
/*段落タグ共通設定*/
#main .photobox p {
	padding: 0px;
}
#main .photobox a img {
	border: 1px solid #ccc;	/*サムネイル画像のフチの設定*/
}
#main .photobox a:hover img {
	border-color: #000000;		/*サムネイル画像のマウスオン時のフチの設定*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#main .new {
	overflow: auto;	/*ブロックの高さを超える文字が入ったらiframe風にスクロールバーが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ブロックの高さ*/
	width: 895px;
	padding-left: 15px;
}
#main .new dl {
	clear: left;
	width: 875px;
	border-bottom: 1px solid #999;	/*日付ごとの下線の幅、線種、色*/
	overflow: hidden;
}
#main .new dt {
	font-weight: bold;
	float: left;
	width: 100px;
}
#main .new dd {
	float: left;
	width: 775px;
}
#main .new dd img {
	vertical-align: middle;
}
*html #main .new dd img {
	margin-top:0.5em;
	vertical-align: baseline;
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	text-align: center;	/*文字をセンタリング*/
	font-size: 11px;	/*文字サイズ*/
	background: url(../images/footer_bg.gif) no-repeat center top;	/*背景画像の読み込み＆上部に配置*/
	padding-top: 30px;
	padding-bottom: 20px;
	color: #FFF;
}
#footer a {
	text-decoration: none;
	color: #F00;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 895px;
	margin-right: auto;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 652px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background: #e5e5e5;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;			/*文字色*/
	background: #ff1e1e;	/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #d2d2d2;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #ff1e1e;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}

#footer a:hover{
color: #1E68ED;
}

ul#menu li:active{

top: 2px;



box-shadow: inset 0px 1px 0px #6c6c6c, 0px 1px 1px 1px #156785, 0px 1px 6px #999;
}


ul#menu li::before{

content:"·";
	width:35px;
	max-height:29px;
	height:100%;
	position:absolute;
	display:block;
	padding-top:8px;
	top:0px;
	left:-36px;
	font-size:16px;
	font-weight:bold;
	color:#8fd1ea;
	text-shadow:1px 1px 0px #07526e;
	border-right:solid 1px #6c6c6c;

	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow:inset 1px 1px 0px #6c6c6c, 0px 2px 0px 0px #6c6c6c, 0px 0px 0px #6c6c6c ;
}

ul#menu li:active::bofre{

top:-3px;
box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #6c6c6c, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;
}


.osusume {
    border: 2px dotted;
    padding: 10px;
    margin: 8px;
    clear: both;
    margin-top: 10px;
}
.box-1st {
    width: 447px;
    border: 2px dotted;
    padding: 10px;
    margin-right: -1px;
    margin-left: 8px;
    float: left;
    margin-top: 10px;
}


.box-2nd {
    /* clear: both; */
    width: 287px;
    border: 2px dotted;
    padding: 10px;
    margin-left: 8px;
    margin-top: 10px;
    float: left;
    margin-bottom: 10px;
}

.box-3rd {
    clear: both;
    border: 2px dotted;
    padding: 10px;
    margin: 8px;
    /* margin-top: 420px; */
}


.box-3rd {
    clear: both;
}

.box-4th {
    width: 442px;
    border: 2px dotted;
    padding: 10px;
    margin: 8px;
    float: left;
}


.box-5th {
    border: dotted 2px;
    clear: both;
    padding: 10px;
    margin: 8px;
}


.naibu {
    padding: 60px;
    background: #FFFFFF;
}

h2.naibuh2 {
    border-left: 10px solid;
    padding-left: 5px;
    padding-top: 5px;
    border-radius: 6px;
    margin-top: -35px;
    margin-bottom: 15px;
    color: #376DC1;
}

h3 {
    border-left: 7px solid;
    padding-top: 5px;
    padding-left: 5px;
    border-radius: 4px;
    border-bottom: 1px solid;
}