@charset "utf-8"; /*

車種一覧 | CAR

/*=======================================================

支払い方法選択

-------------------------------------------------------*/
.paymentSelection{
	text-align: center;
	padding: 20px 15px 0;
	position: relative;
	display: flex;
}

.paymentSelection li{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	transition: all .4s;
	/* color: #fff; */
	background: #fff;
	color: #fff;
	color: #000;
	border-top: 1px solid #e7e4e4;
}
.paymentSelection li.open{
	border-bottom: none;
	background: #f5f5f5;
}
.paymentSelection li:hover{
	opacity: 0.6;
	cursor: pointer;
}
.paymentSelection li.open:hover{
	opacity: 1;
	cursor: default;
}
.paymentSelection li p{
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	transition: all .4s;
	padding-bottom: 5px;
}
.paymentSelection li.open p{
	border-bottom: 4px solid var(--color-primary);
}
.paymentSelection li:hover p{
	color: var(--color-primary);
}
.paymentSelection li.open:hover p{
	color: #000;
}
.paymentSelection li:first-child{
	border-left: 1px solid #e7e4e4;
	border-radius: 10px 0 0 0;
}
.paymentSelection li:last-child{
	border-right: 1px solid #e7e4e4;
	border-left: 1px solid #e7e4e4;
	border-radius: 0 10px 0 0;
}
/* .paymentSelection li.open:first-child{
	background: #fff;
}
.paymentSelection li.open:last-child{
	background: #fff;
} */

.normalCarListWrap,
.dinersCarlistWrap{
	height: 0;
}


.normalCarListWrap.open,
.dinersCarlistWrap.open{
	height: 100%;
}

.dinersCarlistWrap{
	padding-top: 20px;
}

.secMerit ul li{
	background: #fff;
}


@media screen and (min-width: 960px){
	.paymentSelection{
		max-width: 1060px;
		margin: 50px auto 0;
		padding: 20px 30px 0;
	}
	.paymentSelection li{
		padding: 15px 0;
	}
	.paymentSelection li p{
		font-size: 18px;
	}
	.dinersCarlistWrap{
		padding-top: 40px;
	}
	.secMerit{
		padding-bottom: 0;
	}
	.secMerit ul li{
		padding: 40px 25px 35px;
	}
}

/*=======================================================

車種一覧

-------------------------------------------------------*/
.carListOuter{
	background: #f5f5f5;
	padding: 10px 10px 20px;
	margin-bottom: 30px;
}
.carlistWrap li {
	background: #fff;
}

@media screen and (min-width: 960px){
	.carListOuter{
		padding: 10px 0px 60px;
		margin-bottom: 50px;
	}
}


/*=======================================================

終売車種

-------------------------------------------------------*/
.secFinCarList{
	padding: 10px 10px 20px;
  margin-bottom: 30px;
}
.secFinCarList h2{
	width: 320px;
	margin: 0 auto;
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	border: 1px solid var(--color-primary);
	position: relative;
	transition: all .4s;
}
.secFinCarList h2:hover{
	cursor: pointer;
	opacity: 0.4;
}
.secFinCarList h2::after{
	position: absolute;
	content:"";
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	transform:rotate(135deg);
	transition: all .4s;
}
.secFinCarList h2.open::after{
	transform:rotate(-45deg);
}
.secFinCarList .carlistBox{
	display: none;
}
@media screen and (min-width: 960px){
	.secFinCarList{
		width: 960px;
		padding:0px 25px;
		margin:0 auto 50px;
		border: 1px solid var(--color-primary);
	}
	.secFinCarList h2{
		width: 100%;
		border: none;
		line-height: 70px;
		font-size: 18px;
	}
	.secFinCarList h2.open{
		border-bottom: none;
	}
	.secFinCarList .carlistBox{
		padding-bottom: 40px;
	}
}


/*=======================================================

おすすめ車種

-------------------------------------------------------*/
.recommendOuter {
	overflow-x: scroll;
	width: 100%;
	padding: 0;
	padding-bottom: 10px;
	margin: 0 auto;
	max-width: 1220px;
}
.recommendOuter .carlistWrap{
	width: 600px;
	display: flex;
	padding-top: 0;
}
.recommendOuter .carlistWrap li {
	width: 168px;
}
@media screen and (min-width: 960px){
	.recommendOuter {
		overflow-x: hidden;
	}
	.recommendOuter .carlistWrap{
		width: 960px;
	}
	.recommendOuter .carlistWrap li {
		width: 30.83%;
		padding-top: 0;
		margin-top: 10px;
	}
}
