<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*背景色、背景画像の読み込み*/
	background-color: #272727;
	background-image: url(../images/bg.png);
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #000;	/*背景色*/
	text-align: right;	/*右寄せ*/
}
h1 a, h1 a:hover {
	color: #FFF;
	text-decoration: none;
}

/*コンテナー（HP最上段のh1タグ以外を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー内のh1タグ（サイト名ロゴ）
---------------------------------------------------------------------------*/
header {
	position: relative;
	height: 80px;	/*ヘッダーの高さ*/
	width: 100%;
}
/*ロゴ*/
header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から20pxの位置に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から20pxの位置に配置*/

}
/*買い取りバナー*/
header #banner1 {
	position: absolute;
	top: 15px;		/*ヘッダーブロックに対して上から15pxの位置に配置*/
	right: 20px;	/*ヘッダーブロックに対して右から20pxの位置に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	margin-left: 4px;
	line-height: 18px;
}
nav#menubar ul li a {
	color: #E1D38B;		/*文字色*/
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #313131;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#494949), to(#313131));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#494949, #313131);	/*同上*/
	background-image: linear-gradient(#494949, #313131);			/*同上*/
	border-top: 1px solid #666;		/*上の線の幅、線種、色*/
	border-right: 1px solid #666;	/*右の線の幅、線種、色*/
	border-left: 1px solid #666;	/*左の線の幅、線種、色*/
	height: 44px;
	width: 158px;
	font-weight: bold;	/*文字を太字にする設定*/
	padding-top: 8px;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover {
	color: #000;			/*文字色*/
	background: #FFFFFF;	/*背景色*/
}
/*最初のメニューの設定*/
nav#menubar ul &gt; li:first-child {
	margin-left: 0px;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*文字を太字でなく標準にする設定*/
}
/*current（現在表示中のページのメニュー）*/
nav#menubar ul li#current a {
	color: #000;	/*文字色*/
	width: 158px;
	background-color: #FFFFFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#FFFFFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e6e6e6, #FFFFFF);	/*同上*/
	background-image: linear-gradient(#e6e6e6, #FFFFFF);			/*同上*/
	border-top: 1px solid #FFF;		/*上の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左の線の幅、線種、色*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 960px;	/*コンテンツ幅*/
	background-color: #FFF;	/*背景色*/
	padding: 10px;	/*コンテンツ内の余白*/
	overflow: hidden;
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	position: relative;
	height: 270px;
	width: 960px;
	margin-bottom: 10px;
}
#mainimg img {
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	vertical-align: bottom;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
}
/*h2タグの設定*/
#main h2 {
	background-color: #313131;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#494949), to(#313131));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#494949, #313131);	/*同上*/
	background-image: linear-gradient(#494949, #313131);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 100%;
	color: #E1D38B;	/*文字色*/
	padding: 3px 10px 3px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 4px solid #DD0000;	/*下部の線の幅、線種、色*/
}
#main h2 img {
	vertical-align: middle;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}
#main &gt; p {
	background-color: #FFF;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
}
/*subコンテンツ内のh1タグ設定*/
#sub h2 {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	background-color: #b10000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dd0000), to(#b10000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dd0000, #b10000);	/*同上*/
	background-image: linear-gradient(#dd0000, #b10000);			/*同上*/
	color: #FFF;
}
/*subコンテンツの段落タグ設定*/
#sub p {
	padding-right: 10px;
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #999;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #313131;	/*背景色*/
	color: #FFFFFF;				/*文字色*/
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background-color: #000;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*サブコンテンツ用　車ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box1 {
	font-size: 11px;	/*文字サイズ*/
	width: 238px;	/*ボックスの幅*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);									/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);											/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.6;	/*行間*/
	position: relative;
	overflow: hidden;
}
#sub section.box1 a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#sub section.box1 a:hover {
	background-color: #ffea99;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.box1 h4 {
	margin-left: 90px;	/*左の画像とバランスをとって設定する*/
	border: none;
	text-align: left;
	padding: 0;
	background: none;
	color: #dd0000;
}
/*p段落タグ*/
#sub section.box1 p {
	margin-left: 90px;	/*左の画像とバランスをとって設定する*/
	padding: 0px;
}
/*サムネイル画像設定*/
#sub section.box1 figure {
	float: left;	/*左に回り込みさせる設定*/
	padding: 0px;
}
/*サムネイル画像のフチ*/
#sub section.box1 figure img {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*list.html内の中古車紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 1em;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);									/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);											/*同上*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;			/*同上*/
	position: relative;
	overflow: hidden;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	border-left: 3px solid #dd0000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
	padding-left: 5px;
	background-color: #000;	/*背景色*/
	color: #E1D38B;
}
/*リンクの設定*/
#main section.list a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list a:hover {
	background-color: #ffea99;	/*マウスオン時のボックス色*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background-color: #303030;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #303030;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #999;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #454747;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454747), to(#757777));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454747, #757777);	/*同上*/
	background-image: linear-gradient(#454747, #757777);			/*同上*/
	color: #FFF;
	font-weight: bold;
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #b10000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dd0000), to(#b10000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dd0000, #b10000);	/*同上*/
	background-image: linear-gradient(#dd0000, #b10000);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 14px;	/*文字サイズ*/
	color: #FFF;
	margin-right: 5px;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #dd0000;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#b10000), to(#dd0000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#b10000, #dd0000);	/*同上*/
	background-image: linear-gradient(#b10000, #dd0000);			/*同上*/
	color: #FFF;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 200px;
	height: 40px;

}

/*FAQページの設定
---------------------------------------------------------------------------*/
/*FAQブロック全体*/
dl.faq {
	padding-right: 10px;
	padding-left: 10px;
}
/*質問ブロック*/
dl.faq dt {
	padding-left: 20px;
	font-weight: bold;	/*文字を太字にする設定*/
	color: #F00;		/*文字色*/
	background-image: url(../images/faq_q.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: left 3px;				/*背景画像を左側、3pxの場所に配置*/
}
/*回答ブロック*/
dl.faq dd {
	padding-left: 20px;
	background-image: url(../images/faq_a.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;				/*背景画像をリピートしない*/
	background-position: left 3px;				/*背景画像を左側、3pxの場所に配置*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #F00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
.sortbox {
	text-align: right;
	margin-bottom: 1em;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 10px;
	background: #e5e5e5;
}
.big1 {
	font-size: 130%;
}
/*list.html内のおすすめ表示*/
.osusume {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
/*list.html内SOLD OUT表示*/
.sumi {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

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

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	position: static;
	height: auto;
}
header #logo {
	padding-top: 10px;
	position: static;
	text-align: center;
}
header #banner1 {
	position: static;
	text-align: center;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-left: 0px;
	margin-bottom: 2px;
	width: 50%;
	border: 1px solid #000;
	margin-right: -1px;
	margin-left: -1px;
}
nav#menubar ul li a {
	height: auto;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
}
/*最初のメニューの設定*/
nav#menubar ul &gt; li:first-child {
	margin-left: -1px;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: none;
}
/*current（現在表示中のページのメニュー）*/
nav#menubar ul li#current a {
	width: auto;
	border-top: none;
	border-right: none;
	border-left: none;
}
/*最後のメニュー*/
nav#menubar ul &gt; li:last-child {
	margin-bottom: 10px;
}

/*コンテンツ（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;
}

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

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*h1タグ設定
---------------------------------------------------------------------------*/
h1 {
	display: none;
}

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

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

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin-left: 0px;
	margin-bottom: 2px;
	width: 50%;
	border: 1px solid #000;
	margin-right: -1px;
	margin-left: -1px;
}
nav#menubar ul li a {
	height: auto;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border: none;
}
/*最初のメニューの設定*/
nav#menubar ul &gt; li:first-child {
	margin-left: -1px;
}
/*英語表記の設定*/
nav#menubar ul li a span {
	display: none;
}
/*current（現在表示中のページのメニュー）*/
nav#menubar ul li#current a {
	width: auto;
	border-top: none;
	border-right: none;
	border-left: none;
}
/*最後のメニュー*/
nav#menubar ul &gt; li:last-child {
	margin-bottom: 10px;
}

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

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

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#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;
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.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 h2.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 figure img {
	float: left;
	width: 40%;
	height: auto;
	margin-right: 10px;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}

}
</pre></body></html>