@charset "utf-8";


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	width: 300px;	/*ボックス幅*/
	margin: 0px auto;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 49%;
	margin: 0 0 5px 1%;
	border: 1px solid #c76300;
	box-sizing: border-box;
}
nav#menu ul li a {
	width: auto;
}
/*現在表示中メニュー。current*/
nav#menu ul li#current {
	box-sizing: border-box;
	border: 1px solid #9d0909;
}
/*奇数番目のメニューの設定*/
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%;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
#main .staff .left {
	width: 33%;
}
#main .staff .left figure img {
	width: 100%;
	height: auto;
}
/*右側ボックス*/
#main .staff .right {
	width: 65%;	/*幅*/
}
/*画像
---------------------------------------------------------------------------*/
img.wa{
	width: 100%;
	height: auto;
}
