@charset "UTF-8";

/* =============================================================
   WAOJE × ONLINE TRAVEL HONG KONG GVF LP
   Theme: Hong Kong Luxe — Cream × Crimson × Antique Gold
   ============================================================= */

/* ============ Reset ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	font-weight: 400;
	color: var(--text);
	background: var(--bg-base);
	line-height: 1.85;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	vertical-align: bottom;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity .3s, color .3s;
}

a:hover {
	opacity: .75;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* ============ Design Tokens ============ */
:root {
	/* Base — 米白 (warm cream) */
	--bg-base: #FAF6EC;
	--bg-paper: #FFFFFF;
	--bg-soft: #F2EBD8;
	--bg-deep: #1F1A14;

	/* Accent — 朱赤 + 金 (HK red + antique gold) */
	--accent-red: #B8232E;
	--accent-red-2: #8B1B23;
	--accent-red-soft: #F6DEE0;
	--accent-gold: #B89B5E;
	--accent-gold-2: #D4B975;
	--accent-gold-soft: #F4ECD3;
	--accent-jade: #2E6E5B;

	/* Text */
	--text: #1F1A14;
	--text-mute: #5C5448;
	--text-dim: #948A78;

	/* Lines */
	--line: rgba(184, 35, 46, 0.18);
	--line-soft: rgba(31, 26, 20, 0.10);
	--line-gold: rgba(184, 155, 94, 0.40);

	/* Container */
	--container: 1200px;
	--container-narrow: 980px;

	/* Fonts */
	--font-num: 'DM Serif Display', 'Noto Serif JP', 'Shippori Mincho B1', serif;
}

/* ============ Common ============ */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* Section head — 透かし漢字 + 朱赤の細線 */
.sec-head {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	padding-top: 40px;
}

.sec-head::before {
	content: '香';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Noto Serif JP', serif;
	font-size: 140px;
	font-weight: 900;
	color: var(--accent-gold-soft);
	z-index: 0;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.sec-title {
	display: inline-block;
	line-height: 1.4;
	position: relative;
	z-index: 1;
}

.sec-title .ja {
	display: block;
	font-size: 13px;
	letter-spacing: .35em;
	color: var(--accent-red);
	margin-bottom: 14px;
	font-weight: 500;
}

.sec-title .en,
.sec-title:not(:has(.en)) {
	display: block;
	font-family: 'Playfair Display', 'Noto Serif JP', serif;
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--text);
}

.sec-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	margin: 24px auto 0;
	background: var(--accent-red);
}

/* Buttons */
.btn-area {
	text-align: center;
	margin-top: 40px;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 16px 48px;
	min-width: 220px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .2em;
	text-align: center;
	border-radius: 2px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--accent-red);
	color: #fff;
	box-shadow: 0 4px 14px rgba(184, 35, 46, 0.25);
}

.btn-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
	transform: translateX(-100%);
	transition: transform .6s;
}

.btn-primary:hover {
	opacity: 1;
	background: var(--accent-red-2);
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(184, 35, 46, 0.32);
}

.btn-primary:hover::before {
	transform: translateX(100%);
}

.btn-secondary {
	background: var(--bg-paper);
	color: var(--accent-red);
	border: 1px solid var(--accent-red);
}

.btn-secondary:hover {
	opacity: 1;
	background: var(--accent-red);
	color: #fff;
}

/* Section spacing */
section {
	padding: 100px 0;
	position: relative;
}

/* =============================================================
   HEADER
   ============================================================= */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 14px 0;
	background: rgba(255, 252, 245, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line-soft);
	box-shadow: 0 1px 0 var(--line-gold);
}

.header-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

.logo {
	flex-shrink: 0;
}

.logo a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	letter-spacing: .1em;
}

.logo img {
	height: 48px;
	width: auto;
	max-height: none;
	display: block;
}

.gnav>ul {
	display: flex;
	gap: 4px;
}

.gnav>ul>li {
	position: relative;
}

.gnav a {
	display: block;
	padding: 12px 18px;
	font-size: 13px;
	color: var(--text);
	letter-spacing: .1em;
	position: relative;
}

.gnav a span {
	display: block;
	font-weight: 500;
}

.gnav a small {
	display: block;
	font-size: 10px;
	color: var(--accent-gold);
	letter-spacing: .2em;
	margin-top: 2px;
	font-family: 'Playfair Display', serif;
	text-transform: uppercase;
}

.gnav a:hover {
	opacity: 1;
	color: var(--accent-red);
}

.sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	box-shadow: 0 8px 24px rgba(31, 26, 20, 0.10);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all .3s;
}

.sub-menu li {
	display: block;
}

.has-child:hover .sub-menu,
.has-child:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li a {
	padding: 10px 18px;
	font-size: 13px;
	display: block;
}

.sub-menu li a:hover {
	background: var(--accent-gold-soft);
}

.hamburger {
	display: none;
	width: 36px;
	height: 36px;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 0;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--accent-red);
	margin: 0 auto;
	transition: all .3s;
}

/* =============================================================
   MAIN VISUAL
   ============================================================= */
.mv {
	position: relative;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	background: var(--bg-base);
}

.mv-slider {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.mv-slider.slick-slider,
.mv-slider.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.mv-slider .slick-list,
.mv-slider .slick-track {
	height: 100%;
}

.mv-slider .mv-slide {
	position: relative;
	height: 100vh;
	min-height: 640px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 24px;
	text-align: center;
	overflow: hidden;
	box-sizing: border-box;
}

.mv-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: saturate(1.05) contrast(0.98) brightness(1.02);
}

/* 写真の上に乗せる繊細なグラデーション（文字可読性確保 + 写真の質感維持） */
.mv-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg,
			rgba(31, 26, 20, 0.10) 0%,
			rgba(31, 26, 20, 0.05) 40%,
			rgba(31, 26, 20, 0.45) 100%);
	z-index: 2;
	pointer-events: none;
}

/* Slick dots — 右下に金色 */
.mv-slider .slick-dots {
	width: auto;
	right: 32px;
	bottom: 32px;
	left: auto;
	text-align: right;
	z-index: 5;
}

.mv-slider .slick-dots li {
	margin: 0 4px;
}

.mv-slider .slick-dots li button:before {
	color: #fff;
	opacity: .55;
	font-size: 10px;
}

.mv-slider .slick-dots li.slick-active button:before {
	color: var(--accent-gold-2);
	opacity: 1;
}

/* Scroll indicator */
.mv-scroll {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-family: 'Playfair Display', serif;
	font-size: 11px;
	letter-spacing: .35em;
	color: rgba(255, 255, 255, .95);
	text-transform: uppercase;
	text-decoration: none;
	pointer-events: auto;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

.mv-scroll::after {
	content: '';
	width: 1px;
	height: 56px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0));
	animation: scrollLine 1.8s ease-in-out infinite;
	transform-origin: top center;
}

@keyframes scrollLine {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}

	40% {
		transform: scaleY(1);
		opacity: 1;
	}

	100% {
		transform: scaleY(1) translateY(56px);
		opacity: 0;
	}
}

.mv-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: 100%;
	max-width: 1100px;
	padding: 0 24px;
	text-align: center;
	pointer-events: none;
}

.mv-title .mv-sub {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: clamp(14px, 1.8vw, 20px);
	letter-spacing: .35em;
	color: var(--accent-gold-2);
	margin-bottom: 22px;
	text-transform: uppercase;
	text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}

.mv-title .mv-main {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: clamp(32px, 6vw, 68px);
	font-weight: 700;
	color: #fff;
	letter-spacing: .04em;
	line-height: 1.2;
	text-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}

.mv-caption {
	position: absolute;
	bottom: 32px;
	left: 32px;
	font-family: 'Noto Serif JP', serif;
	font-size: 13px;
	letter-spacing: .35em;
	color: rgba(255, 255, 255, .92);
	z-index: 3;
	padding: 8px 24px;
	border: 1px solid rgba(255, 255, 255, .4);
	background: rgba(31, 26, 20, .18);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.mv-slider::after {
	content: '香港';
	position: absolute;
	top: 50%;
	right: 48px;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	font-family: 'Noto Serif JP', serif;
	font-size: clamp(80px, 14vw, 180px);
	font-weight: 900;
	color: rgba(255, 255, 255, .10);
	letter-spacing: .1em;
	z-index: 4;
	pointer-events: none;
	user-select: none;
}

/* =============================================================
   INTRO
   ============================================================= */
.intro {
	background: var(--bg-base);
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* 雲紋風の淡い装飾 */
.intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 12% 18%, var(--accent-gold-soft) 0%, transparent 24%),
		radial-gradient(circle at 88% 78%, var(--accent-red-soft) 0%, transparent 28%);
	opacity: .55;
	pointer-events: none;
}

.intro .container {
	position: relative;
	z-index: 1;
}

.intro-text {
	max-width: 780px;
	margin: 0 auto 32px;
	font-size: 16px;
	line-height: 2.2;
	color: var(--text);
}

.intro-access {
	display: inline-block;
	padding: 10px 32px;
	border: 1px solid var(--accent-red);
	color: var(--accent-red);
	font-size: 14px;
	letter-spacing: .2em;
	margin-bottom: 48px;
	background: var(--bg-paper);
}

.intro-map {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}

.venue-map {
	width: 100%;
	max-width: 840px;
	height: 420px;
	border: 1px solid var(--line-soft);
	box-shadow: 0 4px 16px rgba(31, 26, 20, .06);
	background: var(--bg-soft);
}

/* OpenStreetMap タイルをサイトの暖色トーンに寄せる */
.venue-map .leaflet-tile-pane {
	filter: sepia(0.35) saturate(0.85) hue-rotate(-10deg) brightness(0.98) contrast(0.95);
}

.venue-map .leaflet-control-attribution {
	background: rgba(255, 255, 255, .82);
	font-size: 10px;
	color: var(--text-mute);
}

.venue-map .leaflet-control-attribution a {
	color: var(--accent-red);
}

.venue-map .leaflet-control-zoom a {
	background: var(--bg-paper);
	color: var(--accent-red);
	border-color: var(--line-soft);
}

.venue-map .leaflet-control-zoom a:hover {
	background: var(--accent-red);
	color: var(--bg-paper);
}

/* ピン */
.venue-pin {
	background: transparent;
	border: 0;
	filter: drop-shadow(0 3px 4px rgba(31, 26, 20, .25));
	transition: transform .2s ease;
}

.venue-pin:hover {
	transform: translateY(-2px);
}

/* ポップアップ（モーダル風） */
.venue-popup-wrap .leaflet-popup-content-wrapper {
	background: var(--bg-paper);
	border: 1px solid var(--accent-red);
	border-radius: 2px;
	box-shadow: 0 8px 24px rgba(31, 26, 20, .18);
	padding: 0;
}

.venue-popup-wrap .leaflet-popup-content {
	margin: 0;
	width: 280px !important;
}

.venue-popup-wrap .leaflet-popup-tip {
	background: var(--bg-paper);
	border: 1px solid var(--accent-red);
	box-shadow: none;
}

.venue-popup-wrap .leaflet-popup-close-button {
	color: var(--accent-red);
	font-size: 20px;
	padding: 6px 8px 0 0;
}

.venue-popup {
	padding: 18px 20px 16px;
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
	width: 100%;
}

.venue-popup__label {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .12em;
	color: var(--bg-paper);
	background: var(--accent-red);
	padding: 3px 10px;
	margin: 0 0 10px;
}

.venue-popup__title {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 17px;
	font-weight: 600;
	color: var(--accent-red);
	margin: 0 0 4px;
	line-height: 1.4;
	word-break: keep-all;
}

.venue-popup__name-en {
	font-family: 'Playfair Display', serif;
	font-size: 12px;
	color: var(--text-mute);
	margin: 0 0 10px;
	letter-spacing: .04em;
	overflow-wrap: anywhere;
}

.venue-popup__address {
	font-size: 12px;
	color: var(--text-mute);
	line-height: 1.6;
	margin: 0 0 12px;
	border-top: 1px solid var(--line-soft);
	padding-top: 10px;
	overflow-wrap: anywhere;
}

.venue-popup__link {
	display: inline-block;
	font-size: 12px;
	color: var(--accent-red);
	border-bottom: 1px solid var(--accent-red);
	padding-bottom: 1px;
	text-decoration: none;
	letter-spacing: .04em;
	white-space: nowrap;
}

.venue-popup__link:hover {
	color: var(--accent-red-2);
	border-bottom-color: var(--accent-red-2);
}

/* =============================================================
   AIR
   ============================================================= */
.air {
	background: var(--bg-soft);
	position: relative;
}

.air::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.air-text {
	max-width: 860px;
	margin: 0 auto 40px;
	text-align: start;
	font-size: 15px;
	line-height: 2;
	color: var(--text);
}

/* ---- キャセイパシフィック 機材ギャラリー ---- */
.air-slider {
	position: relative;
	width: 100%;
	max-width: 840px;
	height: 460px;
	margin: 0 auto 64px;
	background: var(--bg-soft);
	overflow: hidden;
	border: 1px solid var(--line-soft);
	box-shadow: 0 8px 24px rgba(31, 26, 20, .08);
}

.air-slider .slick-list,
.air-slider .slick-track {
	height: 100%;
}

.air-slider .slick-slide>div,
.air-slider>div {
	height: 100%;
}

.air-slide {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
}

.air-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.air-slide-caption {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 22px 24px 48px;
	background: linear-gradient(to bottom, rgba(31, 26, 20, .82) 0%, rgba(31, 26, 20, .55) 60%, transparent 100%);
	color: #fff;
	font-size: 14px;
	letter-spacing: .05em;
	line-height: 1.6;
	font-weight: 500;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}

.air-slider .slick-dots {
	bottom: 14px;
}

.air-slider .slick-dots li button:before {
	color: #fff;
	opacity: .55;
	font-size: 10px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.air-slider .slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}

.air-slider .slick-prev,
.air-slider .slick-next {
	z-index: 2;
	width: 44px;
	height: 44px;
}

.air-slider .slick-prev {
	left: 18px;
}

.air-slider .slick-next {
	right: 18px;
}

.air-slider .slick-prev:before,
.air-slider .slick-next:before {
	font-size: 30px;
	color: #fff;
	opacity: .9;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}

.air-table-wrap {
	margin-bottom: 56px;
}

.air-subtitle {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 24px;
	padding-left: 16px;
	border-left: 3px solid var(--accent-red);
	letter-spacing: .05em;
}

.air-table {
	overflow-x: auto;
	border: 1px solid var(--line-soft);
	background: var(--bg-paper);
	box-shadow: 0 4px 16px rgba(31, 26, 20, .04);
}

.air-table table {
	min-width: 880px;
	font-size: 14px;
}

.air-table th,
.air-table td {
	padding: 14px 10px;
	text-align: center;
	border-bottom: 1px solid var(--line-soft);
	border-right: 1px solid var(--line-soft);
	white-space: nowrap;
	color: var(--text);
}

.air-table th:last-child,
.air-table td:last-child {
	border-right: none;
}

.air-table thead th {
	background: var(--accent-gold-soft);
	color: var(--text);
	font-weight: 600;
	letter-spacing: .05em;
	font-size: 13px;
}

.air-table thead .th-group {
	background: var(--accent-red);
	color: #fff;
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	letter-spacing: .15em;
	padding: 12px 8px;
}

.air-table thead tr:last-child th {
	background: var(--accent-gold-soft);
}

.air-table tbody tr:hover {
	background: var(--accent-red-soft);
}

/* 便名（往路1列目・復路6列目）を統一スタイルで */
.air-table tbody td:first-child,
.air-table tbody td:nth-child(6) {
	color: var(--accent-red);
	font-weight: 600;
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	letter-spacing: .05em;
}

/* Aria Suite 搭載便のマーク */
.air-table tbody td.is-aria {
	position: relative;
}

.air-table tbody td.is-aria::after {
	content: '★';
	display: inline-block;
	margin-left: 4px;
	color: var(--accent-gold);
	font-size: 12px;
	vertical-align: super;
	font-family: 'Noto Sans JP', sans-serif;
}

.air-note .is-aria-mark {
	color: var(--accent-gold);
	font-size: 14px;
	margin-right: 2px;
}

.air-note {
	font-size: 13px;
	color: var(--text-mute);
	margin-top: 16px;
	line-height: 1.8;
}

.air-note a {
	color: var(--accent-red);
	text-decoration: underline;
}

/* =============================================================
   HOTEL
   ============================================================= */
.hotel {
	background: var(--bg-paper);
}

.hotel-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	padding: 48px;
	margin-bottom: 64px;
	position: relative;
	box-shadow: 0 8px 30px rgba(31, 26, 20, .06);
}

.hotel-card::before {
	content: '★';
	position: absolute;
	top: -14px;
	left: 48px;
	background: var(--bg-paper);
	color: var(--accent-gold);
	padding: 0 12px;
	font-size: 18px;
	letter-spacing: .3em;
}

.hotel-name {
	margin-bottom: 20px;
	border-bottom: 1px solid var(--line-soft);
	padding-bottom: 20px;
}

.hotel-name .ja {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}

.hotel-name .en {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	color: var(--accent-gold);
	letter-spacing: .1em;
	font-style: italic;
}

.hotel-desc {
	font-size: 14px;
	line-height: 2;
	color: var(--text-mute);
	margin-bottom: 24px;
}

.hotel-info {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 8px 16px;
	margin-bottom: 24px;
	font-size: 14px;
}

.hotel-info dt {
	color: var(--accent-red);
	padding: 6px 12px;
	background: var(--accent-red-soft);
	border-left: 2px solid var(--accent-red);
}

.hotel-info dd {
	padding: 6px 0;
	color: var(--text);
}

.hotel-info dd a {
	color: var(--accent-red);
	text-decoration: underline;
}

.hotel-price {
	padding: 16px 22px;
	background: var(--accent-gold-soft);
	border: 1px solid var(--line-gold);
	margin-bottom: 24px;
	line-height: 1.4;
}

.hotel-price strong {
	font-family: var(--font-num);
	font-size: 32px;
	font-weight: 400;
	color: var(--accent-red);
	letter-spacing: .02em;
}

.hotel-price .unit {
	font-size: 13px;
	color: var(--text-mute);
	margin-left: 4px;
	letter-spacing: .05em;
}

.hotel-price small {
	display: block;
	font-size: 12px;
	color: var(--text-dim);
	margin-top: 6px;
	letter-spacing: .03em;
}

.hotel-link {
	margin-bottom: 20px;
}

.hotel-link a {
	font-size: 13px;
	color: var(--accent-red);
	text-decoration: underline;
	letter-spacing: .05em;
}

/* ホテルカード内のボタンを左右で同幅に */
.hotel-card .btn-area {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-top: 0;
}

.hotel-card .btn-area .btn-primary,
.hotel-card .btn-area .btn-secondary {
	flex: 1 1 0;
	min-width: 200px;
	padding: 16px 16px;
	font-size: 13px;
	letter-spacing: .1em;
	white-space: nowrap;
}

.hotel-card-slider {
	position: relative;
	height: 520px;
	background: var(--bg-soft);
	overflow: hidden;
}

.hotel-card-slider .slick-list,
.hotel-card-slider .slick-track {
	height: 100%;
}

.hotel-card-slider .slick-slide>div {
	height: 100%;
}

.hotel-card-slider>div {
	height: 100%;
}

.hotel-card-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* slick dots（写真上に白ドット） */
.hotel-card-slider .slick-dots {
	bottom: 14px;
}

.hotel-card-slider .slick-dots li button:before {
	color: #fff;
	opacity: .55;
	font-size: 10px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.hotel-card-slider .slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}

/* slick arrows */
.hotel-card-slider .slick-prev,
.hotel-card-slider .slick-next {
	z-index: 2;
	width: 40px;
	height: 40px;
}

.hotel-card-slider .slick-prev {
	left: 14px;
}

.hotel-card-slider .slick-next {
	right: 14px;
}

.hotel-card-slider .slick-prev:before,
.hotel-card-slider .slick-next:before {
	font-size: 28px;
	color: #fff;
	opacity: .9;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}

.hotel-tips {
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	padding: 40px;
	position: relative;
	box-shadow: 0 4px 16px rgba(31, 26, 20, .04);
}

.hotel-tips::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 120px;
	height: 3px;
	background: var(--accent-red);
}

.hotel-tips-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-red);
	margin-bottom: 20px;
	letter-spacing: .05em;
}

.hotel-tips p {
	font-size: 14px;
	line-height: 2;
	color: var(--text);
	margin-bottom: 20px;
}

.hotel-tips strong {
	color: var(--accent-red);
}

.hotel-tips small {
	color: var(--text-mute);
	font-size: 12px;
}

/* ---- コンパクト版（ホテルセクション冒頭配置） ---- */
.hotel-tips--compact {
	padding: 28px 36px 24px;
	margin-bottom: 48px;
}

.hotel-tips--compact .hotel-tips-title {
	font-size: 16px;
	margin-bottom: 16px;
	letter-spacing: .15em;
	display: inline-block;
	padding-right: 14px;
}

.hotel-tips-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 36px;
	list-style: none;
	padding: 0;
	margin: 0 0 14px;
}

.hotel-tips-points li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.hotel-tips-points .num {
	flex-shrink: 0;
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 400;
	color: var(--accent-red);
	line-height: 1;
	padding-top: 2px;
	letter-spacing: .02em;
}

.hotel-tips-points p {
	font-size: 13.5px;
	line-height: 1.85;
	margin: 0;
	color: var(--text);
}

.hotel-tips-note {
	margin: 0;
	padding-top: 14px;
	border-top: 1px dashed var(--line-soft);
}

.hotel-tips-note small {
	font-size: 12px;
	line-height: 1.7;
	color: var(--text-mute);
}

/* =============================================================
   HOTEL — SUB CARDS（同エリア・周辺の代替ホテル）
   ============================================================= */
.hotel-sub-heading {
	text-align: center;
	font-size: 15px;
	letter-spacing: .2em;
	color: var(--text-mute);
	margin: 8px 0 32px;
	position: relative;
}

.hotel-sub-heading span {
	display: inline-block;
	padding: 0 24px;
	background: var(--bg-paper);
	position: relative;
	z-index: 1;
}

.hotel-sub-heading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--line-soft);
	z-index: 0;
}

.hotel-sub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.hotel-sub-card {
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(31, 26, 20, .04);
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
}

.hotel-sub-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(31, 26, 20, .1);
}

.hotel-sub-card-slider {
	aspect-ratio: 4 / 3;
	background: var(--bg-soft);
	overflow: hidden;
}

.hotel-sub-card-slider .slick-list,
.hotel-sub-card-slider .slick-track,
.hotel-sub-card-slider .slick-slide>div {
	height: 100%;
}

.hotel-sub-card-slider div {
	height: 100%;
}

.hotel-sub-card-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* slick dots を写真の上に白ドットで重ねる */
.hotel-sub-card-slider .slick-dots {
	bottom: 10px;
}

.hotel-sub-card-slider .slick-dots li button:before {
	color: #fff;
	opacity: .55;
	font-size: 8px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.hotel-sub-card-slider .slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}

.hotel-sub-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hotel-sub-tag {
	font-size: 11px;
	letter-spacing: .15em;
	color: var(--accent-gold);
	text-transform: none;
	margin-bottom: 8px;
}

.hotel-sub-name {
	margin-bottom: 6px;
	line-height: 1.4;
}

.hotel-sub-name .ja {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
}

.hotel-sub-name .en {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 12px;
	color: var(--accent-gold);
	letter-spacing: .08em;
	font-style: italic;
	margin-top: 2px;
}

.hotel-sub-rank {
	font-size: 13px;
	color: var(--accent-red);
	letter-spacing: .1em;
	margin-bottom: 10px;
}

.hotel-sub-desc {
	font-size: 13px;
	line-height: 1.8;
	color: var(--text-mute);
	margin-bottom: 14px;
	flex: 1;
}

.hotel-sub-price {
	padding: 10px 12px;
	background: var(--accent-gold-soft);
	border: 1px solid var(--line-gold);
	margin-bottom: 14px;
	line-height: 1.5;
}

.hotel-sub-price strong {
	font-family: var(--font-num);
	font-size: 22px;
	font-weight: 400;
	color: var(--accent-red);
	letter-spacing: .02em;
}

.hotel-sub-price .unit {
	font-size: 11px;
	color: var(--text-mute);
	margin-left: 2px;
	letter-spacing: .05em;
}

.hotel-sub-price small {
	display: block;
	font-size: 11px;
	color: var(--text-dim);
	margin-top: 2px;
}

.hotel-sub-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	padding-top: 14px;
	border-top: 1px dashed var(--line-soft);
}

.hotel-sub-official {
	font-size: 12px;
	color: var(--accent-red);
	letter-spacing: .05em;
	border-bottom: 1px solid transparent;
	white-space: nowrap;
	flex-shrink: 0;
}

.hotel-sub-official:hover {
	border-bottom-color: var(--accent-red);
	opacity: 1;
}

.hotel-sub-btn {
	flex: 1;
	min-width: 0;
	padding: 12px 16px;
	font-size: 12px;
	letter-spacing: .15em;
	text-align: center;
}

/* =============================================================
   OPTION
   ============================================================= */
.option {
	background: url(../images/bgpattern1.png) repeat center top / 200px, var(--bg-soft);
	position: relative;
}

.option::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.option-lead {
	max-width: 800px;
	margin: 0 auto 64px;
	text-align: start;
	font-size: 15px;
	line-height: 2;
	color: var(--text);
}

.option-lead strong {
	color: var(--accent-red);
	font-size: 16px;
}

.option-lead small {
	color: var(--text-mute);
	font-size: 13px;
}

/* =============================================================
   Tour Timeline — 日程サマリー
   ============================================================= */
.tour-timeline {
	max-width: 1200px;
	margin: 0 auto 72px;
	padding: 40px 32px;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	position: relative;
}

.tour-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 3px;
	background: var(--accent-gold);
}

.tour-timeline-title {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 32px;
	letter-spacing: .08em;
	display: flex;
	align-items: center;
	gap: 12px;
}

.tour-timeline-title::before {
	content: '';
	width: 6px;
	height: 24px;
	background: var(--accent-red);
	display: inline-block;
}

.tour-timeline-inner {
	display: grid;
	grid-template-columns: 1.3fr 1.3fr 0.6fr 0.6fr 1.3fr 1fr;
	gap: 12px;
	align-items: stretch;
	position: relative;
}

/* 日別カラム */
.tour-day {
	background: var(--bg-soft);
	border: 1px solid var(--line-soft);
	padding: 16px 12px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tour-day-head {
	text-align: center;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line-gold);
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 4px;
}

.tour-day-date {
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 400;
	color: var(--text);
	letter-spacing: .02em;
}

.tour-day-dow {
	font-size: 12px;
	color: var(--text-mute);
	letter-spacing: .05em;
}

.tour-day-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.tour-day-list li {
	text-align: center;
	font-size: 12.5px;
	line-height: 1.5;
	padding: 9px 8px;
	border-radius: 2px;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	transition: all .2s;
}

.tour-day-list li a {
	color: inherit;
	text-decoration: none;
	display: block;
}

.tour-day-list li:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(31, 26, 20, .08);
}

/* カテゴリカラー */
.tour-day-list .cat-business {
	color: var(--accent-red);
	font-weight: 600;
	border-color: rgba(184, 35, 46, .3);
}

.tour-day-list .cat-overseas {
	color: #9a7a1f;
	font-weight: 600;
	border-color: rgba(184, 155, 94, .4);
}

.tour-day-list .cat-gourmet {
	color: #1c4875;
	font-weight: 600;
	border-color: rgba(28, 72, 117, .3);
}

.tour-day-list .cat-golf {
	color: var(--accent-jade);
	font-weight: 600;
	border-color: rgba(46, 110, 91, .3);
}

.tour-day-list .cat-sightseeing {
	color: #1c4875;
	font-weight: 600;
	border-color: rgba(28, 72, 117, .3);
}

.tour-day-list .cat-history {
	color: #6b2c8a;
	font-weight: 600;
	border-color: rgba(107, 44, 138, .3);
}

.tour-day-list .cat-factory {
	color: var(--accent-red);
	font-weight: 600;
	border-color: rgba(184, 35, 46, .3);
}

.tour-day-list .cat-recommended {
	color: #1c4875;
	font-weight: 700;
	border-color: rgba(28, 72, 117, .4);
	background: #eef4fb;
}

/* or 区切り */
.tour-day-list .cat-or {
	background: transparent;
	border: none;
	padding: 2px 0;
	font-size: 11px;
	color: var(--text-dim);
	font-style: italic;
	letter-spacing: .15em;
}

.tour-day-list .cat-or:hover {
	transform: none;
	box-shadow: none;
}

/* 前夜祭タグ */
.tour-day-list .tour-eve {
	background: var(--accent-gold);
	color: #fff;
	font-weight: 700;
	border-color: var(--accent-gold-2);
	letter-spacing: .15em;
	font-size: 12px;
}

/* 本祭カラム */
.tour-main {
	background: var(--accent-gold);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border-radius: 999px 999px 999px 999px;
	border-radius: 50%;
	aspect-ratio: 1;
	align-self: center;
	min-width: 84px;
	min-height: 84px;
	box-shadow: 0 4px 16px rgba(184, 155, 94, .3);
	text-align: center;
}

.tour-main span {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .1em;
}

.tour-main small {
	font-size: 10px;
	opacity: .85;
	letter-spacing: .05em;
}

/* レスポンシブ */
@media (max-width: 960px) {
	.tour-timeline {
		padding: 28px 16px;
	}

	.tour-timeline-inner {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.tour-main {
		grid-column: auto;
		border-radius: 4px;
		aspect-ratio: auto;
		padding: 16px;
		min-height: auto;
	}

	.tour-main span {
		font-size: 16px;
	}
}

@media (max-width: 560px) {
	.tour-timeline-inner {
		grid-template-columns: 1fr;
	}

	.tour-day-date {
		font-size: 18px;
	}
}

.option-day {
	margin-bottom: 72px;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.option-day-title {
	grid-column: 1 / -1;
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 28px;
	color: var(--text);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
	letter-spacing: .1em;
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.option-day-title::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--accent-red);
	border-radius: 50%;
}

.option-day-title small {
	font-size: 16px;
	color: var(--accent-red);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.option-card {
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 8px rgba(31, 26, 20, .04);
	scroll-margin-top: 100px;
}

.option-card-img {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--bg-soft);
	overflow: hidden;
}

.option-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.option-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: rgba(255, 255, 255, .92);
	color: var(--accent-red);
	padding: 4px 12px;
	font-size: 11px;
	letter-spacing: .2em;
	border: 1px solid var(--accent-red);
	z-index: 2;
}

.option-badge-pin {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--accent-red);
	color: #fff;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	z-index: 2;
	border: 1px solid rgba(184, 35, 46, .3);
}

.option-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.option-time {
	font-size: 11px;
	color: var(--accent-gold);
	letter-spacing: .3em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.option-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
	line-height: 1.5;
}

.option-sub {
	font-size: 13px;
	color: var(--accent-red);
	margin-bottom: 12px;
	line-height: 1.6;
}

.option-desc {
	font-size: 13px;
	color: var(--text-mute);
	margin-bottom: 16px;
	flex: 1;
	line-height: 1.8;
}

.option-meta {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 8px 12px;
	padding-top: 4px;
	font-size: 12px;
	line-height: 1.7;
}

.option-meta dt {
	color: var(--text-dim);
	letter-spacing: .1em;
	padding-top: 2px;
}

.option-meta dd {
	color: var(--text);
}

/* schedule 未使用（簡易カード）向け：従来の上罫線を維持 */
.option-card-body>.option-meta:first-of-type:not(.option-schedule + .option-meta) {
	padding-top: 16px;
	border-top: 1px dashed var(--line-soft);
}

.option-card.is-recommended {
	border-color: var(--accent-red);
	box-shadow: 0 8px 24px rgba(184, 35, 46, .15);
}

/* カテゴリバッジ（画像左下） */
.option-badge-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(31, 26, 20, .85);
	color: var(--accent-gold-2);
	padding: 5px 14px;
	font-size: 11px;
	letter-spacing: .15em;
	font-weight: 500;
	z-index: 2;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(212, 185, 117, .4);
}

/* スケジュール表示 */
.option-schedule {
	margin: 0 0 20px;
	padding: 16px 0;
	border-top: 1px dashed var(--line-soft);
	border-bottom: 1px dashed var(--line-soft);
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}

.option-schedule li {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--text);
	position: relative;
}

.option-schedule li .t {
	color: var(--accent-red);
	font-family: var(--font-num);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: .03em;
	padding-top: 1px;
	white-space: nowrap;
}

.option-schedule li .c {
	color: var(--text);
}

.option-schedule li::before {
	content: '';
	position: absolute;
	left: 50px;
	top: 8px;
	width: 5px;
	height: 5px;
	background: var(--accent-gold);
	border-radius: 50%;
	opacity: .6;
}

/* 料金 */
.option-meta dd.price {
	color: var(--text-mute);
	font-size: 12px;
}

.option-meta dd.price strong {
	display: inline-block;
	color: var(--accent-red);
	font-family: var(--font-num);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: .03em;
	margin-right: 4px;
}

.option-meta dd.price small {
	font-size: 11px;
	color: var(--text-dim);
	letter-spacing: .05em;
}

.option-cta {
	max-width: 760px;
	margin: 56px auto 0;
	padding: 40px 32px;
	background: var(--bg-paper);
	border: 1px solid var(--line-gold);
	text-align: center;
	position: relative;
}

.option-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 3px;
	background: var(--accent-gold);
}

.option-cta-text {
	font-size: 15px;
	color: var(--text);
	line-height: 1.9;
	margin-bottom: 24px;
	letter-spacing: .03em;
}

.option-cta .btn-area {
	margin-top: 0;
}

/* =============================================================
   INFO
   ============================================================= */
.info {
	background: var(--bg-base);
}

.info-lead {
	max-width: 860px;
	margin: 0 auto 56px;
	text-align: start;
	font-size: 15px;
	line-height: 2;
	color: var(--text);
}

.info-list {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 0;
	border-top: 1px solid var(--line-soft);
	background: var(--bg-paper);
	box-shadow: 0 4px 20px rgba(31, 26, 20, .04);
}

.info-list dt,
.info-list dd {
	padding: 24px 20px;
	border-bottom: 1px solid var(--line-soft);
}

.info-list dt {
	color: var(--accent-red);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .1em;
	background: var(--accent-gold-soft);
}

.info-list dd {
	font-size: 14px;
	line-height: 1.9;
	color: var(--text);
}

.info-list dd strong {
	color: var(--accent-red);
	font-weight: 600;
}

.info-table {
	width: 100%;
	margin-top: 14px;
	font-size: 13px;
	border-collapse: collapse;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
}

.info-table th,
.info-table td {
	padding: 12px 16px;
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
	border-bottom: 1px solid var(--line-soft);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
	border-bottom: none;
}

.info-table th {
	background: var(--accent-gold-soft);
	color: var(--text);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .12em;
	border-right: 1px solid var(--line-soft);
}

.info-table th:last-child {
	border-right: none;
}

.info-table th:first-child {
	width: 140px;
	white-space: nowrap;
}

/* 左カラム（td）がラベル役の場合 */
.info-table td:first-child {
	background: var(--bg-soft);
	color: var(--accent-red);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .08em;
	white-space: nowrap;
	width: 140px;
	border-right: 1px solid var(--line-soft);
}

.info-more {
	text-align: center;
	margin-top: 40px;
}

.info-more a {
	color: var(--accent-red);
	font-size: 14px;
	text-decoration: underline;
	letter-spacing: .05em;
}

/* =============================================================
   SPOT
   ============================================================= */
.spot {
	background: url(../images/bgpattern2.png) repeat center top / 150px, var(--bg-soft);
	position: relative;
}

.spot-map {
	text-align: center;
	margin-bottom: 48px;
}

.spot-map img {
	display: inline-block;
	max-width: 100%;
	border: 1px solid var(--line-soft);
	box-shadow: 0 4px 16px rgba(31, 26, 20, .06);
}

.spot-map .sp-only {
	display: none;
}

.spot-categories {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 56px;
	flex-wrap: wrap;
}

.spot-cat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	border: 1px solid var(--accent-red);
	color: var(--accent-red);
	background: var(--bg-paper);
	font-family: inherit;
	cursor: pointer;
	transition: all .25s;
	position: relative;
}

.spot-cat small {
	display: inline-block;
	font-family: 'Playfair Display', serif;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .1em;
	opacity: .7;
	text-transform: uppercase;
}

.spot-cat-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--bg-soft);
	color: var(--text-dim);
	font-family: var(--font-num);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	transition: all .25s;
	margin-left: 4px;
}

.spot-cat:hover {
	background: var(--accent-red-soft);
}

.spot-cat.is-active {
	background: var(--accent-red);
	color: #fff;
	box-shadow: 0 4px 14px rgba(184, 35, 46, .25);
}

.spot-cat.is-active small {
	color: rgba(255, 255, 255, .85);
	opacity: 1;
}

.spot-cat.is-active .spot-cat-count {
	background: rgba(255, 255, 255, .22);
	color: #fff;
}

/* 絞り込み結果のアニメーション */
.spot-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.spot-list .spot-card {
	transition: opacity .4s, transform .4s;
}

.spot-list .spot-card.is-hidden {
	display: none;
}

.spot-card {
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(31, 26, 20, .04);
}

.spot-card img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	background: var(--bg-soft);
}

.spot-thumb {
	position: relative;
	margin: 0;
	line-height: 0;
}

.spot-credit {
	position: absolute;
	right: 6px;
	bottom: 6px;
	padding: 2px 8px;
	font-size: 9px;
	letter-spacing: .02em;
	color: rgba(255, 255, 255, .92);
	background: rgba(0, 0, 0, .45);
	line-height: 1.5;
	border-radius: 2px;
	pointer-events: none;
	font-weight: 400;
}

.spot-card dl {
	padding: 20px;
}

.spot-card dt {
	font-size: 17px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line-soft);
	position: relative;
}

.spot-card dt::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 32px;
	height: 2px;
	background: var(--accent-red);
}

.spot-card dd {
	font-size: 13px;
	line-height: 1.9;
	color: var(--text-mute);
	margin-top: 12px;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
	background: var(--bg-base);
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-list dt {
	padding: 24px 28px 24px 60px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	margin-top: 16px;
	position: relative;
	box-shadow: 0 2px 8px rgba(31, 26, 20, .04);
}

.faq-list dt::before {
	content: 'Q';
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: var(--accent-red);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	font-weight: 700;
}

.faq-list dd {
	padding: 24px 28px 24px 60px;
	font-size: 14px;
	line-height: 2;
	color: var(--text);
	background: var(--bg-soft);
	border: 1px solid var(--line-soft);
	border-top: none;
	position: relative;
}

.faq-list dd::before {
	content: 'A';
	position: absolute;
	left: 20px;
	top: 24px;
	width: 28px;
	height: 28px;
	background: var(--accent-gold);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	font-weight: 700;
}

.faq-list dd strong {
	color: var(--accent-red);
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
	background:
		radial-gradient(ellipse at center, var(--accent-red-soft) 0%, transparent 60%),
		var(--bg-base);
	text-align: center;
}

.contact-lead {
	max-width: 740px;
	margin: 0 auto 40px;
	font-size: 15px;
	line-height: 2;
	color: var(--text);
}

.contact-tel {
	margin-bottom: 16px;
}

.contact-tel a {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	color: var(--accent-red);
	letter-spacing: .05em;
}

.contact-mail a {
	font-size: 16px;
	color: var(--text);
	letter-spacing: .1em;
	text-decoration: underline;
	text-decoration-color: var(--accent-red);
	text-underline-offset: 4px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
	background: var(--bg-deep);
	padding: 40px 24px;
	text-align: center;
	border-top: 3px solid var(--accent-red);
}

.copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
	letter-spacing: .1em;
}

.copyright a {
	color: var(--accent-gold-2);
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 960px) {
	.hotel-card {
		grid-template-columns: 1fr;
		padding: 32px 24px;
		gap: 32px;
	}

	.hotel-card-slider {
		height: 320px;
	}

	.air-slider {
		height: 320px;
	}

	.hotel-tips-points {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hotel-sub-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.info-list {
		grid-template-columns: 1fr;
	}

	.info-list dt {
		border-bottom: none;
		padding-bottom: 8px;
	}

	.info-list dd {
		padding-top: 8px;
	}

	.mv-slider::before {
		inset: 20px;
	}

	.mv-slider::after {
		font-size: 80px;
		right: 20px;
	}
}

@media (max-width: 768px) {
	section {
		padding: 72px 0;
	}

	.container {
		padding: 0 20px;
	}

	.sec-head {
		margin-bottom: 48px;
		padding-top: 32px;
	}

	.sec-head::before {
		font-size: 100px;
		top: -10px;
	}

	/* ヘッダー：固定解除 → 通常フローでスクロール時はロゴが隠れる */
	#header {
		position: absolute;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-bottom: none;
		box-shadow: none;
	}

	.header-inner {
		padding: 0 20px;
	}

	.logo img {
		height: 36px;
	}

	/* ハンバーガーだけ常時固定 */
	.hamburger {
		display: flex;
		position: fixed;
		top: 14px;
		right: 14px;
		z-index: 200;
		width: 48px;
		height: 48px;
		background: rgba(255, 252, 245, 0.92);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-radius: 50%;
		box-shadow: 0 2px 12px rgba(31, 26, 20, .18);
		transition: background .2s;
	}

	.hamburger.is-open {
		background: var(--bg-paper);
	}

	.hamburger span {
		transition: transform .25s ease, opacity .2s ease;
	}

	.hamburger.is-open span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.is-open span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* ドロワーメニュー本体 */
	.gnav {
		position: fixed;
		inset: 0;
		background: rgba(255, 252, 245, 0.98);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		z-index: 150;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s, visibility .3s;
		overflow-y: auto;
		padding: 80px 24px 40px;
	}

	.gnav.is-open {
		opacity: 1;
		visibility: visible;
	}

	.gnav>ul {
		display: block;
		text-align: center;
		gap: 0;
		width: 100%;
		max-width: 320px;
	}

	.gnav>ul>li {
		margin-bottom: 14px;
	}

	.gnav a {
		font-size: 17px;
		padding: 10px 0;
	}

	.gnav a small {
		font-size: 11px;
		margin-top: 4px;
	}

	/* サブメニューはドロワー内ではインライン展開 */
	.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: none;
		box-shadow: none;
		background: transparent;
		padding: 4px 0 8px;
		text-align: center;
		min-width: auto;
	}

	.sub-menu li a {
		font-size: 14px;
		padding: 6px 0;
	}

	body.nav-open {
		overflow: hidden;
	}

	.mv {
		min-height: 560px;
	}

	.venue-map {
		height: 320px;
	}

	.hotel-card {
		padding: 24px 20px;
	}

	.hotel-tips {
		padding: 28px 20px;
	}

	.hotel-tips--compact {
		padding: 22px 20px 18px;
	}

	.hotel-sub-grid {
		grid-template-columns: 1fr;
	}

	.hotel-info {
		grid-template-columns: 100px 1fr;
	}

	.option-day {
		grid-template-columns: 1fr;
	}

	.option-day-title {
		font-size: 22px;
	}

	.faq-list dt {
		font-size: 14px;
		padding: 20px 20px 20px 52px;
	}

	.faq-list dd {
		padding: 20px 20px 20px 52px;
	}

	.faq-list dt::before,
	.faq-list dd::before {
		left: 14px;
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.spot-map .pc-only {
		display: none;
	}

	.spot-map .sp-only {
		display: inline-block;
	}

	.air-table table {
		font-size: 12px;
	}

	.air-table th,
	.air-table td {
		padding: 10px 8px;
	}

	.btn-primary,
	.btn-secondary {
		min-width: 180px;
		padding: 14px 32px;
		font-size: 13px;
	}

	.spot-categories {
		gap: 8px;
	}

	.spot-cat {
		padding: 10px 16px;
		font-size: 13px;
	}

	.spot-cat small {
		display: none;
	}
}

@media (max-width: 480px) {
	.mv-title .mv-main {
		font-size: 28px;
	}

	.mv-title .mv-sub {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.sec-title .en,
	.sec-title:not(:has(.en)) {
		font-size: 28px;
	}

	.option-card-body {
		padding: 20px;
	}

	.hotel-info {
		grid-template-columns: 1fr;
	}

	.hotel-info dt {
		border-left: none;
		border-bottom: 1px solid var(--accent-red);
	}
}

/* Scroll reveal */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s, transform .8s;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Decorative line */
.neon-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-gold), transparent);
	margin: 40px 0;
}



/* ---------- 1) アンカー先オフセット ---------- */

html {
	scroll-padding-top: 90px;
}

@media (max-width: 768px) {
	html {
		scroll-padding-top: 20px;
	}
}


/* ---------- 2) 往路 / 復路テーブル ペア配置 ---------- */

.air-table-pair {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.air-table-pair > .air-table {
	flex: 1 1 0;
	min-width: 0;
}

.air-table-pair > .air-table table {
	min-width: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.air-table-pair {
		flex-direction: column;
		gap: 20px;
	}

	.air-table-pair > .air-table table {
		font-size: 12px;
	}

	.air-table-pair > .air-table th,
	.air-table-pair > .air-table td {
		padding: 10px 6px;
	}
}


/* ---------- 3) スマホ時 .gnav のクリック透過問題を解消 ---------- */

@media (max-width: 768px) {
	.gnav {
		pointer-events: none;
	}

	.gnav.is-open {
		pointer-events: auto;
	}
}


/* =============================================================
   Reserve Form — ホテル予約・フライト予約共通フォームスタイル
   ※ style.css 末尾に追記してください
   ※ 既存の .option / .tour-timeline / .tour-timeline-title / .sec-head /
      .btn-area / .btn-primary は継承するため、ここでは触りません
   ============================================================= */


/* ---------- セクション全体 ---------- */

.reserve-form .option-lead {
	text-align: left;
}

.reserve-form .reserve-tel {
	text-align: center;
	margin-bottom: 48px;
}

.reserve-form .reserve-tel a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-num);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .05em;
	color: var(--accent-red);
	padding: 12px 28px;
	border: 1px solid var(--accent-red);
	transition: background .2s, color .2s;
}

.reserve-form .reserve-tel a:hover {
	background: var(--accent-red);
	color: #fff;
	opacity: 1;
}

.reserve-form .reserve-tel a::before {
	content: '📞';
	font-size: 22px;
}


/* ---------- ブロック（白カード） ---------- */

.reserve-form .reserve-block {
	margin: 0 auto 32px;
	padding: 40px 40px;
}


/* ---------- 定義リスト（項目名 / 入力欄 の2カラム） ---------- */

.reserve-form .reserve-dl {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 0;
	border-top: 1px solid var(--line-soft);
}

.reserve-form .reserve-dl > dt,
.reserve-form .reserve-dl > dd {
	padding: 20px 16px;
	border-bottom: 1px solid var(--line-soft);
}

.reserve-form .reserve-dl > dt {
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .05em;
	color: var(--text);
	background: var(--accent-gold-soft);
	border-left: 3px solid var(--accent-red);
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.reserve-form .reserve-dl > dt::after {
	content: '必須';
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .05em;
	color: #fff;
	background: var(--accent-red);
	padding: 2px 8px;
	border-radius: 2px;
	width: fit-content;
	margin-top: 6px;
}

.reserve-form .reserve-dl > dt.ninni::after {
	content: '任意';
	background: var(--text-dim);
}

.reserve-form .reserve-dl > dd {
	background: var(--bg-paper);
}


/* ---------- 注意書き（dl.note：入力欄の前にある説明） ---------- */

.reserve-form .note {
	background: var(--accent-red-soft);
	border-left: 3px solid var(--accent-red);
	padding: 14px 18px;
	margin-bottom: 14px;
	font-size: 12px;
	line-height: 1.7;
}

.reserve-form .note > dt {
	font-weight: 600;
	color: var(--accent-red-2);
	margin-bottom: 6px;
	font-size: 13px;
}

.reserve-form .note > dd {
	color: var(--text-mute);
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 2px;
}

.reserve-form .note > dd::before {
	content: '・';
	color: var(--accent-red);
}

.reserve-form .note a {
	color: var(--accent-red);
	text-decoration: underline;
}


/* ---------- 入力欄（mwformが出力する素のフォーム要素） ---------- */

.reserve-form input[type="text"],
.reserve-form input[type="number"],
.reserve-form input[type="email"],
.reserve-form input[type="tel"],
.reserve-form input[type="date"],
.reserve-form select,
.reserve-form textarea {
	font-family: inherit;
	font-size: 15px;
	color: var(--text);
	padding: 10px 14px;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	border-radius: 2px;
	line-height: 1.6;
	width: 100%;
	max-width: 360px;
	transition: border-color .2s, box-shadow .2s;
}

.reserve-form textarea {
	max-width: 100%;
	min-height: 120px;
	resize: vertical;
}

.reserve-form input[type="number"] {
	max-width: 120px;
}

.reserve-form input[type="text"].half {
	max-width: 240px;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
	outline: none;
	border-color: var(--accent-red);
	box-shadow: 0 0 0 3px rgba(184, 35, 46, 0.12);
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
	color: var(--text-dim);
}

.reserve-form select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--accent-red) 50%),
		linear-gradient(135deg, var(--accent-red) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 12px) 50%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 36px;
}


/* ---------- ラジオボタン・チェックボックス ---------- */

.reserve-form input[type="radio"],
.reserve-form input[type="checkbox"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 1.5px solid var(--line-soft);
	background: #fff;
	margin-right: 6px;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
	transition: border-color .2s;
	flex-shrink: 0;
}

.reserve-form input[type="radio"] {
	border-radius: 50%;
}

.reserve-form input[type="checkbox"] {
	border-radius: 2px;
}

.reserve-form input[type="radio"]:hover,
.reserve-form input[type="checkbox"]:hover {
	border-color: var(--accent-red);
}

.reserve-form input[type="radio"]:checked {
	border-color: var(--accent-red);
}

.reserve-form input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--accent-red);
}

.reserve-form input[type="checkbox"]:checked {
	border-color: var(--accent-red);
	background: var(--accent-red);
}

.reserve-form input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* ラジオ・チェック横に並ぶlabel */
.reserve-form .mwform-radio-field,
.reserve-form .mwform-checkbox-field {
	display: inline-flex;
	align-items: center;
	margin-right: 20px;
	margin-bottom: 4px;
	cursor: pointer;
}

.reserve-form .mwform-radio-field label,
.reserve-form .mwform-checkbox-field label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}


/* ---------- flexdd（select / radio と input を横並び） ---------- */

/* ---------- flexdd（select / radio と input を横並びにしたいdd用） ---------- */

.reserve-form .flexdd {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}


/* ---------- 姓・名・ミドルネーム ---------- */

.reserve-form .name-inputs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.reserve-form .name-inputs li {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.reserve-form .name-inputs label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-mute);
	letter-spacing: .05em;
}

.reserve-form .name-inputs input[type="text"] {
	max-width: 100%;
}


/* ---------- 生年月日（年/月/日） ---------- */

.reserve-form .birth-inputs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.reserve-form .birth-inputs li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.reserve-form .birth-inputs li:first-child input[type="text"] {
	max-width: 100px;
}

.reserve-form .birth-inputs .unit {
	font-size: 14px;
	color: var(--text-mute);
}


/* ---------- 部屋割り ---------- */

.reserve-form .room {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 10px;
}

.reserve-form .room li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	padding: 10px 14px;
	background: var(--bg-soft);
	border: 1px solid var(--line-soft);
}

.reserve-form .room input[type="number"] {
	max-width: 70px;
	margin-left: auto;
}

.reserve-form .caution {
	display: block;
	font-size: 12px;
	color: var(--accent-red);
	margin-top: 6px;
}


/* ---------- フライト情報（往路・復路） ---------- */

.reserve-form .flight-inputs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.reserve-form .flight-inputs li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.reserve-form .flight-inputs .leg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	padding: 4px 10px;
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: var(--accent-red);
	letter-spacing: .08em;
	flex-shrink: 0;
}


/* ---------- サブ行（ラジオ選択後の条件分岐入力） ---------- */

.reserve-form .sub-row {
	margin-top: 12px;
	padding: 12px 14px;
	background: var(--bg-soft);
	border-left: 2px solid var(--accent-gold);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.reserve-form .sub-row-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-mute);
	letter-spacing: .03em;
	flex-shrink: 0;
}

.reserve-form .sub-row > ul {
	width: 100%;
}


/* ---------- 注意書き（インライン） ---------- */

.reserve-form .note-inline {
	font-size: 12px;
	color: var(--text-mute);
	margin-top: 10px;
	line-height: 1.7;
}


/* ---------- 同行者アコーディオン ---------- */

.reserve-form .reserve-accordion {
	margin-bottom: 32px;
}

.reserve-form .reserve-accordion > .accordion__summary {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .08em;
	padding: 20px 32px;
	background: var(--bg-paper);
	border: 1px solid var(--line-soft);
	border-left: 4px solid var(--accent-gold);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background .2s;
}

.reserve-form .reserve-accordion > .accordion__summary::-webkit-details-marker {
	display: none;
}

.reserve-form .reserve-accordion > .accordion__summary::after {
	content: '＋';
	font-size: 22px;
	font-weight: 400;
	color: var(--accent-red);
	transition: transform .3s;
}

.reserve-form .reserve-accordion[open] > .accordion__summary::after {
	content: '−';
}

.reserve-form .reserve-accordion > .accordion__summary:hover {
	background: var(--accent-gold-soft);
	opacity: 1;
}

.reserve-form .reserve-accordion .accordion__detail {
	padding-top: 24px;
}


/* ---------- プライバシー同意 ---------- */

.reserve-form .privacy {
	max-width: 980px;
	margin: 48px auto 24px;
	padding: 28px 32px;
	background: var(--accent-gold-soft);
	border: 1px solid var(--line-gold);
	text-align: center;
}

.reserve-form .privacy p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text);
	margin-bottom: 16px;
}

.reserve-form .privacy p:last-child {
	margin-bottom: 0;
}

.reserve-form .privacy a {
	color: var(--accent-red);
	text-decoration: underline;
	font-weight: 600;
}

.reserve-form .privacy .text-center {
	text-align: center;
}

.reserve-form .privacy .mwform-checkbox-field {
	margin-right: 0;
}


/* ---------- 送信ボタン ---------- */

.reserve-form .reserve-submit {
	margin-top: 32px;
	text-align: center;
}

.reserve-form .reserve-submit input[type="button"],
.reserve-form .reserve-submit input[type="submit"] {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .15em;
	color: #fff;
	background: var(--accent-red);
	border: none;
	padding: 18px 64px;
	cursor: pointer;
	min-width: 280px;
	max-width: 100%;
	transition: background .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.reserve-form .reserve-submit input[type="button"]:hover,
.reserve-form .reserve-submit input[type="submit"]:hover {
	background: var(--accent-red-2);
	box-shadow: 0 6px 20px rgba(184, 35, 46, 0.25);
	transform: translateY(-2px);
}

.reserve-form .reserve-submit input[type="button"]:active,
.reserve-form .reserve-submit input[type="submit"]:active {
	transform: translateY(0);
}

/* 確認画面の「戻る」ボタン */
.reserve-form .reserve-submit input[name*="back"] {
	background: var(--text-mute);
	margin-right: 12px;
	min-width: 180px;
	padding: 18px 40px;
}

.reserve-form .reserve-submit input[name*="back"]:hover {
	background: var(--text);
	box-shadow: 0 6px 20px rgba(31, 26, 20, 0.15);
}


/* ---------- ファイル添付（mwform_image） ---------- */

.reserve-form input[type="file"] {
	font-family: inherit;
	font-size: 13px;
	padding: 8px;
	background: var(--bg-paper);
	border: 1px dashed var(--line-soft);
	border-radius: 2px;
	cursor: pointer;
	max-width: 360px;
	width: 100%;
}

.reserve-form input[type="file"]:hover {
	border-color: var(--accent-red);
}


/* ---------- エラー表示（mwformのバリデーションエラー） ---------- */

.reserve-form .error {
	color: var(--accent-red);
	font-size: 12px;
	margin-top: 6px;
	display: block;
}


/* =============================================================
   タブレット・スマホ対応
   ============================================================= */

@media (max-width: 960px) {
	.reserve-form .reserve-block {
		padding: 32px 24px;
	}

	.reserve-form .reserve-dl {
		grid-template-columns: 180px 1fr;
	}
}

@media (max-width: 768px) {
	.reserve-form .reserve-tel a {
		font-size: 26px;
		padding: 10px 20px;
	}

	.reserve-form .reserve-block {
		padding: 24px 16px;
	}

	/* 項目名と入力欄を縦積み */
	.reserve-form .reserve-dl {
		display: block;
		border-top: none;
	}

	.reserve-form .reserve-dl > dt,
	.reserve-form .reserve-dl > dd {
		display: block;
		padding: 12px 14px;
	}

	.reserve-form .reserve-dl > dt {
		border-bottom: none;
		border-left: 3px solid var(--accent-red);
		margin-top: 16px;
	}

	.reserve-form .reserve-dl > dt::after {
		display: inline-block;
		margin-left: 8px;
		margin-top: 0;
		vertical-align: 2px;
	}

	.reserve-form .reserve-dl > dt:first-of-type {
		margin-top: 0;
	}

	.reserve-form .reserve-dl > dd {
		border-bottom: 1px solid var(--line-soft);
		padding-top: 12px;
		padding-bottom: 18px;
	}

	.reserve-form .reserve-dl > dd:last-of-type {
		border-bottom: none;
	}

	.reserve-form input[type="text"],
	.reserve-form input[type="number"],
	.reserve-form input[type="email"],
	.reserve-form input[type="tel"],
	.reserve-form select {
		font-size: 16px;  /* iOS Safariズーム防止 */
		max-width: 100%;
	}

	.reserve-form input[type="text"].half {
		max-width: 100%;
	}

	.reserve-form .name-inputs {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.reserve-form .birth-inputs {
		gap: 8px;
	}

	.reserve-form .birth-inputs li:first-child input[type="text"] {
		max-width: 80px;
	}

	.reserve-form .room {
		grid-template-columns: 1fr;
	}

	.reserve-form .flight-inputs li {
		gap: 8px;
	}

	.reserve-form .flight-inputs .leg {
		min-width: 44px;
	}

	.reserve-form .reserve-accordion > .accordion__summary {
		padding: 16px 20px;
		font-size: 16px;
	}

	.reserve-form .privacy {
		padding: 20px 18px;
	}

	.reserve-form .reserve-submit input[type="button"],
	.reserve-form .reserve-submit input[type="submit"] {
		min-width: 100%;
		padding: 16px 32px;
		font-size: 15px;
	}

	.reserve-form .reserve-submit input[name*="back"] {
		min-width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
}




/* ---------- 入国条件ボックス ---------- */

.reserve-form .entry-condition {
	max-width: 980px;
	margin: 0 auto 36px;
	padding: 20px 28px;
	background: var(--accent-gold-soft);
	border: 1px solid var(--line-gold);
	border-left: 4px solid var(--accent-red);
}

.reserve-form .entry-condition-title {
	font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--accent-red);
	letter-spacing: .06em;
	margin-bottom: 10px;
}

.reserve-form .entry-condition p {
	font-size: 13px;
	line-height: 1.8;
	color: var(--text);
	margin: 0;
}


/* ---------- マイレージ入力（航空会社 + 番号） ---------- */

.reserve-form .mileage-inputs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 8px;
}

.reserve-form .mileage-inputs input[type="text"] {
	flex: 1 1 200px;
	max-width: 280px;
}


/* ---------- タブレット・スマホ対応 ---------- */

@media (max-width: 768px) {
	.reserve-form .entry-condition {
		padding: 16px 18px;
	}

	.reserve-form .entry-condition-title {
		font-size: 14px;
	}

	.reserve-form .entry-condition p {
		font-size: 12px;
	}

	.reserve-form .mileage-inputs {
		flex-direction: column;
		gap: 8px;
	}

	.reserve-form .mileage-inputs input[type="text"] {
		max-width: 100%;
	}
}



/* メディアラッパー（旧 .option-card-img と同じ役割） */
.option-card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--bg-soft);
	overflow: hidden;
}

/* スライダー本体 */
.option-card-slider {
	width: 100%;
	height: 100%;
}

/* Slick初期化前の状態でも崩れないように */
.option-card-slider:not(.slick-initialized) > div:nth-child(n+2) {
	display: none;
}

/* Slick初期化後の各スライド */
.option-card-slider .slick-list,
.option-card-slider .slick-track,
.option-card-slider .slick-slide,
.option-card-slider .slick-slide > div {
	width: 100%;
	height: 100%;
}

.option-card-slider .slick-slide {
	position: relative;
}

/* 画像本体 */
.option-card-slider img,
.option-card-media > div > img,
.option-card-slider > div > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.option-card-slider .slick-dots {
	bottom: 10px;
}

.option-card-slider .slick-dots li button:before {
	color: #fff;
	opacity: .55;
	font-size: 8px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.option-card-slider .slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 1;
}