@charset "UTF-8";

/* ----------------------------------

	車種一覧

---------------------------------- */
.lineupList{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	align-items: stretch;
	padding: 0 15px;
}

.lineupCard{
	list-style: none;
}

.lineupCard__btn{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	color: #fff;
	border: 0;
	border-radius: 18px;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #050F1B;
	background-size: 100% auto;
	text-align: left;
	cursor: pointer;
	overflow: hidden;
	padding: 0px;
	transition: all .4s;
}

.lineupCard__btn:hover{
	transform: translateY(-4px);
	opacity: 0.7;
}

.lineupCard__image{
	position: relative;
	height: 42vw;
	flex-shrink: 0;
}

.lineupCard__image img{
	width: 80px;
	display: block;
	padding-top: 20px;
	padding-left: 10px;
}

.lineupCard__content{
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 16px 20px;
}
.lineupCard__bodyType{
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 12px;
	border: 1px solid #fff;
	border-radius: 5px;
	font-size: 10px;
}

.lineupCard__maker{
	font-size: 10px;
	margin-bottom: 8px;
}

.lineupCard__carName{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 4px;
}

.lineupCard__grade{
	font-size: 12px;
	margin-bottom: 20px;
}

.lineupCard__price div.monthly{
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.lineupCard__price div + div{
	margin-top: 10px;
}

.lineupCard__price dt{
	font-size: 12px;
	font-weight: 700;
}

.lineupCard__price dd{
	font-size: 14px;
	font-weight: 700;
}
.lineupCard__price div.total dd{
	text-align: right;
}
.lineupCard__price div.monthly dd{
	text-align: left;
}
.lineupCard__price div.total dd span{
	font-size: 22px;
}

@media print, screen and (min-width: 768px){
	.lineupList{
		grid-template-columns: repeat(3, 1fr);
		padding-bottom: 40px;
	}
	.lineupCard__image{
		height: 30vw;
	}
}
@media print, screen and (min-width: 960px){
	.lineupList{
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
		max-width: 1290px;
		margin: 0 auto;
		padding: 0 0 40px;
	}
	.lineupCard__image{
		height: 210px;
	}
	.lineupCard__image img {
    width: 120px;
    padding-top: 30px;
    padding-left: 30px;
	}
	.lineupCard__bodyType {
    top: 25px;
    right: 25px;
    padding: 2px 12px;
    font-size: 12px;
	}

	.lineupCard__maker {
    font-size: 14px;
	}
	.lineupCard__carName {
    font-size: 26px;
	}
	.lineupCard__grade {
    font-size: 14px;
	}
	.lineupCard__price dt {
    font-size: 14px;
	}
	.lineupCard__price div.total dd span {
    font-size: 32px;
	}
	.lineupCard__price div.monthly dd {
    font-size: 18px;
		font-weight: 500;
	}
}
@media print, screen and (min-width: 1290px){
	.lineupList{
		gap: 30px;
	}
	.lineupCard__image{
		height: 250px;
	}
	.lineupCard__content{
		padding: 0 30px 20px;
	}
	.lineupCard__carName {
    font-size: 32px;
	}
	.lineupCard__grade {
    font-size: 16px;
	}
	.lineupCard__price div.total dd span {
    font-size: 42px;
	}
	.lineupCard__price div.monthly dd {
    font-size: 22px;
	}
}
