@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
#main .vehiclesList {
	padding-top: 4.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 6rem 5.8rem;
}
#main .vehiclesList li {
	padding: 2.9rem 0 0;
	width: calc((100% - 5.8rem) / 2);
	border-top: 2px solid #EC8DB8;
}
#main .vehiclesList h2 {
	margin-bottom: 2.3rem;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #EC8DB8;
	text-align: center;
}
#main .vehiclesList h2 .imgSpan {
	aspect-ratio: 362 / 157;
	display: block;
	max-width: 35.9rem;
	margin: -3.5rem auto -2.1rem;
	position: relative;
}
#main .vehiclesList h2 .imgSpan img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#main table {
	width: 100%;
	border-collapse: collapse;
	font-feature-settings: "palt";
}
#main table th {
	width: 46.5%;
	padding: 2rem 1rem 2rem 3rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
#main table td {
	padding: 2rem 2.5rem 2rem 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-align: right;
	vertical-align: top;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
#main table td:first-of-type {
	text-align: left;
	width: 38%;
	padding-right: 1rem;
}
#main li:not(.style) table tr:last-child td,
#main li:not(.style) table tr:last-child th {
	border-bottom: none;
}
#main table .borderNo td,
#main table .borderNo th {
	border-bottom-color: #fff;
}
#main table .borderNo2 td,
#main table .borderNo2 th {
	border-top-color: #fff;
}

@media all and (max-width: 896px) {
	#main .vehiclesList {
		flex-direction: column;
		gap: 6rem 0;
	}
	#main .vehiclesList li {
		width: 100%;
	}
	#main table th {
		width: 44.5%;
		padding-left: 1rem;
	}
	#main table td {
		padding-right: 1rem;
	}
	#main table tr:last-child td,
	#main table tr:last-child th {
		border-bottom: none !important;
	}
	#main table td:first-of-type {
		width: 39%;
	}
}