@charset "utf-8";

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

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

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

/*service2.htmlの製品詳細
---------------------------------------------------------------------------*/
/*製品詳細ページではサブコンテンツを表示させない設定*/
#service2 #sub {
	display: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav ul {
	height: auto;
	padding-left: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
/*メニュー１個ごとの設定*/
header nav ul li {
	border-right: none;
	background-color: #F5B50A;
	border-radius: 6px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#F5B50A), to(#E0A50A));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#F5B50A, #E0A50A);	/*同上*/
	background-image: linear-gradient(#F5B50A, #E0A50A);			/*同上*/
	width: 49%;
	margin-bottom: 1%;
}
/*１個目のメニューの線の設定*/
header nav ul li:first-child {
	border-left: 0;
}
/*奇数番目のメニューの設定*/
header nav ul li:nth-child(odd) {
	margin-right:1%;
	width: 50%;
}

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}
