:root {
  --bg: #f7f3ec;
  --bg-alt: #ffffff;
  --bg-deep: #efe9de;
  --text: #2a2724;
  --text-sub: #6e6760;
  --text-mute: #9a9089;
  --line: #e2dacd;
  --accent: #6b7d4f;        /* muted sage */
  --accent-deep: #4d5b39;
  --accent-warm: #b88a4a;   /* warm gold accent */
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Cormorant Garamond", "Noto Serif JP", "Times New Roman", serif;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
h1, h2, h3, h4, p, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 88%);
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(247, 243, 236, 0);
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  width: min(1300px, 94%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 2px;
}
.logo-main {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
}
.logo-sub {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  font-style: italic;
}

.nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
  position: relative;
  transition: color .25s;
}
.nav a .en {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 500;
}
.nav a .ja {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.nav a:hover .en,
.nav a:hover .ja { color: var(--accent-deep); }
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s, left .3s;
}
.nav a:hover::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  width: 64px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--text);
}
.nav-toggle-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.nav-toggle-close { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-open { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-close { opacity: 1; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: var(--header-h) 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 30%, rgba(184, 138, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f3ec 0%, #f0ebe1 100%);
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}
.hero-shape-1 {
  width: 520px; height: 520px;
  right: -120px; top: 8%;
  background: radial-gradient(circle, #e8e0cc 0%, transparent 70%);
  opacity: .8;
}
.hero-shape-2 {
  width: 360px; height: 360px;
  left: -80px; bottom: 5%;
  background: radial-gradient(circle, #d9e0cb 0%, transparent 70%);
  opacity: .65;
}
.hero-shape-3 {
  width: 180px; height: 180px;
  right: 22%; bottom: 18%;
  background: radial-gradient(circle, #efe2c6 0%, transparent 70%);
  opacity: .7;
}
.hero-inner {
  width: min(1180px, 88%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.hero-en {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.32em;
  color: var(--accent-deep);
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 400;
}
.hero-en::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 16px;
}
.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 40px;
}
.hero-title span {
  display: block;
}
.hero-lead {
  font-size: 1rem;
  line-height: 2.1;
  color: var(--text-sub);
  letter-spacing: 0.1em;
}
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(60, 80, 100, 0.06);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hero-badge:hover {
  transform: translateY(-2px);
  border-color: #4a74a8;
  box-shadow: 0 14px 28px rgba(60, 80, 100, 0.12);
}
.hero-badge-carada:hover { border-color: #3c8e7c; }
.hero-badge-mark {
  font-family: var(--font-en);
  font-style: italic;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #fff;
  background: #4a74a8;
  padding: 4px 12px;
  border-radius: 999px;
}
.hero-badge-carada .hero-badge-mark { background: #3c8e7c; }
.hero-badge-text { font-weight: 500; }

/* ===== Reservation section ===== */
.reservation-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(40, 80, 70, 0.05);
}
.reservation-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  font-style: italic;
  color: #3c8e7c;
  margin-bottom: 22px;
}
.reservation-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #3c8e7c;
}
.reservation-headline {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text);
}
.reservation-text {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.reservation-text strong {
  color: #3c8e7c;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.reservation-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reservation-points li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.reservation-points li:last-child { border-bottom: 0; }
.reservation-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ecf5f1;
  color: #3c8e7c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-points h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--text);
}
.reservation-points p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.85;
}
.reservation-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  margin-top: 28px;
}

/* ===== Online section ===== */
.online-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 96px;
}
.online-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  font-style: italic;
  color: #4a74a8;
  margin-bottom: 24px;
}
.online-tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #4a74a8;
}
.online-headline {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--text);
}
.online-text {
  color: var(--text-sub);
  font-size: 0.96rem;
  margin-bottom: 18px;
}
.online-text strong {
  color: #4a74a8;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.online-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.online-points li {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.online-points li:nth-child(2n) { border-right: 0; }
.online-points li:nth-child(n+3) { border-bottom: 0; }
.online-point-num {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: #4a74a8;
  display: block;
  margin-bottom: 12px;
}
.online-points h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--text);
}
.online-points p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.85;
}

/* Online flow */
.online-flow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 56px 48px 48px;
}
.online-flow-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 40px;
  position: relative;
}
.online-flow-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #4a74a8;
  margin: 16px auto 0;
}
.online-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.online-steps li {
  position: relative;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.online-steps li:last-child { border-right: 0; }
.online-step-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  font-style: italic;
  color: #4a74a8;
  margin-bottom: 14px;
}
.online-step-name {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}
.online-step-desc {
  font-size: 0.83rem;
  color: var(--text-sub);
  line-height: 1.85;
}
.online-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  margin-top: 36px;
}

/* inline-link */
.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  color: var(--accent-deep);
  transition: color .25s;
}
.inline-link:hover { color: var(--accent); }

.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-mute);
}
.scroll-down-text {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-style: italic;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
}
.scroll-down-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--text-mute) 0%, var(--text-mute) 50%, transparent 50%);
  background-size: 1px 14px;
  position: relative;
  overflow: hidden;
}
.scroll-down-line::before {
  content: "";
  position: absolute;
  top: -30px; left: 0;
  width: 1px;
  height: 30px;
  background: var(--accent);
  animation: scrollLine 2.2s infinite ease-in-out;
}
@keyframes scrollLine {
  0% { top: -30px; }
  100% { top: 60px; }
}

/* ===== Section common ===== */
.section { padding: 140px 0; }
.section-about { background: var(--bg); }
.section-wellness { background: var(--bg-alt); }
.section-reservation { background: var(--bg); position: relative; overflow: hidden; }
.section-reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(60, 142, 124, 0.07), transparent 50%),
    radial-gradient(circle at 8% 90%, rgba(184, 138, 74, 0.05), transparent 50%);
  pointer-events: none;
}
.section-reservation > .container { position: relative; }
.section-online { background: var(--bg-alt); position: relative; overflow: hidden; }
.section-online::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 116, 168, 0.07), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(184, 138, 74, 0.06), transparent 50%);
  pointer-events: none;
}
.section-online > .container { position: relative; }
.section-services { background: var(--bg); }
.section-shop { background: var(--bg-alt); }
.section-contact { background: var(--bg-deep); }

.section-head {
  text-align: center;
  margin-bottom: 88px;
}
.section-en {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.section-ja {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--text-sub);
}

/* link-arrow style */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  color: var(--text);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--text);
  transition: gap .3s, color .3s, border-color .3s;
  margin-top: 12px;
}
.link-arrow::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform .3s;
}
.link-arrow:hover {
  color: var(--accent-deep);
  border-color: var(--accent-deep);
  gap: 22px;
}

/* ===== About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-layout-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.about-layout-single .about-headline { letter-spacing: 0.1em; }
.about-layout-single .about-text { text-align: left; }
.about-headline {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}
.about-text {
  color: var(--text-sub);
  font-size: 0.96rem;
  margin-bottom: 20px;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-visual-inner {
  position: absolute;
  inset: 0;
}
.about-photo {
  position: absolute;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(40, 40, 30, 0.14);
  background: var(--bg-deep);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-main { inset: 0 60px 80px 0; }
.about-photo-sub  { inset: auto 0 0 100px; width: calc(100% - 100px); aspect-ratio: 4 / 3; }

/* ===== Wellness ===== */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.wellness-item {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .3s;
}
.wellness-item:hover { background: #faf6ee; }
.wellness-num {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--accent-warm);
  font-style: italic;
  margin-bottom: 18px;
}
.wellness-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--text);
}
.wellness-text {
  font-size: 0.95rem;
  color: var(--text-sub);
}

/* ===== Services ===== */
.services-list {
  max-width: 880px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.services-list li {
  display: grid;
  grid-template-columns: 80px 220px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s;
}
.services-list li:hover { padding-left: 18px; }
.services-num {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-warm);
  letter-spacing: 0.2em;
}
.services-name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
}
.services-desc {
  color: var(--text-sub);
  font-size: 0.94rem;
}

/* ===== Shop ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 88px;
}
.shop-map {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.shop-map iframe { width: 100%; height: 100%; border: 0; }
.shop-info { padding-top: 8px; }
.shop-name {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.shop-dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 22px;
  column-gap: 24px;
  margin-bottom: 28px;
}
.shop-dl dt {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  font-weight: 500;
  padding-top: 4px;
}
.shop-dl dd {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.95;
}

.shop-hours-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

/* gallery strip */
.shop-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 72px;
}
.shop-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.shop-gallery figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-deep);
  box-shadow: 0 8px 18px rgba(40, 40, 30, 0.06);
  transition: transform .35s, box-shadow .35s;
}
.shop-gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(40, 40, 30, 0.12);
}
.shop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.shop-gallery figure:hover img { transform: scale(1.04); }

/* payment */
.shop-payment {
  margin: 64px auto 72px;
  max-width: 920px;
  padding: 48px 40px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.payment-lead {
  text-align: center;
  font-size: 0.94rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.payment-group-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.payment-tags li {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.payment-note {
  margin-top: 28px;
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  letter-spacing: 0.08em;
}
.hours-table {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}
.hours-table th,
.hours-table td {
  padding: 18px 8px;
  text-align: center;
  font-size: 0.92rem;
  border-right: 1px solid var(--line);
}
.hours-table th:last-child,
.hours-table td:last-child { border-right: 0; }
.hours-table thead th {
  background: var(--bg);
  color: var(--accent-deep);
  font-weight: 500;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--line);
}
.hours-table tbody td {
  color: var(--text-sub);
  letter-spacing: 0.06em;
  font-family: var(--font-en);
  font-size: 1rem;
}
.hours-table tbody td:last-child {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--accent-warm);
}

/* ===== Contact ===== */
.contact-lead {
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 2.2;
  margin-bottom: 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  max-width: 880px;
  margin-inline: auto;
  border: 1px solid var(--line);
}
.contact-block {
  background: #fff;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background .3s;
}
a.contact-block:hover { background: #faf6ee; }
.contact-label {
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--accent-deep);
  font-style: italic;
}
.contact-value {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 6px 0;
}
.contact-note {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

/* ===== Footer ===== */
.site-footer {
  background: #2a2724;
  color: #cdc4b8;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 80px 0 56px;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 6px;
}
.footer-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  color: #b8a98e;
  font-style: italic;
  margin-bottom: 22px;
}
.footer-address {
  font-size: 0.85rem;
  line-height: 2;
  opacity: 0.85;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-nav a {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: #cdc4b8;
  font-style: italic;
  transition: color .25s;
}
.footer-nav a:hover { color: #fff; }
.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}
.copyright small {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  opacity: 0.6;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-layout,
  .shop-layout,
  .online-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-visual { aspect-ratio: 4 / 3; max-width: 520px; margin-inline: auto; width: 100%; }
  .wellness-grid { grid-template-columns: 1fr; }
  .services-list li { grid-template-columns: 60px 1fr; }
  .services-list li .services-desc { grid-column: 1 / -1; padding-left: 60px; }
  .shop-gallery { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .shop-payment { padding: 36px 24px 28px; }
  .reservation-card { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
  .online-points { grid-template-columns: 1fr; }
  .online-points li { border-right: 0; }
  .online-points li:nth-child(n) { border-bottom: 1px solid var(--line); }
  .online-points li:last-child { border-bottom: 0; }
  .online-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .online-steps li { border-right: 1px solid var(--line); padding: 12px 16px; }
  .online-steps li:nth-child(2n) { border-right: 0; }
  .online-flow { padding: 40px 24px 32px; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s, opacity .35s;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 0 32px;
  }
  .nav li {
    border-bottom: 1px solid var(--line);
  }
  .nav a {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding: 22px 32px;
    width: 100%;
  }
  .nav a .ja { font-size: 0.7rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }

  .section { padding: 96px 0; }
  .section-head { margin-bottom: 56px; }
  .hero-en::before { width: 24px; margin-right: 10px; }
  .scroll-down { bottom: 24px; }

  .wellness-item { padding: 40px 28px; }
  .online-steps { grid-template-columns: 1fr; gap: 24px; }
  .online-steps li { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .online-steps li:last-child { border-bottom: 0; }
  .hero-badge { font-size: 0.78rem; padding: 10px 16px 10px 10px; }
  .shop-gallery { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 48px; }
  .payment-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-list li { padding: 24px 4px; }
  .services-list li .services-desc { padding-left: 0; }
  .shop-dl { grid-template-columns: 84px 1fr; row-gap: 18px; column-gap: 16px; }
  .hours-table th, .hours-table td { padding: 12px 4px; font-size: 0.78rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav ul { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 18px; }
}
