
/* ボディタイプから探す -------------------*/
.type_icons {
	background: #FFA42A;
	padding: 50px 0;
}
.type_icons > h2 {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 30px;
}
.type_icons > h2::before {
	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: #FFF;
    vertical-align: middle;
	margin-right: 5px;
}
ol.search_list {
	width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
ol.search_list > li {
	width: 168px;
}
ol.search_list > li a {
	width: 100%;
	display: block;
	background-color: #FFF;
	padding: 15px 10px 10px;
	border-radius: 5px;
	text-align: center;
	filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, .2));
}
ol.search_list > li a img {
	width: 100%;
	max-width: 90px;
	height: auto;
}
ol.search_list > li a p {
	font-size: 20px;
	font-weight: bold;
	color: #FFA42A;
	margin-top: 10px;
}
/* hover
ol.search_list > li a:hover {
	opacity: 1;
	filter: brightness(1.15);
	transform: translate3d(0, 3px, 0);
} */

/* 一覧部分 -------------------*/
section.car_section {
	padding-top: 50px;
	margin-bottom: 50px;
}
section.car_section > h3 {
	position: relative;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #707070;
	margin-bottom: 54px;
	padding-bottom: 20px;
	line-height: 1.5;
}
section.car_section > h3::after {
	content: '';
	display: inline-block;
	width: 100px;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translate(-50%);
	background-color: #FFA42A;
}
.car_list {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start;
	margin-bottom: 30px;
}
.car_item {
	width: 340px;
	background: #FFF;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid #FFA42A;
}
.car_item .car_info {
	padding: 16px 16px 0px;
	background: #FFF;
}
.car_item .car_info > img {
	width: 100%;
	height: auto;
	display: block;
}
/* 価格が表示できない場合 */
.car_item .car_info	.noprice {
	height: 92px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	color: #FF4500;
	text-align: center;
}
/* 支払総額 */
.car_item .car_info	.car_price {
	height: 92px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 50px;
	font-weight: bold;
	color: #FF4500;
	vertical-align: baseline;
}
.car_item .car_info	.car_price .price_label {
	display: inline-block;
	background: #FFA42A;
	color: #FFF;
	font-size: 17px;
	text-align: center;
	line-height: 1.3;
	padding: 7px 8px 5px;
	margin-right: 10px;
}
/* (税込) */
.car_item .car_info	.car_price .price_label small {
	display: block;
	font-size: 14px;
}
.car_item .car_info	.car_price > b {
	font-size: 20px;
	padding-top: 15px;
}
/* おすすめポイントはこちら */
.car_item .g_point {
	position: relative;
	display: block;
	width: 300px;
	margin: 0 auto 15px;
	font-size: 18px;
	font-weight: bold;
	color: #FF6665;
	text-align: center;
	padding: 12px 0;
	border-radius: 30px;
	background-color: #FFF8F8;
	border: 2px solid #FF6665;
	filter: drop-shadow(0 3px 3px rgb(0 0 0 / .2));
}
.car_item .g_point::after {
	position: absolute;
	top: 40%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.2s;
	border-top: 2px solid #FF6665;
	border-right: 2px solid #FF6665;
}
/* 在庫一覧を見る */
.car_item .tolist {
	position: relative;
	display: block;
	/* width: 95%; */
	width: 300px;
	margin: 0 auto 15px;
	font-size: 18px;
	font-weight: bold;
	color: #371E1E;
	text-align: center;
	padding: 12px 0;
	border-radius: 30px;
	background-color: #FFF;
	border: 2px solid #EFBE0A;
	filter: drop-shadow(0 3px 3px rgb(0 0 0 / .2));
}
.car_item .tolist::after {
	position: absolute;
	top: 40%;
	right: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	content: "";
	vertical-align: middle;
	width: 8px;
	height: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition: all 0.2s;
	border-top: 2px solid #371E1E;
	border-right: 2px solid #371E1E;
}
/* hover */
.car_item .g_point:hover,
.car_item .tolist:hover {
	filter: drop-shadow(0 0 0 rgb(0 0 0 / .2));
}
.car_item .g_point:hover::after,
.car_item .tolist:hover::after {
	right: 15px;
}
/* hover
.car_item a:hover {
	opacity: 0.8;
	-webkit-transition: ease .3s;
	transition: ease .3s;
	filter: drop-shadow(0 0 0 rgb(0 0 0 / .2));
}
 */
/* 詳細はこちら */
span.car_detail_link {
	display: block;
	background: #FFA42A;
	font-size: 18px;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}
span.car_detail_link::after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 18px;
	background-image: url(../images/carsim/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	margin-left: 5px;
}

/* 来店予約・お問い合わせはこちら */
section.car_section a.btn {
	width: 360px;
}
section.car_section a.btn:before {
	display: inline-block;
	content: unset;
	font-family: "Font Awesome 5 Free";
	font-size: 24px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 54px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
/* TOPへ戻る */
.top_btn {
	display: block;
	width: 120px;
	padding: 30px 0;
	text-align: center;
	background: #FFA42A;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	border-radius: 5px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 4;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: opacity 0.3s;
}
.top_btn:hover {
	opacity: 0.8;
}
/*■■■■■■■■■■■■■■sp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (max-width: 1080px) {
*{}
*{}
/*■■■■■■■■■■■■■■sp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* ボディタイプから探す -------------------*/
.type_icons {

	background: #FFA42A;
	padding: 50px 0;
}
.type_icons > h2 {

	text-align: center;
	font-size: 24px;
	font-weight: 500;
	color: #FFF;
	margin-bottom: 30px;
}
.type_icons > h2::before {

	content: "\f002";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	color: #FFF;
    vertical-align: middle;
	margin-right: 5px;
}
ol.search_list {
	width: 90%;
	max-width: 750px;
	flex-wrap: wrap;

	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
ol.search_list > li {
	width: 48%;
	margin-bottom: 10px;
}
ol.search_list > li a {

	width: 100%;
	display: block;
	background-color: #FFF;
	padding: 15px 10px 10px;
	border-radius: 5px;
	text-align: center;
	filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, .2));
}
ol.search_list > li a img {

	width: 100%;
	max-width: 90px;
	height: auto;
}
ol.search_list > li a p {

	font-size: 20px;
	font-weight: bold;
	color: #FFA42A;
	margin-top: 10px;
}

/* 一覧部分 -------------------*/
section.car_section {
	width: 90%;
	margin: 0 auto 50px;
}
section.car_section > h3 {
	font-size: min(6.5vw,24px);
}
.car_list {
	justify-content: center;
	gap: 10px;
}
.car_item {
	width: 100%;
	max-width: 340px;
}
/* 価格が表示できない場合 */
.car_item .car_info	.noprice {
	font-size: min(6vw,18px);
}	
/* 支払総額 */
.car_item .car_info	.car_price {
	font-size: min(13vw,50px);
}
.car_item .car_info	.car_price .price_label {
	margin-right: 5px;
	font-size: min(4.5vw,16px);
}
/* (税込) */
.car_item .car_info	.car_price .price_label small {
	font-size: min(4vw,14px);
}
.car_item .car_info	.car_price > b {
	font-size: min(5vw,20px);
}
/* おすすめポイントはこちら */
.car_item .g_point {
	width: 95%;
	font-size: min(5vw,18px);
}
/* 在庫一覧を見る */
.car_item .tolist {
	width: 95%;
	font-size: min(4vw,18px);
}
/* 来店予約・お問い合わせはこちら */
section.car_section a.btn {
	width: 100%;
	max-width: 360px;
	padding: 15px 0;
	font-size: min(5vw,18px);
}
section.car_section a.btn:after {
	right: 15px;
}
/* TOPへ戻る */
.top_btn {
	padding: 10px 0;
	right: 10px;
	bottom: 10px;
	width: 50px;
	font-size: 12px;
}
 /*
.top_btn {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	border-radius: 0;
	right: 0px;
	bottom: 0px;
}
 */

/*■■■■■■■■■■■■■■sp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
}
/*■■■■■■■■■■■■■■sp■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/