@charset "utf-8";


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 10px;
	margin-left: 10px;
}

/*ヘッダー内のロゴ画像
---------------------------------------------------------------------------*/
header h1 img{
	width: 94%;	/*画面幅に対して画像幅を94％にする*/
	height: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
nav#menubar ul li {
	float: left;	/*メニューを左側に回り込み*/
	width: 30%;		/*メニュー幅*/
	height: 160px;	/*メニューの高さ*/
	margin-left: 2%;	/*メニュー同士の隙間*/
	/*background-color: #000;*/
}
/*各メニューの写真部分の設定*/
nav#menubar ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
}
nav#menubar ul li a img {
	border: 5px solid #FFF;	/*枠線の幅、線種、色*/
}
/*各メニューの写真部分のマウスオン時の設定*/
nav#menubar ul li a:hover img {
	border: 5px solid #FF3;	/*枠線の幅、線種、色*/
}
/*テキスト部分の設定*/
nav#menubar ul li a span {
	font-size: 13px;		/*文字サイズ*/
	margin-bottom: 10px;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツのh2タグの設定*/
#main h2 {
	padding: 4px 15px;	/*上下、左右への余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	padding: 4px 15px;	/*上下、左右への余白*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#3687CF), to(#113F8D));
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#3687CF, #113F8D);
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#3687CF, #113F8D);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#3687CF), to(#113F8D));
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#3687CF, #113F8D);
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#3687CF, #113F8D);
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	float: none;
	height: auto;	/*ボックスの高さ*/
	width: 100%;	/*ボックスの幅*/
	margin: 0px 0px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.list article figure img {
	width: 100%;
	height: auto;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa {
	width: 100%;
	height: auto;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}
