@charset "UTF-8";

/*--------------------------------------------------------------------
vehicle.html
vehicle.css
--------------------------------------------------------------------*/

article section:not(:first-of-type) { margin-top: 55px; }

/*------------vehicle---------------------------------------------------------------*/
/*------------safety------------------------------------------------*/
#vehicle #safety ul {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}
/*------------keepList------------------------------------------------*/
#vehicle #keepList {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 25px;
}
#vehicle #keepList .keep { width: calc((100% - 25px * 2) / 3); }
#vehicle #keepList .keep > dl > dt {
	margin-top: 0.5em;
	line-height: 1.2;
	font-family: var(--mincho);
	font-feature-settings: "palt" 1;
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-orange);
}
#vehicle #keepList .keep > dl > dd { text-align: right; }
#vehicle #keepList .keep > dl > dd dl {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	width: 40%;
	min-width: 100px;
	margin-left: auto;
}
/*------------spec------------------------------------------------*/
#vehicle #spec {
	width: 80%;
	max-width: 400px;
	margin: 1.5em auto 0;
}
#vehicle #spec a {
	position: relative;
	display: block;
	padding: 0.5em 1em;
	background-color: var(--co-orange);
	text-align: center;
	font-family: var(--mincho);
	font-feature-settings: "palt" 1;
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-white);
}
#vehicle #spec a::after {
	position: absolute;
	display: block;
	content: "";
	width: 13px;
	height: 12px;
	background: url("../img/link_a.png") no-repeat left top;
	top: 50%;
	right: 0.5em;
	transform: var(--transformY);
}

@media (max-width: 860px) {
	/*------------keepList------------------------------------------------*/
	#vehicle #keepList .keep { width: calc((100% - 25px) / 2); }
	#vehicle #keepList .keep img { width: 100%; }
}
@media (max-width: 480px) {
	/*------------safety------------------------------------------------*/
	#vehicle #safety ul { flex-wrap: wrap; }
	#vehicle #safety ul li { width: calc((100% - 15px) / 2); }
	/*------------keepList------------------------------------------------*/
	#vehicle #keepList .keep { width: 100%; }
}