@charset "utf-8";


body{background: none;}

/*bodyの直接の子要素のh1タグ設定
---------------------------------------------------------------------------*/
body > h1 {
	text-align: center;
}
/*imgタグ設定
---------------------------------------------------------------------------*/
img {
	border: none;
	display: block;
	clear:both;
	width:90%;
	height:auto;
	float: none;
	margin: auto;
}


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 100%;
	padding:5%;
}

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

/*上部のメインメニュー（style-s.cssと同じ内容になっています）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menu ul li {
	margin-left: 0px;
	width: 25%;
	border: 1px solid #FFF;
	margin-right: -1px;
	margin-left: -1px;
}
nav#menu ul li a {
	height: auto;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align:middle;
}
/*最初のメニューの設定*/
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;
}


/*上部のメインメニュー2
---------------------------------------------------------------------------*/
/*営業*/

span#m-f img{
	display: block;
	margin: auto;
}

/*店舗リンク*/

span#s-link {
	display: block;
	position: absolute;
	top:0;
	right: 10px;
}

span#s-link img{
	display: inline;
	width:20%;
	height: auto;
	border:1px solid #828282;
		float: right;
	margin: 10px 0 0 10px;
	clear:none;
}


/*メニュー１個ごとの設定*/

nav#menu2 ul{
	display:inline-block;
	text-align:center;
	vertical-align:middle;
	background: #EFEFEF;

	width:100%;
	min-height:44px;
	padding:5px;

		border:1px solid #666;
		clear:both;
	
	border-radius: 10px;        /* CSS3草案 */  
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 10px;   /* Firefox用 */  

}

nav#menu2 ul li {
	display:inline-block;
}

nav#menu2 ul li a {
	display:block;
	width: auto;

	color: #666;		/*文字色*/
	font-weight: bold;	/*文字を太字にする設定*/
	text-decoration: none;
	
	-webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
	transition: 0.3s;			/*同上*/
	background-color: ;	/*背景色（古いブラウザだとここの色のみが出ます）*/

	padding:5px;

}

/*最初のメニューの設定*/
nav#menu2 ul > li:first-child {
	margin-left: 0px;
	border-left:none;
}



/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

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



/*フッター設定
---------------------------------------------------------------------------*/
#shop{
	display:block;
	position: static;
}

#pageTop{
	display:block;
	width:30px;
	height:auto;
	position:fixed;
	bottom:10px;
	right:10px;
	z-index:2;}

footer {
	width:100%;
	position:fixed;
	bottom:0;
	left:0;
	clear: both;
	text-align: center;
	padding-top: 1%;
	padding-bottom: 1%;
	background:#C00;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}


/*サブコンテンツ用　車ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#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;
}

#shop{
	display:block;
	padding: 0 0 100px 0;
	z-index:1;
	｝
	
/*テーブル
---------------------------------------------------------------------------*/
table{
	width:100%;
}

table th{
	display:block;
	width:100%;
	float:left;
	clear:both;
}

table td{
	display:block;
	width:100%;
	float:left;
	clear:both;
}


