




/* 車両一覧 ***************************/
ul.car_list {
	width: 100%;
	max-width: 900px;
	margin: 0px auto 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
ul.car_list > li {
	width: 280px;
	float: none;
	background: #fff;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.2));
	border-radius: 10px;
	margin-right: calc((100% - (280px * 3))/2);
	margin-bottom: 18px;
	position: relative;
}
ul.car_list > li:nth-of-type(3n) {
	margin-right: 0px;
}
/*軽フェスタならではの衝撃価格*/
ul.car_list > li > div:first-of-type {
	background-color: #F00A0A;
	padding: 11px 0;
	border-radius: 5px 5px 0 0;
	text-align: center;
}
ul.car_list > li > div:first-of-type > img {
	width: 95%;
	height: auto;
}
ul.car_list > li a {
	display: block;
}
ul.car_list > li a > div:first-of-type {
	padding: 10px 14px 15px !important;
}
ul.car_list > li:hover {
	filter: brightness(1.1);;
}
/*hover*/
ul.car_list > li:hover p.view {
	color: #aaa;
}
/*駆動マーク*/
span.kudo {
	background: #ED6103;
	font-size: 12px;
	color: #fff;
	padding: 2px 10px;
	margin-right: 5px;
	font-weight: bold;
	border-radius: 3px;
}
span.kudo.ore {
	background: #ED6103;
}
span.kudo.ppl {
	background: #694EB5;
}
span.kudo.red {
	background: #F2002D;
}

/*車種名*/
div.car_name {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	line-height: 1.4;
	height: 70px;
	text-align: left;
}
div.car_name div {
	font-size: 16px;
	color: #1874E8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*車画像*/
ul.car_list > li div.pic {
	width: 100%;
	height: 260px;
	text-align: center;
}
ul.car_list > li div.pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*車情報*/
div.car_pic {
	overflow: hidden;
	margin-bottom: 10px;
}
div.car_pic img {
	width: 164px;
	height: auto;
	float: left;
	margin-right: 10px;
}
/*支払総額（税込）*/
div.price {
	text-align: center;
	border-bottom: 2px solid #F2002D;
}
div.price > img {
	width: 100%;
	height: auto;
	opacity: 0;
}
div.price > p:nth-of-type(1) {
	height: auto;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	font-style: normal;
	margin-left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #F2002D;
	padding: 5px 0;
}
div.price > p > span {
	font-size: 16px;
	font-weight: 600;
	margin-right: 0;
	line-height: 1.5;
	font-style: normal;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
div.price > p > span b {
	font-size: 12px;
}
div.price > p:nth-of-type(1) span {
	font-size: 12px;
	color: #fff;
	margin-right: 0;
}
/*価格*/
div.price > p:nth-of-type(2) {
	height: 51px;
	font-size: 44px;
	color: #F2002D;
	border-top: none;
	font-weight: bold;
	margin-left: 0px;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*万円*/
div.price > p:nth-of-type(2) span {
	color: #333333;
	height: 44px;
	margin-right: 0;
	margin-left: 6px;
	justify-content: end;
}
/*車両価格・諸費用*/
ul.price2 {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
ul.price2 > li {
	width: 48%;
	padding: 8px 0 0;
	border-bottom: 1px solid #989898;
}
ul.price2 > li > p:nth-of-type(1) {
	font-size: 12px;
	line-height: 1.3;
	font-weight: bold;
	color: #333333;
	text-align: center;
}
ul.price2 > li > p:nth-of-type(2) {
	font-size: 30px;
	line-height: 1.3;
	font-weight: bold;
	color: #333333;
	display: flex;
	justify-content: center;
	align-items: baseline;
}
ul.price2 > li > p:nth-of-type(2) span {
	font-size: 12px;
}

ul.car_list > li a > div:last-of-type {
	padding: 17px 0;
	background-color: #FFEF00;
	border-radius: 0 0 10px 10px;
}
ul.car_list > li a > div:last-of-type > h2 {
	font-size: 13px;
	font-weight: bold;
	color: #333333;
	text-align: center;
}
ul.car_list > li a > div:last-of-type > h2 span {
	color: #F2002D;
}
/*詳細を見る*/
p.view {
	width: 240px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #F00A0A;
	border: 2px solid #FFF;
	padding: 13px 0;
	border-radius: 30px;
	margin-top: 10px;
	position: relative;
	filter: drop-shadow(0px 3px 3px rgb(0 0 0 / .2) );
}
p.view::after {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '\f054';
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}











/* 車詳細部分 *******************/
/*
.popup-inner {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 40px;
}
section.car_detail {
    margin-top: 40px;
}
section.car_detail h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    padding: 24px 0;
    border-top: 2px solid #FCC09E;
    border-bottom: 2px solid #FCC09E;
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
}
section.car_detail h3::after {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	background-image: url(../images/common/h_yaji.png);
	content: '';
	display: inline-block;
	width: 35px;
	height: 11px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	background-color: #fff;
	border-bottom: none;
}
section.car_detail h3 span.kudo {
	font-size: 12px;
}
section.car_detail h3 span:nth-of-type(2) {
	font-size: 14px;
}
*/


/*スライダーカウンタ*/
/*
div.slick-counter {
	position: absolute;
	top: 13px;
	left: 13px;
	font-size: 12px;
	color: #fff;
	line-height: 1;
	background-color: rgba(0,0,0,0.6);
	border-radius: 16px;
	padding: 5px 15px;
}
*/
/*詳細情報部分*/
/*
section.car_detail div.info {
	position: absolute;
	top: 0;
	right: 0;
	width: 320px;
	height: auto;
}
section.car_detail div.info div.sp_carinfo {
	display: none;
}
section.car_detail div.info dl {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}
section.car_detail div.info dl dt {
	width: 60px;
	background-color: #F8F3F1;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	padding: 2px 5px;
	margin-right: 10px;
	margin-bottom: 15px;
}
section.car_detail div.info dl dd {
	width: 240px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 15px;
}
*/
/* 支払い総額 */
/*
section.car_detail div.info div.price {
	margin-top: 0;
}
section.car_detail div.info div.price > img {
	display: none;
}
section.car_detail div.info div.price.limit > img {
	display: block;
}
section.car_detail div.info div.price > div {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	background-color: #ED6103;
	padding: 4px 0;
}
section.car_detail div.info div.price.limit > div {
	display: none;
}
section.car_detail div.info div.price > p {
	height: 72px;
	padding-top: 5px;
	color: #F2002D;
	font-size: 52px;
	font-weight: bold;
	font-style: italic;
	background-color: #fff;
}
section.car_detail div.info div.price > p.non {
    font-size: 40px;
}
section.car_detail div.info > div.price > p > span {
	font-size: 18px;
	font-weight: 600;
	color: #333333;
	font-style: normal;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
section.car_detail div.info > div.price > p > span b {
	font-size: 14px;
}
section.car_detail div.info > div.price > p > span:nth-of-type(1) {
	height: 45px;
	margin-left: 8px;
	justify-content: end;
}
section.car_detail div.info > div.price > p > span:nth-of-type(2) {
	font-size: 20px;
	margin-top: 20px;
	margin-left: 16px;
}
section.car_detail ul.price2 > li {
	padding: 8px 0;
}
*/
/*車両価格・諸費用*/
/*section.car_detail ul.price2 > li > table {
	width: 100%;
}
section.car_detail ul.price2 > li > table td:nth-of-type(1) {
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	line-height: 1.2;
	text-align: left;
	vertical-align: middle;
}
section.car_detail ul.price2 > li > table td:nth-of-type(2) {
	font-size: 30px;
	font-weight: bold;
	color: #333333;
	line-height: 1.3;
	text-align: right;
	vertical-align: bottom;
}
section.car_detail ul.price2 > li > table td:nth-of-type(3) {
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	line-height: 1.5;
	text-align: right;
	vertical-align: bottom;
}
*/
/*車の装備 -------------------*/
/*
section.sobi_list {
	width: 100%;
	max-width: 810px;
	margin: 0 auto;
}
section.sobi_list h4.mds {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
	text-align: left;
    border-top: none;
    border-bottom: 4px solid #989898;
    position: relative;
	margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 8px;
}
section.sobi_list h4.mds::before {
    background-image: url(../images/summer_fes/jump_icon_soubi.png);
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 20px;
}

section.sobi_list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
section.sobi_list ul li {
	margin-bottom: 13px;
}
section.sobi_list ul li div {
	height: 60px;
	font-size: 15px;
	color: #BBBBBB;
	font-weight: bold;
	line-height: 1.4;
	background-color: #F4F4F4;
	border: 1px solid #BBBBBB;
	border-radius: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
section.sobi_list ul li div.on {
	color: #ED6103;
	background-color: #fff;
	border: 1px solid #ED6103;
}
section.sobi_list ul li:nth-of-type(1) div::before,
section.sobi_list ul li:nth-of-type(2) div::before,
section.sobi_list ul li:nth-of-type(3) div::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle;
	margin-left: 20px;
	margin-right: 10px;
}
/* スライドドア */
/*
section.sobi_list ul li:nth-of-type(1) div::before {
    background-image: url(../images/car_search/soubi_slide_gray.png);
}
section.sobi_list ul li:nth-of-type(1) div.on::before {
    background-image: url(../images/car_search/soubi_slide_orange.png);
}
*/
/* 衝突軽減ブレーキ */
/*
section.sobi_list ul li:nth-of-type(2) div::before {
    background-image: url(../images/car_search/soubi_brake_gray.png);
}
section.sobi_list ul li:nth-of-type(2) div.on::before {
    background-image: url(../images/car_search/soubi_brake_orange.png);
}

/* プッシュエンジン */
/*
section.sobi_list ul li:nth-of-type(3) div::before {
    background-image: url(../images/car_search/soubi_push_gray.png);
}
section.sobi_list ul li:nth-of-type(3) div.on::before {
    background-image: url(../images/car_search/soubi_push_orange.png);
}
*/
/* 四駆
section.sobi_list ul li:nth-of-type(4) div::before {
    background-image: url(../images/car_search/soubi_4wd_gray.png);
}
section.sobi_list ul li:nth-of-type(4) div.on::before {
    background-image: url(../images/car_search/soubi_4wd_orange.png);
}
 */


/*
section.sobi_list ul li {
	width: 32%;
}
section.sobi_list ul li:nth-of-type(4),
section.sobi_list ul li:nth-of-type(5) {
	width: 48%;
}
section.sobi_list ul li:nth-of-type(4) div,
section.sobi_list ul li:nth-of-type(5) div {
	height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 40px;
	text-align: center;
}
*/
/*衝突軽減ブレーキ注釈*/
/*
section.sobi_list p.kome {
	
	font-size: 13px;
	font-weight: 500;
	color: #333;
	line-height: 1.6;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
} 
section.sobi_list p.kome::before {
	display: inline;
	position: static;
	content: "※";
}
*/
/*基本情報 -------------------*/
/*
section.base {
	width: 100%;
	max-width: 810px;
	margin: 0 auto;
}
section.base h4.mds {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
	text-align: left;
    border-top: none;
    border-bottom: 4px solid #989898;
    position: relative;
	margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 8px;
}
section.base h4.mds::before {
    background-image: url(../images/summer_fes/jump_icon_data.png);
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 20px;
}
section.base > div:nth-of-type(1) {
	display: flex;
}
*/
/*詳細表*/
/*
section.base table {
	margin-bottom: 30px;
	border: 1px solid #BBBBBB;
	overflow: hidden;
}
section.base table:nth-of-type(1) {
	border-right: none;
}
section.base table th {
	width: 190px;
	font-size: 15px;
	font-weight: 500;
	color: #333333;
	line-height: 1.4;
	background-color: #F4F4F4;
	padding: 10px 20px;
	border-bottom: 1px dashed #BBBBBB;
}
section.base table td {
	width: 249px;
	font-size: 15px;
	font-weight: 500;
	color: #333333;
	line-height: 1.4;
	padding: 10px 20px;
	border-bottom: 1px dashed #BBBBBB;
}
section.base table tr:last-of-type th,
section.base table tr:last-of-type td {
	border-bottom: none;
}
section.base table tr.non th {
	background-color: #fff;
	border-bottom: 1px solid transparent;
}
section.base table tr.non td {
	border-right: 1px solid transparent;
	border-bottom: 1px solid transparent;
}
section.base > p {
	font-size: 13px;
}
*/
/*車検切れの注釈*/
/*
section.base > p.aka {
    width: 100%;
	box-sizing: border-box;
    font-size: 15px;
    color: #DB0010;
	text-align: center;
    border: 1px solid #DB0010;
    padding: 5px 20px;
	margin-bottom: 60px;
}
*/
/* 来場予約する */
/*
a.k_formbtn.b1 {
	display: none;
}
a.k_formbtn.b2 {
	display: block !important;
}
a.k_formbtn {
	position: relative;
	display: block;
	width: 90%;
	max-width: 340px;
	margin: 20px auto 40px;
	font-size: 22px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	padding: 16px 0;
	background-color: #FE1626;
	border: 3px solid #FFF;
	border-radius: 30px;
	filter: drop-shadow(0px 5px 0px #999999);
}
a.k_formbtn:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 5px, 0);
}
*/
/*予約で20,000円分クーポンGET！*/
/*
a.k_formbtn p {
    width: max-content;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	font-size: 18px;
	font-weight: bold;
	color: #FE1626;
	line-height: 1.4;
	padding: 0px 10px 0px;
	background-color: #FFF346;
	border-radius: 20px;
}
a.k_formbtn p::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #FFF346 transparent transparent transparent;
	border-width: 6px 3px 0 3px;
}

/*ページを閉じる*/
/*
div.close-btn {
	width: 340px;
	display: block;
	margin: 0 auto;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	text-align: center;
	background-color: #FEEADE;
	padding: 15px 0;
	border-radius: 30px;
	border: 1px solid #ED6103;
	cursor: pointer;
}
div.close-btn::before {
	content: '\f057';
	font-size: 24px;
	font-weight: 900;
	color: #ED6103;
	font-family: "Font Awesome 5 Free";
	margin-right: 10px;
	vertical-align: text-bottom;
}
*/
/*hover*/
/*
div.close-btn:hover {
	color: #ED6103;
}
*/






/* 車両一覧ページ ***************************/
div.shop_browsing_cont {
	/* background-color: #F6F5EF; */
	padding-bottom: 80px;
}
div.shop_browsing_cont > h2 {
	width: 100%;
	background-color: #F8CBB3;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 30px;
	margin-bottom: 60px;
}
div.shop_browsing_cont > h2 > img {
	width: 90%;
	max-width: 600px;
	height: auto;
	margin-bottom: 20px;
}
div.shop_browsing_cont > h2 > p {
	font-size: 20px;
	font-weight: 500;
	color: #333333;
	line-height: 1.6;
}
div.shop_browsing_cont > h2 > p span {
	color: #F00A0A;
	font-weight: 600;
}
/* 豪華特典訴求画像 */
div.present {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
div.present img {
	width: 100%;
	height: auto;
}
/*軽フェスタ特設ページへ戻る*/
a.k_backbtn {
	display: block;
	width: 90%;
	max-width: 360px;
	margin: 40px auto 0;
	font-size: 22px;
	font-weight: bold;
	color: #E95532;
	text-align: center;
	padding: 16px 0;
	background-color: #FEF7D3;
	border: 3px solid #E95532;
	border-radius: 30px;
	filter: drop-shadow(0px 5px 0px #999999);
}
a.k_backbtn:hover {
	filter: drop-shadow(0px 0px 0px #fff) brightness(1.1);
	transform: translate3d(0, 5px, 0);
}





@media screen and (max-width: 1079px) {






/* 車両一覧 ***************************/
ul.car_list {
	width: 90%;
	max-width: 375px;
}
ul.car_list > li {
	width: 100%;
	margin-right: 0px;
}
/*hover*/
ul.car_list > li:hover p.view {
	color: #FFF;
}
ul.car_list > li a > div:first-of-type {

	padding: 10px 14px 15px !important;
}
/*車画像*/
ul.car_list > li div.pic {
/*	background-color: #989898;*/
}
/*価格*/
div.price > p:nth-of-type(2) {
	font-size: min(15vw, 40px);
}
ul.car_list > li a > div:last-of-type {
	padding: 17px 0 25px;

	border-radius: 0 0 10px 10px;
}
ul.car_list > li a > div:last-of-type > h2 {
	font-size: min(4vw, 16px);
}
/*詳細を見る*/
p.view {
	width: 90%;
}

.popup-inner > div.close-btn {
	width: 90%;
	max-width: 340px;
	margin: 0 auto;
}
/* 軽フェスタ特設ページへ戻る */
a.k_backbtn {
	margin: 20px auto 0;
	font-size: min(6vw,22px);
}





/* 車詳細部分 *******************/
/*
.popup-inner > div.close-btn {
	width: 90%;
	max-width: 340px;
	margin: 0 auto;
}

section.car_detail h3 {
	padding: 14px 5%;
	font-size: 22px;
	line-height: 1.4;
	text-align: left;
}
section.car_detail h3 span.kudo {
	font-size: 14px;
}
section.car_detail h3 span:last-of-type {
	font-size: 16px;
}
/*スライダーカウンタ*/
/*
div.slick-counter {
    display: none;
}
*/
/*詳細情報部分*/
/*
section.car_detail div.info div.sp_carinfo {
	display: block;
}
section.car_detail div.info {
	position: static;
	width: 100%;
	height: auto;
	margin-top: 10px;
}
section.car_detail div.info dl {
	width: 95%;
	margin: 30px auto 0;
}
section.car_detail div.info dl dt {
	width: 70px;
	padding: 2px 0px;
}
section.car_detail div.info dl dd {
	width: calc(50% - 80px);
}
section.car_detail div.info dl dd:nth-of-type(1),
section.car_detail div.info dl dd:nth-of-type(2),
section.car_detail div.info dl dd:nth-of-type(7) {
	width: calc(100% - 80px);
}
*/
/* 支払い総額 */
/*
section.car_detail div.info div.price > p {
	padding-left: 5%;
	padding-right: 5%;
	font-size: min(17vw, 70px);
}
section.car_detail div.info div.price > p.non {
	font-size: min(11vw, 50px);
}
section.car_detail div.info > div.price > p > span {
	font-size: 16px;
}
section.car_detail div.info > div.price > p > span b {
	font-size: 12px;
}
section.car_detail div.info > div.price > p > span:nth-of-type(2) {
	font-size: 18px;
}
section.car_detail ul.price2 {
	width: 90%;
	margin: 0 auto;
}
section.car_detail div.info dl {
	margin-top: 15px;
}
*/



/*車の装備 -------------------*/
/*
section.sobi_list {
	width: 100%;
}

section.sobi_list ul {
	width: 90%;
	margin: 0 auto;
}
section.sobi_list ul li div {
	position: relative;
	height: 120px;
	text-align: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding-top: 40px;
	padding-bottom: 10px;
	line-height: 1.6;
}
section.sobi_list ul li:nth-of-type(1) div::before,
section.sobi_list ul li:nth-of-type(2) div::before,
section.sobi_list ul li:nth-of-type(3) div::before {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	margin-left: 0px;
	margin-right: 0px;
}
section.sobi_list ul li:nth-of-type(4),
section.sobi_list ul li:nth-of-type(5) {
	width: 100%;
}
section.sobi_list ul li:nth-of-type(4) div,
section.sobi_list ul li:nth-of-type(5) div {
	padding-top: 0;
	padding-bottom: 0;
}
*/
/*衝突軽減ブレーキ注釈*/
/*
section.sobi_list p.kome {
	width: 90%;
	margin: 0 auto;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	padding-left: 1em;
	text-indent: -1em;
} 
section.sobi_list p.kome::before {
	display: inline;
	position: static;
	content: "※";
}
*/







/*基本情報 -------------------*/
/*
section.base {
	width: 100%;
}
section.base > div:nth-of-type(1) {
	flex-wrap: wrap;
	margin-bottom: 20px;
}
*/
/*詳細表*/
/*
section.base table {
	width: 90%;
	margin: 20px auto 0px;
}
section.base table:nth-of-type(1) {
	border: 1px solid #BBBBBB;
	border-bottom: none;
}
section.base table:nth-of-type(2) {
	border-top: none;
	margin-top: 0;
}
section.base table th {
	width: 128px;
}
section.base table td {
	width: calc(100% - 130px);
}
*/
/*
section.base table tr:last-of-type th:nth-of-type(1),
section.base table tr:last-of-type td:nth-of-type(1) {
	border-bottom: 1px dashed #BBBBBB;
}
section.base table tr.non {
	display: none;
}

section.base > p {
	width: 90%;
	margin: 0 auto;
}
*/
/*車検切れの注釈*/
/*
section.base > p.aka {
	width: 90%;
    text-align: left;
	padding-left: 30px;
}
*/
/* 来場予約する */
/*
a.k_formbtn.b1 {
	display: block !important;
	margin: 20px auto 0px;
	color: #FFF;
}


a.k_formbtn {
	margin: 40px auto 40px;
	font-size: min(6vw,22px);
}
*/
/* 豪華特典訴求画像がある場合の余白設定 */
/*
div.present + a.k_formbtn {
	margin: 10px auto 40px;
}
a.k_formbtn p {
	width: 90%;
	max-width: max-content;
	font-size: min(5vw,18px);
}
*/








/* 車両一覧ページ ***************************/
div.shop_browsing_cont > h2 {
	padding-top: 30px;
	padding-bottom: 20px;
	margin-bottom: 40px;
}
div.shop_browsing_cont > h2 > img {
	margin-bottom: 15px;
}
div.shop_browsing_cont h2 > p {
	font-size: 18px;
}

/* 豪華特典訴求画像 */
div.present {
	width: 100%;
	margin: 0 auto;
}

/*軽フェスタ特設ページへ戻る*/
a.k_backbtn {
	font-size: 18px;
}













}