@charset "UTF-8";

/* ==========================================================
   車両展示見どころ紹介タイム バナー
   ========================================================== */

.highlight_banner {
	position: relative;
	border: 2px solid #e6003c;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	margin-top: 20px;
}

.highlight_banner_bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/nagoya/exhibit_vehicles_technologies/img_highlight_bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 0;
}

.highlight_banner_inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px;
	text-align: center;
}

.highlight_banner_head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.highlight_banner_ttl {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 900;
	font-size: 18px;
	line-height: 1.4;
	color: #000;
	margin: 0;
}

.highlight_banner_ttl i {
	color: #e6003c;
	font-size: 18px;
}

.highlight_banner_tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e6003c;
	color: #fff;
	font-weight: 900;
	font-size: 14px;
	line-height: 1.8;
	padding: 4px 10px;
	border-radius: 5px;
	white-space: nowrap;
}

.highlight_banner_txt {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
}

.highlight_banner_txt p {
	margin: 0;
}

.highlight_banner_txt .marker {
	font-weight: 700;
	background: linear-gradient(transparent 60%, #fbe840 60%);
}

@media screen and (max-width: 600px) {
	.highlight_banner_ttl {
		font-size: 16px;
	}

	.highlight_banner_txt {
		font-size: 14px;
		text-align: left;
	}
}

/* ==========================================================
   新車・新技術搭載車両一覧 カード
   ========================================================== */

.vehicle_cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.vehicle_card {
	width: calc((100% - 60px) / 3);
	max-width: 370px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.vehicle_card_img {
	width: 100%;
	aspect-ratio: 370 / 210;
	background: #fff;
	overflow: hidden;
	margin: 0;
}

.vehicle_card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vehicle_card_body {
	background: #fff7f8;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	border-radius: 0 0 10px 10px;
}

/* メーカー名 / 車種名 */
.vehicle_card_name {
	display: flex;
	flex-direction: column;
	line-height: 1.6;
}

.vehicle_card_maker {
	font-weight: 700;
	font-size: 16px;
	color: #a2a2a2;
	margin: 0;
}

.vehicle_card_model {
	font-weight: 700;
	font-size: 18px;
	color: #000;
	margin: 0;
}

/* 見どころ紹介タイム */
.vehicle_card_event {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.vehicle_card_event_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: #e6003c;
	color: #fff;
	font-weight: 900;
	font-size: 16px;
	line-height: 1.4;
	padding: 5px 20px;
	border-radius: 5px;
	margin: 0;
	text-align: center;
}

.vehicle_card_event_ttl i {
	font-size: 14px;
}

.vehicle_card_event_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vehicle_card_event_list li {
	display: flex;
	align-items: center;
	line-height: 1.8;
	white-space: nowrap;
}

.en .vehicle_card_event_list li {
	justify-content: space-between;
}

.vehicle_card_event_list .num {
	font-family: "Outfit", "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 20px;
}

.vehicle_card_event_list .unit {
	font-size: 14px;
}

.vehicle_card_event_list .unit.tight {
	letter-spacing: -0.4em;
}

.vehicle_card_event_list .time {
	font-family: "Outfit", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #e6003c;
	margin-left: 4px;
}

/* 英語ページのみ個別調整 */
.en .vehicle_card_event_list .num {
	font-size: clamp(16px, 1.5vw, 18px);
}

.en .vehicle_card_event_list .time {
	font-size: clamp(16px, 1.5vw, 20px);
}

/* ==========================================================
	レスポンシブ対応
   ========================================================== */

@media screen and (max-width: 980px) {
	.vehicle_cards {
		gap: 20px;
	}

	.vehicle_card {
		width: calc((100% - 20px) / 2);
	}

	.en .vehicle_card_event_list .num {
		font-size: clamp(14px, 2vw, 18px);
	}

	.en .vehicle_card_event_list .time {
		font-size: clamp(14px, 2vw, 18px);
	}
}

@media screen and (max-width: 600px) {
	.vehicle_cards {
		gap: 20px;
	}

	.vehicle_card {
		width: 100%;
		max-width: 100%;
	}

	.en .vehicle_card_event_list li {
		justify-content: flex-start;
		gap: 10px;
	}

	.en .vehicle_card_event_list .num {
		font-size: clamp(14px, 4vw, 18px);
	}

	.en .vehicle_card_event_list .time {
		font-size: clamp(16px, 4vw, 20px);
	}
}