/*
Theme Name: Hitachi Heaven
Theme URI: https://hitachiheaven.jp
Author: Hitachi Heaven
Description: 大切な人との時間を取り戻す場所。日立市の海辺グランピング施設。
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: hitachi-heaven
*/

/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
  --white:        #ffffff;
  --bg:           #fafaf9;
  --bg-hemp:      #f4f1ec;
  --hemp-accent:  #8a7e6e;
  --bg-blue:      #f4f1ec;
  --marine-900:   #3a332e;
  --marine-800:   #5a5046;
  --marine-700:   #6b6054;
  --marine-600:   #7a6d5e;
  --marine-400:   #8a7e6e;
  --marine-200:   #d4ccc0;
  --marine-100:   #ebe5da;
  --marine-50:    #f4f1ec;
  --text:         #1a202c;
  --text-mid:     #3d4a5c;
  --text-light:   #4a5568;
  --text-muted:   #718096;
  --border:       #ddd5c8;
  --serif:        'Noto Serif JP', 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', serif;
  --sans:         'Zen Kaku Gothic New', sans-serif;
  --max:          1100px;
  --sub-content:  960px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

/* 明朝は FV・Experience・Concept 見出しのみ */
.fv__heading,
.fv__heading .fv__heading-line,
.js-experience-typewriter,
.js-experience-typewriter .experience__title-line,
.js-concept-typewriter,
.js-concept-typewriter .concept__title-line {
  font-family: var(--serif);
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

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

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* =====================================================
   FADE-IN ANIMATIONS (Intersection Observer)
   JS が有効なときのみ opacity:0 を適用する
   html.js-ready クラスを JS 側で付与する
===================================================== */
.js-reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js-ready .js-reveal {
  opacity: 0;
  transform: translateY(28px);
}

html.js-ready .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal-delay-1 { transition-delay: 0.1s; }
.js-reveal-delay-2 { transition-delay: 0.2s; }
.js-reveal-delay-3 { transition-delay: 0.3s; }
.js-reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-scrolled .header-logo a,
.site-header.is-scrolled .header-nav a:not(.header-reserve-btn) {
  color: var(--text);
}

.site-header.is-scrolled .header-nav a:not(.header-reserve-btn):hover {
  color: var(--marine-800);
  border-bottom-color: var(--marine-400);
}

/* Logo */
.header-logo a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.3s ease;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a:not(.header-reserve-btn) {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.header-nav a:not(.header-reserve-btn):hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.6);
}

/* Reserve Button — 初期は白、スクロール後は紺 */
.header-reserve-btn {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--marine-800);
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-reserve-btn:hover {
  background: var(--marine-800);
  color: var(--white);
  border-color: var(--marine-800);
}

.site-header.is-scrolled .header-reserve-btn {
  background: var(--marine-800);
  color: var(--white);
  border-color: var(--marine-800);
}

.site-header.is-scrolled .header-reserve-btn:hover {
  background: var(--white);
  color: var(--marine-800);
  border-color: var(--marine-800);
}

/* Hamburger */
.header-hamburger {
  display: none;
  position: relative;
  z-index: 220;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header-hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .header-hamburger span,
body.is-drawer-open .header-hamburger span {
  background: var(--text);
}

.header-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.header-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 210;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(26, 22, 18, 0.55);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.4s var(--ease);
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 96px 40px 40px;
  background: var(--marine-900);
  color: var(--white);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__head {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer__brand {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.drawer__tagline {
  margin-top: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.drawer__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer__link {
  display: block;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, padding-left 0.25s var(--ease);
}

.drawer__link:hover {
  color: var(--white);
  padding-left: 6px;
}

.drawer__label {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.drawer__foot {
  margin-top: 32px;
  padding-top: 24px;
}

.drawer__reserve {
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--marine-900);
  background: var(--white);
  border: 1px solid var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}

.drawer__reserve:hover {
  background: transparent;
  color: var(--white);
}

body.is-drawer-open {
  overflow: hidden;
}

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .site-header { padding: 0 24px; }
  .drawer__panel { padding: 88px 28px 32px; }
}

/* =====================================================
   FV — FIRST VIEW
===================================================== */
.fv {
  position: relative;
  height: 100vh;        /* fallback */
  height: 100svh;       /* mobile browser chrome を除いた高さ */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* FV フェードスライダー */
.fv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--marine-900);
  background-image: var(--fv-img-pc);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}

@media (max-width: 768px) {
  .fv__slide {
    background-image: var(--fv-img-sp);
    background-position: center center;
  }
}

.fv__slide.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fv__slide {
    transition: none;
  }
}

/* Text content */
.fv__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(24px, 6vw, 88px);
  width: 100%;
  max-width: none;
}

.fv__heading {
  font-size: clamp(2rem, 5.2vw, 4.25rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow:
    0 0 48px rgba(58, 51, 46, 0.5),
    0 3px 16px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.35);
  -webkit-font-smoothing: antialiased;
}

.fv__heading-line {
  display: block;
  white-space: nowrap;
  min-height: 1.9em;
}

.fv__heading-line.is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.82em;
  margin-left: 4px;
  vertical-align: -0.05em;
  background: rgba(255, 255, 255, 0.92);
  animation: fvTypewriterCursor 0.85s step-end infinite;
}

.fv__heading.is-complete .fv__heading-line:last-child.is-typing::after {
  animation-duration: 1.1s;
}

@keyframes fvTypewriterCursor {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Scroll indicator */
.fv__scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fv__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  writing-mode: vertical-rl;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.fv__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.75));
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 768px) {
  .fv {
    align-items: flex-start;
  }

  .fv__content {
    padding: calc(72px + 6vh) 24px 0;
  }

  .fv__heading {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
  .fv__heading-line {
    white-space: normal;
  }
  .fv__scroll { right: 24px; bottom: 24px; }
}

/* =====================================================
   CTA BAR
===================================================== */
.cta-bar {
  background: var(--marine-800);
  padding: 28px 40px;
}

.cta-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-bar__text {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.cta-bar__btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 13px 36px;
  background: var(--white);
  color: var(--marine-800);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.cta-bar__btn:hover {
  background: var(--marine-50);
  color: var(--marine-800);
}

@media (max-width: 640px) {
  .cta-bar { padding: 24px; }
  .cta-bar__inner { flex-direction: column; align-items: flex-start; }
  .cta-bar__btn { align-self: stretch; text-align: center; }
}

/* =====================================================
   SECTION COMMONS
===================================================== */
.section {
  padding: 100px 0;
}

.section--blue {
  background: var(--bg-blue);
}

.section--dark {
  background: var(--marine-900);
  color: var(--white);
}

.section__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--marine-600);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section--dark .section__eyebrow {
  color: var(--marine-100);
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text);
}

.section--dark .section__title {
  color: var(--white);
}

.section__lead {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-mid);
  max-width: 560px;
}

.section--dark .section__lead {
  color: rgba(255,255,255,0.7);
}

.section__divider {
  width: 32px;
  height: 1px;
  background: var(--marine-400);
  margin: 24px 0;
}

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

/* =====================================================
   EXPERIENCE VALUES
===================================================== */
.experience {
  padding: 250px 0 100px;
  background: var(--white);
}

.experience__header {
  text-align: center;
  margin-bottom: 240px;
}

.section__title--large,
.experience__header .section__title--large,
.concept__intro .section__title--large {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}

.experience__header .section__lead {
  margin: 24px auto 0;
  text-align: center;
}

.experience__title-line,
.experience__lead-line,
.concept__title-line {
  display: block;
}

.experience__title-line {
  white-space: nowrap;
  min-height: 1.7em;
}

.concept__title-line {
  white-space: nowrap;
  min-height: 1.7em;
}

.js-experience-typewriter .experience__title-line.is-typing::after,
.js-concept-typewriter .concept__title-line.is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.82em;
  margin-left: 4px;
  vertical-align: -0.05em;
  background: var(--marine-600);
  animation: fvTypewriterCursor 0.85s step-end infinite;
}

.js-experience-typewriter.is-complete .experience__title-line:last-child.is-typing::after,
.js-concept-typewriter.is-complete .concept__title-line:last-child.is-typing::after {
  animation-duration: 1.1s;
}

.experience__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.experience-item {
  position: relative;
}

.experience-item__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-item__body {
  position: relative;
  z-index: 1;
}

.experience-item__mark-layer {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  width: calc((100% - 80px) / 2);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
  user-select: none;
}

.experience-item:nth-child(even) .experience-item__mark-layer {
  right: auto;
  left: 0;
}

.experience-item__mark {
  display: block;
  width: clamp(96px, 16vw, 200px);
  height: auto;
  opacity: 0.10;
  filter: invert(1) brightness(0.72);
}

/* 左 → 右 → 左（feature 以外） */
.experience-item:not(.experience-item--feature):nth-child(even) .experience-item__photo {
  order: 2;
}

.experience-item:not(.experience-item--feature):nth-child(even) .experience-item__body {
  order: 1;
}

.experience-item__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--marine-100);
  overflow: hidden;
  border-radius: 12px;
}

.experience-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.experience-item__photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70%;
  height: 70%;
  border: 1px solid var(--marine-200);
  z-index: -1;
}

.experience-item:nth-child(even) .experience-item__photo::after {
  right: auto;
  left: -16px;
}

.experience-item__heading {
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text);
}

.experience-item__text {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-mid);
  margin-top: 24px;
}

/* 家族と笑う — 2カラム（画像右端まで） */
.experience-item--feature {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.experience-item--feature .experience-item__panel {
  background: var(--bg-hemp);
  padding: 0;
}

.experience-item--feature .experience-item__inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  max-width: none;
  margin: 0;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) 0 clamp(64px, 8vw, 96px) max(24px, calc((100vw - var(--max)) / 2 + 40px));
}

.experience-item--feature .experience-item__body {
  grid-column: 1;
  grid-row: 1;
}

.experience-item--feature .experience-item__photo {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 3 / 2;
  width: 100%;
  border-radius: 16px 0 0 16px;
  background: var(--marine-100);
  overflow: hidden;
}

.experience-item--feature .experience-item__photo img {
  border-radius: 16px 0 0 16px;
}

.experience-item--feature .experience-item__photo::after {
  display: none;
}

.experience-item--feature .experience-item__photo-mark {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: clamp(80px, 11vw, 112px);
  height: auto;
  filter: invert(1) brightness(0.72);
  opacity: 0.9;
}

.experience-item--feature .experience-item__heading {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.55;
}

.experience-item--feature .experience-item__heading-text {
  display: block;
}

.experience-item--feature .experience-item__heading-mark {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 16px;
  transform: translateY(-50%);
  width: clamp(64px, 9vw, 88px);
  height: auto;
  filter: invert(1) brightness(0.72);
  opacity: 0.85;
  pointer-events: none;
}

.experience-item--feature .section__divider {
  background: var(--marine-400);
}

.experience-item--feature .experience-item__text {
  color: var(--text-mid);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 2;
}

/* 交互 — 白背景 */
.experience-item--feature-white .experience-item__panel {
  background: var(--white);
}

/* 交互 — 画像左・画面左端まで */
.experience-item--feature-reverse .experience-item__inner {
  grid-template-columns: 1fr minmax(0, 420px);
  padding: clamp(64px, 8vw, 96px) max(24px, calc((100vw - var(--max)) / 2 + 40px)) clamp(64px, 8vw, 96px) 0;
}

.experience-item--feature-reverse .experience-item__body {
  grid-column: 2;
}

.experience-item--feature-reverse .experience-item__photo {
  grid-column: 1;
  border-radius: 0 16px 16px 0;
}

.experience-item--feature-reverse .experience-item__photo img {
  border-radius: 0 16px 16px 0;
}

@media (max-width: 860px) {
  .experience__items { gap: 0; }
  .experience-item__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .experience-item:not(.experience-item--feature):nth-child(even) .experience-item__photo,
  .experience-item:not(.experience-item--feature):nth-child(even) .experience-item__body {
    order: unset;
  }
  .experience-item__mark-layer {
    width: 100%;
    right: 0;
    left: 0;
  }
  .experience-item:nth-child(even) .experience-item__mark-layer {
    left: 0;
  }
  .experience-item__photo { aspect-ratio: 3 / 2; }
  .experience-item__heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .experience-item__photo::after { display: none; }
  .experience-item__mark {
    width: clamp(112px, 30vw, 180px);
    opacity: 0.085;
  }

  .experience-item--feature .experience-item__panel {
    padding: 0;
  }

  .experience-item--feature .experience-item__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 20px;
  }

  .experience-item--feature .experience-item__body,
  .experience-item--feature .experience-item__photo {
    grid-column: auto;
    grid-row: auto;
  }

  .experience-item--feature .experience-item__photo {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: 3 / 2;
  }

  .experience-item__photo,
  .experience-item__photo img,
  .experience-item--feature .experience-item__photo,
  .experience-item--feature .experience-item__photo img,
  .experience-item--feature-reverse .experience-item__photo,
  .experience-item--feature-reverse .experience-item__photo img {
    border-radius: 0;
  }

  .experience-item--feature .experience-item__heading {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

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

  .experience__header {
    margin-bottom: 180px;
  }

  .section__title--large,
  .experience__header .section__title--large,
  .concept__intro .section__title--large {
    font-size: clamp(1.35rem, 4.8vw, 1.7rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

  .experience__header .section__lead {
    font-size: 0.88rem;
    line-height: 2;
    max-width: 18em;
  }

  .concept > .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .concept__intro {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

/* =====================================================
   CONCEPT
===================================================== */
.concept {
  padding: 100px 0 0;
  background: var(--white);
}

.concept__intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.concept__intro .section__title--large {
  margin-bottom: 20px;
}

.concept__lights {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 28px auto 32px;
  max-width: 100%;
}

.concept__lights-img {
  display: block;
  width: clamp(140px, 22vw, 260px);
  height: auto;
  max-width: none;
  mix-blend-mode: screen;
}

.concept__lead {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 2.2;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.concept__lead + .concept__lead {
  margin-top: 8px;
}

.concept__media {
  margin-top: 72px;
  margin-bottom: 128px;
}

.concept__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--marine-900);
  box-shadow: 0 24px 64px rgba(58, 51, 46, 0.12);
}

.concept__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept__video-caption {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.concept__video-label {
  flex-shrink: 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--marine-600);
  text-transform: uppercase;
}

.concept__video-caption p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

.concept__body {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.concept__text {
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--text-mid);
}

.u-pc-only {
  display: inline;
}

@media (max-width: 860px) {
  .concept {
    padding: 72px 0 0;
  }

  .concept__media {
    margin-top: 48px;
    margin-bottom: 96px;
  }

  .concept__video-caption {
    flex-direction: column;
    gap: 12px;
  }

  .concept__body {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .u-pc-only {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept__video {
    display: none;
  }

  .concept__video-wrap {
    background-image: url('assets/img/concept/poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* =====================================================
   SCENE GALLERY — スクラップブック風マーキー
===================================================== */
.scene-gallery {
  width: 100%;
  padding: clamp(64px, 8vw, 88px) 0;
  background: var(--bg-hemp);
  overflow: hidden;
}

.scene-gallery__lights {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 clamp(16px, 2.5vw, 28px);
  pointer-events: none;
}

.scene-gallery__lights--bottom {
  padding: clamp(16px, 2.5vw, 28px) 0 0;
}

.scene-gallery__lights-img {
  display: block;
  width: clamp(140px, 22vw, 260px);
  height: auto;
  max-width: none;
  mix-blend-mode: multiply;
  opacity: 0.58;
  filter: brightness(0.88) contrast(1.04) saturate(1);
}

.scene-gallery__viewport {
  width: 100%;
  overflow: hidden;
}

.scene-gallery__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0;
  animation: scene-gallery-marquee 50s linear infinite;
}

.scene-gallery__viewport:hover .scene-gallery__track {
  animation-play-state: paused;
}

.scene-gallery__item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 320px);
  margin: clamp(14px, 2vw, 22px) clamp(12px, 2vw, 24px) clamp(14px, 2vw, 22px) 0;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transform: rotate(var(--gallery-rotate, 0deg)) translateY(var(--gallery-y, 0));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: visible;
}

.scene-gallery__item:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.scene-gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
  max-width: none;
  border-radius: 16px;
  user-select: none;
  -webkit-user-drag: none;
}

.scene-gallery__item--1 { --gallery-rotate: -3deg; --gallery-y: 4px; }
.scene-gallery__item--2 { --gallery-rotate:  2deg; --gallery-y: -3px; }
.scene-gallery__item--3 { --gallery-rotate: -2deg; --gallery-y: 5px; }
.scene-gallery__item--4 { --gallery-rotate:  3deg; --gallery-y: -2px; }
.scene-gallery__item--5 { --gallery-rotate:  2deg; --gallery-y: -4px; }
.scene-gallery__item--6 { --gallery-rotate: -3deg; --gallery-y: 3px; }
.scene-gallery__item--7 { --gallery-rotate:  2deg; --gallery-y: -5px; }
.scene-gallery__item--8 { --gallery-rotate: -2deg; --gallery-y: 2px; }

@keyframes scene-gallery-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .scene-gallery {
    padding: 64px 0 72px;
  }

  .scene-gallery__item {
    width: clamp(200px, 38vw, 280px);
    margin: clamp(14px, 2vw, 22px) 16px clamp(14px, 2vw, 22px) 0;
  }
}

@media (max-width: 640px) {
  .scene-gallery {
    padding: 48px 0 56px;
  }

  .scene-gallery__item {
    width: clamp(180px, 52vw, 240px);
    margin: clamp(14px, 2vw, 22px) 12px clamp(14px, 2vw, 22px) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-gallery__track {
    animation: none;
    overflow-x: auto;
    width: 100%;
    padding: clamp(14px, 2vw, 22px) 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scene-gallery__item {
    transition: none;
    scroll-snap-align: start;
  }

  .scene-gallery__item:hover {
    transform: rotate(var(--gallery-rotate, 0deg)) translateY(var(--gallery-y, 0));
  }
}

/* =====================================================
   STAY — 過ごし方
===================================================== */
.stay {
  padding: 100px 0;
  background: var(--white);
}

.stay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 72px;
}

.stay__header-text {
  flex: 1;
  min-width: 0;
}

.stay__header-text .section__title {
  margin: 0 0 16px;
}

.stay__header-text .section__lead {
  margin: 0;
  max-width: 560px;
}

.stay__visual {
  flex-shrink: 0;
  width: min(14vw, 145px);
}

.stay__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.stay__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.stay-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.stay-item:nth-child(even) .stay-item__photo {
  order: 2;
}

.stay-item:nth-child(even) .stay-item__body {
  order: 1;
}

.stay-item__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--marine-50);
}

.stay-item:nth-child(1) .stay-item__photo { background: #e5dfd4; }
.stay-item:nth-child(2) .stay-item__photo { background: #d9d0c4; }

.stay-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.7s var(--ease);
}

.stay-item:hover .stay-item__photo img {
  transform: scale(1.03);
}

.stay-item__num {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--marine-400);
  margin-bottom: 16px;
}

.stay-item__title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 20px;
}

.stay-item__text {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.stay-item__specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.stay-item__spec {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.stay-item__spec-label {
  width: 80px;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .stay-item { grid-template-columns: 1fr; gap: 32px; }
  .stay-item:nth-child(even) .stay-item__photo { order: unset; }
  .stay-item:nth-child(even) .stay-item__body { order: unset; }
}

@media (max-width: 500px) {
  .stay__header {
    gap: 0;
  }
}

/* =====================================================
   FACILITIES
===================================================== */
.facilities {
  padding: 100px 0;
  background-color: var(--bg-hemp);
}

.facilities__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
}

.facilities__header-text {
  flex: 1;
  min-width: 0;
}

.facilities__header-text .section__title {
  margin: 0 0 16px;
}

.facilities__header-text .section__lead {
  margin: 0;
  max-width: 560px;
}

.facilities__visual {
  flex-shrink: 0;
  width: min(17vw, 170px);
}

.facilities__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.facilities__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid rgba(138, 126, 110, 0.18);
  border-radius: 12px;
}

.facility-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--hemp-accent);
}

.facility-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.facility-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.facility-card__title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.facility-card__text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .facilities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .facilities__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   NEARBY — 周辺施設
===================================================== */
.nearby {
  padding: 100px 0;
  background: var(--white);
}

.nearby__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 60px;
}

.nearby__header-text {
  flex: 1;
  min-width: 0;
}

.nearby__header-text .section__title {
  margin: 0 0 16px;
}

.nearby__header-text .section__lead {
  margin: 0;
}

.nearby__visual {
  flex-shrink: 0;
  width: min(17vw, 170px);
}

.nearby__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.nearby__carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  --nearby-card-size: clamp(240px, 26vw, 300px);
}

.nearby__viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nearby__viewport::-webkit-scrollbar {
  display: none;
  height: 0;
}

.nearby__nav {
  position: absolute;
  top: calc(var(--nearby-card-size) / 2);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--marine-800);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(58, 51, 46, 0.12);
  transform: translateY(-50%);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: auto;
}

.nearby__nav--prev {
  left: clamp(20px, 3.5vw, 40px);
}

.nearby__nav--next {
  right: clamp(20px, 3.5vw, 40px);
}

.nearby__nav:hover {
  background: var(--white);
  border-color: var(--hemp-accent);
}

.nearby__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.nearby__nav:focus-visible {
  outline: 2px solid var(--hemp-accent);
  outline-offset: 3px;
}

.nearby__nav-icon {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-135deg);
  margin-left: 3px;
}

.nearby__nav--next .nearby__nav-icon {
  transform: rotate(45deg);
  margin-left: 0;
  margin-right: 3px;
}

.nearby__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  padding: 0 clamp(16px, 2.5vw, 28px);
}

.nearby-card {
  flex: 0 0 auto;
  width: var(--nearby-card-size);
  margin-right: clamp(16px, 2vw, 24px);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.nearby-card:last-child {
  margin-right: 0;
}

.nearby-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.nearby-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--marine-100);
  margin-bottom: 16px;
}

.nearby-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.7s var(--ease);
}

.nearby-card__photo--no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e4de;
}

.nearby-card__no-image {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(138, 126, 110, 0.75);
}

.nearby-card:hover .nearby-card__photo img {
  transform: scale(1.04);
}

.nearby-card__title {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.nearby-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  margin-bottom: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--hemp-accent);
  background: var(--bg-hemp);
  border-radius: 4px;
}

.nearby-card__text {
  font-size: 0.82rem;
  line-height: 1.95;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .nearby__nav {
    display: none;
  }

  .nearby__carousel {
    --nearby-card-size: clamp(336px, 37vw, 420px);
  }

  /* 複製込みで最大30枚近いカードが横一列に並ぶため、画面外のカードは
     描画をスキップしてスクロール中の合成コストを下げる（対応ブラウザのみ）。
     また中央寄せにして、前後のカードが左右にちらっと見えるようにする。 */
  .nearby-card {
    content-visibility: auto;
    contain-intrinsic-size: var(--nearby-card-size) calc(var(--nearby-card-size) + 130px);
    scroll-snap-align: center;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nearby-card:hover .nearby-card__photo img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .nearby__carousel {
    --nearby-card-size: clamp(280px, 74vw, 340px);
  }

  .nearby__track {
    padding: 0 12px;
  }

  .nearby-card {
    margin-right: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nearby__track {
    transition: none;
  }
}

/* =====================================================
   PRICING
===================================================== */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
}

.pricing__header-text {
  flex: 1;
  min-width: 0;
}

.pricing__header-text .section__title {
  margin: 0 0 16px;
}

.pricing__header-text .section__lead {
  margin: 0;
  max-width: 560px;
}

.pricing__visual {
  flex-shrink: 0;
  width: min(17vw, 170px);
}

.pricing__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.pricing__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.price-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.price-card__title {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.price-card__period {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.price-card__price {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--marine-800);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.price-card__unit {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.price-card__list {
  flex: 1;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.price-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--marine-400);
}

.price-card__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--marine-800);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: background 0.25s ease;
}

.price-card__cta:hover {
  background: var(--marine-600);
}

/* BBQ section inside pricing */
.pricing__bbq {
  margin-top: 60px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pricing__bbq-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.pricing__bbq-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.bbq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bbq-list-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.bbq-list-item:last-child { border-bottom: none; padding-bottom: 0; }

.bbq-list-item__title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.bbq-list-item__price {
  font-size: 1.1rem;
  color: var(--marine-700);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.bbq-list-item__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__bbq { grid-template-columns: 1fr; }
  .price-card { padding: 28px 24px; }
}

/* =====================================================
   ACCESS
===================================================== */
.access {
  padding: 100px 0 0;
  background: var(--bg);
}

.access__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: 0;
  padding-bottom: 48px;
}

.access__header-text {
  flex: 1;
  min-width: 0;
}

.access__header-text .section__title {
  margin: 0;
}

.access__visual {
  flex-shrink: 0;
  width: min(17vw, 170px);
}

.access__visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.access__info {
  margin-top: 16px;
}

.access__map {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(320px, 42vw, 520px);
  background: var(--marine-50);
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.access__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 4px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.access__item-label {
  flex-shrink: 0;
  width: 80px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.access__item-value {
  flex: 1;
  min-width: 0;
  color: var(--text-mid);
  line-height: 1.5;
}

.access__nearby {
  margin-top: 28px;
}

.access__nearby-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.access__nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access__nearby-tag {
  font-size: 0.78rem;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--text-light);
}

@media (max-width: 860px) {
  .access {
    padding-top: 80px;
  }

  .access__header {
    padding-bottom: 32px;
  }

  .access__info {
    margin-top: 12px;
  }

  .access__map {
    height: clamp(260px, 56vw, 360px);
  }

  .access__item {
    gap: 12px;
    padding: 3px 0;
  }

  .access__item-label {
    width: 64px;
  }
}

/* =====================================================
   NOTICE
===================================================== */
.notice {
  padding: 80px 0;
  background: var(--white);
}

.notice__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.notice__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.notice__item:first-child { border-top: 1px solid var(--border); }

.notice__item-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--marine-400);
  margin-top: 0.75em;
  justify-self: center;
}

/* =====================================================
   RESERVE CTA SECTION
===================================================== */
.reserve-cta {
  padding: 120px 0;
  background: var(--marine-900);
  text-align: center;
}

.reserve-cta__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.reserve-cta__heading-line {
  display: block;
}

@media (max-width: 768px) {
  .reserve-cta__heading {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    line-height: 1.75;
    letter-spacing: 0.02em;
  }

  .reserve-cta__heading-line {
    white-space: nowrap;
  }
}

.reserve-cta__sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.reserve-cta__btn {
  display: inline-block;
  padding: 18px 60px;
  background: var(--white);
  color: var(--marine-900);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: background 0.25s ease, color 0.25s ease;
}

.reserve-cta__btn:hover {
  background: var(--marine-100);
}

.reserve-cta__note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

/* =====================================================
   CONTACT FORM
===================================================== */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--marine-600);
}

.form-group textarea { min-height: 120px; }

.form-submit {
  margin-top: 8px;
  padding: 15px 40px;
  background: var(--marine-800);
  color: var(--white);
  border: none;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.25s ease;
  align-self: flex-start;
}

.form-submit:hover { background: var(--marine-600); }

.contact__notice {
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contact__notice--success {
  background: rgba(26, 95, 74, 0.08);
  color: var(--marine-800);
  border-left: 3px solid var(--marine-600);
}

.contact__notice--error {
  background: rgba(180, 50, 50, 0.06);
  color: #8b2e2e;
  border-left: 3px solid #c44;
}

@media (max-width: 860px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================
   NEWS
===================================================== */
.news {
  padding: 80px 0;
  background: var(--white);
}

.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news__heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.news__more {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text);
  border-bottom: 1px solid var(--marine-400);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news__more:hover {
  color: var(--marine-800);
  border-color: var(--marine-800);
}

.news__list { display: flex; flex-direction: column; gap: 0; }

.news__item {
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s ease;
}

.news__item:first-child { border-top: 1px solid var(--border); }

.news__item:hover { opacity: 0.85; }

.news__item a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  align-items: start;
}

.news__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.news__category {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--marine-800);
  background: var(--marine-50);
  border: 1px solid var(--marine-200);
  line-height: 1.4;
}

.news__date {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  padding-top: 3px;
}

.news__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

.sub-hero__meta .news__categories {
  margin-top: 10px;
}

.sub-hero__meta .news__category {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 860px) {
  .news__item a {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
}

/* =====================================================
   SCROLL TOP / SP FIXED RESERVE
===================================================== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--marine-800);
  box-shadow: 0 4px 18px rgba(58, 51, 46, 0.14);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--white);
  border-color: var(--hemp-accent);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--hemp-accent);
  outline-offset: 3px;
}

.scroll-top__icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg) translateY(2px);
}

.mobile-reserve-bar {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --mobile-reserve-bar-height: 56px;
  }

  body {
    padding-bottom: var(--mobile-reserve-bar-height);
  }

  .scroll-top {
    right: 16px;
    bottom: calc(var(--mobile-reserve-bar-height) + 16px);
  }

  .mobile-reserve-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 18px rgba(58, 51, 46, 0.08);
  }

  .mobile-reserve-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: var(--mobile-reserve-bar-height);
    padding: 14px 20px;
    background: var(--marine-800);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-align: center;
    transition: background 0.25s var(--ease);
  }

  .mobile-reserve-bar__btn:hover {
    background: var(--marine-900);
  }

  .mobile-reserve-bar__btn:focus-visible {
    outline: 2px solid var(--hemp-accent);
    outline-offset: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transform: none;
  }

  .scroll-top.is-visible {
    transform: none;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--marine-900);
  color: rgba(255,255,255,0.55);
  padding: 60px 40px 32px;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand-name {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__brand-address {
  font-size: 0.78rem;
  line-height: 1.9;
}

.footer__nav-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer__nav-list a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 48px 24px 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =====================================================
   WORDPRESS CONTENT STYLES
===================================================== */
.entry-content {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
}

.entry-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--marine-600);
}

.entry-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 36px 0 12px;
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-weight: 500;
  color: var(--text);
}

.entry-content p { margin-bottom: 20px; }

.entry-content a {
  color: var(--marine-800);
  border-bottom: 1px solid var(--marine-200);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.entry-content a:hover {
  color: var(--marine-700);
  border-color: var(--marine-600);
}

.entry-content ul, .entry-content ol {
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li { margin-bottom: 8px; color: var(--text); }

.entry-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--marine-400);
  background: var(--marine-50);
  color: var(--text-mid);
}

.entry-content strong {
  color: var(--text);
  font-weight: 700;
}

.page-links {
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text);
}

.page-links a {
  color: var(--marine-800);
}

/* =====================================================
   SUB PAGES (single, page, archive)
===================================================== */
.page-wrap {
  min-height: 100vh;
}

.sub-hero {
  padding: 120px 0 64px;
  margin-top: 72px;
  background: var(--marine-800);
  color: var(--white);
}

.sub-hero__inner {
  max-width: var(--sub-content);
}

.sub-hero__eyebrow {
  margin: 24px 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.sub-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--white);
}

.sub-hero__meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
}

.sub-hero__meta .news__date {
  color: rgba(255,255,255,0.9);
}

.sub-hero--compact {
  padding: 104px 0 48px;
}

.sub-article--center {
  text-align: center;
}

.sub-article--center .search-form {
  max-width: 480px;
  margin: 0 auto 32px;
}

.sub-empty-wrap {
  padding: 24px 0;
}

.sub-search-results {
  margin-top: 40px;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
  font-size: 0.82rem;
}

.comment-navigation a {
  color: var(--marine-800);
}

.no-comments {
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.sub-content {
  padding: 72px 0 100px;
  background: var(--bg);
}

.sub-article {
  max-width: var(--sub-content);
  margin: 0 auto;
}

.sub-article__featured {
  margin-bottom: 48px;
  overflow: hidden;
  background: var(--marine-50);
}

.sub-article__featured img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-article__tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
}

.sub-article__edit {
  margin-top: 32px;
  font-size: 0.82rem;
}

.sub-article__edit a {
  color: var(--marine-800);
}

.sub-nav {
  max-width: var(--sub-content);
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.sub-nav .nav-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
}

.sub-nav .nav-previous,
.sub-nav .nav-next {
  display: block;
  min-width: 0;
}

.sub-nav .nav-previous:only-child {
  grid-column: 1;
}

.sub-nav .nav-next:only-child {
  grid-column: 2;
}

.sub-nav .nav-next {
  text-align: right;
}

.sub-nav a {
  display: block;
  max-width: 100%;
  color: var(--text);
  transition: color 0.2s ease;
}

.sub-nav a:hover {
  color: var(--marine-800);
}

.sub-nav__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-mid);
}

.sub-nav__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.sub-back-wrap {
  max-width: var(--sub-content);
  margin: 40px auto 0;
  text-align: center;
}

.sub-back {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--marine-800);
  border-bottom: 1px solid var(--marine-400);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sub-back:hover {
  color: var(--marine-700);
  border-color: var(--marine-700);
}

.sub-page {
  padding-top: 96px;
  min-height: calc(100vh - 72px);
}

.sub-page__header {
  margin-top: 24px;
  margin-bottom: 40px;
}

.sub-page .breadcrumb {
  margin-bottom: 8px;
}

.sub-empty {
  padding: 48px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.sub-pagination {
  margin-top: 48px;
}

/* Pagination */
.hh-pagination {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hh-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hh-pagination .page-numbers li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hh-pagination .page-numbers a,
.hh-pagination .page-numbers span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hh-pagination .page-numbers a:hover {
  color: var(--marine-800);
  border-bottom-color: var(--marine-400);
}

.hh-pagination .page-numbers .current {
  color: var(--marine-800);
  font-weight: 600;
  border-bottom-color: var(--marine-800);
}

.hh-pagination .page-numbers .prev,
.hh-pagination .page-numbers .next {
  min-width: auto;
  padding: 0 18px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text);
  border-bottom: 1px solid var(--marine-400);
}

.hh-pagination .page-numbers .prev:hover,
.hh-pagination .page-numbers .next:hover {
  color: var(--marine-800);
  border-bottom-color: var(--marine-800);
}

.hh-pagination .page-numbers .dots {
  min-width: auto;
  padding: 0 6px;
  color: var(--text-mid);
  border-bottom-color: transparent;
}

@media (max-width: 600px) {
  .hh-pagination .page-numbers .prev,
  .hh-pagination .page-numbers .next {
    padding: 0 12px;
  }

  .hh-pagination .page-numbers a,
  .hh-pagination .page-numbers span.page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
  }
}

/* Legacy WP pagination wrapper */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 60px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--marine-800);
  border-color: var(--marine-800);
  color: var(--white);
}

/* Search results (legacy card layout) */
.post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s ease;
}

.post-card:first-child { border-top: 1px solid var(--border); }

.post-card:hover { opacity: 0.85; }

.post-card__thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--marine-50);
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__meta {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.post-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}

.post-card__title a {
  color: inherit;
}

.post-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.sub-comments {
  max-width: var(--sub-content);
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.breadcrumb a {
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 0.75;
}

.breadcrumb__sep {
  margin: 0 0.35em;
}

.breadcrumb--light {
  color: rgba(255,255,255,0.88);
}

.breadcrumb--light a {
  color: rgba(255,255,255,0.95);
}

.breadcrumb--light .breadcrumb__current {
  color: rgba(255,255,255,0.78);
}

.breadcrumb--dark {
  color: var(--text-mid);
}

.breadcrumb--dark a {
  color: var(--marine-800);
}

.breadcrumb--dark .breadcrumb__current {
  color: var(--text);
  font-weight: 500;
}

/* Comments */
.comments-area {
  color: var(--text);
}

.comments-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.comment-list .comment {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-author .fn {
  font-style: normal;
  font-weight: 500;
  color: var(--text);
}

.comment-list time {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.comment-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.92rem;
}

.comment-form .submit {
  padding: 12px 32px;
  background: var(--marine-800);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.comment-form .submit:hover {
  background: var(--marine-700);
}

body.is-sub-page .site-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}

body.is-sub-page .header-logo a,
body.is-sub-page .header-nav a:not(.header-reserve-btn) {
  color: var(--text);
}

body.is-sub-page .header-nav a:not(.header-reserve-btn):hover {
  color: var(--marine-800);
  border-bottom-color: var(--marine-400);
}

body.is-sub-page .header-reserve-btn {
  background: var(--marine-800);
  border-color: var(--marine-800);
  color: var(--white);
}

body.is-sub-page .header-reserve-btn:hover {
  background: var(--marine-700);
  border-color: var(--marine-700);
}

body.is-sub-page .header-hamburger span {
  background: var(--text);
}

/* Search form */
.search-form {
  display: flex;
  border: 1px solid var(--border);
}

.search-form .search-field {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
}

.search-form .search-submit {
  padding: 10px 16px;
  background: var(--marine-800);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 0.2s ease;
}

.search-form .search-submit:hover { background: var(--marine-600); }

/* 404 */
.error-404-text {
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* Responsive: sub pages */
@media (max-width: 860px) {
  .sub-hero {
    padding: 96px 0 48px;
  }

  .sub-nav .nav-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sub-nav .nav-next,
  .sub-nav .nav-next:only-child {
    grid-column: 1;
    text-align: left;
  }

  .sub-nav .nav-previous:only-child {
    grid-column: 1;
  }

  .sub-page {
    padding-top: 88px;
  }
}

/* Responsive: legacy post-card (search) */
@media (max-width: 860px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card__thumb { aspect-ratio: 16 / 9; }
}

/* =====================================================
   SECTION HEADER — SP watermark icon
===================================================== */
@media (max-width: 768px) {
  .stay__header,
  .facilities__header,
  .nearby__header,
  .pricing__header,
  .access__header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: end;
  }

  .stay__header-text,
  .facilities__header-text,
  .nearby__header-text,
  .pricing__header-text,
  .access__header-text {
    display: contents;
  }

  .stay__header-text .section__title,
  .facilities__header-text .section__title,
  .nearby__header-text .section__title,
  .pricing__header-text .section__title,
  .access__header-text .section__title {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin-bottom: 0;
  }

  .stay__header-text .section__lead,
  .facilities__header-text .section__lead,
  .nearby__header-text .section__lead,
  .pricing__header-text .section__lead {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 16px;
  }

  .access__header-text .access__info {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 16px;
  }

  .stay__visual,
  .facilities__visual,
  .nearby__visual,
  .pricing__visual,
  .access__visual {
    position: static;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    width: clamp(72px, 22vw, 100px);
    margin: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
  }

  .stay__visual img,
  .facilities__visual img,
  .nearby__visual img,
  .pricing__visual img,
  .access__visual img {
    width: 100%;
    height: auto;
  }

  .experience-item--feature .experience-item__photo-mark {
    display: none;
  }

  .experience-item--feature .experience-item__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .experience-item--feature .experience-item__heading-text {
    grid-column: 1;
  }

  .experience-item--feature .experience-item__heading-mark {
    position: static;
    grid-column: 2;
    align-self: center;
    margin-left: 0;
    transform: none;
    width: clamp(72px, 22vw, 100px);
    filter: invert(1) brightness(0.55);
    opacity: 1;
  }
}

/* =====================================================
   シェアボタン
   ===================================================== */
.hh-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hh-share__label {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.hh-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hh-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hh-share__btn:hover,
.hh-share__btn:focus-visible {
  border-color: var(--marine-800);
  color: var(--marine-800);
}

.hh-share__btn--x:hover,
.hh-share__btn--x:focus-visible {
  background: #000;
  border-color: #000;
  color: #fff;
}

.hh-share__btn--facebook:hover,
.hh-share__btn--facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.hh-share__btn--line:hover,
.hh-share__btn--line:focus-visible {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.hh-share__btn--hatena:hover,
.hh-share__btn--hatena:focus-visible {
  background: #00a4de;
  border-color: #00a4de;
  color: #fff;
}

.hh-share__btn--pocket:hover,
.hh-share__btn--pocket:focus-visible {
  background: #ef4056;
  border-color: #ef4056;
  color: #fff;
}

.hh-share__copy-notice {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--marine-800);
}

@media (max-width: 640px) {
  .hh-share__list {
    gap: 8px;
  }

  .hh-share__btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }
}
