/* ==========================================================================
   BON-MAL – Renewal Top Page
   Design language inspired by luxury private-villa sites:
   generous whitespace, serif display headings, letter-spaced English
   eyebrows over Japanese subtitles, full-bleed imagery, subtle reveals.
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  --c-bg:        #ffffff;
  --c-bg-soft:   #f6f3ee;   /* warm off-white */
  --c-bg-deep:   #1d2a2a;   /* deep charcoal-teal */
  --c-ink:       #2a2724;   /* primary text */
  --c-ink-soft:  #6f6a63;   /* secondary text */
  --c-line:      #e4ded4;   /* hairlines */
  --c-gold:      #b3985c;   /* brass accent */
  --c-gold-dk:   #9a7f45;
  --c-teal:      #2c5453;   /* ocean/nature accent */

  --ff-serif: "Cormorant Garamond", "Shippori Mincho", "游明朝", YuMincho, serif;
  --ff-mincho: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
  --ff-sans: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック", YuGothic,
             "Hiragino Kaku Gothic ProN", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 84px;
}

/* ----- Reset-ish ----- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.9;
  font-size: 15px;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----- Utilities ----- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sp-only { display: none; }

/* Section heading block: English eyebrow + Japanese title */
.eyebrow {
  font-family: var(--ff-serif);
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  display: inline-block;
}
.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 68px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 {
  font-family: var(--ff-mincho);
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 33px);
  letter-spacing: .14em;
  line-height: 1.5;
}
.sec-head p { color: var(--c-ink-soft); margin-top: 20px; font-size: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-serif);
  letter-spacing: .28em; text-transform: uppercase;
  font-size: 12px; font-weight: 600;
  padding: 17px 40px;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  transition: .5s var(--ease);
  position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 1; transition: color .5s var(--ease); }
.btn::after {
  content: ""; position: absolute; inset: 0; background: var(--c-ink);
  transform: translateX(-101%); transition: transform .5s var(--ease); z-index: 0;
}
.btn:hover::after { transform: translateX(0); }
.btn:hover span { color: #fff; }
.btn.btn-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn.btn-light::after { background: #fff; }
.btn.btn-light:hover span { color: var(--c-ink); }
.btn.btn-gold { border-color: var(--c-gold); color: var(--c-gold-dk); }
.btn.btn-gold::after { background: var(--c-gold); }
.btn.btn-gold:hover span { color: #fff; }

/* Primary booking CTA — solid fill so it outranks the outlined View Detail */
.btn.btn-book {
  font-family: var(--ff-mincho); text-transform: none;
  font-size: 15px; font-weight: 600; letter-spacing: .14em;
  padding: 17px 34px;
  background: var(--c-gold); border-color: var(--c-gold); color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.btn.btn-book::after { background: var(--c-gold-dk); }
.btn.btn-book span { color: #fff; }
.btn.btn-book:hover { border-color: var(--c-gold-dk); box-shadow: 0 10px 26px rgba(0,0,0,.34); }
.btn.btn-book:hover span { color: #fff; }

/* 予約ボタンのカレンダーアイコン（オリジナル SVG） */
.ico-reserve {
  width: 15px; height: 15px;
  vertical-align: -2px; margin-right: 8px;
  stroke: currentColor;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  /* Always light — legibility over the hero video takes priority */
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 12px rgba(0,0,0,.05);
  backdrop-filter: saturate(120%) blur(4px);
  display: flex; align-items: center;
  transition: background .5s var(--ease), height .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: none;
}
.site-header .logo { flex-shrink: 0; }  /* 10-item nav must not squash the logo */
.site-header .logo img { height: 64px; width: auto; transition: opacity .4s, height .5s var(--ease); }
.logo-white { display: none; }
.logo-dark { display: block; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.navm { display: none; }  /* mobile drawer menu — shown only ≤900px */
.nav a.nav-link {
  color: var(--c-ink); font-size: 13px; letter-spacing: .16em;
  font-family: var(--ff-mincho); position: relative; padding-block: 6px;
  transition: color .4s;
}
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.nav a.nav-link:hover::after { width: 100%; }
.nav .nav-reserve {
  font-family: var(--ff-serif); letter-spacing: .2em; text-transform: uppercase;
  font-size: 12px; font-weight: 600; color: var(--c-gold-dk);
  border: 1px solid var(--c-gold); padding: 12px 26px; border-radius: 2px;
  transition: .45s var(--ease);
}
.nav .nav-reserve:hover { background: var(--c-gold); color: #fff; }

/* scrolled state — compact only; colours are already light from the start */
.site-header.scrolled {
  height: 72px;
  box-shadow: 0 1px 18px rgba(0,0,0,.06);
}
.site-header.scrolled .logo img { height: 52px; }

/* Desktop nav (mirrors mobile content, with hover dropdowns) */
.nav-pc { display: flex; align-items: center; flex-wrap: nowrap; gap: clamp(10px, 1.5vw, 30px); }
.navd { position: relative; }
.navd__top, .navd__link {
  color: var(--c-ink); font-family: var(--ff-mincho); font-size: clamp(12px, .9vw, 13px); letter-spacing: .12em;
  padding-block: 10px; position: relative; display: inline-block; white-space: nowrap; cursor: pointer;
  transition: color .4s;
}
.navd__top::after, .navd__link::after {
  content: ""; position: absolute; left: 0; bottom: 4px; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.navd:hover .navd__top::after, .navd__link:hover::after { width: 100%; }
/* dropdown */
.navd__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 190px; background: rgba(24,32,32,.97); padding: 8px 0;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 5;
}
.navd:hover .navd__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.navd__menu a {
  display: block; color: #fff; font-family: var(--ff-mincho); font-size: 12.5px; letter-spacing: .06em;
  padding: 10px 24px; white-space: nowrap; transition: background .3s, color .3s;
}
.navd__menu a:hover { background: rgba(255,255,255,.08); color: var(--c-gold); }

/* Hamburger */
.burger { display: none; width: 34px; height: 24px; position: relative; z-index: 80; }
.burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--c-ink);
  transition: .4s var(--ease);
}
.burger span:nth-child(1){ top: 2px; }
.burger span:nth-child(2){ top: 11px; }
.burger span:nth-child(3){ top: 20px; }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1){ top: 11px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 11px; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; background: #1d2a2a; }
.hero__video {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%; min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.42) 100%);
}
.hero__inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding-inline: var(--gutter);
}
.hero__catch {
  font-family: var(--ff-mincho); font-weight: 400;
  font-size: clamp(26px, 5.2vw, 60px); letter-spacing: .18em; line-height: 1.7;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__catch .lg { display: block; }
.hero__sub {
  font-family: var(--ff-serif); letter-spacing: .5em; text-transform: uppercase;
  font-size: clamp(12px, 1.6vw, 15px); margin-top: 30px; opacity: .92;
  padding-left: .5em;
}
.hero__lead {
  margin-top: 26px; font-size: 14px; letter-spacing: .1em; line-height: 2.1;
  max-width: 620px; opacity: .95;
}
.hero__play {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 14px;
  color: #fff; font-family: var(--ff-serif); letter-spacing: .3em;
  text-transform: uppercase; font-size: 12px; font-weight: 600;
}
.hero__play .ico {
  width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%;
  display: grid; place-items: center; transition: .45s var(--ease);
}
.hero__play .ico::before {
  content: ""; border-style: solid; border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff; margin-left: 3px;
}
.hero__play:hover .ico { background: rgba(255,255,255,.16); transform: scale(1.06); }

/* fade-in of hero content */
.hero__inner > * { opacity: 0; transform: translateY(26px); animation: heroUp 1.4s var(--ease) forwards; }
.hero__inner > *:nth-child(1){ animation-delay:.3s; }
.hero__inner > *:nth-child(2){ animation-delay:.5s; }
.hero__inner > *:nth-child(3){ animation-delay:.7s; }
.hero__inner > *:nth-child(4){ animation-delay:.9s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  color: #fff; font-family: var(--ff-serif); letter-spacing: .3em; font-size: 10px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 60px; background: rgba(255,255,255,.7);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* ==========================================================================
   Concept
   ========================================================================== */
.concept { padding: clamp(90px, 12vw, 160px) 0; position: relative; }
.concept__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.concept__body .eyebrow { margin-bottom: 26px; }
.concept__body h2 {
  font-family: var(--ff-mincho); font-weight: 500; letter-spacing: .12em;
  font-size: clamp(24px, 3.6vw, 40px); line-height: 1.7; margin-bottom: 34px;
}
.concept__body p { color: var(--c-ink-soft); margin-bottom: 22px; font-size: 15px; }
.concept__body .sign { font-family: var(--ff-mincho); color: var(--c-ink); font-size: 16px; letter-spacing: .1em; }
.concept__media { position: relative; }
.concept__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.concept__media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--c-gold);
  z-index: -1;
}
.concept__media .cap {
  position: absolute; right: -14px; bottom: 30px; writing-mode: vertical-rl;
  background: var(--c-bg-deep); color: #fff; padding: 20px 12px;
  font-family: var(--ff-mincho); letter-spacing: .3em; font-size: 13px;
}

/* ==========================================================================
   Features
   ========================================================================== */
.features { padding: clamp(80px, 10vw, 130px) 0; background: var(--c-bg-soft); }
.features__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(24px, 3vw, 46px) clamp(16px, 2vw, 30px);
}
.feature { text-align: center; }
.feature__ico {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 1px solid var(--c-line);
  display: grid; place-items: center;
  transition: transform .5s var(--ease), border-color .5s;
}
.feature:hover .feature__ico { transform: translateY(-6px); border-color: var(--c-gold); }
.feature__ico img { width: 38px; height: 38px; object-fit: contain; }
.feature h4 { font-family: var(--ff-mincho); font-weight: 500; font-size: 15px; letter-spacing: .08em; }

/* Per-facility amenity icon row */
.stay__amenities {
  display: flex; flex-wrap: wrap; gap: 22px 24px;
  margin: 4px 0 32px; padding-bottom: 26px; border-bottom: 1px solid var(--c-line);
}
.amenity { display: flex; flex-direction: column; align-items: center; gap: 9px; width: 58px; text-align: center; }
.amenity img { width: 30px; height: 30px; object-fit: contain; }
.amenity span { font-size: 11px; letter-spacing: .04em; color: var(--c-ink-soft); line-height: 1.35; }
.amenity span b { font-family: var(--ff-mincho); color: var(--c-gold-dk); font-size: 15px; font-weight: 700; margin: 0 1px; }
.amenity.is-off { opacity: .4; }
/* light variant on dark showcase */
.stay__amenities--light { border-bottom-color: rgba(255,255,255,.22); }
.stay__amenities--light .amenity span { color: rgba(255,255,255,.82); }
.stay__amenities--light .amenity span b { color: #d8c48a; }

/* ==========================================================================
   STAY
   ========================================================================== */
.stay { padding: clamp(90px, 12vw, 160px) 0; }
.stay__list { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 130px); }
.stay__item { position: relative; display: flex; align-items: center; }
.stay__item:nth-child(even) { flex-direction: row-reverse; }
.stay__media { position: relative; width: 62%; flex-shrink: 0; }
/* the photo clips its own zoom so the video can sit outside .stay__photo */
.stay__photo { width: 100%; overflow: hidden; }

/* Video sits on the photo's outer bottom corner, echoing how the body panel
   overlaps the photo from the other side. Anchored to the photo. */
.stay__video {
  position: absolute; z-index: 3;
  left: 8%; bottom: -22%; width: 64%;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.stay__item:nth-child(even) .stay__video { left: auto; right: 8%; }

/* Wide screens: stretch the media to the row height (= the body panel's height)
   so bottom:0 lines the video's lower edge up with the panel's. Below ~1180px
   the panel grows so much taller than the photo that this would leave the video
   floating in the gap, so there it stays anchored to the photo instead. */
@media (min-width: 1180px) {
  .stay__media { align-self: stretch; display: flex; align-items: center; }
  .stay__video { bottom: 0; }
}
/* Taller crop than a plain landscape: the body panel carries a lot of copy,
   so this keeps the photo and the overlapping panel closer in height. */
.stay__media img { width: 100%; aspect-ratio: 3/2.6; object-fit: cover; transition: transform 1.4s var(--ease); }
.stay__item:hover .stay__media img { transform: scale(1.05); }

/* translucent dark box overlapping the photo */
.stay__body {
  position: relative; z-index: 2;
  width: 46%; margin-left: -8%;
  background: rgba(20, 26, 26, .74);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  color: #fff; padding: clamp(34px, 3.6vw, 58px) clamp(28px, 3.2vw, 52px);
}
.stay__item:nth-child(even) .stay__body { margin-left: 0; margin-right: -8%; }

.stay__no {
  display: block; font-family: var(--ff-serif); font-size: clamp(42px, 5vw, 66px);
  font-weight: 600; color: #fff; line-height: 1; margin-bottom: 16px; opacity: .95;
}
.stay__body .en {
  font-family: var(--ff-serif); font-size: clamp(24px, 3.2vw, 38px); font-weight: 600;
  letter-spacing: .1em; color: #fff; line-height: 1.1; margin-bottom: 10px;
}
.stay__body .en small { color: #d8c48a; font-size: .5em; letter-spacing: .3em; display: block; margin-top: 12px; font-weight: 600; }
.stay__body h3 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(16px, 2vw, 20px);
  letter-spacing: .08em; line-height: 1.7; margin: 20px 0 16px; padding-bottom: 20px;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.24);
}
.stay__body p { color: rgba(255,255,255,.82); font-size: 13.5px; margin-bottom: 22px; }
/* "こんな方におすすめ" checklist */
.stay__reco { margin: 0 0 26px; }
/* .stay__body p is more specific, so scope the title to beat it */
.stay__body .stay__reco-ttl {
  font-family: var(--ff-mincho); font-size: 14px; font-weight: 600;
  letter-spacing: .14em; color: #d8c48a; margin: 0 0 10px;
}
.stay__reco ul { list-style: none; margin: 0; padding: 0; }
.stay__reco li {
  position: relative; padding-left: 22px; margin-bottom: 6px;
  font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,.86);
}
.stay__reco li:last-child { margin-bottom: 0; }
.stay__reco li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #d8c48a; font-size: 13px; font-weight: 700; line-height: 1.6;
}

/* Two buttons share the row; when the column is too narrow they wrap and each fills it */
.stay__actions { display: flex; flex-wrap: wrap; align-items: stretch; gap: 14px; }
.stay__actions .btn { flex: 1 1 auto; justify-content: center; white-space: nowrap; }

/* Section divider — hairline with a small gold diamond at its centre.
   Reusable: <div class="sdiv"><span class="sdiv__line"></span>
   <span class="sdiv__mark"></span><span class="sdiv__line"></span></div> */
.sdiv {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 24px);
  max-width: 720px; margin-inline: auto;
}
.sdiv__line { flex: 1; height: 1px; background: var(--c-line); }
.sdiv__line:first-child { background: linear-gradient(to right, transparent, var(--c-line)); }
.sdiv__line:last-child  { background: linear-gradient(to left,  transparent, var(--c-line)); }
.sdiv__mark {
  width: 7px; height: 7px; flex-shrink: 0;
  border: 1px solid var(--c-gold); transform: rotate(45deg);
}

/* Section band divider label */
.band { padding: clamp(70px, 9vw, 120px) 0; }
.band--soft { background: var(--c-bg-soft); }

/* CASUAL / SHOP feature card (full-bleed split) */
.showcase { position: relative; overflow: hidden; color: #fff; }
.showcase__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 1.6s var(--ease); }
.showcase:hover .showcase__bg { transform: scale(1.1); }
.showcase::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,26,26,.72), rgba(20,26,26,.15)); }
.showcase--right::after { background: linear-gradient(90deg, rgba(20,26,26,.12), rgba(20,26,26,.74)); }
.showcase__inner { position: relative; z-index: 2; padding: clamp(70px, 11vw, 150px) 0; }
.showcase__box { max-width: 520px; }
.showcase .eyebrow { color: #d8c48a; margin-bottom: 20px; }
.showcase .eyebrow--lg {
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: .22em;
  font-weight: 700;
  color: #e9d9a8;
  padding-bottom: 12px;
  border-bottom: 2px solid #d8c48a;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
  margin-bottom: 26px;
}
.showcase__box h3 { font-family: var(--ff-serif); font-size: clamp(28px, 4.4vw, 46px); font-weight: 600; letter-spacing: .08em; margin-bottom: 12px; }
.showcase__box .jp { font-family: var(--ff-mincho); font-size: clamp(15px, 2vw, 19px); letter-spacing: .1em; margin-bottom: 22px; }
.showcase__box p { font-size: 14px; opacity: .9; margin-bottom: 32px; line-height: 2; }

/* ==========================================================================
   Architect (4-card, dark section)
   ========================================================================== */
.architect { padding: clamp(80px, 11vw, 140px) 0; background: var(--c-bg-deep); color: #fff; }
.sec-head--light h2 { color: #fff; }
.sec-head--light p { color: rgba(255,255,255,.6); }
.architect__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px);
}
.arch-card {
  background: #fff; color: var(--c-ink); padding: 18px 18px 26px; text-align: center;
}
.arch-card__img { overflow: hidden; margin-bottom: 22px; }
.arch-card__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 1.3s var(--ease); }
.arch-card:hover .arch-card__img img { transform: scale(1.07); }
.arch-card__villa { font-family: var(--ff-mincho); font-weight: 500; font-size: 14px; letter-spacing: .08em; line-height: 1.6; }
.arch-card__x { display: block; color: var(--c-gold); font-family: var(--ff-serif); font-size: 18px; margin: 10px 0; }
.arch-card__role { font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .1em; color: var(--c-ink-soft); }
.arch-card__name { font-family: var(--ff-mincho); font-weight: 600; font-size: 22px; letter-spacing: .12em; margin: 4px 0 12px; }
.arch-card__en { font-family: var(--ff-serif); font-size: 11px; letter-spacing: .1em; color: var(--c-gold-dk); margin-bottom: 6px; }
.arch-card__org { font-size: 11.5px; letter-spacing: .04em; color: var(--c-ink-soft); line-height: 1.6; }

/* ==========================================================================
   Photo carousel (draggable + dots + lightbox)
   ========================================================================== */
.photo { padding: clamp(70px, 9vw, 120px) 0 clamp(80px, 10vw, 130px); overflow: hidden; }
.pcar { position: relative; max-width: 1280px; margin: 10px auto 0; padding-inline: var(--gutter); }
.pcar__viewport { overflow: hidden; }
.pcar__track { display: flex; cursor: grab; touch-action: pan-y; will-change: transform; }
.pcar__track.dragging { cursor: grabbing; transition: none !important; }
.pcar__slide { flex: 0 0 62%; margin: 0; padding-inline: 8px; box-sizing: border-box; opacity: .62; transition: opacity .55s var(--ease); }
.pcar__slide.is-active { opacity: 1; }
@media (max-width: 900px) { .pcar__slide { flex: 0 0 76%; } }
@media (max-width: 560px) { .pcar__slide { flex: 0 0 86%; } }
.pcar__slide img {
  width: 100%; height: clamp(300px, 46vw, 560px); object-fit: cover; display: block;
  cursor: zoom-in; user-select: none; -webkit-user-drag: none;
}
.pcar__arrow {
  position: absolute; top: calc(50% - 24px); transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.9);
  box-shadow: 0 4px 18px rgba(0,0,0,.14); display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.pcar__arrow:hover { background: #fff; }
.pcar__arrow::before { content:""; width: 12px; height: 12px; border-top: 1.5px solid var(--c-ink); border-right: 1.5px solid var(--c-ink); }
.pcar__prev { left: 4px; }
.pcar__prev::before { transform: rotate(-135deg); margin-left: 5px; }
.pcar__next { right: 4px; }
.pcar__next::before { transform: rotate(45deg); margin-right: 5px; }
.pcar__dots { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pcar__dots button {
  -webkit-appearance: none; appearance: none;
  flex: 0 0 auto; width: 9px; height: 9px; padding: 0; border: 0; box-sizing: border-box;
  border-radius: 50%; background: var(--c-line); line-height: 0;
  transition: background .3s, transform .3s;
}
.pcar__dots button.is-active { background: var(--c-gold); transform: scale(1.3); }
/* 「他の写真も見る」→ フォトギャラリーへ */
.photo__more { text-align: center; margin-top: clamp(30px, 4vw, 44px); }
.photo__more .btn { font-family: var(--ff-mincho); text-transform: none; letter-spacing: .16em; font-size: 14px; padding: 17px 46px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox__bg { position: absolute; inset: 0; background: rgba(10,12,12,.92); animation: fadeIn .3s; }
.lightbox__stage { position: relative; z-index: 2; margin: 0; max-width: 90vw; max-height: 84vh; }
.lightbox__stage img { max-width: 90vw; max-height: 84vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 22px; right: 28px; z-index: 4; color: #fff; font-size: 40px; line-height: 1; opacity: .85; transition: opacity .3s; }
.lightbox__close:hover { opacity: 1; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 60px; height: 60px; color: #fff; font-size: 44px; opacity: .8; transition: opacity .3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__prev { left: 2vw; }
.lightbox__next { right: 2vw; }
.lightbox__count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; color: #fff; font-family: var(--ff-serif); letter-spacing: .2em; font-size: 13px; }
@media (max-width: 640px) {
  .pcar__arrow { width: 42px; height: 42px; }
  .lightbox__nav { width: 44px; font-size: 34px; }
}

/* ==========================================================================
   News
   ========================================================================== */
.news__list { max-width: 860px; margin-inline: auto; }
.news__item {
  display: grid; grid-template-columns: 150px 130px 1fr; gap: 20px; align-items: center;
  padding: 24px 6px; border-bottom: 1px solid var(--c-line); transition: background .4s;
}
.news__item:first-child { border-top: 1px solid var(--c-line); }
.news__item:hover { background: var(--c-bg-soft); }
.news__item time { font-family: var(--ff-serif); letter-spacing: .1em; color: var(--c-ink-soft); font-size: 14px; }
.news__cat { justify-self: start; font-size: 11px; letter-spacing: .18em; border: 1px solid var(--c-gold); color: var(--c-gold-dk); padding: 4px 16px; }
.news__ttl { font-size: 14.5px; letter-spacing: .04em; }

/* ==========================================================================
   Instagram
   ========================================================================== */
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta__grid a { overflow: hidden; aspect-ratio: 1; }
.insta__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.insta__grid a:hover img { transform: scale(1.1); }

/* ==========================================================================
   Access
   ========================================================================== */
.access { position: relative; }
.access__grid { display: grid; grid-template-columns: 1fr 1fr; }
.access__info { padding: clamp(60px, 8vw, 110px) clamp(30px, 6vw, 90px); background: var(--c-bg-deep); color: #fff; }
.access__info .eyebrow { color: #d8c48a; }
.access__info h2 { font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(22px, 3vw, 30px); letter-spacing: .12em; margin: 16px 0 30px; }
.access__row { display: grid; grid-template-columns: 92px 1fr; gap: 4px 20px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16); }
.access__row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.16); }
.access__row dt { font-family: var(--ff-serif); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; color: #d8c48a; padding-top: 3px; }
.access__row dd { margin: 0; font-size: 14px; line-height: 1.9; }
.access__row dd a { color: #fff; }
.access__map { min-height: 420px; }
.access__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative; color: #d8d2c7; padding: clamp(80px, 10vw, 120px) 0 40px;
  background: linear-gradient(rgba(18,22,22,.86), rgba(12,15,15,.94)), url(../img/top.jpg);
  background-size: cover; background-position: center; background-attachment: fixed;
}
.footer .wrap { position: relative; z-index: 1; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 60px; margin-bottom: 24px; }
.footer__brand p { font-size: 13px; color: #a49a8b; line-height: 2; }
.footer__col h4 { font-family: var(--ff-serif); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; color: var(--c-gold); margin-bottom: 22px; }
.footer__col a { display: block; font-size: 13.5px; padding: 7px 0; color: #cfc7ba; transition: color .3s; letter-spacing: .06em; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 34px; gap: 20px; flex-wrap: wrap; }
.footer__sns { display: flex; gap: 18px; }
.footer__sns a { font-family: var(--ff-serif); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; color: #a49a8b; transition: color .3s; }
.footer__sns a:hover { color: var(--c-gold); }
.footer__copy { font-family: var(--ff-serif); letter-spacing: .15em; font-size: 11px; color: #7d7466; }

/* ==========================================================================
   Fixed floating CTA (bottom-right) — CHECK IT / Contact / Instagram
   ========================================================================== */
.floatcta {
  --cta-bg: #2f4f4f;
  --cta-bg-dark: #253e3e;
  position: fixed; right: 0; bottom: 0; z-index: 55;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
  padding: 0 0 0 0;
}
.floatcta__check {
  background: var(--cta-bg); color: #fff;
  padding: 16px 22px; text-align: center;
  border-radius: 6px 0 0 6px; margin-bottom: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.floatcta__label {
  font-family: var(--ff-serif); letter-spacing: .28em; text-transform: uppercase;
  font-size: 12px; font-weight: 600; color: #d8c48a; margin-bottom: 12px;
}
.floatcta__sns { display: flex; gap: 12px; justify-content: center; align-items: center; }
.floatcta__sns a { display: inline-flex; transition: transform .3s, filter .3s; }
.floatcta__sns a:hover { transform: translateY(-2px); filter: brightness(1.08) saturate(1.05); }
.floatcta__sns svg { width: 100%; height: 100%; display: block; }
.floatcta__sns-ig { width: 26px; height: 26px; }
.floatcta__sns-yt { width: 30px; height: 30px; }

.floatcta__contact {
  background: var(--cta-bg-dark); color: #fff; padding: 18px 22px 20px; min-width: 210px;
  box-shadow: 0 -4px 30px rgba(0,0,0,.25);
}
.floatcta__ttl {
  font-family: var(--ff-mincho); letter-spacing: .12em; font-size: 15px;
  text-align: center; margin-bottom: 14px;
}
.floatcta__tel {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.5); color: #fff;
  font-family: var(--ff-serif); letter-spacing: .08em; font-size: 17px; font-weight: 600;
  padding: 9px 14px; margin-bottom: 10px; transition: .35s var(--ease);
}
.floatcta__tel:hover { background: rgba(255,255,255,.1); }
.floatcta__reserve {
  display: block; text-align: center; background: var(--c-gold); color: #fff;
  font-family: var(--ff-mincho); font-weight: 600;
  font-size: 13px; letter-spacing: .08em; padding: 11px 14px; transition: .35s var(--ease);
}
.floatcta__reserve:hover { background: var(--c-gold-dk); }

/* Instagram button — mobile bar only (desktop uses the CHECK IT panel) */
.floatcta__igbtn { display: none; }

@media (max-width: 900px) {
  .floatcta { left: 0; right: 0; flex-direction: row; align-items: stretch; gap: 0; }
  .floatcta__check { display: none; }
  .floatcta__contact { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 0; }
  .floatcta__ttl { display: none; }
  .floatcta__tel { margin: 0; flex: 1; font-size: 15px; padding: 11px 8px; }
  .floatcta__reserve { flex: 1; margin: 0; padding: 13px 8px; }
  .floatcta__igbtn {
    display: flex; align-items: center; justify-content: center;
    width: 52px; flex: 0 0 52px; background: var(--cta-bg);
    border-right: 1px solid rgba(255,255,255,.12);
    transition: filter .3s var(--ease);
  }
  .floatcta__igbtn:active { filter: brightness(1.12); }
  .floatcta__igbtn svg { width: 26px; height: 26px; display: block; }
}
@media (max-width: 420px) {
  .floatcta__tel { font-size: 13px; letter-spacing: 0; }
  .floatcta__reserve { font-size: 12px; }
}

/* ==========================================================================
   Movie modal
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; }
.modal.open { display: grid; }
.modal__bg { position: absolute; inset: 0; background: rgba(8,10,10,.9); animation: fadeIn .4s; }
@keyframes fadeIn { from { opacity: 0; } }
.modal__frame { position: relative; z-index: 2; width: min(960px, 100%); aspect-ratio: 16/9; }
.modal__frame iframe { width: 100%; height: 100%; border: 0; }
.modal__close { position: absolute; top: -44px; right: 0; color: #fff; font-size: 30px; z-index: 3; line-height: 1; }

/* ==========================================================================
   Mobile
   ========================================================================== */
@media (max-width: 900px) {
  .pc-only { display: none !important; }
  .sp-only { display: block; }
  .burger { display: block; }

  /* Header — lighter veil than PC; the stronger blur keeps the logo/burger legible */
  .site-header {
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(115%) blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,.04);
  }
  .site-header.scrolled { box-shadow: 0 1px 14px rgba(0,0,0,.05); }

  #nav.nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 70;
    min-height: 100vh;  /* guarantee full-screen coverage even if bottom:0 is ignored */
    flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0;
    background: var(--c-bg-deep);
    transform: translateY(-100%); transition: transform .5s var(--ease);
    padding: 72px 40px 48px; overflow-y: auto;
  }
  body.menu-open #nav.nav { transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  .nav-pc { display: none !important; }

  /* structured mobile drawer */
  .navm { display: flex; flex-direction: column; width: 100%; max-width: 340px; margin: 0 auto; }
  .navm__logo { text-align: center; margin-bottom: 24px; }
  .navm__logo img { height: 58px; width: auto; display: inline-block; }
  .navm__group { margin-bottom: 16px; }
  .navm__head {
    display: block; font-family: var(--ff-serif); font-size: 23px; font-weight: 600;
    letter-spacing: .12em; color: #fff; margin-bottom: 6px;
  }
  .navm__group a, .navm__links a {
    display: block; font-family: var(--ff-mincho); font-size: 14.5px; letter-spacing: .08em;
    padding: 7px 0 7px 22px; position: relative; color: #d8c48a;
  }
  .navm__group a::before, .navm__links a::before {
    content: ""; position: absolute; left: 2px; top: 50%; width: 5px; height: 5px;
    border-radius: 50%; background: var(--c-gold); transform: translateY(-50%);
  }
  .navm__links { margin-top: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
  .navm__links a { color: #fff; font-weight: 500; }
  .navm a:active { opacity: .6; }

  .concept__grid { grid-template-columns: 1fr; gap: 54px; }
  .concept__media { order: -1; }
  .concept__media::before { inset: 16px -16px -16px 16px; }

  .features__grid { grid-template-columns: repeat(3, 1fr); }

  .stay__item, .stay__item:nth-child(even) { flex-direction: column; }
  /* display:contents lifts the photo and video out of .stay__media so `order`
     can put the video last — photo, panel, then video */
  .stay__media { display: contents; }
  .stay__photo { width: 100%; order: 1; }
  .stay__body, .stay__item:nth-child(even) .stay__body { width: 88%; margin: -52px auto 0; order: 2; }
  .stay__video, .stay__item:nth-child(even) .stay__video {
    position: static; order: 3; width: 88%;
    left: auto; right: auto; bottom: auto;
    margin: clamp(28px, 7vw, 44px) auto 0; box-shadow: none;
  }

  .architect { padding: clamp(64px, 12vw, 120px) 0; }
  .architect__cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .arch-card { padding: 14px 12px 22px; }
  .arch-card__name { font-size: 20px; }

  /* Showcase (HIROBA / PUDDING) — more breathing room on mobile */
  .showcase__inner { padding-block: clamp(72px, 17vw, 120px); }
  .showcase__box { max-width: 100%; }
  .showcase .wrap { padding-inline: clamp(26px, 7vw, 48px); }
  .showcase__box p { margin-bottom: 28px; }

  .news__item { grid-template-columns: 110px 1fr; }
  .news__cat { grid-row: 1; grid-column: 2; justify-self: start; }
  .news__ttl { grid-column: 1 / -1; }

  .insta__grid { grid-template-columns: repeat(3, 1fr); }

  .access__grid { grid-template-columns: 1fr; }
  .access__map { min-height: 320px; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 520px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
  .stay__no { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .4s; transform: none; }
  * { scroll-behavior: auto; }
}

/* ==========================================================================
   Detail page (tree.php / zen.php / holiday.php ...)
   ========================================================================== */
.phero { position: relative; height: 64vh; min-height: 460px; overflow: hidden; display: grid; place-items: center; text-align: center; color: #fff; }
.phero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: kenburns 12s ease-out forwards; }
.phero__video { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; }
@keyframes kenburns { to { transform: scale(1.14); } }

/* Hero slideshow (pudding): crossfade through N stacked backgrounds */
.phero__slides { position: absolute; inset: 0; }
.phero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; animation: pheroFade 36s infinite;
}
.phero__slide:nth-child(1) { animation-delay:  0s; opacity: 1; }
.phero__slide:nth-child(2) { animation-delay:  6s; }
.phero__slide:nth-child(3) { animation-delay: 12s; }
.phero__slide:nth-child(4) { animation-delay: 18s; }
.phero__slide:nth-child(5) { animation-delay: 24s; }
.phero__slide:nth-child(6) { animation-delay: 30s; }
/* 6s each: fade in over ~1.2s, hold, fade out — 1/6 = 16.67% per slide */
@keyframes pheroFade {
  0%     { opacity: 0; transform: scale(1.04); }
  3%     { opacity: 1; }
  16.67% { opacity: 1; }
  19.67% { opacity: 0; }
  100%   { opacity: 0; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .phero__slide { animation: none; }
  .phero__slide:not(:first-child) { display: none; }
}
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.48)); }
.phero__inner { position: relative; z-index: 2; padding: 60px var(--gutter) 0; }
.phero__cat { font-family: var(--ff-serif); letter-spacing: .4em; text-transform: uppercase; font-size: 11px; color: #d8c48a; margin-bottom: 20px; display: block; }
.phero__en { font-family: var(--ff-serif); font-size: clamp(48px, 9vw, 104px); font-weight: 600; letter-spacing: .12em; line-height: 1; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.phero__jp { font-family: var(--ff-mincho); letter-spacing: .28em; margin-top: 18px; font-size: clamp(13px, 2vw, 16px); opacity: .95; }

.breadcrumb { padding: 22px 0 0; font-size: 11.5px; letter-spacing: .08em; color: var(--c-ink-soft); }
.breadcrumb a { color: var(--c-ink-soft); transition: color .3s; }
.breadcrumb a:hover { color: var(--c-gold-dk); }
.breadcrumb span { color: var(--c-gold-dk); }

/* detail concept reuse .concept; detail features */
.dfeatures { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 128px); }
.dfeature { position: relative; display: flex; align-items: center; }
.dfeature:nth-child(even) { flex-direction: row-reverse; }
.dfeature__media { position: relative; overflow: hidden; width: 62%; flex-shrink: 0; }
.dfeature__media img { width: 100%; aspect-ratio: 3/2.1; object-fit: cover; transition: transform 1.4s var(--ease); }
.dfeature:hover .dfeature__media img { transform: scale(1.05); }
/* translucent dark box overlapping the photo (matches .stay__item) */
.dfeature__body {
  position: relative; z-index: 2; width: 46%; margin-left: -8%;
  background: rgba(20, 26, 26, .74);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  color: #fff; padding: clamp(34px, 3.6vw, 58px) clamp(28px, 3.2vw, 52px);
}
.dfeature:nth-child(even) .dfeature__body { margin-left: 0; margin-right: -8%; }
.dfeature__body .num { display: block; font-family: var(--ff-serif); color: #d8c48a; font-size: clamp(40px, 5vw, 60px); font-weight: 600; line-height: 1; margin-bottom: 14px; opacity: .95; }
.dfeature__body h3 { font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(18px, 2.4vw, 24px); letter-spacing: .08em; line-height: 1.6; color: #fff; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.24); }
.dfeature__body p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 2; margin: 0; }

/* reviews (masonry) */
.reviews__grid { columns: 3; column-gap: 24px; max-width: 1080px; margin-inline: auto; }
.review { break-inside: avoid; background: #fff; padding: 24px 26px; margin-bottom: 24px; border-top: 2px solid var(--c-gold); box-shadow: 0 4px 20px rgba(0,0,0,.03); }
.review p { font-size: 14px; color: var(--c-ink); line-height: 1.95; }
.review::before { content: "\201C"; font-family: var(--ff-serif); color: var(--c-gold); font-size: 40px; line-height: .2; display: block; margin-bottom: 10px; }

/* spec */
.spec__table { max-width: 960px; margin-inline: auto; border-top: 1px solid var(--c-line); }
.spec__row { display: grid; grid-template-columns: 210px 1fr; gap: 24px; padding: 20px 8px; border-bottom: 1px solid var(--c-line); }
.spec__row dt { font-family: var(--ff-mincho); font-size: 14px; letter-spacing: .08em; color: var(--c-ink); }
.spec__row dd { margin: 0; font-size: 13.5px; color: var(--c-ink-soft); line-height: 1.9; }

/* price / list rows */
.pricelist { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--c-line); }
.pricerow { display: flex; justify-content: space-between; align-items: baseline; padding: 22px 10px; border-bottom: 1px solid var(--c-line); gap: 20px; }
.pricerow dt { font-family: var(--ff-mincho); font-size: 15px; letter-spacing: .06em; margin: 0; }
.pricerow dd { margin: 0; font-family: var(--ff-mincho); font-size: clamp(19px, 2.8vw, 25px); color: var(--c-gold-dk); font-weight: 600; letter-spacing: .04em; }
.note { max-width: 820px; margin: 24px auto 0; font-size: 12px; color: var(--c-ink-soft); line-height: 1.95; }

/* ----- CHEF page ----- */
.phero--short { height: 46vh; min-height: 340px; }

/* reCAPTCHA バッジは右下に表示する
   （旧テーマ由来 tmz-style.css の visibility:hidden より優先させる） */
.grecaptcha-badge { visibility: visible !important; }

/* 予約システムページ用のコンパクトなバナー型ヒーロー */
.phero--slim { height: 280px; min-height: 220px; }
.phero--slim .phero__inner { padding-top: 30px; }
.phero--slim .phero__en { font-size: clamp(30px, 4.5vw, 52px); }
.phero--slim .phero__jp { margin-top: 12px; letter-spacing: .24em; }

/* ご宿泊ページ: スマホではヒーローをコンパクトに（PCは通常サイズのまま） */
@media (max-width: 900px) {
  .phero--sp-slim { height: 240px; min-height: 200px; }
  .phero--sp-slim .phero__inner { padding-top: 24px; }
  .phero--sp-slim .phero__en { font-size: clamp(28px, 8vw, 40px); }
  .phero--sp-slim .phero__jp { margin-top: 10px; letter-spacing: .24em; }
}
.chef__catch {
  text-align: center; font-family: var(--ff-mincho); font-weight: 500;
  font-size: clamp(17px, 2.2vw, 22px); letter-spacing: .08em; line-height: 1.8;
  color: var(--c-ink); margin-top: clamp(-6px, -0.4vw, 0px);
}
.chef__lead {
  max-width: 840px; margin: clamp(20px, 2.6vw, 30px) auto 0; text-align: center;
  font-size: 14.5px; line-height: 2.1; color: var(--c-ink-soft);
}
.chef-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(26px, 3.4vw, 46px); }
.chef-list:has(> :only-child) { grid-template-columns: minmax(0, 620px); justify-content: center; }
.chef-card { display: flex; flex-direction: column; background: #fff; box-shadow: 0 6px 30px rgba(0,0,0,.06); }
.band--soft .chef-card { background: #fff; }
.chef-card__img { overflow: hidden; }
.chef-card__img img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.chef-card:hover .chef-card__img img { transform: scale(1.05); }
.chef-card__body { padding: clamp(26px, 3vw, 36px) clamp(22px, 2.6vw, 34px) clamp(30px, 3.4vw, 40px); display: flex; flex-direction: column; flex: 1; }
.chef-card__genre {
  font-family: var(--ff-serif); font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; color: var(--c-gold-dk); margin-bottom: 10px;
}
.chef-card__name {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: .08em; color: var(--c-ink);
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--c-line);
}
.chef-card__info { margin: 0 0 26px; }
.chef-card__info p { font-size: 13.5px; line-height: 2; color: var(--c-ink-soft); margin-bottom: 4px; }
.chef-card__info a { color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
.chef-card__info a:hover { color: var(--c-gold-dk); border-color: var(--c-gold); }
.chef-card .btn { margin-top: auto; align-self: flex-start; font-size: 11px; padding: 14px 32px; }
@media (max-width: 820px) {
  .chef-list, .chef-list:has(> :only-child) { grid-template-columns: 1fr; }
  .chef-card__row { grid-template-columns: 84px 1fr; }
}

/* ----- PHOTO GALLERY (facility tabs) ----- */
.gtabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line);
  margin: clamp(34px, 4vw, 50px) 0 clamp(34px, 4vw, 48px);
}
.gtab {
  position: relative; background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: clamp(20px, 2.4vw, 28px) 8px;
  transition: color .45s var(--ease);
}
.gtab + .gtab { box-shadow: -1px 0 0 var(--c-line); }
.gtab__en {
  font-family: var(--ff-serif); font-size: clamp(15px, 1.7vw, 20px); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--c-ink-soft);
  transition: color .45s var(--ease);
}
.gtab__jp {
  font-family: var(--ff-mincho); font-size: clamp(9.5px, .9vw, 11px);
  letter-spacing: .12em; color: var(--c-ink-soft); opacity: .72;
  transition: opacity .45s var(--ease), color .45s var(--ease);
}
/* gold underline slides in */
.gtab::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 2px;
  background: var(--c-gold); transition: left .5s var(--ease), right .5s var(--ease);
}
.gtab:hover .gtab__en { color: var(--c-ink); }
.gtab:hover::after { left: 34%; right: 34%; }
.gtab.is-active .gtab__en { color: var(--c-ink); }
.gtab.is-active .gtab__jp { color: var(--c-gold-dk); opacity: 1; }
.gtab.is-active::after { left: 0; right: 0; }

.gpanel { display: none; }
.gpanel.is-active { display: block; animation: gpanelIn .8s var(--ease) both; }
@keyframes gpanelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.gpanel__head {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px;
  margin-bottom: clamp(26px, 3vw, 38px);
}
.gpanel__desc { font-family: var(--ff-mincho); font-size: clamp(14px, 1.6vw, 16px); letter-spacing: .06em; color: var(--c-ink); }
.gpanel__meta { display: flex; align-items: center; gap: 22px; }
.gpanel__count { font-family: var(--ff-serif); font-size: 11.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--c-gold-dk); }
.gpanel__link {
  position: relative; font-size: 12.5px; letter-spacing: .1em; color: var(--c-ink-soft);
  font-family: var(--ff-mincho); padding-bottom: 4px;
}
.gpanel__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--c-line); transition: background .4s var(--ease); }
.gpanel__link:hover { color: var(--c-gold-dk); }
.gpanel__link:hover::after { background: var(--c-gold); }

/* masonry-style mosaic — aspect ratios are pre-set so nothing shifts on load */
.pgal { columns: 3; column-gap: clamp(10px, 1.2vw, 16px); }
.pgal__item {
  position: relative; display: block; overflow: hidden; cursor: zoom-in;
  break-inside: avoid; margin: 0 0 clamp(10px, 1.2vw, 16px);
  background: var(--c-bg-soft);
}
.pgal__item:nth-child(4n+1) { aspect-ratio: 3/4; }
.pgal__item:nth-child(4n+2) { aspect-ratio: 4/3; }
.pgal__item:nth-child(4n+3) { aspect-ratio: 1/1; }
.pgal__item:nth-child(4n+4) { aspect-ratio: 4/5; }
.pgal__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.pgal__item:hover img { transform: scale(1.06); }
.pgal__veil {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(20,26,26,0); transition: background .55s var(--ease);
}
.pgal__item:hover .pgal__veil { background: rgba(20,26,26,.34); }
.pgal__plus { position: relative; width: 40px; height: 40px; opacity: 0; transform: scale(.85); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.pgal__plus::before, .pgal__plus::after { content: ""; position: absolute; left: 50%; top: 50%; background: #fff; }
.pgal__plus::before { width: 1px; height: 100%; transform: translate(-50%, -50%); }
.pgal__plus::after { width: 100%; height: 1px; transform: translate(-50%, -50%); }
.pgal__item:hover .pgal__plus { opacity: 1; transform: scale(1); }

@media (max-width: 1000px) { .pgal { columns: 2; } }
@media (max-width: 700px) {
  .gtabs { grid-template-columns: repeat(2, 1fr); }
  .gtab:nth-child(3) { box-shadow: none; }
  .gtab:nth-child(-n+2) { box-shadow: inset 0 -1px 0 var(--c-line); }
  .gtab:nth-child(2), .gtab:nth-child(4) { box-shadow: -1px 0 0 var(--c-line), inset 0 -1px 0 var(--c-line); }
  .gtab:nth-child(3), .gtab:nth-child(4) { box-shadow: none; }
  .gtab:nth-child(4) { box-shadow: -1px 0 0 var(--c-line); }
  .gtab:nth-child(2) { box-shadow: -1px 0 0 var(--c-line), inset 0 -1px 0 var(--c-line); }
  .gtab:nth-child(1) { box-shadow: inset 0 -1px 0 var(--c-line); }
  .gpanel__head { flex-direction: column; align-items: flex-start; }
  .pgal { columns: 2; column-gap: 10px; }
  .pgal__item { margin-bottom: 10px; }
}

/* ----- BLOG detail ----- */
.post { padding-bottom: clamp(60px, 8vw, 96px); }
.post__head { padding-top: 0; }
.post__meta { display: flex; align-items: center; gap: 16px; margin: clamp(28px, 4vw, 44px) 0 16px; }
.post__cat {
  background: var(--c-bg-deep); color: #d8c48a;
  font-family: var(--ff-serif); font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; padding: 7px 14px;
}
.post__date { font-family: var(--ff-serif); font-size: 12.5px; font-weight: 600; letter-spacing: .16em; color: var(--c-gold-dk); }
.post__ttl {
  font-family: var(--ff-mincho); font-weight: 500;
  font-size: clamp(22px, 3.4vw, 38px); letter-spacing: .06em; line-height: 1.6;
  color: var(--c-ink); margin-bottom: clamp(30px, 4vw, 46px);
}
.post__hero { margin: 0 0 clamp(40px, 5vw, 64px); }
.post__hero img { width: 100%; max-height: 62vh; object-fit: cover; display: block; }

.post__body { max-width: 760px; margin-inline: auto; }
.post__lead {
  font-family: var(--ff-mincho); font-size: clamp(15px, 1.8vw, 17px);
  line-height: 2.05; color: var(--c-ink); letter-spacing: .04em;
  padding-bottom: clamp(26px, 3vw, 36px); margin-bottom: clamp(26px, 3vw, 36px);
  border-bottom: 1px solid var(--c-line);
}
.post__body p { font-size: 14.5px; line-height: 2.15; color: var(--c-ink-soft); margin-bottom: 26px; }
.post__body h2 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(18px, 2.3vw, 23px);
  letter-spacing: .08em; line-height: 1.7; color: var(--c-ink);
  margin: clamp(46px, 6vw, 66px) 0 22px; padding-left: 16px;
  border-left: 2px solid var(--c-gold);
}
.post__body h3 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(16px, 1.9vw, 18px);
  letter-spacing: .08em; color: var(--c-ink); margin: clamp(34px, 4vw, 44px) 0 16px;
}
.post__figure { margin: clamp(30px, 4vw, 42px) 0; }
.post__figure img { width: 100%; height: auto; display: block; }
.post__figure figcaption { font-size: 12px; color: var(--c-ink-soft); margin-top: 10px; line-height: 1.8; }
.post__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.post__grid .post__figure { margin: clamp(30px, 4vw, 42px) 0; }
.post__grid img { aspect-ratio: 4/3; object-fit: cover; }
.post__quote {
  margin: clamp(34px, 4vw, 46px) 0; padding: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 36px);
  background: var(--c-bg-soft); border-left: 2px solid var(--c-gold);
}
.post__quote p { font-family: var(--ff-mincho); font-size: 15px; line-height: 2; color: var(--c-ink); margin-bottom: 12px; }
.post__quote cite { font-style: normal; font-size: 12px; letter-spacing: .06em; color: var(--c-ink-soft); }
.post__list { list-style: none; margin: 0 0 26px; padding: 0; }
.post__list li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 14px; line-height: 2.05; color: var(--c-ink-soft);
}
.post__list li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-gold);
}
.post__note { font-size: 12px !important; line-height: 1.95 !important; color: var(--c-ink-soft); margin-top: clamp(38px, 5vw, 52px); padding-top: 22px; border-top: 1px solid var(--c-line); }

.post__share { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: clamp(44px, 5vw, 60px); }
.post__share-ttl { font-family: var(--ff-serif); font-size: 11px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--c-ink-soft); margin-right: 6px; }
.post__share-btn {
  font-family: var(--ff-serif); font-size: 11.5px; font-weight: 600; letter-spacing: .14em;
  color: var(--c-ink-soft); border: 1px solid var(--c-line); padding: 9px 18px; transition: .4s var(--ease);
}
.post__share-btn:hover { border-color: var(--c-gold); color: var(--c-gold-dk); }

.post__nav {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 2.4vw, 34px); align-items: center;
  max-width: 1000px; margin: clamp(50px, 6vw, 72px) auto 0;
  padding-top: clamp(34px, 4vw, 46px); border-top: 1px solid var(--c-line);
}
.post__nav-item { display: flex; flex-direction: column; gap: 8px; }
.post__nav-item.is-empty { display: block; }
.post__nav-next { text-align: right; }
.post__nav-label { font-family: var(--ff-serif); font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--c-gold-dk); }
.post__nav-ttl { font-family: var(--ff-mincho); font-size: 13.5px; line-height: 1.8; color: var(--c-ink); transition: color .35s var(--ease); }
a.post__nav-item:hover .post__nav-ttl { color: var(--c-gold-dk); }
.post__nav-index {
  font-family: var(--ff-serif); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-ink); border: 1px solid var(--c-ink); padding: 13px 24px; white-space: nowrap; transition: .4s var(--ease);
}
.post__nav-index:hover { background: var(--c-ink); color: #fff; }

@media (max-width: 700px) {
  .post__grid { grid-template-columns: 1fr; gap: 0; }
  .post__nav { grid-template-columns: 1fr; text-align: left; }
  .post__nav-next { text-align: left; }
  .post__nav-item.is-empty { display: none; }
  .post__nav-index { justify-self: center; }
  .post__share { flex-wrap: wrap; }
}

/* ----- BLOG list ----- */
.blog-cats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 8px;
  margin: clamp(34px, 4vw, 48px) 0 clamp(40px, 5vw, 56px);
}
.blog-cat {
  font-family: var(--ff-serif); font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--c-ink-soft);
  padding: 9px 20px; border: 1px solid var(--c-line); border-radius: 2px;
  transition: .4s var(--ease);
}
.blog-cat:hover { border-color: var(--c-gold); color: var(--c-gold-dk); }
.blog-cat.is-active { background: var(--c-bg-deep); border-color: var(--c-bg-deep); color: #fff; }

.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 4vw, 52px) clamp(20px, 2.6vw, 34px); }
.blog-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.blog-card__img { position: relative; overflow: hidden; margin-bottom: 20px; }
.blog-card__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.blog-card__link:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--c-bg-deep); color: #d8c48a;
  font-family: var(--ff-serif); font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; padding: 7px 14px;
}
.blog-card__body { display: flex; flex-direction: column; flex: 1; }
.blog-card__date {
  font-family: var(--ff-serif); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; color: var(--c-gold-dk); margin-bottom: 10px;
}
.blog-card__ttl {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(16px, 1.7vw, 19px);
  letter-spacing: .06em; line-height: 1.75; color: var(--c-ink); margin-bottom: 12px;
  transition: color .35s var(--ease);
}
.blog-card__link:hover .blog-card__ttl { color: var(--c-gold-dk); }
.blog-card__lead { font-size: 13px; line-height: 1.95; color: var(--c-ink-soft); margin-bottom: 18px; }
.blog-card__more {
  margin-top: auto; align-self: flex-start; position: relative;
  font-family: var(--ff-serif); font-size: 11px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--c-ink);
  padding-bottom: 5px;
}
.blog-card__more::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--c-gold); transform: scaleX(.35); transform-origin: left;
  transition: transform .45s var(--ease);
}
.blog-card__link:hover .blog-card__more::after { transform: scaleX(1); }

/* first post spans the full row as a horizontal lead card */
.blog-card--lead { grid-column: 1 / -1; }
.blog-card--lead .blog-card__link { flex-direction: row; align-items: center; gap: clamp(26px, 3.4vw, 52px); }
.blog-card--lead .blog-card__img { flex: 0 0 58%; margin-bottom: 0; }
.blog-card--lead .blog-card__img img { aspect-ratio: 16/9; }
.blog-card--lead .blog-card__ttl { font-size: clamp(19px, 2.4vw, 27px); line-height: 1.6; }
.blog-card--lead .blog-card__lead { font-size: 14px; }

.blog-pager { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: clamp(50px, 6vw, 74px); }
.blog-pager__item {
  min-width: 42px; height: 42px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 13px; font-weight: 600; letter-spacing: .1em;
  color: var(--c-ink-soft); border: 1px solid var(--c-line); transition: .4s var(--ease);
}
.blog-pager__item:hover { border-color: var(--c-gold); color: var(--c-gold-dk); }
.blog-pager__item.is-current { background: var(--c-bg-deep); border-color: var(--c-bg-deep); color: #fff; }
.blog-pager__next { letter-spacing: .12em; font-family: var(--ff-mincho); font-size: 12.5px; }

@media (max-width: 1000px) {
  .blog-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .blog-list { grid-template-columns: 1fr; }
  .blog-card--lead .blog-card__link { flex-direction: column; align-items: stretch; gap: 0; }
  .blog-card--lead .blog-card__img { flex: none; margin-bottom: 20px; }
  .blog-card--lead .blog-card__img img { aspect-ratio: 3/2; }
}

/* ----- HOLIDAY page: three floor plans side by side ----- */
.hd-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); margin-bottom: clamp(46px, 6vw, 68px); }
.hd-plans .spec-plan { max-width: none; margin: 0; }
.hd-plans .spec-plan figcaption { font-size: 11px; margin-top: 12px; }
.hd-plans--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
@media (max-width: 900px) { .hd-plans, .hd-plans--2 { grid-template-columns: 1fr; } }

/* HIROBA: price rows carry multi-line text rather than a single figure */
.pricerow .hb-price { font-family: var(--ff-sans); font-size: 14px; line-height: 1.95; text-align: right; }

/* ----- RESERVATION page ----- */
.rsv__lead { max-width: 860px; margin: 0 auto; text-align: center; font-size: 14.5px; line-height: 2.1; color: var(--c-ink-soft); }
.rsv-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(40px, 5vw, 60px);
}
.rsv-card {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px; text-align: center;
  min-height: 350px; padding: 30px 24px; overflow: hidden;
  background-size: cover; background-position: center; color: #fff;
}
.rsv-card::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(18,24,24,.46); transition: background .5s var(--ease);
}
.rsv-card:hover::before { background: rgba(18,24,24,.3); }
.rsv-card > * { position: relative; z-index: 1; }
.rsv-card__name {
  font-family: var(--ff-serif); font-size: clamp(20px, 2.2vw, 26px); font-weight: 600;
  letter-spacing: .12em; line-height: 1.3;
}
.rsv-card__cta {
  font-family: var(--ff-mincho); font-size: 14px; letter-spacing: .1em; line-height: 1.8;
  padding: 12px 22px; border: 1px solid rgba(255,255,255,.7); transition: .45s var(--ease);
}
.rsv-card:hover .rsv-card__cta { background: #fff; color: var(--c-ink); }
.rsv-tel-head { margin-top: clamp(64px, 8vw, 100px); }
.rsv-tel {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  max-width: 900px; margin: clamp(28px, 4vw, 40px) auto 0; padding: 30px 60px 32px;
  background: #0e0e0e; color: #fff; text-align: center; position: relative;
  border-radius: 4px; transition: background .4s var(--ease);
}
.rsv-tel:hover { background: #1d2a2a; }
.rsv-tel::after {
  content: ""; position: absolute; right: 36px; top: 50%;
  width: 12px; height: 12px; border-top: 1px solid #fff; border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.rsv-tel__ttl { font-family: var(--ff-mincho); font-size: clamp(19px, 2.4vw, 26px); letter-spacing: .12em; }
.rsv-tel__num { font-family: var(--ff-serif); font-size: clamp(14px, 1.6vw, 19px); letter-spacing: .06em; }
.rsv-note { max-width: 900px; margin-inline: auto; }
.rsv-note h3 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(18px, 2.3vw, 22px);
  letter-spacing: .1em; color: var(--c-ink);
  padding-bottom: 16px; border-bottom: 1px solid var(--c-line);
}
.rsv-note h3 + .rsv-note__list { margin-top: 26px; }
.rsv-note__list { list-style: none; margin: 0 0 clamp(48px, 6vw, 76px); padding: 0; }
.rsv-note__list > li {
  position: relative; padding-left: 20px; margin-bottom: 30px;
  font-size: 14px; line-height: 2.05; color: var(--c-ink-soft);
}
.rsv-note__list > li:last-child { margin-bottom: 0; }
.rsv-note__list > li::before { content: "・"; position: absolute; left: -2px; color: var(--c-gold-dk); }
.rsv-note__list a { color: var(--c-gold-dk); text-decoration: underline; text-underline-offset: 2px; }
.rsv-cancel { border-collapse: collapse; margin-top: 12px; }
.rsv-cancel th, .rsv-cancel td {
  border: 1px solid var(--c-line); padding: 9px 22px;
  font-size: 13.5px; font-weight: 400; text-align: left; color: var(--c-ink-soft);
}
.rsv-cancel th { background: var(--c-bg-soft); font-family: var(--ff-mincho); white-space: nowrap; }
.rsv-note__btn { display: block; margin-top: 24px; }
.rsv-note__btn .btn { border-color: var(--c-ink); }
.rsv-note__btn .btn span { line-height: 1.7; }
@media (max-width: 900px) {
  .rsv-cards { grid-template-columns: 1fr; }
  .rsv-card { min-height: 240px; }
  .rsv-tel { padding: 26px 44px 28px; }
  .rsv-tel::after { right: 20px; }
}

/* ----- GUIDE page ----- */
.guide-intro .concept__grid + .concept__grid { margin-top: clamp(60px, 8vw, 110px); }
.concept__grid.gd-row--rev { direction: rtl; }
.concept__grid.gd-row--rev > * { direction: ltr; }
.gd-spots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 52px) clamp(20px, 2.6vw, 34px);
}
.gd-spot { display: flex; flex-direction: column; }
.gd-spot__img { overflow: hidden; margin-bottom: 20px; }
.gd-spot__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.gd-spot:hover .gd-spot__img img { transform: scale(1.05); }
.gd-spot h4 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(17px, 1.7vw, 20px);
  letter-spacing: .1em; color: var(--c-ink); margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--c-line);
}
.gd-spot p { font-size: 13px; line-height: 2; color: var(--c-ink-soft); margin-bottom: 22px; }
.gd-spot .btn { margin-top: auto; align-self: flex-start; font-size: 11px; padding: 14px 30px; }
@media (max-width: 1000px) { .gd-spots { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .gd-spots { grid-template-columns: 1fr; }
  .concept__grid.gd-row--rev { direction: ltr; }
}

/* ----- CONTACT page ----- */
.cform__lead {
  max-width: 760px; margin: 0 auto 20px; text-align: center;
  font-size: 14px; line-height: 2.1; color: var(--c-ink-soft);
}
.cform__lead a { color: var(--c-gold-dk); }
.cform__lead--tight { margin: 30px auto 0; }
.cform { max-width: 760px; margin: clamp(40px, 5vw, 60px) auto 0; }
.cform__row { margin-bottom: 26px; }
.cform__label {
  display: block; font-family: var(--ff-mincho); font-size: 14.5px;
  letter-spacing: .08em; color: var(--c-ink); margin-bottom: 10px;
}
.cform__req { color: #d0021b; font-size: 12px; margin-left: 20px; letter-spacing: .04em; }
.cform__input {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 15px; color: var(--c-ink);
  background: #fff; border: 1px solid var(--c-line); border-radius: 2px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cform__input:focus {
  outline: none; border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(179,152,92,.16);
}
.cform__textarea { resize: vertical; min-height: 200px; line-height: 1.9; }
.cform__submit { text-align: center; margin-top: 30px; }
.cform__submit .btn { cursor: pointer; font-family: var(--ff-mincho); letter-spacing: .2em; font-size: 15px; padding: 17px 64px; }
.cform__note { text-align: center; font-size: 12px; line-height: 1.9; color: var(--c-ink-soft); margin-top: 26px; }
.cform__note a { color: var(--c-gold-dk); text-decoration: underline; text-underline-offset: 2px; }
/* iOS Safari zooms the page when a focused field is under 16px */
@media (max-width: 900px) {
  .cform__input { font-size: 16px; }
  .cform__submit .btn { width: 100%; padding-inline: 24px; }
}

/* お問い合わせフォーム: 送信処理まわりの表示 */
.cform__hp { position: absolute; left: -9999px; top: -9999px; }
.cform__error { color: #b8322c; font-size: 12.5px; margin-top: 6px; letter-spacing: .04em; }
.cform__alert {
  max-width: 720px; margin: 0 auto 34px; padding: 18px 22px;
  border: 1px solid #d9a6a2; background: #fdf3f2; color: #8f2823;
  font-size: 13.5px; line-height: 1.9;
}
.cform__alert ul { margin-top: 6px; padding-left: 1.3em; list-style: disc; }
.cform__thanks { max-width: 720px; margin: 0 auto; text-align: center; }
.cform__thanks h2 {
  font-family: var(--ff-mincho); font-weight: 500; letter-spacing: .12em;
  font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 22px;
}
.cform__thanks p { font-size: 14px; line-height: 2.1; color: var(--c-ink-soft); }
.cform__thanks-btn { margin-top: 34px; }

/* ----- ACCESS page ----- */
.acc__map { position: relative; }
.acc__map iframe { width: 100%; height: clamp(300px, 40vw, 480px); border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
.acc-root { padding: clamp(34px, 5vw, 52px) 0; border-top: 1px solid var(--c-line); }
.acc-root:first-child { border-top: 0; padding-top: 0; }
.acc-root h4 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(16px, 2vw, 19px);
  letter-spacing: .08em; color: var(--c-ink); margin-bottom: 8px;
}
.acc-root > p { font-size: 13px; color: var(--c-ink-soft); letter-spacing: .04em; }

/* Route flow — replaces the flat PNG diagrams from the old site.
   Horizontal with ▶ connectors on desktop, stacked with ▼ on mobile. */
.acc-flow {
  list-style: none; margin: clamp(24px, 3vw, 34px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 54px); align-items: stretch;
}
.acc-flow__step {
  position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: clamp(120px, 14vw, 168px); padding: 18px 12px;
  background: #fff; border: 1px solid #cfc7bb;
  font-family: var(--ff-mincho); font-size: clamp(12.5px, 1.15vw, 14px);
  font-weight: 500; line-height: 1.8; letter-spacing: .04em; color: var(--c-ink);
}
/* connector: line + arrowhead drawn in the gap to the right of each step */
.acc-flow__step:not(:last-child)::before {
  content: ""; position: absolute; top: 50%; left: 100%;
  width: clamp(28px, 4vw, 54px); height: 1px; background: #8c8378;
}
.acc-flow__step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; left: 100%;
  width: 9px; height: 9px; border-top: 1px solid #8c8378; border-right: 1px solid #8c8378;
  transform: translate(calc(clamp(28px, 4vw, 54px) - 9px), -50%) rotate(45deg);
}
@media (max-width: 760px) {
  .acc-flow { grid-template-columns: 1fr; gap: 46px; }
  .acc-flow__step { min-height: 74px; }
  .acc-flow__step:not(:last-child)::before {
    top: 100%; left: 50%; width: 1px; height: 46px; transform: translateX(-50%);
  }
  .acc-flow__step:not(:last-child)::after {
    top: 100%; left: 50%;
    transform: translate(-50%, calc(46px - 9px)) rotate(135deg);
  }
}
.acc-info { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.acc-info h3 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(17px, 2.2vw, 21px);
  letter-spacing: .1em; color: var(--c-ink); margin-bottom: 18px;
  padding-bottom: 16px; border-bottom: 1px solid var(--c-line);
}
.acc-info p { font-size: 14px; line-height: 2.1; color: var(--c-ink-soft); }
.acc-info a { color: var(--c-gold-dk); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 760px) { .acc-info { grid-template-columns: 1fr; } }

/* ----- COMPANY page ----- */
.company__rep { text-align: right; }
.company__rep img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; display: inline-block; }
.company__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.company__grid .spec__table { max-width: none; margin: 0; }
.company__grid .spec__row { grid-template-columns: 150px 1fr; gap: 18px; }
.company__aside img { width: 100%; height: auto; display: block; }
.company__map { margin-top: clamp(40px, 5vw, 60px); }
.company__map iframe { width: 100%; height: clamp(280px, 34vw, 420px); border: 0; filter: grayscale(.3) contrast(1.05); display: block; }
.company__cta { text-align: center; margin-top: clamp(28px, 4vw, 40px); }
.company__jdt { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.company__jdt-logo { width: clamp(180px, 24vw, 260px); height: auto; }
.company__credit { font-size: 12px; color: var(--c-ink-soft); margin-top: 12px; }
.company__credit a { color: var(--c-gold-dk); text-decoration: underline; text-underline-offset: 2px; }
.company__movie { max-width: 980px; margin: clamp(44px, 6vw, 72px) auto 0; }
.company__architects { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.carch__img { overflow: hidden; margin-bottom: 18px; }
.carch__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.carch:hover .carch__img img { transform: scale(1.05); }
.carch h4 {
  font-family: var(--ff-mincho); font-weight: 500; font-size: 15px; letter-spacing: .06em;
  line-height: 1.9; text-align: center; color: var(--c-ink); margin-bottom: 14px;
}
.carch__villa { display: block; font-size: 11.5px; color: var(--c-gold-dk); letter-spacing: .1em; }
.carch p { font-size: 12.5px; line-height: 1.95; color: var(--c-ink-soft); }
@media (max-width: 900px) {
  .company__grid { grid-template-columns: 1fr; }
  .company__grid .spec__row { grid-template-columns: 110px 1fr; gap: 12px; }
  .company__architects { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .company__architects { grid-template-columns: 1fr; }
}

/* ----- BON-MAL PUDDING page ----- */
.pudding__cta { text-align: center; margin-top: clamp(36px, 5vw, 54px); }
.pudding__notes { list-style: none; margin: 16px 0 0; padding: 0; }
.pudding__notes li {
  position: relative; padding-left: 16px; margin-bottom: 6px;
  color: rgba(255,255,255,.85); font-size: 13.5px; line-height: 1.9;
}
.pudding__notes li::before { content: "・"; position: absolute; left: -2px; color: #d8c48a; }
.pudding__caution { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.62); margin: 14px 0 24px; }
.dfeature__body .btn.btn-light { margin-top: 4px; }
/* Banner asset is only 328x75 — never scale it up or it goes soft */
.pudding__insta {
  display: block; width: 100%; max-width: 328px; margin: 0 auto;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pudding__insta img { width: 100%; height: auto; display: block; }
.pudding__insta:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,.12); }

/* option / generic card grid */
.cardgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin-inline: auto; }
.ocard { border: 1px solid var(--c-line); padding: 24px 26px; transition: border-color .4s; }
.ocard:hover { border-color: var(--c-gold); }
.ocard h4 { font-family: var(--ff-mincho); font-size: 16px; letter-spacing: .06em; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.ocard h4 .price { font-family: var(--ff-mincho); color: var(--c-gold-dk); font-size: 17px; font-weight: 600; white-space: nowrap; }
.ocard p { font-size: 12.5px; color: var(--c-ink-soft); line-height: 1.85; }

/* foods */
.foods__lead { text-align: center; max-width: 660px; margin: 0 auto clamp(40px, 5vw, 60px); color: var(--c-ink-soft); font-size: 14.5px; line-height: 2; }
.foodcard { border: 1px solid var(--c-line); padding: 28px 30px; margin-bottom: 20px; max-width: 900px; margin-inline: auto; }
.foodcard h4 { font-family: var(--ff-mincho); font-size: 18px; letter-spacing: .08em; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--c-line); }
.foodcard .rows { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-bottom: 14px; }
.foodcard .rows span { font-size: 13px; color: var(--c-ink); letter-spacing: .04em; }
.foodcard .rows b { font-family: var(--ff-mincho); color: var(--c-gold-dk); font-size: 15px; margin-left: 4px; }
.foodcard p { font-size: 12px; color: var(--c-ink-soft); line-height: 1.85; }

.detail-cta { text-align: center; }

@media (max-width: 900px) {
  .dfeature, .dfeature:nth-child(even) { flex-direction: column; }
  .dfeature__media { width: 100%; }
  .dfeature__body, .dfeature:nth-child(even) .dfeature__body { width: 88%; margin: -52px auto 0; }
  .reviews__grid { columns: 2; }
  .spec__row { grid-template-columns: 110px 1fr; gap: 14px; }
  .cardgrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .reviews__grid { columns: 1; column-gap: 0; }
  .review { padding: 13px 15px; margin-bottom: 9px; border-top-width: 1px; box-shadow: none; }
  .review p { font-size: 12.5px; line-height: 1.6; letter-spacing: 0; }
  .review::before { font-size: 22px; margin-bottom: 0; }
  .pricerow { flex-direction: column; gap: 4px; }
}

/* Foods gallery + verbatim menu notes */
.foods__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1080px; margin: 0 auto clamp(44px, 6vw, 64px); }
.foods__gallery a { position: relative; overflow: hidden; aspect-ratio: 1; cursor: zoom-in; display: block; }
.foods__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.foods__gallery a:hover img { transform: scale(1.08); }
.foods__gallery a::after {
  content: "+"; position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  font-family: var(--ff-serif); font-size: 34px; font-weight: 400; color: #fff;
  background: rgba(20,26,26,0); opacity: 0; transition: background .45s var(--ease), opacity .45s var(--ease);
}
.foods__gallery a:hover::after { background: rgba(20,26,26,.34); opacity: 1; }
.foodcard .desc { font-size: 13px; color: var(--c-ink); line-height: 1.9; margin-bottom: 12px; }
.foodcard .fn { font-size: 12px; color: var(--c-ink-soft); line-height: 1.8; margin-top: 4px; }
.foodcard .rows b small { font-size: .7em; font-weight: 400; color: var(--c-ink-soft); }
@media (max-width: 700px){ .foods__gallery { grid-template-columns: repeat(2, 1fr); } }

/* Review video embed */
.review-video { max-width: 820px; margin: 26px auto 0; }
.review-video__frame { position: relative; padding-top: 56.25%; background: #000; box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.review-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Foodcard book thumbnail (alcohol set → Amazon link) */
.foodcard::after { content: ""; display: block; clear: both; }
.foodcard__book { float: right; width: 132px; margin: 0 0 16px 24px; display: block; }
.foodcard__book img { width: 100%; height: auto; display: block; box-shadow: 0 8px 24px rgba(0,0,0,.16); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.foodcard__book:hover img { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.22); }
@media (max-width: 560px) {
  .foodcard__book { float: none; width: 120px; margin: 0 auto 18px; }
}

/* Concept embedded video */
.concept-video { max-width: 980px; margin: clamp(44px, 6vw, 72px) auto 0; }

/* Spec floor plan */
.spec-plan { max-width: 840px; margin: 0 auto clamp(46px, 6vw, 68px); text-align: center; }
.spec-plan a { display: block; cursor: zoom-in; overflow: hidden; }
.spec-plan img { width: 100%; height: auto; background: #fff; transition: transform .6s var(--ease); }
.spec-plan a:hover img { transform: scale(1.03); }
.spec-plan figcaption { font-family: var(--ff-serif); letter-spacing: .24em; text-transform: uppercase; font-size: 12px; color: var(--c-ink-soft); margin-top: 16px; }

/* Lightbox single-image mode (hide nav + counter) */
.lightbox.lb-single .lightbox__nav,
.lightbox.lb-single .lightbox__count { display: none; }

/* ==========================================================================
   Area guide (鴨川の魅力)
   ========================================================================== */
.area { position: relative; overflow: hidden; padding: clamp(84px, 12vw, 150px) 0; background: var(--c-bg-soft); }
.area__map { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(720px, 66%); opacity: .5; pointer-events: none; z-index: 0; }
.area__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.area__body .eyebrow { margin-bottom: 20px; }
.area__body h2 { font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(26px, 4vw, 40px); letter-spacing: .14em; line-height: 1.5; }
.area__en { font-family: var(--ff-serif); letter-spacing: .24em; text-transform: uppercase; color: var(--c-gold-dk); font-size: 13px; font-weight: 600; margin: 14px 0 30px; }
.area__body p { color: var(--c-ink-soft); font-size: 14.5px; line-height: 2.1; margin-bottom: 36px; }
.area__media img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; box-shadow: 0 20px 50px rgba(0,0,0,.1); }
@media (max-width: 900px) {
  .area__grid { grid-template-columns: 1fr; gap: 34px; justify-items: center; }
  .area__body { justify-self: stretch; }
  .area__media { width: 380px; max-width: 100%; order: -1; }
  .area__map { width: 84%; opacity: .32; }
}
@media (max-width: 560px) {
  .area__media { width: 250px; }
}

/* ==========================================================================
   Detail-page access (map + facility info + directions)
   ========================================================================== */
.taccess__map { width: 100%; height: clamp(320px, 44vw, 480px); margin-bottom: clamp(40px, 5vw, 58px); }
.taccess__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.03); }
.taccess__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.taccess__info { border-top: 1px solid var(--c-line); }
.taccess__row { display: grid; grid-template-columns: 96px 1fr; gap: 8px 22px; padding: 20px 4px; border-bottom: 1px solid var(--c-line); }
.taccess__row dt { font-family: var(--ff-mincho); font-size: 14px; letter-spacing: .08em; color: var(--c-ink); }
.taccess__row dd { margin: 0; font-size: 14px; color: var(--c-ink-soft); line-height: 1.9; }
.taccess__row dd a { color: var(--c-gold-dk); }
.taccess__dir h3 { font-family: var(--ff-mincho); font-weight: 500; font-size: clamp(18px, 2.4vw, 22px); letter-spacing: .1em; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--c-line); }
.taccess__dir p { font-size: 14px; color: var(--c-ink-soft); line-height: 2; margin-bottom: 14px; }
.taccess__dir a { color: var(--c-gold-dk); text-decoration: underline; text-underline-offset: 3px; }
.taccess__cta { text-align: center; margin-top: clamp(46px, 6vw, 68px); }
@media (max-width: 900px) { .taccess__grid { grid-template-columns: 1fr; gap: 34px; } }

/* Directions block inside the dark access info box */
.access__dir { margin-top: 26px; }
.access__dir h3 { font-family: var(--ff-mincho); font-weight: 500; font-size: 16px; letter-spacing: .1em; color: #fff; margin-bottom: 14px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.access__dir p { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.9; margin-bottom: 8px; }
.access__dir a { color: #d8c48a; text-decoration: underline; text-underline-offset: 2px; }
