html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

.lr-main {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== ヒーロー ===== */

.lr-hero {
	position: relative;
	color: #fff;
	overflow: hidden;
}

.lr-hero__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 8;
}

.lr-hero__video,
.lr-hero__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lr-hero__video {
	transition: opacity 0.3s ease;
}

.lr-hero__video.is-fading {
	opacity: 0;
}

.lr-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

.lr-hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0.35);
	padding: 0;
	cursor: pointer;
}

.lr-hero__dot.is-active {
	background: #fff;
}

.lr-hero__placeholder {
	background: linear-gradient(135deg, #8a8a86, #a8a8a2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lr-hero__play-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6em;
}

.lr-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.15);
}

.lr-hero__catch {
	font-size: 2em;
	font-weight: 700;
	margin: 0 0 1em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.lr-hero__search {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.92);
	border-radius: var(--lr-radius-card);
	padding: 14px;
	max-width: 720px;
}

.lr-hero__select {
	padding: 10px 12px;
	border-radius: var(--lr-radius-button);
	border: 1px solid var(--lr-color-border);
	color: var(--lr-color-text);
	background: #fff;
}

.lr-hero__pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.lr-hero__pill {
	padding: 6px 14px;
	border-radius: var(--lr-radius-button);
	background: var(--lr-color-bg-alt);
	color: var(--lr-color-primary-dark);
	font-size: 0.85em;
	font-weight: 700;
}

.lr-hero__submit {
	white-space: nowrap;
}

/* ===== 紹介文 ===== */

.lr-intro {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	padding: 60px 0;
}

.lr-intro__badges {
	list-style: none;
	margin: 2em 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.lr-intro__badge {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lr-intro__badge-title {
	font-weight: 700;
	color: var(--lr-color-primary-dark);
}

.lr-intro__badge-desc {
	font-size: 0.85em;
	color: var(--lr-color-text-muted);
}

/* ===== 車種一覧 ===== */

.lr-lineup {
	padding: 40px 0;
}

.lr-lineup__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
	justify-content: center;
	gap: 20px;
}

.lr-vehicle-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: var(--lr-radius-card);
	overflow: hidden;
	border: 1px solid var(--lr-color-border);
	transition: transform 0.2s ease;
}

.lr-vehicle-card:hover {
	transform: translateY(-4px);
}

.lr-vehicle-card__image {
	position: relative;
}

.lr-vehicle-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}

.lr-vehicle-card__badge {
	position: absolute;
	top: 10px;
	right: 10px;
}

.lr-vehicle-card__body {
	padding: 14px 16px;
}

.lr-vehicle-card__maker {
	font-size: 0.75em;
	color: var(--lr-color-text-muted);
}

.lr-vehicle-card__title {
	margin: 0.2em 0;
	font-size: 1.1em;
}

.lr-vehicle-card__price {
	margin: 0;
	font-weight: 700;
	color: var(--lr-color-primary-dark);
}

/* ===== 料金・保険プラン ===== */

.lr-pricing {
	padding: 40px 0;
}

.lr-pricing__table-wrap {
	overflow-x: auto;
	margin-bottom: 32px;
}

.lr-pricing__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--lr-radius-card);
	overflow: hidden;
}

.lr-pricing__table th,
.lr-pricing__table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--lr-color-border);
	text-align: center;
	white-space: nowrap;
}

.lr-pricing__table thead th {
	background: var(--lr-color-secondary);
	color: #fff;
}

.lr-pricing__note {
	font-size: 0.8em;
	color: var(--lr-color-text-muted);
}

/* ===== オプション料金 ===== */

.lr-options {
	padding: 40px 0;
}

.lr-options__lead {
	color: var(--lr-color-text-muted);
	margin-bottom: 1.2em;
}

.lr-options__table-wrap {
	overflow-x: auto;
}

.lr-options__table {
	width: 100%;
	max-width: 480px;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--lr-radius-card);
	overflow: hidden;
}

.lr-options__table th,
.lr-options__table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--lr-color-border);
	text-align: left;
}

.lr-options__table thead th {
	background: var(--lr-color-secondary);
	color: #fff;
}

.lr-options__table td:last-child {
	font-weight: 700;
	color: var(--lr-color-primary-dark);
}

.lr-options__layout {
	display: grid;
	grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.lr-equipment-slider__track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
	-webkit-overflow-scrolling: touch;
}

.lr-equipment-slider__item {
	flex: 0 0 auto;
	width: 200px;
	scroll-snap-align: start;
}

.lr-equipment-slider__item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: var(--lr-radius-card);
	display: block;
}

.lr-equipment-slider__empty {
	max-width: 320px;
}

.lr-equipment-slider__empty p {
	margin-top: 0.6em;
	font-size: 0.85em;
	color: var(--lr-color-text-muted);
	text-align: center;
}

@media (max-width: 780px) {
	.lr-options__layout {
		grid-template-columns: 1fr;
	}

	.lr-options__table-wrap {
		max-width: none;
	}
}

.lr-pricing__insurance {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.lr-plan-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--lr-color-border);
	border-radius: var(--lr-radius-card);
	padding: 24px 20px;
	text-align: center;
}

.lr-plan-card.is-recommended {
	border: 2px solid var(--lr-color-primary);
}

.lr-plan-card__ribbon {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--lr-color-primary);
	color: #fff;
}

.lr-plan-card__title {
	margin: 0.3em 0;
}

.lr-plan-card__price {
	font-size: 1.2em;
	font-weight: 700;
	color: var(--lr-color-primary-dark);
	margin: 0;
}

/* ===== ご予約について ===== */

.lr-booking-steps {
	padding: 40px 0;
	text-align: center;
}

.lr-booking-steps__lead {
	color: var(--lr-color-text-muted);
	margin-bottom: 2em;
}

.lr-booking-steps__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
	margin: 0 0 2em;
	padding: 0;
}

.lr-booking-steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--lr-color-bg-alt);
	color: var(--lr-color-primary-dark);
	font-weight: 700;
	margin-bottom: 10px;
}

.lr-booking-steps__title {
	margin: 0.3em 0;
}

.lr-booking-steps__desc {
	font-size: 0.85em;
	color: var(--lr-color-text-muted);
}

/* ===== よくある質問 ===== */

.lr-faq {
	padding: 40px 0;
}

.lr-faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lr-faq__item {
	background: #fff;
	border: 1px solid var(--lr-color-border);
	border-radius: var(--lr-radius-card);
	padding: 14px 18px;
}

.lr-faq__question {
	cursor: pointer;
	font-weight: 700;
}

.lr-faq__answer {
	margin: 0.8em 0 0;
	color: var(--lr-color-text-muted);
}

/* ===== アクセス・営業日 ===== */

.lr-access {
	padding: 40px 0 60px;
}

.lr-access__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.lr-access__sub-title {
	margin: 0 0 1em;
}

.lr-access__map-placeholder {
	aspect-ratio: 1 / 1;
}

.lr-access__map-embed {
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 0;
	border-radius: var(--lr-radius-card);
}

.lr-access__address {
	margin: 0.8em 0 0;
	font-weight: 700;
}

.lr-access__parking {
	margin: 0.6em 0 0;
	padding: 0.7em 0.9em;
	background: var(--lr-color-bg-alt);
	border-radius: var(--lr-radius-card);
	font-size: 0.85em;
	color: var(--lr-color-text-muted);
}

.lr-closed-calendar__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 10px;
}

.lr-closed-calendar__nav {
	text-decoration: none;
	color: var(--lr-color-text);
}

.lr-closed-calendar__title {
	font-weight: 700;
}

.lr-closed-calendar__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--lr-radius-card);
	overflow: hidden;
}

.lr-closed-calendar__table th,
.lr-closed-calendar__table td {
	padding: 8px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid var(--lr-color-border);
}

.lr-closed-calendar__table td {
	height: 56px;
}

.lr-closed-calendar__table td.is-closed {
	background: var(--lr-color-bg-alt);
	color: var(--lr-color-primary-dark);
	font-weight: 700;
}

.lr-closed-calendar__table td.is-empty {
	background: transparent;
	border-color: transparent;
}

.lr-closed-calendar__legend {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85em;
	color: var(--lr-color-text-muted);
	margin-top: 10px;
}

.lr-closed-calendar__legend-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: var(--lr-color-bg-alt);
}

/* ===== レスポンシブ(ホームページ固有セクション) ===== */

@media (max-width: 780px) {
	.lr-intro,
	.lr-access__grid {
		grid-template-columns: 1fr;
	}

	.lr-intro__badges {
		grid-template-columns: 1fr;
	}

	.lr-hero__catch {
		font-size: 1.4em;
	}
}
