@charset "utf-8";


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 235px;
}
header h1 {
	display: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 49%;
	margin: 0 0 5px 1%;
	border: 1px solid #000;
	box-sizing: border-box;
}
nav#menu ul li a {
	width: auto;
}
/*現在表示中メニュー。current*/
nav#menu ul li#current {
	box-sizing: border-box;
	border: 1px solid #2ab300;
}
/*奇数番目のメニューの設定*/
nav#menu li:nth-child(odd) {
	width: 50%;
	margin: 0;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	width: 46%;
	box-sizing: border-box;
}
#main section.list article figure img {
	height: auto;
	width: 100%;
}
