/* ===========================================================
   BUSHIDO TOURS JAPAN — shared stylesheet
   漆黒 × 金 の和モダン。BUSHIDO コーポレート／名古屋LPと同系統。
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --ink: #0A0A0A;
  --ink-soft: #141310;
  --ink-card: #17150F;
  --gold: #C9A86A;
  --gold-light: #E2C98A;
  --gold-dim: rgba(201, 168, 106, 0.18);
  --washi: #F5F0E8;
  --vermilion: #8B1A1A;
  --text-light: rgba(245, 240, 232, 0.85);
  --text-dim: rgba(245, 240, 232, 0.55);
  --serif-en: 'Cinzel', serif;
  --serif-sub: 'Cormorant Garamond', serif;
  --serif-jp: 'Noto Serif JP', serif;
  --accent-h: 40; /* 各ページで上書き */
}

body {
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--serif-jp);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* 和紙の粒子 */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: 0.035;
  background-image:
    radial-gradient(rgba(245,240,232,0.9) 0.5px, transparent 0.5px),
    radial-gradient(rgba(245,240,232,0.6) 0.5px, transparent 0.5px);
  background-size: 7px 7px, 11px 11px;
  background-position: 0 0, 3px 5px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }
section { padding: 96px 0; position: relative; }

/* === TYPOGRAPHY === */
.section-label {
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 16px; justify-content: center;
  margin-bottom: 18px;
}
.section-label::before, .section-label::after {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-title {
  font-family: var(--serif-sub);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400; color: var(--washi);
  text-align: center; letter-spacing: 0.06em; line-height: 1.35;
}
.section-title .jp {
  display: block; font-family: var(--serif-jp);
  font-size: 0.4em; color: var(--text-dim);
  letter-spacing: 0.5em; margin-top: 14px;
}
.section-lead {
  text-align: center; max-width: 720px; margin: 26px auto 0;
  font-size: 16px; color: var(--text-dim);
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(rgba(10,10,10,0.94), rgba(10,10,10,0.78) 70%, transparent);
  backdrop-filter: blur(6px);
}
.nav-logo {
  font-family: var(--serif-en); font-size: 16px;
  letter-spacing: 0.3em; color: var(--washi); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--serif-en); font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 9px 20px; border-radius: 1px;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
@media (max-width: 1120px) {
  .nav-links { gap: 18px; }
  .nav-links a[href*="#reviews"], .nav-links a[href*="#guides"] { display: none; }
}
@media (max-width: 940px) { .nav-links a[href*="#price"], .nav-links a[href*="#faq"] { display: none; } }
@media (max-width: 860px) { .nav-links a:not(.nav-cta) { display: none; } }

/* === BUTTONS === */
.btn {
  display: inline-block; font-family: var(--serif-en);
  font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 40px; border-radius: 1px; text-decoration: none;
  border: 1px solid var(--gold); cursor: pointer; transition: all .35s;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: var(--gold-dim); }

/* === HERO === */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(10,10,10,.45) 0%, rgba(10,10,10,.7) 62%, var(--ink) 100%),
    linear-gradient(rgba(10,10,10,.28), rgba(10,10,10,.28));
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero-kanji {
  position: absolute; z-index: 0; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-jp); font-weight: 400;
  font-size: clamp(180px, 34vw, 460px);
  color: hsla(var(--accent-h), 30%, 70%, 0.055);
  line-height: 1; letter-spacing: .1em; pointer-events: none; user-select: none;
}
.hero-eyebrow {
  font-family: var(--serif-en); font-size: 11.5px;
  letter-spacing: 0.42em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--serif-sub); font-weight: 400;
  font-size: clamp(38px, 7vw, 76px); line-height: 1.15;
  color: var(--washi); letter-spacing: 0.03em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin: 28px auto 0; max-width: 620px;
  font-size: 16.5px; color: var(--text-light);
}
.hero-price {
  margin: 34px auto 0; display: inline-flex; flex-wrap: wrap;
  align-items: baseline; gap: 6px 14px; justify-content: center;
  border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
  padding: 16px 26px;
}
.hero-price .amt {
  font-family: var(--serif-sub); font-size: clamp(30px, 5vw, 44px);
  color: var(--gold-light); letter-spacing: .02em; line-height: 1;
}
.hero-price .unit { font-size: 13.5px; color: var(--text-dim); letter-spacing: .12em; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scarcity { margin-top: 24px; font-size: 12.5px; color: var(--text-dim); letter-spacing: .08em; }

/* === PRICE BREAKDOWN === */
.price-band { background: var(--ink-soft); border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.price-math {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 3vw, 34px); flex-wrap: wrap; margin-top: 34px;
}
.price-math .cell { text-align: center; min-width: 110px; }
.price-math .cell b {
  display: block; font-family: var(--serif-sub);
  font-size: clamp(24px, 3.4vw, 36px); color: var(--washi); font-weight: 400; line-height: 1.2;
}
.price-math .cell span { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); }
.price-math .op { font-family: var(--serif-sub); font-size: 26px; color: var(--gold); }
.price-math .cell.result b { color: var(--gold-light); }
.price-foot { text-align: center; margin-top: 30px; font-size: 14px; color: var(--text-dim); }

/* === TIERS === */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; align-items: stretch; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-card); border: 1px solid rgba(201,168,106,.16);
  padding: 32px 26px 28px; border-radius: 2px;
}
.tier-featured { border-color: var(--gold); background: #1b1811; }
.tier-flag {
  position: absolute; top: -1px; right: -1px;
  font-family: var(--serif-en); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); padding: 5px 12px;
}
.tier-name {
  font-family: var(--serif-sub); font-size: 24px; color: var(--washi);
  letter-spacing: .03em; line-height: 1.25;
}
.tier-jp { display: block; font-family: var(--serif-jp); font-size: 11.5px; color: var(--text-dim); letter-spacing: .3em; margin-top: 6px; }
.tier-price { margin-top: 18px; }
.tier-price b {
  display: block; font-family: var(--serif-sub); font-weight: 400;
  font-size: 38px; color: var(--gold-light); line-height: 1.1;
}
.tier-price span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-top: 6px; font-family: var(--serif-en); }
.tier-strap {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(201,168,106,.14);
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.tier-pitch { margin-top: 14px; font-size: 14.5px; color: var(--text-dim); line-height: 1.75; }
.tier ul { list-style: none; margin: 20px 0 26px; flex: 1; }
.tier li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 13.5px; line-height: 1.7; }
.tier li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .6; }
.tier .btn { width: 100%; text-align: center; padding: 13px 20px; font-size: 11px; }

/* === CAR VERDICT === */
.verdict {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--serif-en); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 1px;
}
.verdict.yes { color: var(--ink); background: var(--gold); }
.verdict.no { color: var(--gold); border: 1px solid rgba(201,168,106,.45); }

.form-row-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .form-row-3 { grid-template-columns: 1fr; } }

/* === INCLUDE / EXCLUDE === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 52px; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }
.panel {
  background: var(--ink-card); border: 1px solid rgba(201,168,106,.16);
  padding: 34px 30px; border-radius: 2px;
}
.panel h3 {
  font-family: var(--serif-en); font-size: 13px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 22px;
}
.panel ul { list-style: none; }
.panel li { position: relative; padding-left: 26px; margin-bottom: 13px; font-size: 15px; line-height: 1.75; }
.panel li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .7;
}
.panel.excl li::before { content: '·'; font-size: 22px; line-height: 1; top: 2px; }
.panel.excl li { color: var(--text-dim); }

/* === DESTINATION GRID === */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative; display: block; text-decoration: none; color: inherit;
  background: var(--ink-card); border: 1px solid rgba(201,168,106,.16);
  border-radius: 2px; overflow: hidden; transition: border-color .35s, transform .35s;
}
.dest-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dest-card .thumb {
  height: 168px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, hsla(var(--card-h),42%,38%,.55), transparent 62%),
    linear-gradient(150deg, hsla(var(--card-h),35%,22%,.9), #0d0c09 78%);
}
.dest-card .thumb::after {
  content: attr(data-kanji);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-jp); font-size: var(--kanji-size, 70px); letter-spacing: .06em;
  color: rgba(245,240,232,.13); white-space: nowrap;
}
.dest-card .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .82; z-index: 1; transition: transform .8s ease, opacity .5s ease;
}
/* 写真があるときは透かし漢字を写真の上に薄く重ねる */
.dest-card .thumb:has(img)::after { z-index: 2; color: rgba(245,240,232,.22); text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.dest-card .thumb:has(img) { background: #0d0c09; }
.dest-card .thumb:has(img)::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.1) 45%, rgba(23,21,15,.92) 100%);
}
.dest-card:hover .thumb img { transform: scale(1.06); opacity: 1; }
.dest-card .body { padding: 22px 22px 26px; }
.dest-card .region {
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); opacity: .85;
}
.dest-card h3 {
  font-family: var(--serif-sub); font-size: 26px; font-weight: 400;
  color: var(--washi); margin: 6px 0 10px; letter-spacing: .04em;
}
.dest-card h3 small { font-family: var(--serif-jp); font-size: 13px; color: var(--text-dim); margin-left: 10px; letter-spacing: .2em; }
.dest-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.dest-card .more {
  margin-top: 16px; font-family: var(--serif-en); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.badge-access {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--serif-en); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--washi); background: rgba(10,10,10,.72);
  border: 1px solid rgba(201,168,106,.35); padding: 4px 10px; border-radius: 1px;
}

/* === ALL PREFECTURES === */
.pref-region { margin-top: 34px; }
.pref-region h4 {
  font-family: var(--serif-en); font-size: 11.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.pref-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pref-list span, .pref-list a {
  font-size: 13px; color: var(--text-dim); text-decoration: none;
  border: 1px solid rgba(201,168,106,.14); padding: 5px 13px; border-radius: 1px;
}
.pref-list a { color: var(--gold-light); border-color: rgba(201,168,106,.4); }
.pref-list a:hover { background: var(--gold-dim); }

/* === ITINERARY === */
.itin { margin-top: 52px; border-left: 1px solid var(--gold-dim); padding-left: 0; }
.itin-row { display: grid; grid-template-columns: 92px 1fr; gap: 22px; padding: 0 0 30px 26px; position: relative; }
.itin-row::before {
  content: ''; position: absolute; left: -4.5px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--ink);
}
.itin-row .t {
  font-family: var(--serif-en); font-size: 14px; color: var(--gold);
  letter-spacing: .1em; padding-top: 4px;
}
.itin-row h4 { font-family: var(--serif-sub); font-size: 21px; font-weight: 400; color: var(--washi); letter-spacing: .03em; }
.itin-row p { font-size: 14.5px; color: var(--text-dim); margin-top: 5px; }
@media (max-width: 620px) {
  .itin-row { grid-template-columns: 1fr; gap: 4px; }
  .itin-row .t { padding-top: 0; }
}

.day-head {
  font-family: var(--serif-en); font-size: 12.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  margin: 52px 0 22px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,106,.18);
}
.day-head:first-of-type { margin-top: 46px; }

.disclaimer {
  margin-top: 30px; padding: 16px 20px; font-size: 12.5px; line-height: 1.85;
  color: var(--text-dim); border-left: 2px solid rgba(201,168,106,.35);
  background: rgba(245,240,232,.03);
}

/* === REVIEWS === */
.stat-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(20px, 6vw, 76px); margin-top: 46px;
  padding: 30px 0; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim);
}
.stat-bar > div { text-align: center; }
.stat-bar b {
  display: block; font-family: var(--serif-sub); font-weight: 400;
  font-size: clamp(32px, 5vw, 46px); color: var(--gold-light); line-height: 1.1;
}
.stat-bar span {
  display: block; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 6px;
  font-family: var(--serif-en);
}
.stat-bar .stars { color: var(--gold); letter-spacing: .16em; font-size: 13px; margin-top: 4px; }

.review-grid {
  margin-top: 52px; columns: 3; column-gap: 22px;
}
@media (max-width: 900px) { .review-grid { columns: 2; } }
@media (max-width: 600px) { .review-grid { columns: 1; } }
.review {
  break-inside: avoid; margin: 0 0 22px;
  background: var(--ink-card); border: 1px solid rgba(201,168,106,.16);
  padding: 26px 24px; border-radius: 2px;
}
.review-stars { color: var(--gold); letter-spacing: .16em; font-size: 12.5px; }
.review blockquote {
  font-family: var(--serif-sub); font-size: 17.5px; font-style: italic;
  color: var(--washi); line-height: 1.7; margin: 14px 0 18px;
}
.review figcaption {
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.review figcaption span { color: var(--text-dim); }
.review-pending {
  max-width: 640px; margin: 46px auto 0; text-align: center;
  font-size: 14.5px; color: var(--text-dim); line-height: 1.85;
  border: 1px dashed rgba(201,168,106,.28); padding: 26px 24px; border-radius: 2px;
}

/* === ADD-ONS === */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 900px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .addon-grid { grid-template-columns: 1fr; } }
.addon {
  background: var(--ink-card); border: 1px solid rgba(201,168,106,.14);
  padding: 24px 22px; border-radius: 2px;
  display: flex; flex-direction: column;
}
.addon h4 {
  font-family: var(--serif-sub); font-size: 20px; font-weight: 400;
  color: var(--washi); letter-spacing: .03em; margin-bottom: 8px;
}
.addon p { font-size: 13.5px; color: var(--text-dim); line-height: 1.75; flex: 1; }
.addon-price {
  margin-top: 16px; font-family: var(--serif-en); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}

/* === GUIDE === */
.guide-split { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 44px; margin-top: 52px; align-items: start; }
@media (max-width: 820px) {
  .guide-split { grid-template-columns: 1fr; }
  .guide-split > div:first-child { max-width: 340px; margin: 0 auto; }
}
.guide-split img { border: 1px solid rgba(201,168,106,.24); width: 100%; }
.creds { list-style: none; margin-top: 20px; }
.creds li {
  font-family: var(--serif-en); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-dim);
  padding: 9px 0; border-bottom: 1px solid rgba(201,168,106,.12);
}
.creds li:first-child { color: var(--gold); }
.guide-title {
  font-family: var(--serif-en); font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.guide-p { font-size: 16px; margin-bottom: 18px; line-height: 1.95; }
.guide-quote {
  margin-top: 28px; padding-left: 22px; border-left: 2px solid var(--gold);
  font-family: var(--serif-sub); font-style: italic;
  font-size: 22px; color: var(--gold-light); line-height: 1.5;
}
.photo-credits { display: block; margin-top: 14px; font-size: 10.5px; opacity: .7; }

/* === CHIPS === */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; justify-content: center; }
.chips span {
  font-size: 13px; color: var(--text-light);
  border: 1px solid rgba(201,168,106,.28); padding: 7px 16px; border-radius: 1px;
}

/* === FAQ === */
.faq-item { border-bottom: 1px solid rgba(201,168,106,.14); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 22px 40px 22px 0; position: relative;
  font-family: var(--serif-sub); font-size: 19px; color: var(--washi); letter-spacing: .02em;
}
.faq-q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 22px; transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 0 22px; font-size: 15px; color: var(--text-dim); }
.faq-item.open .faq-a { max-height: 520px; }

/* === FORM === */
.contact-form { max-width: 760px; margin: 46px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--serif-en); font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; background: rgba(245,240,232,.04);
  border: 1px solid rgba(201,168,106,.24); color: var(--washi);
  font-family: var(--serif-jp); font-size: 15px; font-weight: 300;
  padding: 13px 15px; border-radius: 1px; outline: none; transition: border-color .3s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select option { background: var(--ink-soft); color: var(--washi); }
.contact-form .btn { width: 100%; margin-top: 8px; }
.avail-note { text-align: center; margin-top: 30px; font-size: 15px; color: var(--text-light); }
.avail-note .sub { display: block; font-size: 13px; color: var(--text-dim); margin-top: 8px; }
.contact-reply { text-align: center; margin-top: 22px; font-size: 14px; color: var(--text-dim); }
.legal-note { text-align: center; margin-top: 16px; font-size: 12px; color: var(--text-dim); line-height: 1.8; }

/* === FOOTER === */
footer { background: #060605; border-top: 1px solid rgba(201,168,106,.14); padding: 68px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--serif-en); font-size: 17px; letter-spacing: .3em; color: var(--washi); margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
footer p { font-size: 13.5px; color: var(--text-dim); line-height: 1.9; }
.footer-head { font-family: var(--serif-en); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(201,168,106,.1);
  font-size: 11.5px; color: rgba(245,240,232,.4); text-align: center; line-height: 1.9;
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(140%);
  z-index: 90; background: var(--gold); color: var(--ink);
  font-family: var(--serif-en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 1px; text-decoration: none;
  box-shadow: 0 10px 34px rgba(0,0,0,.55); transition: transform .45s ease;
  white-space: nowrap;
}
.floating-cta.show { transform: translateX(-50%) translateY(0); }

/* === FADE IN === */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* === BREADCRUMB === */
.crumb { padding-top: 92px; }
.crumb a, .crumb span {
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--text-dim); text-decoration: none;
}
.crumb a:hover { color: var(--gold); }
.crumb .sep { margin: 0 10px; opacity: .5; }

/* === NEXT DESTINATIONS === */
.next-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.next-strip a {
  font-family: var(--serif-en); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  border: 1px solid rgba(201,168,106,.18); padding: 9px 18px; border-radius: 1px; transition: all .3s;
}
.next-strip a:hover { color: var(--gold); border-color: var(--gold); }

/* === LEGAL TABLES === */
.legal-table { width: 100%; border-collapse: collapse; margin-top: 22px; }
.legal-table th, .legal-table td {
  text-align: left; vertical-align: top; padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,106,.12); font-weight: 300;
}
.legal-table th {
  width: 32%; padding-right: 24px;
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); line-height: 1.7;
}
.legal-table td { font-size: 14.5px; color: var(--text-light); line-height: 1.8; }
.legal-table td b { color: var(--gold-light); font-weight: 400; }
.legal-table .muted { color: var(--text-dim); font-size: 13px; }
.legal-table a { color: var(--gold); }
@media (max-width: 620px) {
  .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border: 0; padding-bottom: 4px; }
  .legal-table td { padding-top: 0; }
}

/* === DATE PICKER === */
.datepicker {
  border: 1px solid rgba(201,168,106,.24); border-radius: 1px;
  background: rgba(245,240,232,.04); padding: 18px 18px 16px;
  max-width: 420px;
}
.dp-fallback { display: none; }           /* JS が動いたら select は隠す（値は送信され続ける） */
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dp-title { font-family: var(--serif-sub); font-size: 20px; color: var(--washi); letter-spacing: .04em; }
.dp-nav {
  background: none; border: 1px solid rgba(201,168,106,.3); color: var(--gold);
  width: 32px; height: 32px; border-radius: 1px; cursor: pointer;
  font-size: 17px; line-height: 1; transition: all .25s;
}
.dp-nav:hover:not(:disabled) { background: var(--gold); color: var(--ink); }
.dp-nav:disabled { opacity: .25; cursor: default; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dp-dow {
  text-align: center; font-family: var(--serif-en); font-size: 9.5px;
  letter-spacing: .12em; color: var(--text-dim); padding-bottom: 6px;
}
.dp-pad { aspect-ratio: 1; }
.dp-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid transparent; border-radius: 1px;
  color: var(--washi); font-family: var(--serif-jp); font-weight: 300; font-size: 13.5px;
  cursor: pointer; transition: all .2s; padding: 0;
}
.dp-day:not(.dp-off) { border-color: rgba(201,168,106,.28); }
.dp-day:not(.dp-off):hover { background: var(--gold-dim); border-color: var(--gold); }
.dp-off { color: rgba(245,240,232,.16); cursor: default; }
.dp-in { background: rgba(201,168,106,.16); border-color: var(--gold) !important; }
.dp-sel { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--ink) !important; font-weight: 500; }
.dp-chosen {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(201,168,106,.14);
  font-size: 14px; color: var(--gold-light);
}
.dp-chosen span { color: var(--text-dim); }
.dp-chosen.dp-empty { color: var(--text-dim); font-size: 13px; }
.dp-warn { margin-top: 8px; font-size: 12.5px; color: var(--text-dim); line-height: 1.7; }

/* === QUOTE === */
.quote {
  margin: 4px 0 22px; padding: 22px 24px; border-radius: 1px;
  background: rgba(201,168,106,.07); border: 1px solid rgba(201,168,106,.3);
  text-align: center;
}
.quote-line {
  font-family: var(--serif-en); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.quote-amount {
  font-family: var(--serif-sub); font-size: 40px; color: var(--gold-light);
  line-height: 1.15; margin-top: 6px;
}
.quote-sub { font-size: 12.5px; color: var(--text-dim); line-height: 1.75; margin-top: 8px; }
