:root {
  --bg: #f8f6ef;
  --paper: #ffffff;
  --ink: #2d332b;
  --muted: #6f7668;
  --green: #526b3b;
  --green-dark: #334526;
  --line: #ded8c9;
  --accent: #a77d3a;
  --shadow: 0 18px 40px rgba(45, 51, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  line-height: 1.9;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 5vw;
  <! background: rgba(248, 246, 239, .92);
  backdrop-filter: blur(14px); >
  border-bottom: 1px solid rgba(222, 216, 201, .8);


background: rgba(255,255,255,0.92);
backdrop-filter: blur(8px);

}
.brand img { width: 190px; }
.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  color: var(--muted);
}
.header-cta {
  padding: 9px 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero picture img { object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.22) 58%, rgba(0,0,0,.05));
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 90vw);
  padding: 0 0 10vh 5vw;
  color: #fff;
}
.label {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero .label { color: #d6b16a; }
h1, h2, h3 { line-height: 1.45; font-weight: 600; margin: 0; }
h1 { font-size: clamp(34px, 5vw, 64px); letter-spacing: .05em; }
h2 { font-size: clamp(25px, 3vw, 40px); letter-spacing: .04em; }
h3 { font-size: 20px; }
.hero-copy p:not(.label) { max-width: 640px; font-size: 17px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
}
.primary { color: #fff; background: var(--green); }
.secondary { color: var(--green-dark); background: rgba(255,255,255,.9); border: 1px solid var(--line); }
.full { width: 100%; }

.section { padding: 88px 5vw; }
.section-inner { width: min(1120px, 100%); margin: 0 auto; }
.muted { background: #ede8dc; }
.lead { max-width: 820px; color: var(--muted); }
.intro-grid, .access-grid, .flow-grid, .form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: start;
}
.intro-box, .flow-box, .form-side, .single-use {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.intro-box p { margin: 0; padding: 10px 0; border-bottom: 1px solid var(--line); }
.intro-box p:last-child { border-bottom: 0; }

.cards { display: grid; gap: 28px; margin-top: 34px; }
.three { grid-template-columns: repeat(3, 1fr); }
.plan-cards { grid-template-columns: repeat(3, 1fr); }
.card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 24px; }
.plan-type {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 12px;
  color: var(--green-dark);
  background: #f2efe4;
  border-radius: 999px;
  font-size: 13px;
}
.price { color: var(--green-dark); font-weight: 600; }
.tags { color: var(--muted); font-size: 14px; }
.note { margin-top: 18px; color: var(--muted); font-size: 14px; }
.spec-list { margin: 18px 0 0; font-size: 14px; }
.spec-list div { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; color: var(--ink); }
.small-card { grid-column: span 1; }
.day-card h3 { min-height: 88px; }
.single-use {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}
.facility-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.facility-item img { width: 180px; aspect-ratio: 4 / 3; object-fit: cover; }
.facility-item p { margin: 8px 0 0; }

.flow-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding-left: 24px;
}
.contact-actions {
  display: grid;
  gap: 12px;
}
.phone-note {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--green-dark);
  background: #f2efe4;
  border: 1px solid var(--line);
}
.phone-note span {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.phone-note strong {
  font-size: 18px;
  font-weight: 600;
}
.detail-list { margin: 22px 0 0; }
.detail-list div { padding: 15px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--green-dark); font-weight: 600; }
dd { margin: 4px 0 0; color: var(--muted); }
.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; display: block; }
.access-buttons { margin-top: 26px; }

.page-hero {
  padding: 84px 5vw 40px;
  background: #ede8dc;
}
.page-hero h1 { color: var(--green-dark); }
.page-hero p:not(.label) { max-width: 760px; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}
.wide, .form-note, .form-button { grid-column: 1 / -1; }
.form-note { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.form-button { width: min(320px, 100%); }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: var(--bg);
}
.thanks-box {
  width: min(640px, 100%);
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.footer {
  padding: 34px 5vw;
  color: #fff;
  background: var(--green-dark);
  text-align: center;
  font-size: 14px;
}
.footer p { margin: 4px 0; }

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

@media (max-width: 920px) {
  .nav { display: none; }
  .three, .facility-grid, .intro-grid, .access-grid, .flow-grid, .form-layout { grid-template-columns: 1fr; }
  .facility-item { grid-template-columns: 150px 1fr; }
  .facility-item img { width: 150px; }
  .single-use { align-items: stretch; flex-direction: column; }
}

@media (max-width: 680px) {
  .header { padding: 12px 18px; }
  .brand img { width: 150px; }
  .header-cta { margin-left: auto; }
  .hero { min-height: 72vh; }
  .hero-copy { padding: 0 20px 58px; }
  .section { padding: 62px 20px; }
  .button { width: 100%; }
  .plan-cards { grid-template-columns: 1fr; }
  .facility-item { grid-template-columns: 1fr; }
  .facility-item img { width: 100%; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
}


/* motion */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.button, .header-cta, .nav a, .footer a {
  transition: transform .24s ease, opacity .24s ease, background-color .24s ease, border-color .24s ease;
}
.button:hover, .header-cta:hover {
  transform: translateY(-2px);
}
.nav a:hover, .footer a:hover {
  opacity: .72;
}
.card, .facility-item, .flow-box, .intro-box, .single-use {
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover, .facility-item:hover, .flow-box:hover, .intro-box:hover, .single-use:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(45, 51, 43, .16);
}
.footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-enabled .reveal, .button, .header-cta, .nav a, .footer a, .card, .facility-item, .flow-box, .intro-box, .single-use {
    transition: none;
    transform: none;
  }
  .js-enabled .reveal { opacity: 1; }
}
