@charset "utf-8";

/*bodyの直接の子要素のh1タグ設定
---------------------------------------------------------------------------*/
body > h1 {
	text-align: center;
}

/*コンテナー
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	height: auto;
}
header h1 {
	padding-top: 10px;
	position: static;
	text-align: center;
}
header h1 img {
	width: 80%;
	height: auto;
}
header #banner1 {
	display: none;
}

/*上部のメインメニュー（style-m.cssと同じ内容になっています）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
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 {
	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;
}
#main p {
	padding: 0;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h1::before{
	content: "▼ ";
}

/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg {
	height: 0px;
	margin-bottom: 0px;
}
#mainimg img {
	display: none;
}

/*サブコンテンツ用　車ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub article.box1 {
	font-size: 12px;	/*文字サイズ*/
	width: 100%;	/*ボックスの幅*/
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

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

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

/*list.html内の中古車一覧の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;
	width: 40%;
	height: auto;
	margin-right: 10px;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}

/*item.htmlの製品詳細
---------------------------------------------------------------------------*/
/*写真設定*/
#item #main figure img {
	width: 100%;
	height: auto;
}

/*その他
---------------------------------------------------------------------------*/
/*トップページ以外では、サブコンテンツを表示させない設定。表示させていたいならこのブロックを削除する。*/
#company #sub,
#list #sub,
#item #sub,
#faq #sub,
#link #sub,
#contact #sub,
#recruit #sub {
	display: none;
}
/*写真の設定*/
#main img.wa {
	width: 100%;
	height: auto;
}
