




/* 共通部分 ***************************/
section * {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

/*見出し*/
section h2 {
	font-size: 38px;
	font-weight: 600;
	color: #F2002D;
	text-align: center;
	position: relative;
}
section h2 span {
	position: absolute;
	top: -62px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 508px;
	height: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #F2002D;
	border-radius: 4px;
	font-size: 22px;
	font-weight: 600;
	color: #FFFF00;
}
section h2 span::after {
	display: block;
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #F2002D transparent transparent transparent;
	border-width: 7px 8px 0 8px;
}
section h2 i::before {
	font-size: 38px;
	color: #F2002D;
	margin-right: 17px;
}







/* TOPビジュアル ***************************/
section.top_visual {
	width: 100%;
	height: auto;
	background-color: #FFD1C0;
	text-align: center;
}
section.top_visual img {
	width: 100%;
	max-width: 1140px;
	height: auto;
}







/* ジャンプリンクボタン群 ***************************/
section.link_btns {
	padding-top: 36px;
	padding-bottom: 75px;
}
section.link_btns > div {
	width: 600px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
section.link_btns a {
	display: block;
	width: 280px;
	height: 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	color: #F2002D;
	line-height: 1.4;
	background-color: #FFF;
	border-radius: 6px;
	padding: 0 16px;
	position: relative;
	box-shadow: inset 0px 0px 0px 2px #F2002D;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
section.link_btns a::before {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: '\f13a';
	font-size: 18px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}
section.link_btns a::after {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.4);
}
/*hover*/
section.link_btns a:hover {
	filter: unset;
}
section.link_btns a:hover::after {
	display: block;
}







/* 未使用車一覧 ***************************/
section.car_search_list {
	width: 100%;
	padding-top: 40px;
	padding-bottom: 30px;
	background-color: #FFEAEE;
}





/* 一覧部分 */
section.car_search_list > div {
	width: 100%;
	max-width: 926px;
	margin: 60px auto 0;
}
section.car_search_list ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 52px;
}
section.car_search_list ul li {
	width: 306px;
	margin-right: 4px;
	margin-bottom: 8px;
}
section.car_search_list ul li:nth-of-type(3n) {
	margin-right: 0;
}
section.car_search_list ul li a {
	display: block;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, .2));
}
/*hover*/
section.car_search_list ul li a:hover img {
	opacity: 1;
}
section.car_search_list ul li a:hover {
	filter: brightness(1.1);
	transform: translate3d(0, 1px, 0);
}

/*車両画像*/
section.car_search_list ul li a > div.pic {
	width: 100%;
	height: 232px;
	text-align: center;
	position: relative;
}
/*目玉車用フレーム*/
section.car_search_list ul li a > div.pic::after {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/car_search/kfes_frame2025.png);
	content: '';
	display: none;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
section.car_search_list ul li a > div.pic img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*「WEB限定」「チョイノリ」*/
section.car_search_list ul li a > div.pic > p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 150px;
	background-color: #ED6103;
	padding: 5px 0;
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
	line-height:1;
	text-align: center;
}

/*車両情報*/
section.car_search_list ul li a > div.name {
	background-color: #FFF;
	padding: 15px 16px;
}
section.car_search_list ul li a > div.name > span {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color:#1874E8
}
section.car_search_list ul li a > div.name > p {
	height: 32px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 600;
	color: #1874E8;
}
section.car_search_list ul li a > div.name > p:nth-of-type(1) {
	font-size: 20px;
}
section.car_search_list ul li a > div.name > p:nth-of-type(2) {
	font-size: 19px;
}
/*価格*/
div.name > div.price {
	color: #F2002D;
	font-weight: 600;
	border-top: 2px solid #FEEADE;
	border-bottom: 2px solid #FEEADE;
	margin-top: 10px;
}
div.name > div.price > p {
	position: relative;
	text-align: right;
	line-height: 1.4;
}
div.name > div.price > p > b {
	display: inline-block;
	font-size: 50px;
	font-style: italic;
}
div.name > div.price > p > span {
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	width: 45px;
	margin-left: 5px;
}
div.name > div.price > p > span b {
	font-size: 22px;
	font-weight: 500;
}
div.name > div.price > p::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-image: url(../images/car_search/price_text.png);
	content: '';
	display: inline-block;
	width: 77px;
	height: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
}
div.name > dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 8px;
}
div.name > dl dt {
	width: 50%;
	font-size: 19px;
	font-weight: 500;
	color: #333333;
	line-height: 30px;
}
div.name > dl dd {
	width: 50%;
	font-size: 19px;
	font-weight: 500;
	color: #333333;
	text-align: right;
	line-height: 30px;
}
div.name > dl dd span {
	font-size: 24px;
	padding-right: 5px;
}

/* 来店予約ボタン */
section.car_search_list a.reserve {
    display: block;
    width: 584px;
    margin: 0 auto 60px;
    filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, .4));
}
section.car_search_list a.reserve img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 980px) {

	section.car_search_list > div {
		width: 100%;
		max-width: 616px;
	}
	section.car_search_list ul {
		margin-top: 33px;
	}
	section.car_search_list ul li:nth-of-type(odd) {
		margin-right: 2px;
	}
	section.car_search_list ul li:nth-of-type(2n) {
		margin-right: 0;
	}

}/* max-width: 980px */

@media screen and (max-width: 680px) {

	section.car_search_list {
		padding-top: 2px;
		padding-bottom: 30px;
	}
	section.car_search_list > div {
		width: calc(100% - 4px);
	}
	section.car_search_list ul li {
		width: calc((100% - 2px) / 2);
		margin-right: 0;
	}

	/*車両画像*/
	section.car_search_list ul li a > div.pic {
		height: 37vw;
	}
	/*車両情報*/
	section.car_search_list ul li a > div.name {
		padding: 7px 9px;
	}
	section.car_search_list ul li a > div.name > span {
		font-size: min(3.5vw, 12px);
	}
	section.car_search_list ul li a > div.name > p {
		height: 1.4em;
	}
	section.car_search_list ul li a > div.name > p:nth-of-type(1) {
		font-size: min(4vw,18px);
	}
	section.car_search_list ul li a > div.name > p:nth-of-type(2) {
		font-size: min(3.5vw,16px);
	}
	/*価格*/
	div.name > div.price {
		margin-top: 5px;
	}
	div.name > div.price > p {
		padding-top: 20px;
	}
	div.name > div.price > p > b {
		font-size: min(11vw,42px);
	}
	div.name > div.price > p > span {
		width: 35px;
		font-size: 12px;
	}
	div.name > div.price > p > span b {
		font-size: 16px;
	}
	div.name > div.price > p::before {
		width: 58px;
		height: 20px;
		top: 6px;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	div.name > dl dt {
		font-size: min(4vw,16px);
	}
	div.name > dl dd {
		font-size: min(3vw,16px);
	}
	div.name > dl dd span {
		font-size: min(5vw,24px);
		padding-right: 3px;
	}

}/* max-width: 680px */



a#unused {
	display: block;
	padding-top: 24px;
	margin-top: -24px;
}


/* 中古車一覧 ***************************/
section.car_search_list.used {
	/* margin-top: 104px; */
	margin-top: 0;
	margin-bottom: 33px;
}


a#used {
	display: block;
	padding-top: 24px;
	margin-top: 80px;
}










/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■*/
@media screen and (max-width: 1079px) {







/* 共通部分 ***************************/
/*見出し*/
section h2 {
	font-size: 26px;
	padding-top: 37px;
}
section h2 span {
	width: 90%;
	max-width: 324px;
	height: 28px;
	font-size: min(4vw, 14px);
	top: -13px;
}
section h2 i::before {
	font-size: 26px;
	margin-right: 9px;
}








/* TOPビジュアル ***************************/
section.top_visual img {
	max-width: 800px;
}






/* ジャンプリンクボタン群 ***************************/
section.link_btns {
	padding-top: 18px;
	padding-bottom: 50px;
}
section.link_btns > div {
	width: 90%;
	max-width: 600px;
}
section.link_btns a {
	width: 48%;
	height: 66px;
	padding: 0 32px 0 10px;
	font-size: min(5vw, 18px);
}
section.link_btns a::before {
	right: 12px;
}







/* 未使用車一覧 ***************************/
section.car_search_list {
	padding-top: 0px;
	width: 100%;
	padding-bottom: 30px;
	background-color: #FFEAEE;
}

a#unused {
	padding-top: 76px;
	margin-top: -76px;
}
/* 来店予約ボタン */
section.car_search_list a.reserve {
	width: 90%;
	max-width: 400px;
	margin-bottom: 20px;
}




/* 中古車一覧 ***************************/
section.car_search_list.used {
	margin-top: 0;
}

a#used {
	padding-top: 76px;
	margin-top: 0px;
}






/* 専用SPフッター固定メニュー ***************************/
div.kessan_footer {
	width: 90%;
	max-width: 400px;
	opacity: 0.0;
	visibility: hidden;
	transition: 0.4s;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 0;
	z-index: 2;
}
div.kessan_footer.is-active {
	opacity: 1.0;
	visibility: visible;
}
div.kessan_footer img {
	width: 100%;
	height: auto;
}






/* SPフッター調整用 ***************************/
footer p.copy {
	padding-bottom: min(24vw, 100px) !important;
}




}
/*■■■■■■■■■■■■■■ sp ■■■■■■■■■■■■■■*/