:root {
  /* kakutei-4: dark / large-photo / serif theme */
  --cream: #ede7d8;
  --paper: #1c1f1c;            /* base section bg (was #f7f1e6 cream) */
  --paper-2: #15171410;        /* subtle inner overlay on photos */
  --ink: #ede7d8;              /* primary text on dark */
  --ink-soft: #d8cfba;         /* body text */
  --muted: #9a9485;
  --line: rgba(237, 231, 216, 0.18);
  --frame: rgba(237, 231, 216, 0.22);
  --forest: #102820;
  --forest-2: #17342b;
  --mist: #d8d0bf;
  --gold: #c4a878;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  --font: "Noto Serif JP", -apple-system, BlinkMacSystemFont, "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  --font-serif: "Cinzel", "Noto Serif JP", serif;
  --font-hand: "Klee One", "Noto Serif JP", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0d0f0c;
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0.01em;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.phone {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #fff;
  background: rgba(13, 15, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 231, 216, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-100%);
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.topbar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.brand {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

/* hamburger menu button (kakutei-4) */
.menu-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-btn::before,
.menu-btn::after,
.menu-btn span {
  content: "";
  display: block;
  width: 22px;
  height: 1.4px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* RESERVE outlined pill (kakutei-4) */
.reserve-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.12);
}

.top-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 76px 32px 48px;
  background: linear-gradient(180deg, rgba(7, 15, 12, 0.97), rgba(13, 15, 12, 0.99));
  color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(8px);
}

.menu-panel[hidden] {
  display: none;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 380px;
  margin-inline: auto;
}

.menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  color: #fff;
  text-decoration: none;
}

.menu-num {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.menu-en {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.menu-ja {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.icon-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.icon-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-slideshow,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #223126;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: brightness(0.72) saturate(0.9) contrast(1.08);
  opacity: 0;
  animation: hero-fade 30s linear infinite;
  will-change: opacity;
}

@keyframes hero-fade {
  0%     { opacity: 0; }
  3.33%  { opacity: 1; }
  16.67% { opacity: 1; }
  20%    { opacity: 0; }
  100%   { opacity: 0; }
}

.hero-bg-1 { background-image: url("./images/hero-fv-1.jpg"); opacity: 1; animation-delay: -1s; }
.hero-bg-2 { background-image: url("./images/hero-fv-2.jpg"); animation-delay: 4s;  }
.hero-bg-3 { background-image: url("./images/hero-fv-3.jpg"); animation-delay: 9s;  }
.hero-bg-4 { background-image: url("./images/hero-fv-4.jpg"); animation-delay: 14s; }
.hero-bg-5 { background-image: url("./images/hero-fv-5.jpg"); animation-delay: 19s; }
.hero-bg-6 { background-image: url("./images/hero-fv-6.jpg"); animation-delay: 24s; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; opacity: 0; }
  .hero-bg-1 { opacity: 1; }
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.0) 28%, rgba(0, 0, 0, 0.34) 70%, rgba(13, 15, 12, 0.85) 100%),
    radial-gradient(90% 60% at 60% 38%, rgba(255, 255, 255, 0.06), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 34px 120px;
  text-align: center;
  align-self: end;
}

.hero-logo {
  width: 88px;
  height: auto;
  margin: 0 auto 14px;
  opacity: 0.96;
  filter: invert(1) brightness(1.85) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 40px;
  padding: 12px 8px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #f7f1e3;
  background: none;
  border: 0;
  border-top: 1px solid rgba(244, 238, 222, 0.75);
  border-bottom: 1px solid rgba(244, 238, 222, 0.75);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.5);
}

.hero-kicker::before,
.hero-kicker::after {
  display: none;
}

.hero h1,
.section h2,
.footer .label {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.55;
  font-weight: 400;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 2.1;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.water-card {
  width: 100%;
  margin: 44px auto 0;
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(28, 68, 70, 0.72), rgba(255, 255, 255, 0.08)),
    url("./images/water-temp-texture.png") center / cover no-repeat;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  text-align: left;
  backdrop-filter: blur(10px);
}

.water-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.water-head h2 {
  font-size: 18px;
  white-space: nowrap;
}

.water-head span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #223126;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.water-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 14px 0 10px;
}

.water-card dl > div {
  text-align: center;
}

.water-card dl > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.water-card dt {
  font-size: 12px;
  opacity: 0.78;
}

.water-card dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.water-card p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.6;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.scroll-cue svg {
  display: none;
}

.section {
  padding: 56px 28px 56px;
}

.paper {
  background:
    linear-gradient(180deg, rgba(28, 31, 28, 0.0), rgba(11, 13, 10, 0.5)),
    var(--paper);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--ink);
}

.section-head::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.num {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.16em;
  order: 2;
}

.label {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  order: 1;
}

.section h2 {
  font-size: 28px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
}

.section p {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.overview-section {
  padding-top: 0;
}

.overview-hero {
  position: relative;
  margin: 0 -28px 40px;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #102018;
}

.overview-hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("./images/overview-hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: brightness(0.88) saturate(0.95) contrast(1.05);
}

.overview-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.0) 24%,
      rgba(7, 15, 12, 0.55) 36%,
      rgba(7, 15, 12, 0.55) 58%,
      rgba(0, 0, 0, 0.0) 72%,
      rgba(0, 0, 0, 0.0) 100%);
}

.overview-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px 22vh;
  text-align: left;
}

.overview-hero-content .section-head {
  margin-bottom: 22px;
}

.section-head.light .num,
.section-head.light .label {
  color: rgba(255, 255, 255, 0.92);
}

.section-head.light::before {
  background: rgba(255, 255, 255, 0.55);
}

.overview-hero-content h2 {
  font-size: 28px;
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.overview-hero-content p {
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.wide-photo,
.commit-photo,
.facility-card,
.season,
.reel {
  background-color: #2d3b31;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.wide-photo {
  height: 280px;
  margin: 30px -28px 24px;
  border-radius: 0;
  box-shadow: var(--shadow);
  position: relative;
}

.wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(13, 15, 12, 0.65) 100%);
  pointer-events: none;
}

.river { background-image: url("./images/hero-river.jpg"); }
.sauna { background-image: url("./images/sauna-interior.jpg"); }
.water { background-image: url("./images/water-bath-1.jpg"); }
.water-2 { background-image: url("./images/water-bath-2.jpg"); }
.water-3 { background-image: url("./images/water-bath-3.jpg"); }
.water-4 { background-image: url("./images/water-bath-4.jpg"); }
.chair { background-image: url("./images/rest/view-1.jpg"); }
.wood { background-image: url("./images/handmade.jpg"); }
/* その他の楽しみカードのみ SUP（漕いでいる）写真に。リールの .wood は handmade のまま */
.facility-card.wood { background-image: url("./images/sup-2.jpg"); }
.sauna1-1 { background-image: url("./images/sauna1-1.jpg"); }
.sauna1-2 { background-image: url("./images/sauna1-2.jpg"); }
.sauna1-3 { background-image: url("./images/sauna1-3.jpg"); }
.sauna1-4 { background-image: url("./images/sauna1-4.jpg"); }
.sauna1-5 { background-image: url("./images/sauna1-5.jpg"); }
.sauna2-1 { background-image: url("./images/sauna2-1.jpg"); }
.sauna2-2 { background-image: url("./images/sauna2-2.jpg"); }
.sauna2-3 { background-image: url("./images/sauna2-3.jpg"); }
.sauna2-4 { background-image: url("./images/sauna2-4.jpg"); }
.sauna2-5 { background-image: url("./images/sauna2-5.jpg"); }
.sauna2-6 { background-image: url("./images/sauna2-6.jpg"); }
.river-1 { background-image: url("./images/river-1.jpg"); }
.river-2 { background-image: url("./images/river-2.jpg"); }
.river-3 { background-image: url("./images/river-3.jpg"); }
.river-4 { background-image: url("./images/river-4.jpg"); }
.river-5 { background-image: url("./images/river-5.jpg"); }
.river-6 { background-image: url("./images/river-6.jpg"); }
.river-7 { background-image: url("./images/river-7.jpg"); }
.reception-exterior { background-image: url("./images/reception-exterior.jpg"); }
.winter-1 { background-image: url("./images/winter-1.jpg"); }
.winter-2 { background-image: url("./images/winter-2.jpg"); }
.winter-3 { background-image: url("./images/winter-3.jpg"); }
.sup-1 { background-image: url("./images/sup-1.jpg"); }
.sup-2 { background-image: url("./images/sup-2.jpg"); }
.sup-3 { background-image: url("./images/sup-3.jpg"); }
.sup-4 { background-image: url("./images/sup-4.jpg"); }
.dokan-1 { background-image: url("./images/dokan-1.jpg"); }
.dokan-2 { background-image: url("./images/dokan-2.jpg"); }
.bbq-1 { background-image: url("./images/bbq-1.jpg"); }
.bbq-2 { background-image: url("./images/bbq-2.jpg"); }

.winter-gallery {
  display: flex;
  gap: 12px;
  margin: 26px -28px 18px;
  padding: 0 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.winter-gallery::-webkit-scrollbar { display: none; }
.winter-photo {
  flex: 0 0 84%;
  height: 240px;
  margin: 0;
  border-radius: 8px;
  background-color: #2d3b31;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}
.winter-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 20px 0 0;
}
.winter-dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(237, 231, 216, 0.18);
  border-radius: 999px;
  color: rgba(237, 231, 216, 0.32);
  cursor: pointer;
  transition: color 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}
.winter-dot svg {
  width: 20px;
  height: 20px;
}
.winter-dot.is-active {
  color: var(--gold);
  border-color: rgba(196, 168, 120, 0.7);
  background: rgba(196, 168, 120, 0.08);
  transform: scale(1.08);
}
.winter-dot:hover:not(.is-active) {
  color: rgba(237, 231, 216, 0.6);
  border-color: rgba(237, 231, 216, 0.3);
}
.spring,
.summer { background-image: url("./images/hero-river.jpg"); }
.autumn,
.winter { background-image: url("./images/forest-bg.jpg"); }

.info-list {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt,
.tag-list dt,
.policy dt {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.info-list dt svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-list dd,
.tag-list dd,
.policy dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.facility-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.facility-card {
  position: relative;
  min-height: 178px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 24px;
  border: 1px solid var(--frame);
  border-radius: 4px;
  color: #fff;
  box-shadow: var(--shadow);
}

.facility-card::before,
.season::before,
.reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.78) 100%);
}

.facility-card span,
.facility-card b,
.season h3,
.season p,
.reel span,
.reel small {
  position: relative;
  z-index: 1;
}

.facility-card strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.facility-card small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
}

.facility-card strong .card-note {
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.82;
  vertical-align: middle;
}

.facility-card b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.facility-card b i {
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.timeline {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.step {
  display: grid;
  grid-template-columns: 84px 30px 1fr;
  gap: 12px;
  min-height: 76px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(32, 35, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.step i {
  height: 62px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.step span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #3d554a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.set-table {
  width: 100%;
  margin: 18px 0 18px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

.set-table th,
.set-table td {
  padding: 10px 12px;
  border: 1px solid rgba(32, 35, 31, 0.12);
  text-align: left;
}

.set-table th {
  width: 96px;
  color: var(--forest);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.experience-card {
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 14px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #2d3b31;
  background-position: center;
  background-size: cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72)),
    radial-gradient(120% 82% at 50% 0%, rgba(255, 255, 255, 0.16), transparent 52%);
}

.experience-card span,
.experience-card small {
  position: relative;
  z-index: 1;
}

.experience-card span {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.experience-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.5;
}

.set-examples {
  margin-top: 30px;
}

.set-examples h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.set-examples dl {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(237, 231, 216, 0.04);
}

.set-examples div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.set-examples div:last-child {
  border-bottom: 0;
}

.set-examples dt {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.set-examples dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

.closing-message {
  padding: 88px 28px 108px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 9, 7, 0.30), rgba(0, 0, 0, 0.55)),
    var(--forest-2);
  color: var(--ink);
}

.closing-message p {
  margin: 0;
  font-family: var(--font);
  font-size: 22px;
  line-height: 2.2;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--ink);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.dark-section,
.reservation,
.footer {
  background:
    linear-gradient(180deg, rgba(7, 9, 7, 0.55), rgba(0, 0, 0, 0.75)),
    var(--forest);
  color: var(--ink);
}

.dark-section .section-head,
.reservation .section-head,
.footer .section-head,
.dark-section h2,
.reservation h2,
.footer .label {
  color: var(--ink);
}

.dark-section p,
.reservation p {
  color: var(--ink-soft);
}

.commit-photo {
  height: 360px;
  margin: 36px -28px 0;
  box-shadow: inset 0 90px 80px rgba(0, 0, 0, 0.5);
}

.mini-block {
  margin-top: 30px;
}

.mini-block h3,
.hours h3,
.policy h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.tag-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

/* ============================================
   Amenity list — 3カテゴリ分離 + chip表示
   ============================================ */
.amenity-list {
  display: grid;
  gap: 16px;
  margin: 14px 0 0;
}
.amenity-row {
  display: grid;
  gap: 9px;
}
.amenity-row dt {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.amenity-row[data-amenity="none"] dt {
  color: var(--muted);
}
.amenity-row dd {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.amenity-row dd span {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border: 1px solid rgba(196, 168, 120, 0.32);
  border-radius: 999px;
  background: rgba(196, 168, 120, 0.06);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.amenity-row[data-amenity="none"] dd span {
  border-style: dashed;
  border-color: rgba(237, 231, 216, 0.20);
  background: transparent;
  color: var(--muted);
}

/* ============================================
   Hours table — 夏冬 × 3部 の比較表
   ============================================ */
.hours-table {
  width: 100%;
  margin: 18px 0 0;
  border-collapse: collapse;
  font-family: var(--font);
}
.hours-table thead th {
  padding: 0 8px 12px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  border-bottom: 1px solid rgba(196, 168, 120, 0.4);
}
.hours-table thead th:first-child {
  border-bottom: 0;
}
.hours-table thead th small {
  display: block;
  margin-top: 3px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hours-table tbody th {
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-align: left;
  border-bottom: 1px solid var(--frame);
  width: 60px;
}
.hours-table tbody td {
  padding: 12px 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: center;
  border-bottom: 1px solid var(--frame);
}
.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: 0;
}

.hours-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.tag-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.tag-list dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
}

.tag-list .tag-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.point-box {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(196, 168, 120, 0.16), rgba(196, 168, 120, 0.04));
  color: var(--ink);
  box-shadow: var(--shadow);
}

.point-box strong {
  display: block;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.point-box p {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 2.0;
  text-align: center;
}

/* kakutei-4: ABOUT pill list — boxed accent (image reference) */
.about-card {
  margin-top: 30px;
  padding: 22px 24px 24px;
  border: 1px solid var(--frame);
  border-radius: 4px;
  background: rgba(13, 15, 12, 0.45);
  box-shadow: var(--shadow);
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.about-card-head::before {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
}

.about-card-head span {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.about-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.about-card li svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.voices-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
  padding: 20px 18px;
  border: 1px solid rgba(244, 239, 228, 0.4);
  border-radius: 8px;
  background: rgba(244, 239, 228, 0.06);
}

.voices-summary-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.voices-summary-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  color: #e6c75a;
}

.voices-summary-stars {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #e6c75a;
}

.voices-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(244, 239, 228, 0.78);
  font-size: 13px;
}

.voices-summary-meta span:first-child {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.voices {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 2px 2px 14px;
  border: 0;
  border-radius: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.voices::-webkit-scrollbar {
  height: 4px;
}

.voices::-webkit-scrollbar-track {
  background: rgba(244, 239, 228, 0.08);
  border-radius: 999px;
}

.voices::-webkit-scrollbar-thumb {
  background: rgba(244, 239, 228, 0.35);
  border-radius: 999px;
}

.voices blockquote {
  flex: 0 0 auto;
  width: 280px;
  max-height: 290px;
  margin: 0;
  padding: 18px 16px;
  border: 1px solid rgba(244, 239, 228, 0.38);
  border-radius: 10px;
  background: rgba(244, 239, 228, 0.05);
  color: #fff;
  overflow-y: auto;
  scroll-snap-align: start;
}

.voice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.voice-meta .voice-author {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
}

.voice-meta .voice-stars {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #e6c75a;
}

.voice-meta .voice-date {
  font-size: 11px;
  color: rgba(244, 239, 228, 0.55);
  letter-spacing: 0.04em;
}

.voices blockquote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(244, 239, 228, 0.92);
}

.voices-cta {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.voices-cta:hover {
  background: var(--ink);
  color: var(--forest);
}

.voices-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note,
.caption {
  font-size: 11px !important;
  letter-spacing: 0.06em;
  color: rgba(237, 231, 216, 0.5) !important;
}

.season-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.season {
  position: relative;
  min-height: 86px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  box-shadow: var(--shadow);
}

.season h3 {
  margin: 0;
  font-size: 21px;
}

.season p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.compact {
  padding-top: 28px;
}

.owner-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--frame);
  border-radius: 4px;
  background: rgba(237, 231, 216, 0.04);
}

.owner-profile-ending {
  margin-top: 36px;
}

.owner-avatar {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: #1d2620;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.owner-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;  /* focus on the face (upper-right area of source) */
  transform: scale(2.2);      /* 引き写真のため顔をアップに */
  transform-origin: 68% 20%;  /* 顔を中央やや上へ・頭上の余白を詰める基点 */
}

.owner-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  font-weight: 500;
}

.owner-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.owner-story {
  margin-top: 22px;
}

.owner-story p {
  margin-top: 16px;
  letter-spacing: 0.04em;
  line-height: 2.1;
}

.owner-story .owner-lead {
  margin-top: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================
   STORY (#owner) — design polish (CSS only)
   ============================================ */
#owner h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
#owner h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-top: 20px;
}

.owner-story {
  margin-top: 30px;
}
.owner-story .owner-lead {
  margin: 18px 0 34px;
  padding: 0;
  font-family: var(--font-hand);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  line-break: strict;
  word-break: keep-all;
}
.owner-story .owner-lead + p {
  margin-top: 30px;
}
.owner-story p {
  margin-top: 22px;
  line-height: 2.15;
  letter-spacing: 0.02em;
  text-wrap: pretty;
  line-break: strict;
  word-break: normal;
}

.owner-profile-ending {
  margin-top: 40px;
  padding: 0;
  gap: 20px;
  justify-content: center;
  border: 0;
  background: none;
}
.owner-profile-ending .owner-avatar {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 5px var(--paper),
    0 0 0 6px rgba(196, 168, 120, 0.4),
    0 16px 32px rgba(0, 0, 0, 0.55);
}
.owner-profile-ending .owner-name {
  font-size: 15px;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.owner-profile-ending .owner-note {
  margin-top: 10px;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.05em;
}

.tight {
  margin-top: 18px;
}

.map-embed {
  display: block;
  width: 100%;
  height: 260px;
  margin-top: 28px;
  border: 1px solid var(--frame);
  border-radius: 4px;
  background: #14171a;
  box-shadow: var(--shadow);
  filter: invert(0.92) hue-rotate(180deg);
}

.map-link {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.map-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.reservation .dm-box {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(244, 239, 228, 0.54);
  border-radius: 8px;
}

.reservation .dm-box p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.copy-btn,
.instagram-btn {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.instagram-btn {
  background: var(--ink);
  color: var(--forest);
}

.copy-btn svg,
.instagram-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.copy-btn.copied {
  background: rgba(196, 168, 120, 0.18);
  color: var(--gold);
  border-color: var(--gold);
}

/* DM例コピー時に出る極小トースト */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  z-index: 200;
  padding: 6px 14px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--forest);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hours {
  margin-top: 20px;
}

.hours h3,
.policy h3 {
  color: #f4efe4;
}

.hours p {
  margin-top: 4px;
  font-size: 13px;
}

.policy {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.policy dl {
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(237, 231, 216, 0.04);
}

.policy div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.policy div:last-child {
  border-bottom: 0;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.reel {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}

.reel::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
}

.reel span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 13px;
}

.reel small {
  font-size: 10px;
  line-height: 1.45;
}

.footer {
  padding: 36px 28px 110px;
  text-align: center;
}

.footer .section-head {
  justify-content: center;
}

.footer .section-head::before {
  display: none;
}

.footer p,
.footer a,
.footer small {
  color: rgba(237, 231, 216, 0.6);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 22px;
}

.detail-page {
  background: var(--paper);
}

.detail-topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  color: #fff;
}

.back-link,
.detail-instagram {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 18, 15, 0.36);
  backdrop-filter: blur(10px);
  font-size: 20px;
  font-weight: 800;
}

.detail-instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.detail-brand {
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.detail-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.detail-hero-photo,
.detail-hero-shade {
  position: absolute;
  inset: 0;
}

.detail-hero-photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.78) saturate(0.9) contrast(1.08);
  transform: scale(1.02);
}

.detail-hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 18, 15, 0.18), rgba(7, 18, 15, 0.3) 38%, rgba(7, 18, 15, 0.9)),
    radial-gradient(90% 72% at 50% 52%, transparent 26%, rgba(7, 18, 15, 0.44) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 104px 28px 38px;
}

.detail-hero-content p {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.detail-hero-content h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.detail-hero-content span {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.detail-body {
  padding-bottom: 44px;
}

.detail-points {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.detail-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--frame);
  border-radius: 4px;
  background: rgba(237, 231, 216, 0.04);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.detail-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.detail-gallery {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.detail-gallery figure {
  margin: 0;
}

.detail-photo {
  height: 210px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.detail-gallery figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

.detail-note {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: rgba(196, 168, 120, 0.06);
  color: var(--ink);
}

.detail-note h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
}

.detail-note p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 2.0;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.detail-actions a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}

.detail-actions a:first-child {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.detail-actions a:last-child {
  color: var(--forest);
  background: var(--ink);
}

@media (max-width: 360px) {
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-content {
    padding-left: 26px;
    padding-right: 26px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section h2 {
    font-size: 23px;
  }

}

/* Serif (Cinzel) for English / numeric labels */
.brand,
.detail-brand,
.num,
.label,
.scroll-cue span {
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
}

/* PC wide layout: phone stays centered 430px, side columns appear on >=1100px */
.layout-pc { display: contents; }
.side-col { display: none; }

@media (min-width: 1100px) {
  .layout-pc {
    display: grid;
    grid-template-columns: 1fr 430px 1fr;
    column-gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    min-height: 100vh;
  }
  .layout-pc .phone {
    margin: 0;
    width: 430px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.42);
  }
  .side-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 56px 32px;
    color: var(--mist);
  }
  .side-left {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .side-right {
    gap: 22px;
  }
  .side-logo {
    width: min(80%, 240px);
    height: auto;
    opacity: 0.92;
    filter: invert(1) brightness(1.75) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
  }
  .side-tagline {
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--mist);
    text-align: center;
  }
  .side-card {
    background: rgba(247, 241, 230, 0.06);
    border: 1px solid rgba(244, 239, 228, 0.18);
    border-radius: 12px;
    padding: 24px 22px;
  }
  .side-card h3 {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    font-size: 15px;
    letter-spacing: 0.16em;
    color: #f4efe4;
  }
  .side-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    background: #f5efe3;
    color: var(--forest);
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
  }
  .side-instagram svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7px;
  }
  .side-reserve h3 {
    position: relative;
    padding-bottom: 12px;
  }
  .side-reserve h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: var(--gold);
  }
  .side-hours {
    margin: 0 0 14px;
  }
  .side-hours .hours-season {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 239, 228, 0.12);
  }
  .side-hours .hours-season:first-child {
    border-top: 1px solid rgba(244, 239, 228, 0.12);
  }
  .side-hours dt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--gold);
  }
  .side-hours .season-ico {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .side-hours .season-range {
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
  }
  .side-hours dd {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .side-hours dd span {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: baseline;
    gap: 10px;
  }
  .side-hours dd b {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--gold);
  }
  .side-hours dd time {
    font-size: 13px;
    color: #f4efe4;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
  }
  .side-water h3 {
    display: inline-block;
    margin-bottom: 6px;
  }
  .side-water [data-water-updated] {
    display: inline-block;
    margin-left: 8px;
    background: rgba(244, 239, 228, 0.18);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    color: #f4efe4;
  }
  .side-water dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 16px 0 10px;
    text-align: center;
  }
  .side-water dl > div + div {
    border-left: 1px solid rgba(244, 239, 228, 0.18);
  }
  .side-water dt {
    font-size: 13px;
    color: var(--mist);
  }
  .side-water dd {
    margin: 8px 0 0;
    font-size: 24px;
    font-weight: 800;
    color: #f4efe4;
  }
  .side-water [data-water-source] {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
    color: var(--mist);
  }
}

/* ---- 5つのととのい場 (facility-detail.html?item=rest) ---- */
.detail-hero-photo.rest-hero {
  background-image: url("./images/rest/view-1.jpg");
}

.detail-gallery.rest-categories {
  gap: 32px;
}

.rest-category {
  display: block;
  padding-top: 24px;
  border-top: 1px solid var(--frame);
}

.rest-category:first-child {
  border-top: none;
  padding-top: 0;
}

.rest-category h4 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.rest-caption {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.rest-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rest-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ============================================
   FAQ — accordion (details/summary)
   ============================================ */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  border: 1px solid var(--frame);
  border-radius: 4px;
  background: rgba(237, 231, 216, 0.04);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  flex-shrink: 0;
  margin-top: -2px;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  margin-top: 2px;
}

.faq-item summary:hover {
  background: rgba(196, 168, 120, 0.06);
}

.faq-item p {
  margin: 0;
  padding: 4px 20px 20px;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ============================================
   Secondary pages (法務・詳細) — LP と同じ
   「左パネル｜.phone｜右パネル」構成に統一。
   .phone を流用してスマホ幅・ダーク card にする。
   ============================================ */

/* 法務ページのダーク・クローム */
.legal-page { color: var(--ink); background: var(--paper); }

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(13, 15, 12, 0.92);
  border-bottom: 1px solid var(--frame);
}
.legal-topbar a { color: var(--ink); text-decoration: none; }
.legal-brand {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.18em;
}
.legal-topbar .legal-ig svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
}

.legal-main { padding: 40px 24px 64px; }

.legal-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.legal-subtitle {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.legal-related {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--frame);
}
.legal-related .legal-related-label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.legal-related ul { margin: 0; padding: 0; list-style: none; line-height: 2.1; }
.legal-related a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }

.legal-footer {
  background: var(--forest);
  color: var(--ink-soft);
  padding: 36px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.legal-footer .legal-footer-brand {
  font-family: var(--font-serif);
  color: var(--ink);
  letter-spacing: 0.24em;
  font-size: 14px;
  margin: 0 0 10px;
}
.legal-footer a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 4px; }
