@charset "utf-8";
/*bodyの直接の子要素のh1タグ設定
---------------------------------------------------------------------------*/
body > h1 {
	text-align: center;
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}
#container h1 {
	text-align: center;
}
/*ヘッダー
---------------------------------------------------------------------------*/
header {
	height: auto;
}
header h1 {
	padding-top: 10px;
	position: static;
	text-align: center;
}
header #banner1 {
	position: static;
	text-align: center;
}
/*上部のメインメニュー（style-s.cssと同じ内容になっています）
---------------------------------------------------------------------------*/
nav#menu ul {
	display: block;
	gap: auto;
}
nav#menu ul li {
	float: left;
	flex: auto; /* 均等幅(同じサイズ)で横並び配置 */
}

/*メニュー１個ごとの設定*/
nav#menu ul li {
	margin-left: 0px;
	margin-bottom: 2px;
	width: 50%;
	border: 1px solid #000;
	margin-right: -1px;
	margin-left: -1px;
}
nav#menu ul li a {
	height: auto;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
}
/*最初のメニューの設定*/
nav#menu ul > li:first-child {
	margin-left: -1px;
}
/*英語表記の設定*/
nav#menu ul li a span {
	display: none;
}
/*current（現在表示中のページのメニュー）*/
nav#menu ul li#current a, nav#menu ul li#current2 a {
	width: auto;
	border-top: none;
	border-right: none;
	border-left: none;
}
/*最後のメニュー*/
nav#menu ul > li:last-child {
	margin-bottom: 10px;
}
/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}
/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}

/*サブコンテンツ用　車ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box1 {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;	/*ボックスの幅*/
	line-height: 1.6;	/*行間*/
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*item.html（中古車詳細ページ）
---------------------------------------------------------------------------*/
/*詳細ページではサブコンテンツを表示させない設定*/
#item #sub {
	display: none;
}
/*写真の設定*/
#item #main figure img {
	width: 100%;
	height: auto;
}
/*contact.html（お問い合わせページ）
---------------------------------------------------------------------------*/
/*お問い合わせページではサブコンテンツを表示させない設定*/
#contact #sub {
	display: none;
}
