@charset "UTF-8";

/* ============================================
   LIVINGHALL WAKOU — Variables & Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Screen reader only — visually hidden but accessible */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --bg: #f9f7f4;
  --bg-dark: #151210;
  --text: #2a2420;
  --text-light: #fff;
  --muted: #8a7e74;
  --accent: #9B8469;
  --accent-light: #C4AD94;
  --accent-dark: #6B5641;
  --border: #e8e3dc;
  --font-en: "Playfair Display", "Times New Roman", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --container: min(1200px, 92vw);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 2.0; -webkit-font-smoothing: antialiased; cursor: none; overflow-x: hidden; font-size: 15px; position: relative; }
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: .02; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-repeat: repeat; mix-blend-mode: multiply; }
a { color: inherit; text-decoration: none; cursor: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: none; }
.container { width: var(--container); margin-inline: auto; }

/* ── Cursor ── */
.cursor { position: fixed; top: 0; left: 0; width: 16px; height: 16px; border: 1px solid var(--accent); border-radius: 50%; pointer-events: none; z-index: 10000; transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .4s; mix-blend-mode: difference; }
.cursor.is-active { width: 48px; height: 48px; border-color: var(--text-light); }
@media (max-width: 768px) { .cursor { display: none; } body, a, button { cursor: auto; } }

/* ── Opening ── */
.opening { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: var(--bg-dark); }
.opening.is-done { display: none; }
.opening.is-leaving { opacity: 0; transition: opacity .9s ease; }
.opening__content { text-align: center; }
.opening__line { font-family: var(--font-serif); font-size: clamp(18px, 3vw, 28px); color: var(--text-light); opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s var(--ease-out); }
.opening__line.is-visible { opacity: 1; transform: translateY(0); }
.opening__line--en { font-family: var(--font-en); font-size: clamp(14px, 2vw, 18px); color: var(--accent-light); margin-top: 8px; letter-spacing: .15em; }
.opening__bar { width: 60px; height: 1px; background: var(--accent); margin: 24px auto 0; transform: scaleX(0); transition: transform .8s var(--ease-out); }
.opening__bar.is-visible { transform: scaleX(1); }
body.is-opening { overflow: hidden; }

/* ── Section Label ── */
.section-label { display: block; font-family: var(--font-en); font-size: 11px; letter-spacing: .25em; color: var(--accent); margin-bottom: 14px; font-weight: 400; text-transform: uppercase; }

/* ── Header ── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s, box-shadow .4s; }
.site-header.is-scrolled { background: rgba(249,247,244,.92); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px max(4vw, 24px); }
.header__logo-text { font-family: var(--font-en); font-size: 18px; font-weight: 600; letter-spacing: .15em; color: var(--text-light); transition: color .4s; }
.is-scrolled .header__logo-text { color: var(--text); }
/* SVG logo */
.header__logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
.is-scrolled .header__logo-img { filter: none; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a { font-family: var(--font-en); font-size: 13px; letter-spacing: .1em; color: rgba(255,255,255,.8); transition: color .3s; }
.is-scrolled .header__nav a { color: var(--text); }
.header__nav a:hover { color: var(--accent); }
/* nav overlay sub-elements: hidden on desktop, shown inside mobile overlay */
.nav-overlay__top { display: none; }
.nav-overlay__bottom { display: none; }
.nav-overlay__links { display: contents; }
.header__hamburger { display: none; width: 32px; height: 24px; position: relative; background: none; border: none; }
.header__hamburger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--text-light); transition: transform .3s, opacity .3s; }
.is-scrolled .header__hamburger span { background: var(--text); }
.header__hamburger span:first-child { top: 4px; }
.header__hamburger span:last-child { bottom: 4px; }
.header__hamburger.is-open span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.header__hamburger.is-open span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 900px) {
  /* Full-screen overlay */
  .header__nav {
    position: fixed; inset: 0; z-index: 100;
    background: var(--bg-dark);
    flex-direction: column; align-items: stretch; gap: 0;
    opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease-out);
    overflow-y: auto;
  }
  .header__nav.is-open { opacity: 1; pointer-events: auto; }

  /* Top: logo */
  .nav-overlay__top {
    display: flex; align-items: center;
    padding: 24px max(5vw, 24px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }
  .nav-overlay__logo { height: 28px; width: auto; filter: brightness(0) invert(1); }

  /* Nav links */
  .nav-overlay__links {
    display: flex; flex-direction: column;
    flex: 1; padding: 8px 0;
  }
  .nav-overlay__links a {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-en);
    font-size: clamp(20px, 5vw, 30px);
    font-weight: 300;
    letter-spacing: .12em;
    color: rgba(255,255,255,.8) !important;
    padding: 18px max(5vw, 28px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .3s, background .3s;
  }
  .nav-overlay__links a::after {
    content: '→';
    font-size: .6em; letter-spacing: 0;
    color: var(--accent-light); opacity: .7;
    transition: transform .3s;
  }
  .nav-overlay__links a:hover {
    color: #fff !important;
    background: rgba(255,255,255,.03);
  }
  .nav-overlay__links a:hover::after { transform: translateX(4px); opacity: 1; }

  /* Bottom: tel + CTA buttons */
  .nav-overlay__bottom {
    display: block;
    flex-shrink: 0;
    padding: 28px max(5vw, 24px) calc(32px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.25);
  }
  .nav-overlay__tel {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(22px, 6vw, 30px);
    color: var(--text-light); letter-spacing: .08em;
    margin-bottom: 4px;
  }
  .nav-overlay__tel-note {
    font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 20px; letter-spacing: .04em;
  }
  .nav-overlay__btns { display: flex; gap: 10px; }
  .nav-overlay__btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 12px; border-radius: 8px;
    font-size: 13px; font-weight: 700; letter-spacing: .04em; text-align: center;
  }
  .nav-overlay__btn--line { background: #06C755; color: #fff; }
  .nav-overlay__btn--form { background: rgba(155,132,105,.3); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); }

  .header__hamburger { display: block; z-index: 102; }
  /* Keep hamburger lines white when overlay is open */
  body.nav-is-open .header__hamburger span { background: var(--text-light); }
  /* Lock body scroll when nav is open */
  body.nav-is-open { overflow: hidden; }
  /*
   * CRITICAL FIX: backdrop-filter on .site-header creates a new "containing block"
   * for position:fixed children, preventing the nav overlay from covering the
   * full viewport. Remove backdrop-filter when nav is open so .header__nav
   * with position:fixed;inset:0 correctly fills the whole screen.
   */
  body.nav-is-open .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* ── Hero ── */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 120%; object-fit: cover; object-position: center 30%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(21,18,16,.5) 0%, rgba(21,18,16,.25) 50%, rgba(21,18,16,.6) 100%); }
.hero__content { position: relative; z-index: 1; text-align: center; color: var(--text-light); }
.hero__label { font-family: var(--font-body); font-size: 13px; letter-spacing: .2em; color: var(--accent-light); margin-bottom: 24px; }
.hero__title { font-family: var(--font-en); font-size: clamp(48px, 8vw, 100px); font-weight: 300; line-height: 1.1; letter-spacing: .06em; }
.hero__title-line { display: block; }
.hero__sub { font-family: var(--font-serif); font-size: clamp(14px, 1.8vw, 18px); margin-top: 28px; opacity: .85; letter-spacing: .08em; line-height: 2; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); text-align: center; color: var(--text-light); z-index: 1; }
.hero__scroll span { display: block; font-family: var(--font-en); font-size: 11px; letter-spacing: .2em; margin-bottom: 8px; }
.hero__scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--accent-light), transparent); margin: 0 auto; animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: .8; } 50% { transform: scaleY(.4); opacity: .2; } }

/* ── Concept ── */
.concept { padding: clamp(100px, 12vw, 160px) 0; }
.concept__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.concept__title { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; line-height: 1.7; letter-spacing: .08em; }
.concept__img { margin-top: 32px; }
.concept__img img { width: 100%; border-radius: 6px; box-shadow: 0 8px 30px rgba(26,23,20,.08); }
.concept__text { color: var(--muted); line-height: 2; margin-bottom: 20px; }
.concept__features { display: flex; flex-direction: column; gap: 0; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.concept__feature {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text); letter-spacing: .04em;
}
.concept__feature:last-child { border-bottom: none; }
.concept__feature svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 768px) { .concept__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── Marquee ── */
.marquee { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; }
.marquee__track span { font-family: var(--font-en); font-size: clamp(18px, 2.2vw, 26px); letter-spacing: .15em; color: rgba(155,132,105,.15); padding-right: 16px; }

/* ── Gallery ── */
.gallery { padding: clamp(100px, 12vw, 160px) 0; }
.gallery__header { margin-bottom: 48px; }
.gallery__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 6px; display: flex; flex-direction: column; }
.gallery-card__img-wrap { flex: 1; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card__img-wrap { overflow: hidden; aspect-ratio: 16/10; background: #e8e3dc; }
.gallery-card--wide .gallery-card__img-wrap { aspect-ratio: 2/1; }
.gallery-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .8s var(--ease-out); }
.gallery-card:hover .gallery-card__img { transform: scale(1.03); }
.gallery-card__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%); color: #fff; }
.gallery-card__cat { font-family: var(--font-en); font-size: 11px; letter-spacing: .15em; color: var(--accent-light); }
.gallery-card__name { font-size: 16px; font-weight: 500; margin-top: 4px; }
.gallery-card__desc { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }
@media (max-width: 768px) { .gallery__grid { grid-template-columns: 1fr; } .gallery-card--wide { grid-column: auto; } .gallery-card__img-wrap, .gallery-card--wide .gallery-card__img-wrap { aspect-ratio: 16/10; } }

/* ── Image Strip ── */
.img-strip { overflow: hidden; padding: 28px 0; }
.img-strip__track { display: flex; gap: 16px; width: max-content; animation: stripScroll 40s linear infinite; }
.img-strip__track:hover { animation-play-state: paused; }
.img-strip__track img { height: 240px; width: auto; border-radius: 6px; flex-shrink: 0; }
@keyframes stripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Message ── */
.message {
  padding: clamp(120px, 14vw, 200px) 0;
  background-color: #f2eeea;
  background-size: cover;
  background-position: center;
  position: relative;
}
.message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242, 238, 234, .85);
  backdrop-filter: blur(10px);
}
.message__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.message__heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .08em;
  color: var(--accent-dark);
  margin-bottom: 40px;
}
.message__body p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 2.2;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.message__last {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--accent-dark) !important;
}

/* ── Plans ── */
.plans { padding: clamp(100px, 12vw, 160px) 0; background: var(--bg-dark); color: var(--text-light); }
.plans__header { margin-bottom: 56px; }
.plans__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; }
.plans__lead { color: rgba(255,255,255,.6); margin-top: 12px; font-size: 14px; }
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Wakou-unified plan cards */
a.wk-plan-card { text-decoration: none; color: var(--text); }
a.wk-plan-card:hover { color: var(--text); }
.wk-plan-card {
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wk-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,23,20,.08);
}
.wk-plan-card--recommend {
  border-color: #b8965a;
  border-top: 3px solid #b8965a;
  box-shadow: 0 8px 32px rgba(155,132,105,.2);
}
.wk-plan-card__recommend-badge {
  position: absolute;
  top: -20px;
  left: 16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5e0a0, #c9922a 55%, #7d5510);
  border: 3px solid #e8c97a;
  box-shadow: 0 0 0 2px rgba(200,160,60,.3), 0 6px 20px rgba(100,60,0,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: center;
  z-index: 10;
  text-shadow: 0 1px 3px rgba(80,40,0,.6);
  font-family: var(--font-serif);
}
.wk-plan-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}
.wk-plan-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.2), transparent);
  pointer-events: none;
}
.wk-plan-card__img-wrap img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.wk-plan-card:hover .wk-plan-card__img-wrap img { transform: scale(1.03); }
.wk-plan-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  letter-spacing: .06em;
  z-index: 1;
}
.wk-plan-card__body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wk-plan-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
  color: var(--accent-dark);
}
.wk-plan-card__desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.wk-plan-card__price-area {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  width: 100%;
}
.wk-plan-card__price {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.wk-plan-card__price span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}
.wk-plan-card__price-tax {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.wk-plan-card__jizen {
  display: inline-block;
  background: rgba(139,115,85,.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  margin-top: 12px;
}
.wk-plan-card__jizen strong { font-size: 16px; }

@media (max-width: 768px) { .plans__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ── Price Compare ── */
.price-compare { padding: clamp(100px, 12vw, 160px) 0; background: #f2eeea; }
.price-compare__header { margin-bottom: 48px; }
.price-compare__title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 32px); font-weight: 600; letter-spacing: .06em; margin-bottom: 12px; }
.price-compare__lead { color: var(--muted); font-size: 14px; line-height: 1.8; }
.price-compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.price-compare__card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.price-compare__card--recommend { border: 2px solid var(--accent); box-shadow: 0 4px 24px rgba(139,115,85,.15); }
.price-compare__card-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 16px; border-radius: 0 0 6px 6px;
}
.price-compare__card-header {
  padding: 32px 28px 24px; border-bottom: 1px solid var(--border);
}
.price-compare__card-header--accent {
  background: linear-gradient(135deg, rgba(139,115,85,.06), rgba(139,115,85,.02));
}
.price-compare__card-price-label {
  font-family: var(--font-en); font-size: 12px; letter-spacing: .15em;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.price-compare__card-header h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.price-compare__card-header p { font-size: 13px; color: var(--muted); }
.price-compare__card-body { padding: 28px; }
.price-compare__card-body p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.price-compare__card-body ul { list-style: none; margin-bottom: 16px; }
.price-compare__card-body ul li {
  font-size: 14px; color: var(--muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px; position: relative;
}
.price-compare__card-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-compare__card-note { color: #B07840 !important; font-weight: 600; }
.price-compare__card-caution { font-size: 13px !important; color: var(--muted) !important; background: #faf5f0; padding: 14px 16px; border-radius: 6px; border-left: 3px solid #E8C9A0; }
.price-compare__card-merits li::before { content: '✓' !important; color: var(--accent) !important; }
.price-compare__card-merits li { font-weight: 500; color: var(--text) !important; }
.price-compare__card-emphasis {
  background: rgba(139,115,85,.06); padding: 16px;
  border-radius: 6px; border-left: 3px solid var(--accent);
  font-size: 14px !important;
}

.price-compare__summary { max-width: 700px; margin-inline: auto; }
.price-compare__summary table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.price-compare__summary th, .price-compare__summary td {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; text-align: left;
}
.price-compare__summary th {
  font-weight: 700; white-space: nowrap; width: 140px;
  color: var(--accent-dark);
}
.price-compare__summary td span { font-size: 13px; color: var(--muted); }
.price-compare__notice {
  background: #faf5f0; border: 1px solid #E8C9A0; border-left: 4px solid #B07840;
  border-radius: 6px; padding: 20px 24px; margin-bottom: 28px;
}
.price-compare__notice p { font-size: 13px; color: var(--muted); line-height: 1.8; }
.price-compare__notice strong { color: #8B5E2A; }
.price-compare__closing {
  text-align: center; font-size: 14px; color: var(--muted);
  line-height: 1.9; font-family: var(--font-serif);
}

/* Plan detail external costs */
.plan-detail__external { margin-bottom: 56px; padding: 32px; background: #faf5f0; border-radius: 8px; border: 1px solid #E8C9A0; }
.plan-detail__external h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: #8B5E2A; margin-bottom: 12px; }
.plan-detail__external > p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.plan-detail__external table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.plan-detail__external td { padding: 12px 16px; border-bottom: 1px solid #E8C9A0; font-size: 13px; color: var(--muted); }
.plan-detail__external td:first-child { white-space: nowrap; }
.plan-detail__external td strong { color: var(--text); }
.plan-detail__external-note { font-size: 13px; color: var(--accent-dark); font-weight: 500; line-height: 1.7; }
@media (max-width: 768px) { .price-compare__grid { grid-template-columns: 1fr; } }

/* ── Included ── */
.included { padding: clamp(100px, 12vw, 140px) 0; }
.included__inner { max-width: 800px; margin-inline: auto; text-align: center; }
.included__title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 30px); font-weight: 600; margin-bottom: 40px; letter-spacing: .06em; }
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: left; }
.included__item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
}
.included__item span { color: var(--accent); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.included__subtitle {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  margin-bottom: 20px; margin-top: 40px; letter-spacing: .06em;
}
.plan-compare-table { margin-bottom: 16px; overflow-x: auto; }
.plan-compare-table table { width: 100%; border-collapse: collapse; min-width: 480px; }
.plan-compare-table thead { background: var(--accent); color: #fff; }
.plan-compare-table th, .plan-compare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; text-align: center;
}
.plan-compare-table tbody th { text-align: left; font-weight: 600; background: #faf8f5; min-width: 120px; }
.plan-compare-table tbody td { color: var(--muted); }
@media (max-width: 768px) { .included__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .included__grid { grid-template-columns: 1fr; } }

/* ── Flow ── */
.flow { padding: clamp(100px, 12vw, 160px) 0; background: var(--bg-dark); color: var(--text-light); }
.flow__header { margin-bottom: 64px; }
.flow__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; }
.flow__lead { color: rgba(255,255,255,.5); margin-top: 12px; font-size: 14px; }
.flow__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.flow__step {
  padding: 40px 32px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .4s;
}
.flow__step:last-child { border-right: none; }
.flow__step:hover { background: rgba(255,255,255,.03); }
.flow__step-num {
  font-family: var(--font-en); font-size: 13px; font-weight: 400;
  color: var(--accent-light); margin-bottom: 20px; line-height: 1;
  letter-spacing: .15em;
  display: flex; align-items: center; gap: 12px;
}
.flow__step-num::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.12); }
.flow__step h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; letter-spacing: .04em; }
.flow__step p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }
@media (max-width: 768px) {
  .flow__steps { grid-template-columns: 1fr; max-width: 480px; }
  .flow__step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
  .flow__step:last-child { border-bottom: none; }
}

/* ── Mid Visual ── */
.mid-visual {
  position: relative;
  height: 50vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mid-visual__bg { position: absolute; inset: 0; }
.mid-visual__bg img { width: 100%; height: 100%; object-fit: cover; }
.mid-visual__overlay { position: absolute; inset: 0; background: rgba(26,23,20,.5); }
.mid-visual__content { position: relative; z-index: 1; text-align: center; }
.mid-visual__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  letter-spacing: .1em;
}

/* ── Voices (Google Reviews Carousel) ── */
.voices { padding: clamp(100px, 12vw, 160px) 0; overflow: hidden; }
.voices__header-wrap { margin-bottom: 48px; }
.voices__header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.voices__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; }
.voices__rating { display: flex; align-items: baseline; gap: 8px; }
.voices__rating-num { font-family: var(--font-en); font-size: 36px; font-weight: 400; }
.voices__rating-stars { color: #E8A840; font-size: 18px; letter-spacing: 1px; }
.voices__rating-count { font-size: 13px; color: var(--muted); }

.voices__swiper { padding-left: max(4vw, 24px); padding-bottom: 8px; }
.voices__swiper .swiper-slide { height: auto; }
.voices__card {
  padding: 28px 24px; background: #fff;
  border: 1px solid var(--border); border-radius: 10px;
  height: 100%; display: flex; flex-direction: column;
  transition: border-color .4s, box-shadow .4s;
}
.voices__card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(26,23,20,.05); }
.voices__card-stars { color: #E8A840; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.voices__card-text {
  font-size: 14px; color: var(--muted); line-height: 1.9;
  margin-bottom: 16px; font-family: var(--font-serif);
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.voices__card-meta { border-top: 1px solid var(--border); padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.voices__card-name { font-size: 13px; font-weight: 600; color: var(--text); }
.voices__card-date { font-size: 11px; color: var(--muted); }

.voices__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; }
.voices__nav { display: flex; gap: 8px; }
.voices__nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, background .3s; cursor: pointer;
}
.voices__nav-btn:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.voices__nav-btn:hover svg { stroke: #fff; }
.voices__google-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--accent);
  letter-spacing: .04em; transition: color .3s;
}
.voices__google-link:hover { color: var(--accent-dark); }

/* ── Wakou Banner ── */
.wakou-banner { padding: clamp(60px, 8vw, 100px) 0; }
.wakou-banner__inner {
  max-width: 700px;
  margin-inline: auto;
  padding: 56px;
  background: var(--bg-dark);
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
}
.wakou-banner__sub { font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; color: var(--accent-light); margin-bottom: 4px; }
.wakou-banner__title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.wakou-banner__text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 24px; }
.wakou-banner__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .3s var(--ease-out);
}
.wakou-banner__btn:hover { background: var(--accent); color: #fff; }

/* ── Facility ── */
.facility { padding: clamp(100px, 12vw, 160px) 0; }
.facility__header { margin-bottom: 56px; }
.facility__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; }
.facility__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 64px; }
.facility-card {
  padding: 32px 28px;
  background: #f2eeea;
  border: none;
  border-radius: 10px;
  text-align: center;
  transition: background .4s, transform .4s var(--ease-out);
}
.facility-card:hover { background: #ede8e3; transform: translateY(-2px); }
.facility-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.facility-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: .04em; }
.facility-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.facility__pricing {
  max-width: 640px; margin-inline: auto;
  background: #f2eeea; border-radius: 10px; padding: 40px;
}
.facility__pricing-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 28px; letter-spacing: .06em; }
.facility__table { width: 100%; border-collapse: collapse; }
.facility__table td { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.facility__table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; color: var(--accent-dark); font-family: var(--font-en); font-size: 15px; }
.facility__pricing-note { font-size: 12px; color: var(--muted); text-align: right; margin-top: 12px; }
@media (max-width: 768px) { .facility__grid { grid-template-columns: 1fr; } .facility__pricing { padding: 28px 24px; } }

/* ── Access ── */
.access-sec { padding: clamp(100px, 12vw, 160px) 0; background: #f2eeea; }
.access-sec__grid { display: grid; grid-template-columns: 400px 1fr; gap: 60px; align-items: start; }
.access-sec__title { font-family: var(--font-en); font-size: clamp(36px, 5vw, 64px); font-weight: 300; letter-spacing: .06em; margin-bottom: 36px; }
.access-sec__address { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.access-sec__dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; font-size: 14px; margin-bottom: 24px; }
.access-sec__dl dt { font-weight: 600; }
.access-sec__dl dd { color: var(--muted); }
.access-sec__map { border-radius: 10px; overflow: hidden; }
.access-sec__map iframe { display: block; }
@media (max-width: 768px) { .access-sec__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Contact ── */
.contact {
  padding: clamp(120px, 14vw, 180px) 0;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 16, .8);
  backdrop-filter: blur(6px);
}
.contact .container { position: relative; z-index: 1; }
.contact__title { font-family: var(--font-serif); font-size: clamp(24px, 3.5vw, 36px); font-weight: 600; line-height: 1.6; margin-bottom: 16px; letter-spacing: .06em; }
.contact__text { color: rgba(255,255,255,.6); margin-bottom: 36px; }
.contact__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }
.contact__note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 18px; }
.contact__wakou {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact__wakou a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  transition: color .3s;
}
.contact__wakou a:hover { color: var(--accent-light); }
.contact__wakou a strong { color: rgba(255,255,255,.7); font-weight: 600; }
.contact__wakou a::after { content: ' →'; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 40px; border-radius: 100px; font-size: 13px; font-weight: 500; letter-spacing: .1em; transition: all .4s var(--ease-out); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--line { background: #06C755; color: #fff; }
.btn--line:hover { background: #05a847; color: #fff; }
.btn--outline { border: 1px solid rgba(255,255,255,.3); color: var(--text-light); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.access-sec .btn--outline { border-color: var(--text); color: var(--text); }
.access-sec .btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Footer ── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.65); }
.footer__main { padding: 72px 0 56px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
/* Brand col */
.footer__logo-img { height: 36px; width: auto; display: block; opacity: .75; transition: opacity .3s; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__logo-img:hover { opacity: 1; }
.footer__name { font-family: var(--font-en); font-size: 13px; letter-spacing: .14em; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.footer__sub { font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 14px; letter-spacing: .03em; }
.footer__address { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.9; font-style: normal; letter-spacing: .03em; }
/* Nav col */
.footer__col-title { font-family: var(--font-en); font-size: 10px; letter-spacing: .22em; color: var(--accent-light); margin-bottom: 20px; text-transform: uppercase; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-family: var(--font-en); font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.5); transition: color .3s; }
.footer__nav a:hover { color: var(--accent-light); }
/* Contact col */
.footer__tel { display: flex; align-items: center; gap: 8px; font-family: var(--font-en); font-size: clamp(18px, 2vw, 24px); color: var(--text-light); letter-spacing: .06em; margin-bottom: 4px; transition: color .3s; }
.footer__tel:hover { color: var(--accent-light); }
.footer__tel svg { flex-shrink: 0; opacity: .7; }
.footer__tel-note { font-size: 11px; color: rgba(255,255,255,.38); margin-bottom: 20px; letter-spacing: .03em; }
.footer__cta-links { display: flex; flex-direction: column; gap: 10px; }
.footer__cta-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  transition: opacity .3s;
}
.footer__cta-link:hover { opacity: .8; }
.footer__cta-link--line { background: #06C755; color: #fff; }
.footer__cta-link--form { background: rgba(155,132,105,.22); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); }
/* Bottom bar */
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer__bottom p { font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: .05em; }
/* Responsive */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__main { padding: 48px 0 36px; }
}

/* ============================================
   Sticky CTA (Mobile)
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--bg-dark);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
}
.sticky-cta__btn--tel { background: var(--accent); color: #fff; }
.sticky-cta__btn--line { background: #06C755; color: #fff; }
.sticky-cta__btn--contact { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .footer__bottom { padding-bottom: 80px; }
}

/* ============================================
   Sub Pages
   ============================================ */
.is-subpage .header__logo-text { color: var(--text); }
.is-subpage .header__logo-img { filter: none; }
.is-subpage .header__nav a { color: var(--text); }

/* Sub Hero */
.sub-hero { position: relative; height: 50vh; min-height: 360px; display: flex; align-items: center; overflow: hidden; }
.sub-hero__bg { position: absolute; inset: 0; }
.sub-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.sub-hero__overlay { position: absolute; inset: 0; background: rgba(26,23,20,.55); }
.sub-hero__inner { position: relative; z-index: 1; color: var(--text-light); }
.sub-hero__label { font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; color: var(--accent-light); margin-bottom: 12px; }
.sub-hero__title { font-family: var(--font-en); font-size: clamp(40px, 7vw, 80px); font-weight: 300; letter-spacing: .06em; }
.sub-hero__desc { font-family: var(--font-serif); font-size: 16px; margin-top: 16px; opacity: .8; }

/* Sub Gallery */
.sub-gallery { padding: clamp(60px, 8vw, 100px) 0; }
.sub-gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sub-gallery__item { overflow: hidden; border-radius: 6px; }
.sub-gallery__img-wrap { overflow: hidden; }
.sub-gallery__img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease-out); }
.sub-gallery__item:hover .sub-gallery__img-wrap img { transform: scale(1.03); }
.sub-gallery__caption { padding: 12px 4px; }
.sub-gallery__caption span { font-family: var(--font-en); font-size: 11px; letter-spacing: .15em; color: var(--accent); }
.sub-gallery__caption h3 { font-size: 14px; font-weight: 500; margin-top: 2px; }
@media (max-width: 768px) { .sub-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sub-gallery__grid { grid-template-columns: 1fr; } }

/* Sub Access */
.sub-access { padding: clamp(60px, 8vw, 100px) 0; }
.sub-access__grid { display: grid; grid-template-columns: 400px 1fr; gap: 48px; align-items: start; }
.sub-access__info h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.sub-access__dl { display: grid; grid-template-columns: 100px 1fr; gap: 8px 16px; font-size: 14px; margin-bottom: 28px; }
.sub-access__dl dt { font-weight: 600; color: var(--text); }
.sub-access__dl dd { color: var(--muted); }
.sub-access__dl dd a { color: var(--accent); }
.sub-access__info h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.sub-access__transport { list-style: none; }
.sub-access__transport li { font-size: 14px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.sub-access__transport li strong { color: var(--text); }
.sub-access__map { border-radius: 10px; overflow: hidden; }
.sub-access__map iframe { display: block; }
.sub-access__exterior { margin-top: 56px; }
.sub-access__exterior h3 { font-family: var(--font-en); font-size: 20px; font-weight: 400; letter-spacing: .1em; margin-bottom: 20px; }
.sub-access__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sub-access__photos img { width: 100%; border-radius: 6px; aspect-ratio: 16/10; object-fit: cover; }
@media (max-width: 768px) { .sub-access__grid { grid-template-columns: 1fr; } .sub-access__photos { grid-template-columns: 1fr; } }

/* FAQ Page */
.faq-page { padding: clamp(60px, 8vw, 100px) 0; }
.faq-page__list { max-width: 780px; margin-inline: auto; }
.faq-page__item { border-bottom: 1px solid var(--border); }
.faq-page__q {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 500;
}
.faq-page__q::-webkit-details-marker { display: none; }
.faq-page__q > span:not(.faq-page__q-mark) { flex: 1; }
.faq-page__q svg { flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq-page__item[open] .faq-page__q svg { transform: rotate(180deg); }
.faq-page__q-mark {
  width: 32px; min-width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 32px;
}
.faq-page__a { display: flex; gap: 14px; padding: 0 0 22px; }
.faq-page__a-mark {
  width: 32px; min-width: 32px; height: 32px; border-radius: 50%;
  background: #E8A840; color: #fff;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 32px;
}
.faq-page__a p { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* Plans Page */
.plans-page { padding: clamp(60px, 8vw, 100px) 0; }
.plans-page__lead { text-align: center; font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 48px; }
.plans-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .plans-page__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

.plans-page__external { padding: clamp(60px, 8vw, 80px) 0; }
.plans-page__external-inner {
  max-width: 800px; margin-inline: auto;
  padding: 36px; background: #faf5f0; border-radius: 8px; border: 1px solid #E8C9A0;
}
.plans-page__external-inner h2 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: #8B5E2A; margin-bottom: 12px; }
.plans-page__external-inner > p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.plans-page__external-inner table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.plans-page__external-inner thead { background: #8B7355; color: #fff; }
.plans-page__external-inner th, .plans-page__external-inner td { padding: 12px 16px; border-bottom: 1px solid #E8C9A0; font-size: 13px; text-align: left; }
.plans-page__external-inner td { color: var(--muted); }
.plans-page__external-inner td strong { color: var(--text); }
.plans-page__external-note { font-size: 13px; color: var(--accent-dark); font-weight: 500; line-height: 1.7; }

.plans-page__facility { padding: clamp(60px, 8vw, 80px) 0; background: #f2eeea; }
.plans-page__facility-inner { max-width: 600px; margin-inline: auto; }
.plans-page__facility-inner h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.plans-page__facility-inner > p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.plans-page__facility-inner table { width: 100%; border-collapse: collapse; }
.plans-page__facility-inner td { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.plans-page__facility-inner td:last-child { text-align: right; white-space: nowrap; }
.plans-page__facility-note { font-size: 12px; color: var(--muted); text-align: right; margin-top: 8px; }

/* Plan Detail */
.plan-detail { padding: clamp(60px, 8vw, 100px) 0; }
.plan-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.plan-detail__img img { width: 100%; border-radius: 10px; box-shadow: 0 8px 30px rgba(26,23,20,.08); }
.plan-detail__price { margin-bottom: 20px; }
.plan-detail__price-num { font-family: var(--font-en); font-size: 48px; font-weight: 400; }
.plan-detail__price-unit { font-size: 16px; color: var(--muted); }
.plan-detail__price-tax { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }
.plan-detail__discount {
  display: inline-block; padding: 8px 20px;
  background: rgba(139,115,85,.1); color: var(--accent-dark);
  font-size: 14px; font-weight: 700; border-radius: 6px; margin-bottom: 16px;
}
.plan-detail__discount strong { font-size: 20px; }
.plan-detail__capacity { font-size: 15px; color: var(--muted); }
.plan-detail__includes { margin-bottom: 56px; }
.plan-detail__includes h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 24px; }
.plan-detail__includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.plan-detail__includes-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: #fff; border: 1px solid var(--border);
  border-radius: 6px; font-size: 14px;
}
.plan-detail__includes-item span { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-detail__other h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 24px; }
.plan-detail__other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan-detail__other-card {
  display: block; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; text-decoration: none; color: var(--text);
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.plan-detail__other-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,23,20,.06); color: var(--text); }
.plan-detail__other-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.plan-detail__other-card h3 { font-size: 16px; font-weight: 700; padding: 16px 16px 4px; color: var(--accent-dark); }
.plan-detail__other-card p { font-family: var(--font-en); font-size: 20px; padding: 0 16px 16px; }
@media (max-width: 768px) {
  .plan-detail__grid { grid-template-columns: 1fr; }
  .plan-detail__includes-grid { grid-template-columns: 1fr 1fr; }
  .plan-detail__other-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Contact Form Page
   ============================================ */
.contact-page { padding: clamp(60px, 8vw, 100px) 0; }
.contact-page__inner { max-width: 640px; margin-inline: auto; }
.contact-page__lead {
  text-align: center; font-family: var(--font-serif);
  font-size: 15px; color: var(--muted); line-height: 2; margin-bottom: 48px;
}
.contact-page__note { display: block; margin-top: 12px; font-size: 13px; font-family: var(--font-body); }

/* Form */
.contact-form { margin-bottom: 56px; }
.form-group { margin-bottom: 28px; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: #C0392B; }
.form-label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: .04em;
}
.form-required {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: #fff; background: var(--accent); padding: 2px 8px;
  border-radius: 3px; letter-spacing: .06em; vertical-align: middle;
  margin-left: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text); background: #fff;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155,132,105,.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #c4bdb5; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a7e74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.8; }
.form-error { color: #C0392B; font-size: 13px; margin-top: 6px; }
.form-actions { text-align: center; margin-top: 40px; }
.btn--lg { padding: 18px 56px; font-size: 14px; }

/* Tel CTA */
.contact-page__tel {
  text-align: center; padding: 40px 0;
  border-top: 1px solid var(--border);
}
.contact-page__tel-label {
  font-size: 13px; color: var(--muted); letter-spacing: .06em; margin-bottom: 8px;
}
.contact-page__tel-number {
  font-family: var(--font-en); font-size: clamp(28px, 4vw, 36px);
  font-weight: 400; color: var(--accent-dark); letter-spacing: .06em;
  display: block; margin-bottom: 8px;
}
.contact-page__tel-note { font-size: 12px; color: var(--muted); }

/* ============================================
   Confirm Page
   ============================================ */
.confirm-table { margin-bottom: 40px; }
.confirm-table table { width: 100%; border-collapse: collapse; }
.confirm-table th, .confirm-table td {
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; text-align: left; vertical-align: top;
}
.confirm-table th {
  width: 140px; font-weight: 600; color: var(--accent-dark);
  white-space: nowrap; padding-right: 20px;
}
.confirm-table td { color: var(--text); line-height: 1.8; }
.confirm-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-top: 40px;
}
.btn--outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px; border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: .1em;
  border: 1px solid var(--border); color: var(--muted);
  background: transparent; transition: all .4s var(--ease-out);
}
.btn--outline-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   Thanks Page
   ============================================ */
.thanks-page { padding: clamp(80px, 10vw, 140px) 0; }
.thanks-page__inner { max-width: 560px; margin-inline: auto; text-align: center; }
.thanks-page__icon { color: var(--accent); margin-bottom: 28px; }
.thanks-page__title {
  font-family: var(--font-serif); font-size: clamp(22px, 3vw, 28px);
  font-weight: 600; line-height: 1.7; letter-spacing: .08em; margin-bottom: 24px;
}
.thanks-page__text {
  font-size: 14px; color: var(--muted); line-height: 2; margin-bottom: 40px;
}
.thanks-page__text small { display: block; margin-top: 12px; font-size: 13px; }
.thanks-page__actions { margin-top: 20px; }

/* ============================================
   Concept Page
   ============================================ */
.concept-page { padding: 100px 0; }
.concept-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.concept-page__left img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.concept-page__title {
  font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px);
  font-weight: 600; line-height: 1.55; letter-spacing: .04em;
  margin: 16px 0 32px;
}
.concept-page__text {
  font-size: 15px; line-height: 2; color: var(--muted); margin-bottom: 20px;
}
@media (max-width: 900px) {
  .concept-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-page__left img { aspect-ratio: 16/9; }
}

/* ============================================
   Facility Page
   ============================================ */
.facility-page { padding: 100px 0 60px; }
.facility-page__header { text-align: center; margin-bottom: 72px; }
.facility-page__title {
  font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; letter-spacing: .06em; margin: 12px 0 20px;
}
.facility-page__lead { font-size: 15px; color: var(--muted); line-height: 1.9; }

.facility-page__rooms { display: flex; flex-direction: column; gap: 0; }
.facility-page__room {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  align-items: stretch;
}
.facility-page__room--rev { direction: rtl; }
.facility-page__room--rev > * { direction: ltr; }
.facility-page__room-img img {
  width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block;
}
.facility-page__room-body {
  padding: 60px 56px; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
}
.facility-page__room--rev .facility-page__room-body { background: #f4f1ec; }
.facility-page__room-label {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block;
}
.facility-page__room-name {
  font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; letter-spacing: .06em; margin-bottom: 20px;
}
.facility-page__room-desc { font-size: 14px; line-height: 2; color: var(--muted); margin-bottom: 20px; }
.facility-page__room-specs {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0;
}
.facility-page__room-specs li {
  font-size: 12px; padding: 4px 12px; border: 1px solid var(--border);
  color: var(--muted); letter-spacing: .05em;
}

/* Barrier Free */
.facility-barrier { padding: 80px 0; background: var(--bg-dark); color: var(--text-light); }
.facility-barrier__inner {
  display: flex; gap: 48px; align-items: flex-start; max-width: 800px; margin: 0 auto;
}
.facility-barrier__icon {
  flex-shrink: 0; width: 80px; height: 80px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.facility-barrier__title {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600; letter-spacing: .06em; margin-bottom: 16px;
}
.facility-barrier__text { font-size: 14px; line-height: 2; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.facility-barrier__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.facility-barrier__list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.75);
}
.facility-barrier__list li svg { color: var(--accent); flex-shrink: 0; }

/* Hall Pricing */
.facility-pricing { padding: 80px 0; }
.facility-pricing__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.facility-pricing__title {
  font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600; letter-spacing: .06em; margin: 12px 0 16px;
}
.facility-pricing__lead { font-size: 14px; color: var(--muted); margin-bottom: 40px; }
.facility-pricing__table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.facility-pricing__table tr { border-bottom: 1px solid var(--border); }
.facility-pricing__table td {
  padding: 16px 8px; font-size: 14px; text-align: left;
  color: var(--text);
}
.facility-pricing__table td:last-child { text-align: right; white-space: nowrap; }
.facility-pricing__table td strong { font-size: 16px; }
.facility-pricing__note { font-size: 12px; color: var(--muted); margin-bottom: 40px; text-align: left; }
.facility-pricing__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .facility-page__room { grid-template-columns: 1fr; }
  .facility-page__room--rev { direction: ltr; }
  .facility-page__room-img img { min-height: 260px; aspect-ratio: 4/3; height: auto; }
  .facility-page__room-body { padding: 40px 24px; }
  .facility-barrier__inner { flex-direction: column; gap: 24px; }
  .facility-barrier__list { grid-template-columns: 1fr; }
}

/* ============================================
   404 Error Page
   ============================================ */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark); color: var(--text-light); text-align: center;
  padding: 40px 24px;
}
.error-page__inner { max-width: 480px; }
.error-page__num {
  font-family: var(--font-en); font-size: clamp(100px, 20vw, 180px);
  font-weight: 300; line-height: 1; color: rgba(255,255,255,.08);
  margin-bottom: -20px; letter-spacing: .06em;
}
.error-page__title {
  font-family: var(--font-serif); font-size: clamp(20px, 3vw, 26px);
  font-weight: 600; margin-bottom: 20px; letter-spacing: .08em;
}
.error-page__text {
  font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.9;
  margin-bottom: 40px;
}
.error-page__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.error-page .btn--outline-dark { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.error-page .btn--outline-dark:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 768px) {
  .confirm-table th { display: block; width: auto; padding-bottom: 4px; border-bottom: none; }
  .confirm-table td { display: block; padding-top: 0; }
  /* Wakou banner: reduce padding on mobile */
  .wakou-banner__inner { padding: 40px 28px; }
  /* Plan detail: single column includes on small screens */
  .plan-detail__includes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .plan-detail__includes-grid { grid-template-columns: 1fr; }
  /* Sub hero adjustments */
  .sub-hero { min-height: 280px; }
  /* Buttons stack on tiny screens */
  .contact__actions { flex-direction: column; align-items: center; }
  .confirm-actions { flex-direction: column; align-items: stretch; }
}
