:root {
  --bg:      #FDFDFB; /* 新C案: ブライトアイボリー */
  --bg2:     #F2F6F6; /* 新C案: クリアティールグレー */
  --teal:    #2C7873; /* 新C案: クリアティール */
  --teal-d:  #1E514E;
  --teal-l:  #EBF5F4;
  --teal-light: #5BA3A3; /* 明示的な明るいティール */
  --gold:    #E07A5F; /* 新C案: コーラルオレンジ */
  --gold-d:  #C26147;
  --text:    #222D2C; /* 新C案: ディープティール */
  --text-2:  #52605E;
  --dark:    #141E1D;
  --gray:    #82908E;
  --border:  rgba(44,120,115,0.15);

  --serif:   'Noto Serif JP', serif;
  --sans:    'Noto Sans JP', sans-serif;
  --disp:    'Montserrat', sans-serif;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography scale (16px base) */
  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 0.9375rem;  /* 15px */
  --text-md:   1.0625rem;  /* 17px */
  --text-lg:   1.125rem;   /* 18px */
  --heading-page:    clamp(1.625rem, 3.5vw, 2.625rem);
  --heading-section: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  --heading-intro:   clamp(1.25rem, 2.8vw + 0.5rem, 1.75rem);
  --heading-cta:     clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  --heading-card:    clamp(0.875rem, 1.2vw + 0.35rem, 1.125rem); /* 14–18px card titles */
}

/* Accent red text (check-in notices, rental card, etc.) */
.text-accent-red {
  color: #C0392B;
  font-weight: 500;
}

/* Mobile-only line break in i18n headings */
br.br-sp {
  display: none;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); overflow-x: hidden; line-height: 1.8; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── PROTO SWITCHER ──────────────────────────── */
.switcher {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--dark); height: 36px;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.switcher a {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.switcher a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.switcher a:hover { color: rgba(255,255,255,0.9); }
.switcher a.active { color: var(--gold); }
.switcher-label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-right: 20px; }

/* ── HEADER ─────────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hdr--clear { background: transparent; }
.hdr--solid { background: rgba(251,249,246,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(45,45,45,0.07); }

.hdr-logo { display: flex; flex-direction: row; align-items: center; gap: 11px; }
.hdr-logo__badge { height: 44px; width: 44px; display: block; flex-shrink: 0; }
.hdr-logo__text { display: flex; flex-direction: column; }
.hdr-logo .ja {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--bg); transition: color 0.5s;
}
.hdr-logo .en {
  font-family: var(--disp); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(251,249,246,0.6); transition: color 0.5s;
}
.hdr--solid .hdr-logo .ja { color: var(--text); }
.hdr--solid .hdr-logo .en { color: var(--teal); }

.hdr-nav { display: flex; gap: 26px; flex-wrap: nowrap; }
.hdr-nav a {
  font-size: 12.5px; letter-spacing: 0.03em; color: rgba(251,249,246,0.8);
  position: relative; transition: color 0.2s; white-space: nowrap;
}
.hdr--solid .hdr-nav a { color: var(--text-2); }
.hdr-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--teal);
  transform: scaleX(0); transition: transform 0.25s var(--ease);
}
.hdr-nav a:hover::after { transform: scaleX(1); }

.hdr-book {
  padding: 11px 28px; background: var(--teal); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}
.hdr-book:hover { background: var(--teal-d); transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 120%; object-fit: cover; margin-top: -10%;
  animation: zoomIn 12s ease forwards;
}
.hero-video-bg {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* SP: video plays on mobile */
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }

.hero-body {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto; padding: 0 56px; width: 100%;
  display: flex; justify-content: flex-end;
}
.hero-text {
  max-width: 600px; text-align: left;
  opacity: 0; transform: translateY(20px);
  animation: up 1.1s var(--ease) 0.2s forwards;
}
.hero-h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px); letter-spacing: 0.16em;
  line-height: 1.45; color: #fff; margin-bottom: 24px;
}
.hero-subs {
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  letter-spacing: 0.14em; line-height: 2; color: rgba(255,255,255,0.82); margin-bottom: 16px;
}
.hero-caption {
  margin-top: 24px; font-family: var(--sans); font-size: 13px; font-weight: 300;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.65); line-height: 1.9;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 56px; z-index: 1;
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  opacity: 0; animation: up 0.8s ease 1.5s forwards;
}
.hero-scroll span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-scroll-arr { font-size: 18px; color: rgba(255,255,255,0.55); }

/* ── URGENCY ────────────────────────────────── */
.urgency {
  background: var(--bg2); padding: 16px 56px;
  border-top: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.urgency-badge {
  background: var(--teal); color: #fff;
  padding: 4px 14px; font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
}
.urgency-text { font-family: var(--serif); font-size: 13.5px; color: var(--text-2); letter-spacing: 0.08em; }
.urgency-text strong { color: var(--teal); font-weight: 500; }
.urgency-link { font-size: 12px; color: var(--teal); letter-spacing: 0.1em; border-bottom: 1px solid currentColor; transition: opacity 0.2s; }
.urgency-link:hover { opacity: 0.65; }

/* ── CONCEPT ────────────────────────────────── */
.concept { background: #fff; padding: 120px 56px; }
.concept-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.divider-line { width: 1px; height: 64px; background: var(--gold); margin: 0 auto 36px; }
.eyebrow { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.concept-h2 {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px); font-weight: 500;
  letter-spacing: 0.14em; line-height: 1.5; color: var(--text); margin-bottom: 52px;
}
.concept-p {
  font-family: var(--serif); font-size: 15px; font-weight: 300;
  line-height: 2.4; color: rgba(45,45,45,0.72);
  text-align: left;
}
.concept-p + .concept-p { margin-top: 24px; }

/* ── FEATURES ───────────────────────────────── */
.features { background: var(--bg); padding: 120px 56px; }
.features-head { text-align: center; margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; }
.sec-title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 500;
  letter-spacing: 0.14em; color: var(--text);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 48px;
  max-width: 1080px; margin: 0 auto;
}
.feat { display: flex; flex-direction: column; align-items: stretch; text-align: left; }
.feat-icon { align-self: center; margin-bottom: 24px; transition: transform 0.4s var(--ease); }
.feat:hover .feat-icon { transform: scale(1.1); }
.feat-icon svg { width: 38px; height: 38px; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.feat-name {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--text); margin-bottom: 14px;
  text-align: center;
}
.feat-desc { font-size: 13px; font-weight: 300; line-height: 2; color: var(--text-2); text-align: left; }

/* ── ROOMS ──────────────────────────────────── */
.rooms { background: #fff; padding: 120px 56px; }
.rooms-head { text-align: center; margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; }
.sec-gray { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 24px; }
.room-entry { max-width: 1200px; margin: 0 auto 80px; display: flex; gap: 64px; align-items: center; }
.room-entry:last-child { margin-bottom: 0; }
.room-entry.rev { flex-direction: row-reverse; }
.room-entry-img { width: 60%; overflow: hidden; flex-shrink: 0; }
.room-entry-img img {
  width: 100%; aspect-ratio: 16/10; height: auto; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.room-entry-img:hover img { transform: scale(1.04); }
.room-entry-info { flex: 1; }
.room-entry-type { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.room-entry-name { font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: 0.1em; color: var(--text); margin-bottom: 20px; }
.room-entry-desc { font-family: var(--serif); font-size: 14px; font-weight: 300; line-height: 2.4; color: var(--text-2); margin-bottom: 28px; }
.room-entry-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 0; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 28px;
}
.room-spec { font-family: var(--sans); font-size: 13px; color: var(--text); }
.room-spec span { color: var(--gray); margin-right: 10px; font-size: 12px; }

.btn-teal {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 40px;
  background: var(--teal); color: #fff !important;
  font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: 0.14em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(44, 120, 115, 0.15);
}
.btn-teal:hover {
  background: var(--teal-d);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.28);
}
.btn-teal .arrow {
  margin-left: 8px;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.btn-teal:hover .arrow {
  transform: translateX(4px);
}

.btn-teal-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 40px;
  border: 1px solid var(--teal);
  color: var(--teal) !important;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.2);
}
.btn-teal-outline .arrow {
  margin-left: 8px;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.btn-teal-outline:hover .arrow {
  transform: translateX(4px);
}

/* ── BUTTON GROUP ────────────────────────────── */
.facility-btn-group {
  text-align: center;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .facility-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
  }
  .facility-btn-group .btn-teal,
  .facility-btn-group .btn-teal-outline {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
  }
}

/* ── PLANS ──────────────────────────────────── */
.plans { background: var(--teal); padding: 120px 56px; }
.plans-head { text-align: center; margin-bottom: 48px; display: flex; flex-direction: column; align-items: center; }
.plans-head .divider-line { background: rgba(255,255,255,0.3); }
.plans-head .eyebrow { color: var(--gold); }
.plans-h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; letter-spacing: 0.14em; color: #fff; }
.plans-intro { font-family: var(--serif); font-size: 14px; letter-spacing: 0.1em; line-height: 2.2; color: rgba(255,255,255,0.65); text-align: left; max-width: 800px; margin: 0 auto 64px; }
.plans-intro strong { color: rgba(255,255,255,0.95); font-weight: 500; }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1020px; margin: 0 auto 52px; gap: 1px; background: rgba(255,255,255,0.1);
}
.plan {
  background: rgba(45,106,106,1); padding: 36px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s; position: relative;
}
.plan:hover { background: rgba(31,78,78,1); }
.plans-grid .plan.plan--feat {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
}
.plan--feat::before {
  content: 'BEST VALUE';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.22em;
  padding: 4px 16px;
}
.plan-nights { font-family: var(--sans); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.plan-name { font-family: var(--serif); font-size: 16px; font-weight: 400; color: #fff; letter-spacing: 0.1em; margin-bottom: 20px; }
.plan-num { font-family: var(--disp); font-size: 44px; font-weight: 300; color: var(--gold); line-height: 1; }
.plan-unit { font-size: 11px; color: rgba(255,255,255,0.4); margin-left: 3px; }
.plan-orig { font-family: var(--disp); font-size: 13px; color: rgba(255,255,255,0.28); text-decoration: line-through; margin: 8px 0; }
.plan-off { display: inline-block; background: var(--gold); color: #fff; font-size: 11px; padding: 2px 10px; margin-bottom: 12px; }
.plan-note { font-size: 11px; color: rgba(255,255,255,0.36); line-height: 2; }
.plan--linked { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.plan-link { display: inline-block; margin-top: 16px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.15em; color: var(--gold); }

.plans-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.plans-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.plans-cta .btn-coral,
.plans-cta .btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 40px;
  box-sizing: border-box;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-white {
  display: inline-block; padding: 16px 52px;
  background: #fff; color: var(--teal);
  font-family: var(--serif); font-size: 15px; font-weight: 500; letter-spacing: 0.12em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plans-cta .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.plans-disc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin: 0;
  letter-spacing: 0.07em;
  line-height: 1.8;
}

/* ── LONGSTAY PAGE CUSTOM PLAN CARD STYLES ──────────────────── */
.page-longstay-layout .plan.plan--feat {
  background: #ffffff;
  border: 1px solid rgba(44, 120, 115, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.page-longstay-layout .plan.plan--feat:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.page-longstay-layout .plan.plan--feat .plan-nights {
  color: var(--teal);
  opacity: 0.65;
}
.page-longstay-layout .plan.plan--feat .plan-name {
  color: var(--teal);
  font-weight: 500;
}
.page-longstay-layout .plan.plan--feat .plan-unit {
  color: var(--text-2);
  opacity: 0.8;
}
.page-longstay-layout .plan.plan--feat .plan-orig {
  color: var(--text-2);
  opacity: 0.5;
}
.page-longstay-layout .plan.plan--feat .plan-note {
  color: var(--text-2);
  opacity: 0.7;
}
.page-longstay-layout .plan.plan--feat::before {
  background: var(--gold);
  color: #fff;
}

.label {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}

/* ============================================================
   TARGETS — 滞在のスタイルから選ぶ（Phase 1 typography）
============================================================ */
.targets-sec {
  --targets-pad-x: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(4.5rem, 8vw, 7.5rem) var(--targets-pad-x) 0;
}
.targets-sec .sec-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.targets-sec .sec-title {
  font-size: var(--heading-page);
  letter-spacing: clamp(0.08em, 0.04em + 0.4vw, 0.14em);
}
.targets-sec__title { margin-top: 1.25rem; }
.targets-grid-wrapper {
  margin-inline: calc(-1 * var(--targets-pad-x));
  overflow: hidden;
}
.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.tgt {
  position: relative;
  height: clamp(220px, 52vw, 280px);
  overflow: hidden;
  cursor: pointer;
}
.tgt:nth-child(5) { grid-column: span 2; }
.tgt-img { position: absolute; inset: 0; }
.tgt-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.65s var(--ease), filter 0.65s;
}
.tgt:hover .tgt-img img { transform: scale(1.07); filter: brightness(0.55); }
.tgt-body {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.125rem, 2.5vw, 2rem) clamp(0.875rem, 2vw, 1.625rem);
  background: linear-gradient(to top, rgba(26,26,26,0.82) 0%, transparent 55%);
}
.tgt-tag {
  font-family: var(--disp);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.tgt-title {
  font-family: var(--serif);
  font-size: var(--heading-card);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: #FBF9F6;
  margin-bottom: 0.625rem;
  text-wrap: balance;
}
.tgt-link {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: rgba(251,249,246,0.55);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.tgt:hover .tgt-link { color: var(--gold); }
.tgt-link::after { content: '→'; }

/* Tablet: 3 + 2 layout (readable card width) */
@media (min-width: 769px) {
  .targets-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .tgt:nth-child(1) { grid-column: span 2; }
  .tgt:nth-child(2) { grid-column: span 2; }
  .tgt:nth-child(3) { grid-column: span 2; }
  .tgt:nth-child(4) { grid-column: span 3; }
  .tgt:nth-child(5) { grid-column: span 3; }
  .tgt { height: clamp(260px, 32vw, 380px); }
}

/* Desktop: 5 equal columns */
@media (min-width: 1280px) {
  .targets-grid { grid-template-columns: repeat(5, 1fr); }
  .tgt:nth-child(n) { grid-column: auto; }
  .tgt { height: clamp(320px, 28vw, 420px); }
}

/* ── ACCESS ─────────────────────────────────── */
.access { background: var(--bg2); padding: 120px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.access-map { height: 440px; position: relative; overflow: hidden; }
.access-map img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.access-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pin-dot { width: 14px; height: 14px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 6px rgba(45,106,106,0.2); }
.pin-lbl { background: #fff; color: var(--text); font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; padding: 5px 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); white-space: nowrap; }
.access-rows { margin-top: 32px; }
.access-row { display: flex; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(45,45,45,0.08); }
.access-row:first-child { border-top: 1px solid rgba(45,45,45,0.08); }
.access-lbl { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); min-width: 72px; padding-top: 4px; }
.access-val { font-family: var(--serif); font-size: 14px; font-weight: 300; line-height: 2; color: var(--text); }

/* ── FOOTER ─────────────────────────────────── */
.footer { background: var(--dark); padding: 96px 56px 48px; }
.footer-awards {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  max-width: 1120px; margin-left: auto; margin-right: auto;
  padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.award {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px; border-radius: 4px;
  flex: 1 1 280px; min-width: 240px; max-width: 480px;
}
.award-logo {
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}
.award-logo--rakuten {
  height: 48px;
  width: 48px;
  max-width: 48px;
}
.award-logo--booking {
  height: 48px;
  width: 48px;
  max-width: 48px;
}
.award--rakuten { max-width: 480px; }
.award--booking { max-width: 440px; }
.award-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: var(--gold); stroke-width: 1.3; stroke-linecap: round; }
.award-title { font-family: var(--sans); font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.award-name { font-family: var(--serif); font-size: 12px; font-weight: 400; color: #fff; letter-spacing: 0.04em; line-height: 1.4; margin: 0; }

a.tel-link { color: inherit; text-decoration: none; }
a.tel-link:hover { text-decoration: underline; }
.ft-addr a.tel-link { color: rgba(255,255,255,0.55); }
.ft-addr a.tel-link:hover { color: #fff; }
.access-val a.tel-link { color: var(--text); }
.legal-document a.tel-link,
.legal-notes a.tel-link,
.legal-table a.tel-link { color: var(--teal); }
.legal-document a.tel-link:hover,
.legal-notes a.tel-link:hover,
.legal-table a.tel-link:hover { text-decoration: underline; }

.footer-body { display: flex; justify-content: space-between; align-items: flex-start; gap: 64px; margin-bottom: 48px; }
.ft-logo-badge { display: block; width: 60px; height: 60px; margin-bottom: 18px; }
.ft-ja { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: 0.1em; color: #fff; margin-bottom: 4px; }
.ft-en { font-family: var(--sans); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px; }
.ft-addr { font-family: var(--serif); font-size: 13px; font-weight: 300; line-height: 2.4; color: rgba(255,255,255,0.4); }
.ft-links { display: flex; gap: 56px; }
.ft-link-col { display: flex; flex-direction: column; }
.ft-link-title { font-family: var(--sans); font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; letter-spacing: 0.08em; }
.ft-links ul { display: flex; flex-direction: column; gap: 14px; }
.ft-links a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.ft-links a:hover { color: #fff; }
.ft-sns { margin-top: 20px; display: flex; gap: 12px; }
.ft-sns-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1); transition: all 0.25s var(--ease); }
.ft-sns-link:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.ft-sns-icon { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 48px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.ft-copy { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.25); text-align: left; }

/* ── HEADER RIGHT & GTRANSLATE ──────────────── */
.hdr-right { display: flex; align-items: center; gap: 14px; }
.gtranslate_wrapper { display: inline-flex; align-items: center; }
.gtranslate_wrapper select { background: transparent; border: 1px solid rgba(251,249,246,0.35); color: #fff; padding: 6px 12px; font-family: var(--sans); font-size: 12px; border-radius: 2px; outline: none; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.gtranslate_wrapper select option { background: var(--dark); color: #fff; }
.hdr--solid .gtranslate_wrapper select { color: var(--text); border-color: rgba(44,120,115,0.25); }
.drawer-gtranslate { margin: 24px 0; display: flex; justify-content: center; }
.drawer-gtranslate select { background: transparent; border: 1px solid rgba(44,120,115,0.2); color: var(--text); padding: 10px 24px; font-family: var(--sans); font-size: 14px; border-radius: 4px; width: 80%; max-width: 300px; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes up { to { opacity: 1; transform: none; } }
@keyframes zoomIn { from { transform: scale(1.06); } to { transform: scale(1); } }

.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; } .rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; } .rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .room-entry, .room-entry.rev { flex-direction: column; }
  .room-entry-img { width: 100%; }
}
/* Collapse header nav to hamburger before the 8-item row overflows */
@media (max-width: 1200px) {
  .hdr-nav { display: none; }
  .hdr-hamburger { display: flex !important; }
  .hdr-right { margin-left: auto; margin-right: 12px; }
}
@media (max-width: 768px) {
  .hdr { padding: 0 20px; }
  .hdr-logo__text { display: none; }
  .hdr-nav { display: none; }
  .hero-body { padding: 0 24px; justify-content: center; }
  .hero-text { text-align: center; }
  .concept, .features, .rooms, .plans, .access { padding: 72px 24px; }
  .targets-sec .sec-title { letter-spacing: 0.08em; }
  .tgt-title { letter-spacing: 0.04em; }
  .features-grid { grid-template-columns: 1fr; gap: 48px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .access { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 64px 24px 32px; }
  .footer-body { flex-direction: column; gap: 48px; }
  .ft-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; width: 100%; }
  .footer-bottom { flex-direction: column-reverse; gap: 16px; align-items: center; text-align: center; margin-top: 32px; }
  .ft-copy { text-align: center; }
  .hdr-book { display: none; }
  .hdr--clear .hdr-hamburger { background: none; }
  .footer-legal { flex-direction: column; align-items: flex-end; align-self: flex-end; gap: 8px; }
  .footer-legal a { font-size: 10px; }
  .plans-cta-buttons { flex-direction: column; align-items: center; gap: 14px; width: 100%; }
  .plans-cta .btn-coral,
  .plans-cta .btn-white { width: min(100%, 320px); }
}

.hdr-lang-dd { display: flex; align-items: center; }

/* Compact language dropdown (desktop + mobile) */
.hdr-lang-dd { position: relative; }
.hdr-lang-dd__btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  color: rgba(255,255,255,0.9);
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  text-transform: uppercase;
}
.hdr--solid .hdr-lang-dd__btn { color: var(--ink); border-color: rgba(0,0,0,0.22); }
.hdr-lang-dd__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(28,58,48,0.97);
  border-radius: 6px;
  padding: 6px 0;
  min-width: 110px;
  z-index: 2000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hdr-lang-dd.open .hdr-lang-dd__menu { display: block; }
.hdr-lang-dd__menu .lang-item,
.hdr-lang-dd__menu li { list-style: none !important; }
.hdr-lang-dd__menu .lang-item a {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,0.7);
  font-family: var(--disp);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.hdr-lang-dd__menu .lang-item a:hover,
.hdr-lang-dd__menu .current-lang a { color: #fff; }
.hdr-lang-dd__menu .current-lang a { font-weight: 700; }

/* Language Switcher – Polylang pll_the_languages() 出力対応 */
.lang-switcher { display: flex; align-items: center; gap: 5px; }
.lang-switcher ul,
.lang-switcher .lang-list {
  display: flex;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 5px;
  align-items: center;
}
.lang-switcher .lang-item,
.lang-switcher li { list-style: none !important; }
.lang-switcher .lang-item a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  line-height: 1;
}
.lang-switcher .lang-item a:hover { color: #fff; }
.lang-switcher .lang-item:not(:last-child)::after {
  content: '/';
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  margin-left: 5px;
}
.hdr--solid .lang-switcher .lang-item a { color: var(--ink); }
.hdr--solid .lang-switcher .lang-item:not(:last-child)::after { color: rgba(0,0,0,0.25); }
.lang-switcher--drawer .lang-item a { color: rgba(255,255,255,0.75); font-size: 13px; }
.lang-switcher--drawer .lang-item a:hover { color: #fff; }

/* Scroll margin top for sections to prevent header overlap */
section[id] {
  scroll-margin-top: 76px; /* header 76px */
}

/* Hamburger Button */
.hdr-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 220;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.hdr-hamburger span {
  display: block;
  height: 1.5px;
  background-color: var(--bg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease), background-color 0.4s var(--ease);
}
.hdr-hamburger span:nth-child(1) { width: 22px; }
.hdr-hamburger span:nth-child(2) { width: 16px; align-self: flex-start; }
.hdr-hamburger span:nth-child(3) { width: 20px; }
.hdr--solid .hdr-hamburger span {
  background-color: var(--text);
}
.drawer-open .hdr-hamburger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background-color: var(--bg) !important;
}
.drawer-open .hdr-hamburger span:nth-child(2) {
  opacity: 0;
}
.drawer-open .hdr-hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background-color: var(--bg) !important;
}

/* Drawer overlay */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--teal);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
body.drawer-open {
  overflow: hidden;
}
.drawer-open .drawer {
  opacity: 1;
  pointer-events: auto;
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  z-index: 230;
  padding: 0;
}
.drawer-close span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
}
.drawer-close span:nth-child(1) { transform: rotate(45deg) translateY(0.75px); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg) translateY(-0.75px); }

.drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 40px;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.drawer-nav a {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: rgba(253, 251, 247, 0.85);
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.drawer-nav a:hover {
  color: var(--gold);
}
.drawer-book {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  text-align: center;
  padding: 14px 0;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: background 0.2s;
  margin-top: 10px;
}
.drawer-book:hover {
  background: var(--gold-d);
}

/* Target hover and custom shadow */
.plan {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-teal {
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-teal:hover {
  box-shadow: 0 6px 20px rgba(61, 142, 140, 0.3);
}

/* Switcher mobile styling */
@media (max-width: 768px) {
  .switcher {
    justify-content: flex-start;
    padding-left: 12px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .switcher-label {
    margin-right: 12px;
    flex-shrink: 0;
  }
  .switcher a {
    padding: 0 12px;
    font-size: 9px;
    flex-shrink: 0;
  }
}

/* Small screens (480px and below) */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 32px !important;
  }
  .hero-subs {
    font-size: 13.5px !important;
  }
  .concept-h2 {
    font-size: 26px !important;
  }
  .btn-teal {
    padding: 12px 30px;
    font-size: 13px;
  }
  .plans-grid {
    grid-template-columns: 1fr !important;
  }
  .access-map {
    height: 300px !important;
  }
}

/* ============================================================
   PARALLAX REVEAL SECTION
============================================================ */
.parallax-reveal {
  background: var(--teal-d);
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.parallax-reveal-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0%; /* Dynamically animated via JS */
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 1;
  will-change: height;
}
.parallax-reveal-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 75vh; /* Taller than parent to allow 110% height mask expansion without gaps */
  min-height: 500px;
  transform: translateY(-50%) scale(1.15);
  will-change: transform;
}
.parallax-reveal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-reveal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 81, 78, 0.4);
  z-index: 2;
}
.parallax-reveal-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.parallax-reveal-title {
  font-family: var(--disp);
  font-size: clamp(40px, 7.5vw, 92px);
  font-weight: 500;
  color: var(--bg);
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(20, 30, 29, 0.25);
}

/* ============================================================
   NEWS SECTION
============================================================ */
.news-sec {
  background: var(--bg2);
  padding: 120px 80px;
}
.news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.news-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.2;
}
.news-all {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.3s;
}
.news-all span {
  border-bottom: 1px solid rgba(34, 45, 44, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.news-all:hover span {
  border-color: var(--gold);
}
.news-all:hover {
  color: var(--gold);
}
.news-all-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s, background-color 0.3s;
}
.news-all:hover .news-all-arrow {
  transform: translateX(4px);
  background: var(--gold);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.news-feat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-feat-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-feat-img img.aqua-img--logo-fallback,
.news-feat-img img[src*="aqua-logo"] {
  object-fit: contain !important;
  padding: clamp(20px, 8%, 40px);
  background: linear-gradient(180deg, #f8fafa 0%, #eef3f3 100%);
}
.news-feat:hover .news-feat-img img {
  transform: scale(1.04);
}
.news-feat:hover .news-feat-img img.aqua-img--logo-fallback,
.news-feat:hover .news-feat-img img[src*="aqua-logo"] {
  transform: none;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.news-date {
  font-family: var(--disp);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.05em;
}
.news-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  background: var(--gold);
  color: #fff;
  letter-spacing: 0.05em;
}
.news-feat-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}
.news-feat-title a:hover {
  color: var(--gold);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(44, 120, 115, 0.1);
  transition: all 0.3s var(--ease);
}
.news-item:first-child {
  padding-top: 0;
}
.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-item:hover {
  border-bottom-color: var(--teal);
}
.news-item-img {
  width: 160px;
  aspect-ratio: 1.6;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-item:hover .news-item-img {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.12);
}
.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-item-img img.aqua-img--logo-fallback,
.news-item-img img[src*="aqua-logo"] {
  object-fit: contain !important;
  padding: clamp(10px, 12%, 18px);
  background: linear-gradient(180deg, #f8fafa 0%, #eef3f3 100%);
}
.news-item:hover .news-item-img img {
  transform: scale(1.04);
}
.news-item:hover .news-item-img img.aqua-img--logo-fallback,
.news-item:hover .news-item-img img[src*="aqua-logo"] {
  transform: none;
}
.news-item-body {
  flex: 1;
}
.news-item-title {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}
.news-item-title a:hover {
  color: var(--gold);
}

.news-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.news-badge.badge-info,
.news-badge.badge-news,
.news-badge.badge-お知らせ {
  color: var(--teal);
  border-color: var(--teal);
}
.news-badge.badge-campaign,
.news-badge.badge-キャンペーン {
  color: var(--gold);
  border-color: var(--gold);
}
.news-badge.badge-spa {
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.news-badge.badge-food {
  color: var(--gold-d);
  border-color: var(--gold-d);
}

/* ページネーションのエレガントなボタン化 */
.pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.pagination ul.page-numbers {
  display: flex;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.pagination ul.page-numbers li {
  margin: 0;
}
.pagination ul.page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border-radius: 50%;
  font-family: var(--disp);
  font-size: 13.5px;
  color: var(--text-2);
  border: 1px solid rgba(44, 120, 115, 0.15);
  transition: all 0.3s var(--ease);
}
.pagination ul.page-numbers a.page-numbers:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-l);
}
.pagination ul.page-numbers .page-numbers.current {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 500;
}
.pagination ul.page-numbers .next,
.pagination ul.page-numbers .prev {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .news-sec {
    padding: 80px 24px;
  }
  .news-title { font-size: 22px; line-height: 1.3; }
  .news-feat-title { font-size: 16px; text-align: left; }
  .news-feat { text-align: left; }
  .news-meta { justify-content: flex-start; }
  .news-item-body { text-align: left; }
  .news-item {
    flex-direction: column;
    gap: 16px;
  }
  .news-item-img {
    width: 100%;
    aspect-ratio: 16/10;
  }
}

body:not(.home) {
  padding-top: 76px !important;
}

/* ============================================================
   RESPONSIVE LAYOUT CLASSES FOR SUBPAGES
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
.facility-grid.rev {
  grid-template-columns: 1fr 1.2fr;
}
.facility-grid:last-child {
  margin-bottom: 0;
}

.facilities-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.gallery-item {
  position: relative;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.4s ease;
}
.gallery-item.is-filtering-out {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.access-row {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.access-row:first-child {
  border-top: 1px solid var(--border);
}
.access-lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 500;
  width: 140px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.access-val {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

/* Accordion FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-answer-inner {
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-2);
  white-space: pre-line;
}

/* Post content base styling */
.news-detail-content h2, .entry-content h2 { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 22px); color: var(--text); margin-top: 48px; margin-bottom: 20px; font-weight: 500; }
.news-detail-content h3, .entry-content h3 { font-family: var(--serif); font-size: clamp(16px, 2vw, 18px); color: var(--text); margin-top: 36px; margin-bottom: 16px; font-weight: 500; }
.news-detail-content p, .entry-content p { margin-bottom: 24px; }
.news-detail-content ul, .entry-content ul { list-style: disc; margin-left: 20px; margin-bottom: 24px; }
.news-detail-content ol, .entry-content ol { list-style: decimal; margin-left: 20px; margin-bottom: 24px; }
.news-detail-content li, .entry-content li { margin-bottom: 8px; font-size: 15px; }
.news-detail-content blockquote, .entry-content blockquote { border-left: 3px solid var(--teal); padding-left: 16px; color: var(--text-2); font-style: italic; margin-bottom: 24px; }

/* Responsive adjustments for subpages */
@media (max-width: 960px) {
  .facility-grid, .facility-grid.rev {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
  }
  .facility-grid.rev {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .facilities-specs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .access-row {
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
  }
  .access-lbl {
    width: auto;
  }
}
@media (max-width: 480px) {
  .gallery-image-grid {
    grid-template-columns: 1fr;
  }
}
.admin-bar .hdr {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .hdr {
    top: 46px;
  }
}

/* ============================================================
   SUBPAGES COMMON & LAYOUT
   ============================================================ */
.page-hero-small {
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(242, 246, 246, 0.4) 100%);
  padding: 72px 0 60px;
  position: relative;
  border-bottom: 1px solid rgba(44, 120, 115, 0.08);
}
.page-hero-small .sec-gray {
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px !important;
  opacity: 0.8;
}
.page-hero-small .page-title-small {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text);
  letter-spacing: 0.12em;
}
.page-hero-small .divider-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.6;
}

/* 404 page */
.page-404-layout {
  min-height: calc(100vh - 72px);
}
.page-404-hero {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 16vh, 160px) 0 clamp(80px, 10vh, 120px);
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(242, 246, 246, 0.4) 100%);
  border-bottom: 1px solid rgba(44, 120, 115, 0.08);
  box-sizing: border-box;
}
.page-404-inner {
  text-align: center;
  position: relative;
}
.page-404-code {
  font-family: var(--disp);
  font-size: clamp(72px, 14vw, 120px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal);
  opacity: 0.12;
  line-height: 1;
  margin: 0 0 -4px;
  user-select: none;
}
.page-404-label {
  font-family: var(--disp);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
  margin: 0 0 16px;
}
.page-404-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.page-404-inner .divider-line {
  margin: 28px auto 32px;
}
.page-404-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
}
.page-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page-404-actions .btn-teal,
.page-404-actions .btn-teal-outline {
  min-height: 48px;
  padding: 14px 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-404-layout {
    min-height: calc(100vh - 64px);
  }
  .page-404-hero {
    padding: 100px 0 72px;
  }
  .page-404-actions {
    flex-direction: column;
    align-items: center;
  }
  .page-404-actions .btn-teal,
  .page-404-actions .btn-teal-outline {
    width: min(100%, 280px);
    text-align: center;
    box-sizing: border-box;
  }
}

.section-pad {
  padding: 100px 0;
}
.section-pad-lg {
  padding: 140px 0;
}
.section-pad-sm {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 60px 0;
  }
  .section-pad-lg {
    padding: 80px 0;
  }
  .section-pad-sm {
    padding: 40px 0;
  }
}
.page-title-small {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text);
  letter-spacing: 0.12em;
}

/* Room Detail Page */
.room-detail .room-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-hero__bg {
  position: absolute;
  inset: 0;
}
.room-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.room-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.room-hero__type {
  font-family: var(--disp);
  font-size: 11px;
  letter-spacing: 0.28em;
  margin-bottom: 12px;
  color: var(--gold);
}
.room-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.14em;
}

.room-intro {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}
.room-intro__h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--text);
}
.room-intro__text {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--text-2);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

/* Subpage intro: headings centered, body copy left */
.longstay-info .container--narrow > p:not(.eyebrow):not(.sec-gray),
.area-map-section .container--narrow > p:not(.eyebrow):not(.sec-gray),
.local-life-intro > p:not(.eyebrow),
.page-facilities-layout .kitchen-section .container--narrow > p:not(.eyebrow):not(.sec-gray),
.page-facilities-layout .services-section .container--narrow > p:not(.eyebrow):not(.sec-gray) {
  text-align: left;
}

.rental-header .sec-gray,
.page-facilities-layout .kitchen-section .container--narrow > .eyebrow,
.page-facilities-layout .services-section .container--narrow > .eyebrow,
.area-map-section .container--narrow > .eyebrow {
  text-align: center;
}

/* Spec Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}
.spec-table th, .spec-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
}
.spec-table th {
  width: 160px;
  text-align: left;
  font-weight: 500;
  color: var(--teal);
  font-size: 14px;
}
.spec-table td {
  font-weight: 300;
  font-size: 15px;
  color: var(--text);
}

/* Amenities Grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  list-style: none;
  padding: 0;
}
.amenity-grid li {
  background: var(--bg2);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.amenity-icon {
  color: var(--teal);
  font-weight: bold;
}
.amenity-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
}

/* Room CTA */
.room-cta-block {
  background: var(--teal-l);
  padding: 48px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 80px;
}
.room-cta-desc {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
}

/* FAQ Page Accordion */
.faq-toggle-icon {
  font-weight: 300;
  font-size: 20px;
  color: var(--teal);
}

@media (max-width: 768px) {
  .page-hero-small { padding: 48px 0 36px; }
  .page-faq-layout .container--narrow { padding: 0 20px; }
  .faq-item { padding: 20px 0; }
  .faq-question {
    font-size: 14.5px;
    line-height: 1.65;
    gap: 12px;
    align-items: flex-start;
  }
  .faq-toggle-icon { flex-shrink: 0; margin-top: 2px; font-size: 18px; }
  .faq-answer-inner { font-size: 13.5px; padding-top: 12px; }
  .faq-accordion-list { margin-top: 28px !important; margin-bottom: 48px !important; }
}

/* Layout helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(24px, 5vw);
  width: 100%;
  box-sizing: border-box;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 max(24px, 5vw);
  width: 100%;
  box-sizing: border-box;
}

.sub-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

/* News details page styling */
.news-detail-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.news-detail-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  color: var(--text);
}
.news-detail-thumb {
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}
.news-detail-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail-content {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-2);
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.post-navigation .nav-prev, .post-navigation .nav-next {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}
.post-navigation .nav-back {
  font-family: var(--sans);
  font-size: 13px;
}
.post-navigation .nav-back a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec-table th, .spec-table td {
    padding: 12px;
  }
  .room-cta-block {
    padding: 24px;
  }
}

/* ── INTERACTIVE SPOT MAP MODAL ──────────────── */
.spot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.spot-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.spot-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 30, 29, 0.6);
  backdrop-filter: blur(8px);
}
.spot-modal-container {
  position: relative;
  background: var(--bg);
  width: 90%;
  max-width: 780px;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease);
  z-index: 10000;
}
.spot-modal.is-active .spot-modal-container {
  transform: scale(1) translateY(0);
}
.spot-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(253, 253, 251, 0.85);
  color: var(--text);
  border: none;
  font-size: 32px;
  width: 44px;
  height: 44px;
  line-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10002;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spot-modal-close:hover {
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg);
}
.spot-modal-content {
  display: flex;
  flex-direction: row;
  height: 100%;
}
@media (max-width: 768px) {
  .spot-modal-content {
    flex-direction: column;
    max-height: 85vh;
    overflow-y: auto;
  }
}
.spot-modal-img-wrapper {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .spot-modal-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
  }
}
.spot-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spot-modal-info {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .spot-modal-info {
    width: 100%;
    padding: 24px;
  }
}
.spot-modal-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.spot-modal-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}
.spot-modal-desc {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 24px;
}

/* ── CUSTOM CONTACT FORM ─────────────────────── */
.contact-section {
  background: var(--bg);
  padding: 80px 0;
}
.contact-container {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form {
  background: #fff;
  padding: 56px;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(44, 120, 115, 0.05);
  border: 1px solid rgba(44, 120, 115, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: none;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }
}
.contact-form-group {
  margin-bottom: 28px;
}
.contact-form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.contact-form-group label .required-badge {
  background: rgba(224, 122, 95, 0.08);
  color: var(--gold);
  border: 1px solid rgba(224, 122, 95, 0.3);
  font-size: 9.5px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 10px;
  font-weight: 600;
}
.contact-form-group label .optional-badge {
  background: rgba(130, 144, 142, 0.08);
  color: var(--gray);
  border: 1px solid rgba(130, 144, 142, 0.3);
  font-size: 9.5px;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 10px;
  font-weight: 500;
}
.contact-form-control {
  width: 100%;
  background: #fafcfc;
  border: 1px solid rgba(44, 120, 115, 0.18);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: all 0.3s var(--ease);
}
.contact-form-control:focus {
  border-color: var(--teal);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(44, 120, 115, 0.08), 0 4px 12px rgba(44, 120, 115, 0.04);
}
.contact-form-control:user-valid {
  border-color: var(--teal);
}
.contact-form-control:user-invalid {
  border-color: var(--gold);
  background-color: rgba(224, 122, 95, 0.01);
}
.contact-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352605E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}
.contact-form-textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-submit-container {
  text-align: center;
  margin-top: 40px;
}
.contact-form-btn {
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 16px 56px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.15);
}
.contact-form-btn:hover {
  background: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44, 120, 115, 0.3);
}
.contact-form-btn:active {
  transform: translateY(0);
}
.contact-form-msg {
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
}
.contact-form-msg--success {
  background: var(--teal-l);
  border: 1px solid var(--teal);
  color: var(--teal-d);
}
.contact-form-msg--error {
  background: rgba(224, 122, 95, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-d);
}

/* ── AREA GUIDE & SIGHTSEEING EXPANSION ──────── */
.area-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px auto 56px;
  flex-wrap: wrap;
  max-width: 1080px;
  padding: 0 16px;
}
.area-tab-btn {
  background: #fff;
  border: 1px solid rgba(44, 120, 115, 0.18);
  color: var(--text-2);
  padding: 11px 26px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.area-tab-btn:hover {
  background: var(--teal-l);
  border-color: var(--teal);
  color: var(--teal);
}
.area-tab-btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 6px 16px rgba(44, 120, 115, 0.2);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 16px;
}
@media (max-width: 1024px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media (max-width: 640px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 32px 16px;
  }
}

.area-card {
  background: #fff;
  border: 1px solid rgba(44, 120, 115, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.area-card.is-hidden {
  display: none;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(44, 120, 115, 0.08);
}
.area-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.area-card:hover .area-card-img img {
  transform: scale(1.06);
}
.area-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.area-card-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.area-card-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.45;
}
.area-card-access {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  background: var(--teal-l);
  padding: 4px 12px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.area-card-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 24px;
  flex-grow: 1;
}
.area-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.area-card-actions .btn-teal-outline {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  background: transparent;
}
.area-card-actions .btn-teal-outline:hover {
  background: var(--teal);
  color: #fff;
}
.area-card-actions .btn-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid rgba(44, 120, 115, 0.15);
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}
.area-card-actions .btn-text-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(224, 122, 95, 0.02);
}

/* ── LOCAL LIFE SECTION ──────────────────────── */
.local-life-section {
  padding: 120px 56px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.local-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .local-life-section {
    padding: 80px 32px;
  }
  .local-life-grid {
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .local-life-section {
    padding: 64px 20px;
  }
  .local-life-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.local-life-content {
  padding-right: 20px;
}
@media (max-width: 768px) {
  .local-life-content {
    padding-right: 0;
  }
}

/* ── Local Life Rows (Alternating Layout) ─────────────── */
.local-life-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}
.local-life-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.local-life-row--reverse {
  flex-direction: row-reverse;
}
.local-life-row__content {
  flex: 1;
  max-width: 500px;
}
.local-life-row__image {
  flex: 1;
  max-width: 560px;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44, 120, 115, 0.08);
}
.local-life-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.local-life-row__image:hover img {
  transform: scale(1.04);
}
.local-life-row__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.local-life-row__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-2);
}

@media (max-width: 992px) {
  .local-life-row {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .local-life-rows {
    gap: 56px;
  }
  .local-life-row,
  .local-life-row--reverse {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
  }
  .local-life-row__content {
    max-width: 100%;
  }
  .local-life-row__image {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
}

/* Area page: tighten gap between local-life rows and bottom CTA */
.page-area-layout .local-life-section {
  padding-bottom: 48px;
}
.page-area-layout .area-bottom-cta {
  padding: 48px 0 80px;
}
@media (max-width: 768px) {
  .page-area-layout .local-life-section {
    padding-bottom: 32px;
  }
  .page-area-layout .area-bottom-cta {
    padding: 40px 0 60px;
  }
}

/* ── Activity & Rental Page Styles ────────────────────── */
.rental-section {
  padding: 80px 0;
  background: #fff;
}
.rental-section:nth-of-type(even) {
  background: var(--bg2);
}
.rental-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.rental-header {
  text-align: center;
  margin-bottom: 56px;
}
.rental-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rental-subtitle {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
}
.rental-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.rental-layout--reverse {
  grid-template-columns: 1fr 1.2fr;
}
.rental-gallery {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44,120,115,0.08);
}
.rental-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.rental-gallery:hover img {
  transform: scale(1.03);
}
.rental-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rental-badge-free {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  width: fit-content;
}
.rental-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rental-features-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}
.rental-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
}
.rental-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.rental-card {
  background: var(--bg2, #f9f9f9);
  border: 1px solid rgba(44, 120, 115, 0.08);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}
.rental-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.06);
  border-color: rgba(44, 120, 115, 0.2);
  background-color: #ffffff;
}
.rental-card__icon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rental-card__icon-header svg {
  color: var(--teal);
  flex-shrink: 0;
}
.rental-card__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin: 0;
  letter-spacing: 0.03em;
}
.rental-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rental-card__highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.rental-card__insurance {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 6px;
  margin-bottom: 4px;
}
.rental-card__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  font-weight: 300;
}
.rental-spec-section {
  margin-top: 64px;
}
.rental-spec-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.rental-spec-box {
  background: transparent;
  border: 1px solid rgba(44, 120, 115, 0.12);
  padding: 32px;
  border-radius: 4px;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.rental-spec-box:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.03);
}
.rental-spec-box__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  letter-spacing: 0.06em;
}
.rental-spec-box__intro {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.rental-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.rental-spec-table th,
.rental-spec-table td {
  padding: 12px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.rental-spec-table th {
  font-weight: 500;
  color: var(--teal);
  text-align: left;
  width: 30%;
  background: rgba(44, 120, 115, 0.02);
}
.rental-spec-table td {
  color: var(--text-2);
}
.rental-contact-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  margin-top: 24px;
}
.rental-contact-box__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  text-align: center;
}
.rental-contact-methods {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.rental-contact-method {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}
.rental-contact-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
}
.rental-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.rental-contact-method a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 120, 115, 0.2);
  transition: all 0.3s;
}
.rental-contact-method a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 992px) {
  .rental-layout,
  .rental-layout--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .rental-spec-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rental-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .rental-card {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .rental-contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ── Room Extension (Gallery & Features) ───────────────── */
.room-entry-catch {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.room-gallery-slider {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.slider-container::-webkit-scrollbar {
  display: none;
}
.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 16/10;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.slider-arrow:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 6px 15px rgba(13,118,128,0.3);
}
.slider-arrow.prev {
  left: 20px;
}
.slider-arrow.next {
  right: 20px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  flex-shrink: 0;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-dots .dot.active {
  width: 22px;
  background: #fff;
  opacity: 1;
}
.slider-dots .dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .slider-container {
    scroll-behavior: auto;
  }
  .slider-dots .dot {
    transition: none;
  }
}
/* ── Room Container ──────────────────────────────── */
.room-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 max(24px, 4vw);
  width: 100%;
  box-sizing: border-box;
}

/* Room Features */
.room-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: 100px;
}
.room-feature-row:last-child {
  margin-bottom: 0;
}
.room-feature-row.room-feature-row--rev .room-feature-image {
  order: 2;
}
.room-feature-row.room-feature-row--rev .room-feature-info {
  order: 1;
}
.room-feature-image {
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.room-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.room-feature-row:hover .room-feature-image img {
  transform: scale(1.04);
}
.room-feature-info {
  min-width: 0;
}
.room-feature-num {
  font-family: var(--disp);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.room-feature-title {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  color: var(--teal);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
  line-break: strict;
  text-wrap: balance;
}
.room-feature-desc {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 2.2;
  color: var(--text-2);
  font-weight: 300;
}

@media (max-width: 768px) {
  .room-feature-row, .room-feature-row.room-feature-row--rev {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
  .room-feature-row.room-feature-row--rev .room-feature-image,
  .room-feature-row.room-feature-row--rev .room-feature-info {
    order: unset;
  }
  .room-feature-info {
    width: 100%;
  }
  .room-feature-title {
    font-size: 22px;
  }
  .room-feature-image {
    width: 100%;
    aspect-ratio: 16/10;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .slider-arrow.prev {
    left: 10px;
  }
  .slider-arrow.next {
    right: 10px;
  }
}

/* ── Room UX Enhancements ────────────────────────────── */

/* 一覧ページのバッジとアクション */
.room-spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.room-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid rgba(0,0,0,0.04);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.room-spec-badge.price {
  background: var(--teal-l);
  color: var(--teal);
  font-weight: 500;
  border-color: rgba(13,118,128,0.1);
}
.icon-spec {
  width: 15px;
  height: 15px;
  color: var(--teal);
}
.room-entry-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}
.room-entry-actions .btn-teal-outline,
.room-entry-actions .btn-teal {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  padding: 14px 20px;
}

/* アメニティのカテゴリ別カード表示 */
.room-categorized-amenities {
  margin-top: 60px;
  margin-bottom: 60px;
}
.amenity-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .amenity-categories-grid {
    grid-template-columns: 1fr;
  }
}
.amenity-cat-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.amenity-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13, 118, 128, 0.08);
  border-top-color: var(--gold);
}
.amenity-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.amenity-cat-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-cat-icon svg {
  width: 100%;
  height: 100%;
  color: var(--teal);
  display: block;
  transition: color 0.3s;
}
.amenity-cat-card:hover .amenity-cat-icon svg {
  color: var(--gold);
}
.amenity-cat-header h4 {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--text);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.amenity-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-cat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  font-weight: 300;
}
.amenity-cat-list li:last-child {
  margin-bottom: 0;
}
.amenity-cat-list li .bullet {
  color: var(--gold);
  font-weight: bold;
  font-size: 14px;
}
.amenity-cat-list li .name {
  transition: color 0.3s;
}
.amenity-cat-list li:hover .name {
  color: var(--teal);
  font-weight: 400;
}

/* 他の客室カード（回遊ナビ） */
.other-rooms-section {
  margin-top: 80px;
  margin-bottom: 40px;
}
.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .other-rooms-grid {
    grid-template-columns: 1fr;
  }
}
.other-room-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}
.other-room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.other-room-card__img {
  height: 200px;
  overflow: hidden;
}
.other-room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.other-room-card:hover .other-room-card__img img {
  transform: scale(1.05);
}
.other-room-card__info {
  padding: 24px;
}
.other-room-card__name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}
.other-room-card__catch {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.other-room-card__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.other-room-card__meta span {
  font-size: 12px;
  color: var(--gray);
  background: var(--bg2);
  padding: 4px 10px;
  border-radius: 4px;
}
.other-room-card__btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: bold;
  color: var(--teal);
  transition: color 0.3s;
}
.other-room-card:hover .other-room-card__btn {
  color: var(--teal-d);
}

/* ライトボックス (画像拡大表示) */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
  z-index: 1010;
  transition: transform 0.3s;
}
.lightbox-close:hover {
  transform: rotate(90deg);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
  z-index: 1010;
  transition: color 0.3s;
}
.lightbox-arrow:hover {
  color: #fff;
}
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* スマホ用フローティング予約バー */
.floating-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.06);
  padding: 16px 20px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none; /* デフォルト非表示、SPのみ */
}
@media (max-width: 768px) {
  .floating-booking-bar {
    display: block; /* SPで有効化 */
  }
}
.floating-booking-bar.active {
  transform: translateY(0);
}
.floating-booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}
.floating-room-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.floating-room-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.floating-room-price {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}
.floating-booking-bar .btn-teal {
  padding: 12px 24px;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 768px) {
  /* 一覧ページのアクションを縦積みに */
  .room-entry-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── Facilities & Services Page Styles ────────────────── */
.page-facilities-layout .facility-section {
  background: #fff;
}
.page-facilities-layout .facility-grid img {
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  aspect-ratio: 16/10;
  width: 100%;
  object-fit: cover;
}
.page-facilities-layout .facility-grid .eyebrow {
  margin-bottom: 12px;
}
.page-facilities-layout .facility-grid h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text);
}
.page-facilities-layout .facility-grid p {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-2);
}
.page-facilities-layout .kitchen-section {
  background: var(--bg2);
}
.page-facilities-layout .kitchen-section .container--narrow {
  text-align: center;
  margin-bottom: 60px;
}
.page-facilities-layout .kitchen-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.4;
}
.page-facilities-layout .kitchen-section p {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-2);
}
.page-facilities-layout .facilities-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page-facilities-layout .facilities-specs-grid {
    grid-template-columns: 1fr;
  }
}
.page-facilities-layout .facilities-specs-grid > div {
  background: #fff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  text-align: center;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-facilities-layout .facilities-specs-grid > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44,120,115,0.06);
}
.page-facilities-layout .facilities-specs-grid h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text);
}
.page-facilities-layout .facilities-specs-grid p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
}
.page-facilities-layout .facility-btn-group {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .page-facilities-layout .facility-btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
.page-facilities-layout .facility-btn-group .btn-teal {
  min-width: 280px;
  text-align: center;
  justify-content: center;
}
.page-facilities-layout .services-section {
  background: #fff;
}
.page-facilities-layout .services-section .container--narrow {
  text-align: center;
  margin-bottom: 60px;
}
.page-facilities-layout .services-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.4;
}
.page-facilities-layout .facility-action-wrapper {
  margin-top: 24px;
}

/* ── STAY STYLES EXTENSION ─────────────────────────────────── */
.stay-intro-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--heading-intro);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.stay-intro__eyebrow {
  margin-bottom: 0.75rem;
}
.stay-intro-p {
  font-family: var(--serif);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-2);
}
.stay-cta-section .container {
  text-align: center;
}
.stay-cta-h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--heading-cta);
  margin-bottom: 1rem;
  color: var(--text);
}
.stay-cta-p {
  font-size: var(--text-sm);
  color: var(--text-2);
  margin-bottom: 2rem;
  font-weight: 300;
}
.stay-section-title {
  font-family: var(--serif);
  font-size: var(--heading-section);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1.55;
  padding-inline: 0.25rem;
}
.stay-section-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
  opacity: 0.6;
}

/* Timeline Layout */
.stay-timeline-container {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.stay-timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(44, 120, 115, 0.15);
  transform: translateX(-50%);
}
.stay-timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.stay-timeline-item:last-child {
  margin-bottom: 0;
}
.stay-timeline-badge {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 88px;
  height: 28px;
  background: var(--bg);
  border: 1px solid var(--teal);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(44, 120, 115, 0.05);
}
.stay-timeline-time {
  font-family: var(--disp);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
}
.stay-timeline-content {
  width: 42%;
  background: #fff;
  border: 1px solid rgba(44, 120, 115, 0.08);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(44, 120, 115, 0.015);
  transition: all 0.4s var(--ease);
}
.stay-timeline-content:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 120, 115, 0.04);
}
/* 偶数番目は右側に寄せる */
.stay-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.stay-timeline-item:nth-child(odd) .stay-timeline-content {
  text-align: right;
}
.stay-timeline-title {
  font-family: var(--serif);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.stay-timeline-desc {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--text-2);
  font-weight: 300;
}

/* Features grid */
.stay-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.stay-feature-box {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(44, 120, 115, 0.12);
  border-radius: 6px;
  background: transparent;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.stay-feature-box:hover {
  border-color: var(--gold);
  background: rgba(44, 120, 115, 0.005);
  box-shadow: 0 16px 48px rgba(44, 120, 115, 0.04);
}
.stay-feature-box__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid rgba(44, 120, 115, 0.06);
}
.stay-feature-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.stay-feature-box:hover .stay-feature-box__img img {
  transform: scale(1.04);
}
.stay-feature-box__body {
  padding: 28px;
}
.stay-feature-box__title {
  font-family: var(--serif);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stay-feature-box__title svg {
  color: var(--gold);
  flex-shrink: 0;
}
.stay-feature-box__desc {
  font-size: var(--text-sm);
  line-height: 1.85;
  color: var(--text-2);
  font-weight: 300;
}

/* Media Queries */
@media (max-width: 768px) {
  br.br-sp {
    display: block;
  }
  .page-stay-layout .page-title-small,
  .page-stay-layout .stay-section-title,
  .page-stay-layout .facility-grid h2 {
    word-break: keep-all;
    line-break: strict;
    text-wrap: balance;
  }
  .page-stay-layout .stay-section-title {
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
  }
  .page-stay-layout .facility-grid,
  .page-stay-layout .facility-grid.rev {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
  }
  .page-stay-layout .facility-grid.rev {
    flex-direction: column-reverse;
  }
  .stay-timeline-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .stay-timeline-container::before {
    left: 28px;
    transform: none;
  }
  .stay-timeline-item {
    flex-direction: column !important;
    padding-left: 56px;
    margin-bottom: 36px;
  }
  .stay-timeline-badge {
    left: 28px;
    top: 0;
    transform: translateX(-50%);
  }
  .stay-timeline-content {
    width: 100% !important;
    text-align: left !important;
    padding: 20px;
  }
  .stay-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stay-feature-box__body {
    padding: 20px;
  }
}

/* ══ PLANS CTA ═══════════════════════════════════════════ */
.btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  min-height: 52px;
  box-sizing: border-box;
  background: #E07A5F;
  color: #fff;
  border-radius: 4px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: 15px;
  line-height: 1.4;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-coral:hover { background: #c8624a; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35); }

/* ══ COOKIE CONSENT BANNER ═══════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(20, 32, 30, .96);
  color: #fff;
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform .4s ease;
  backdrop-filter: blur(4px);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: .82rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  color: rgba(255,255,255,.85);
}
.cookie-text a { color: #7ec8be; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: .82rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: .04em;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--accept { background: #2C7873; color: #fff; }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.25);
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Legal & Policy Pages Styles ─────────────────────── */
.container--legal {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 max(24px, 4vw);
  width: 100%;
  box-sizing: border-box;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(44, 120, 115, 0.1);
  text-align: left;
  line-height: 1.6;
}
.legal-table th {
  width: 280px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--teal);
  background-color: rgba(44, 120, 115, 0.02);
  vertical-align: top;
}
.legal-table td {
  color: var(--text-2);
  font-weight: 300;
}
.legal-table td strong {
  font-weight: 600;
  color: var(--text);
}

.legal-document {
  margin-top: 32px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-2);
  font-weight: 300;
}
.legal-document h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 48px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(44, 120, 115, 0.15);
  padding-bottom: 8px;
}
.legal-document h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-document p {
  margin-bottom: 16px;
}
.legal-document ol,
.legal-document ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.legal-document li {
  margin-bottom: 8px;
}
.legal-document ol.outline-num {
  list-style-type: none;
  padding-left: 0;
  counter-reset: li-counter;
}
.legal-document ol.outline-num > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
}
.legal-document ol.outline-num > li::before {
  counter-increment: li-counter;
  content: counter(li-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--teal);
}

@media (max-width: 768px) {
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100% !important;
    padding: 12px 16px;
  }
  .legal-table th {
    background-color: rgba(44, 120, 115, 0.04);
    border-bottom: none;
  }
  .legal-table tr:last-child td {
    border-bottom: 1px solid rgba(44, 120, 115, 0.1);
  }
}

/* ── Desktop text alignment tuning ────────────────────── */
@media (min-width: 992px) {
  .page-content p,
  .rental-section p:not(.sec-gray):not(.eyebrow),
  .entry-content p,
  .news-detail-content p,
  .legal-document p {
    text-align: left;
  }
}

/* ── Room Common Features ────────────────────────────── */
.room-common-features {
  padding: 80px 0;
  background-color: #fff;
}
.common-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.common-feature-box {
  background: var(--bg2, #f9f9f9);
  border: 1px solid rgba(44, 120, 115, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.common-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 120, 115, 0.08);
  border-color: rgba(44, 120, 115, 0.15);
}
.common-feature-box__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #eee;
}
.common-feature-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.common-feature-box:hover .common-feature-box__image img {
  transform: scale(1.05);
}
.common-feature-box__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.common-feature-box__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 0;
  margin-bottom: 12px;
}
.common-feature-box__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
  font-weight: 300;
}

@media (max-width: 992px) {
  .common-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .common-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   NEW NEWS ARCHIVE (CARDS) & DETAIL LAYOUTS
   ============================================================ */

/* 一覧ページ用：カードグリッド */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px 30px;
}
.news-card-item {
  background: #ffffff;
  border: 1px solid rgba(44, 120, 115, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.news-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(44, 120, 115, 0.1);
  border-color: rgba(44, 120, 115, 0.2);
}
.news-card-link-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit !important;
}
.news-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}
.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card-img.aqua-img--logo-fallback,
.news-card-img[src*="aqua-logo"] {
  object-fit: contain !important;
  padding: clamp(16px, 8%, 32px);
  background: linear-gradient(180deg, #f8fafa 0%, #eef3f3 100%);
}
.news-card-item:hover .news-card-img {
  transform: scale(1.05);
}
.news-card-item:hover .news-card-img.aqua-img--logo-fallback,
.news-card-item:hover .news-card-img[src*="aqua-logo"] {
  transform: none;
}
.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.news-card-date {
  font-family: var(--disp);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.05em;
}
.news-card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 10px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.news-card-badge.badge-info,
.news-card-badge.badge-news,
.news-card-badge.badge-お知らせ {
  color: var(--teal);
  border-color: var(--teal);
}
.news-card-badge.badge-campaign,
.news-card-badge.badge-キャンペーン {
  color: var(--gold);
  border-color: var(--gold);
}
.news-card-badge.badge-spa {
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.news-card-badge.badge-food {
  color: var(--gold-d);
  border-color: var(--gold-d);
}
.news-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.2em;
}
.news-card-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 20px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 5.1em;
}
.news-card-more {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.news-card-item:hover .news-card-more {
  color: var(--gold);
}
.news-card-more .arrow {
  transition: transform 0.3s;
}
.news-card-item:hover .news-card-more .arrow {
  transform: translateX(4px);
}

/* 詳細ページ用：レイアウトとフォントの調整 */
.news-detail-entry {
  max-width: 800px;
  margin: 0 auto;
}
.news-detail-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44, 120, 115, 0.08);
}
.news-detail-header .news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.news-detail-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0.03em;
}
.news-detail-thumb {
  margin-bottom: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg2);
}
.news-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-detail-thumb img.aqua-img--logo-fallback {
  object-fit: contain !important;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 15%, 150px);
  background: linear-gradient(180deg, #f8fafa 0%, #eef3f3 100%);
  box-sizing: border-box;
}
.news-detail-content {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--text-2);
}
.news-detail-content p {
  margin-bottom: 28px;
}
.news-detail-content h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}
.news-detail-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--teal);
}
.news-detail-content h3 {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 500;
}
.news-detail-content blockquote {
  border-left: 3px solid var(--teal);
  padding: 16px 24px;
  background: var(--bg2);
  color: var(--text-2);
  font-style: italic;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}

/* 記事移動ナビゲーション */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 88px;
  padding-top: 32px;
  border-top: 1px solid rgba(44, 120, 115, 0.08);
}
.post-navigation a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.post-navigation a:hover {
  color: var(--gold);
}
.post-navigation .nav-prev, .post-navigation .nav-next {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  max-width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-navigation .nav-prev a::before {
  content: '← ';
  transition: transform 0.3s;
  display: inline-block;
}
.post-navigation .nav-prev a:hover::before {
  transform: translateX(-4px);
}
.post-navigation .nav-next a::after {
  content: ' →';
  transition: transform 0.3s;
  display: inline-block;
}
.post-navigation .nav-next a:hover::after {
  transform: translateX(4px);
}
.post-navigation .nav-back {
  font-family: var(--sans);
  font-size: 13px;
}
.post-navigation .nav-back a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  .news-card-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 20px;
  }
  .news-card-title {
    font-size: 16px;
    height: auto;
    max-height: 3.2em;
  }
  .news-card-excerpt {
    font-size: 13px;
    height: auto;
    max-height: 5.1em;
  }
}

/* ============================================================
   BUTTON COMPONENT — 角丸を全廃し直角に統一（色・余白は既存のまま）
   基準: 長期滞在プランの「詳細を見る」ボタン形状
   ============================================================ */
.btn-teal,
.btn-teal-outline,
.btn-coral,
.btn-white,
.btn-hero,
.btn-lg,
.btn-outline,
.btn-reserve,
.btn-text-link,
.hdr-book,
.drawer-book,
.facility-btn,
.contact-form-btn,
.contact-form-btn-back,
.cookie-btn,
.cookie-btn--accept,
.cookie-btn--reject,
.area-tab-btn,
.qr-btn,
.qr-btn-back {
  border-radius: 0 !important;
}

/* ── Promo video section (TOP) ── */
.promo-video-sec {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.promo-video-sec .sec-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.promo-video-sec .sec-head .label {
  margin-bottom: 0;
}
.promo-video-sec .sec-head .sec-title {
  margin-top: 20px;
}
.promo-video-sec .sec-head .sec-desc {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.8;
  font-family: var(--serif);
  font-weight: 300;
}
.promo-video-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.promo-video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  background: #000;
}

/* ── Trip AI chatbot (右下固定) ── */
@media (max-width: 767px) {
  #tripai_banner_area,
  .tripai_banner_area,
  [id*="tripai"] {
    bottom: 72px !important;
    right: 12px !important;
    z-index: 9000 !important;
  }
  #tripai_banner_area img,
  .tripai_banner_area img,
  [id*="tripai"] img {
    max-width: 352px !important;
    width: 100%;
    height: auto !important;
  }
}
@media (min-width: 768px) {
  #tripai_banner_area,
  .tripai_banner_area,
  [id*="tripai"] {
    bottom: 16px !important;
    right: 16px !important;
    z-index: 9000 !important;
  }
  #tripai_banner_area img,
  .tripai_banner_area img,
  [id*="tripai"] img {
    max-width: 260px !important;
    width: 100%;
    height: auto !important;
  }
}

/* ============================================================
   NEWS 2-COLUMN LAYOUT
   ============================================================ */
.news-two-columns {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.news-main-content {
  flex: 1;
  min-width: 0;
}

/* サイドバー */
.news-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

/* 左カラムの記事カードグリッド（PC時は2列固定にする） */
.news-main-content .news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

/* ウィジェットのスタイリング */
.widget-item {
  background: #ffffff;
  border: 1px solid rgba(44, 120, 115, 0.08);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.widget-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--teal);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--teal);
  letter-spacing: 0.05em;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* カテゴリー＆アーカイブのリストスタイル */
.widget_categories ul,
.widget_archive ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget_categories li,
.widget_archive li {
  border-bottom: 1px dashed rgba(44, 120, 115, 0.15);
}

.widget_categories li:last-child,
.widget_archive li:last-child {
  border-bottom: none;
}

.widget_categories a,
.widget_archive a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, padding-left 0.3s;
}

.widget_categories a:hover,
.widget_archive a:hover {
  color: var(--teal);
  padding-left: 6px;
}

.widget_categories li.current-cat a {
  color: var(--teal);
  font-weight: 500;
}

.cat-count {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--disp);
}

/* 最近の投稿リストスタイル */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(44, 120, 115, 0.05);
  padding-bottom: 16px;
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg2);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.recent-post-link:hover .recent-post-thumb img {
  transform: scale(1.08);
}

.recent-post-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-date {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 6px;
  font-family: var(--disp);
}

.recent-post-title {
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3em;
  transition: color 0.3s;
}

.recent-post-link:hover .recent-post-title {
  color: var(--teal);
}

/* ============================================================
   RESPONSIVE DESIGN (NEWS)
   ============================================================ */
@media (max-width: 1200px) {
  .news-two-columns {
    gap: 40px;
  }
  .news-sidebar {
    width: 280px;
  }
}



@media (max-width: 960px) {
  .news-two-columns {
    flex-direction: column;
    gap: 60px;
  }
  .news-sidebar {
    width: 100%;
    position: static;
  }
  .widget-item {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .news-main-content .news-card-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


