/* ── Variables ────────────────────────────────── */
:root {
  --font-body:    'Noto Sans JP', sans-serif;
  --font-label:   'Montserrat', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Playfair Display', serif;

  --color-brand:   #0ABAB5;
  --color-heading: #2d4a4a;
  --color-text:    #1a3333;
  --color-muted:   #6a8888;

  --footer-text: rgba(255,255,255,0.75);
}

/* ── Base ─────────────────────────────────────── */
html { scroll-behavior: auto; }
*, *::before, *::after { box-sizing: border-box; }
#page-bg {
  position: fixed; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
}
body {
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── Layout ───────────────────────────────────── */
.site-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px)  { .site-container { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) { .site-container { padding-left: 3rem; padding-right: 3rem; max-width: 1400px; } }

.content-narrow { max-width: 720px; margin: 0 auto; }
.content-medium { max-width: 860px; margin: 0 auto; }

/* ── Section ──────────────────────────────────── */
.section-pad     { padding: 5rem 0; }
@media (min-width: 768px) { .section-pad { padding-top: 8rem; padding-bottom: 8rem; } }
.section-bg      { background: #f8fefe; }
.section-header  { text-align: center; margin-bottom: 4rem; }
.section-header .label-mono { color: var(--color-heading); margin-bottom: 1rem; }
.section-heading { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--color-heading); margin-bottom: 1.5rem; }
#features .section-heading { font-size: clamp(1rem, 5.5vw, 3.5rem); }
.section-header .heading-display:not(.section-heading) { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--color-heading); margin-bottom: 1.5rem; }

/* ── Page hero ────────────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,50,50,0.6) 0%, rgba(10,30,30,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-hero-content .label-mono {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.page-hero-content .heading-display {
  font-size: clamp(2rem,6vw,3.5rem);
  color: white;
  margin: 0;
}
.page-hero-sub {
  margin: 1.1rem 0 0;
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ── Font helpers ─────────────────────────────── */
.font-cormorant { font-family: var(--font-display); }

/* ── Typography ───────────────────────────────── */
.heading-display {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.label-mono {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ── Menu / service cards ─────────────────────── */
.mm-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-heading);
  line-height: 1.3;
  margin: 0 0 0.6rem;
}
#mm-note { white-space: pre-line; margin: 0 0 1.75rem; }
.mm-duration-spacing { margin: 0 0 1.25rem; }
.mm-btn-float {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(10,186,181,0.92);
  backdrop-filter: blur(4px);
  color: white;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.mm-btn-float:hover { background: rgba(45,74,74,0.92); }
.svc-duration-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  background: rgba(10,186,181,0.75);
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}
.menu-duration {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-brand);
  background: rgba(10,186,181,0.08);
  border: 1px solid rgba(10,186,181,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin: 0 0 6px;
}

/* ── Button ───────────────────────────────────── */
.btn-reserve {
  display: block;
  padding: 0.8rem;
  text-align: center;
  background: var(--color-brand);
  color: white;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s;
}
.btn-reserve:hover { background: #089e9a; }

.btn-modern {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.875rem 2rem;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn-modern:hover { background: transparent !important; color: inherit !important; opacity: 0.75; }

/* ── Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-x-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-x-left.visible { opacity: 1; transform: translateX(0); }
.reveal-x-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-x-right.visible { opacity: 1; transform: translateX(0); }

.accent-line {
  height: 4px;
  background: var(--color-brand);
  width: 0;
  transition: width 0.8s ease;
  max-width: 96px;
  margin-left: auto;
  margin-right: auto;
}
.accent-line.animated { width: 96px; }

/* ── Decorative spin ──────────────────────────── */
@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }
.deco-spin-cw  { position: absolute; font-size: 3.75rem; opacity: 0.04; animation: spinCW  20s linear infinite; pointer-events: none; user-select: none; }
.deco-spin-ccw { position: absolute; font-size: 3.75rem; opacity: 0.04; animation: spinCCW 20s linear infinite; pointer-events: none; user-select: none; }
.deco-spin-tl { top: 2.5rem; left: 1.25rem; }
.deco-spin-tr { top: 2.5rem; right: 2rem; }
.deco-spin-bl { bottom: 2.5rem; left: 2rem; }
.deco-spin-br { bottom: 2.5rem; right: 1.25rem; }

/* ── Navbar ───────────────────────────────────── */
@keyframes slideDown { from { transform: translateY(-80px); } to { transform: translateY(0); } }

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  animation: slideDown 0.6s ease forwards;
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease, border-bottom 0.5s ease;
}
#nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; height: 4rem; }
@media (min-width: 768px) { #nav-inner { height: 5rem; } }

#logo-link { display: flex; flex-direction: column; line-height: 1; text-decoration: none; transition: opacity 0.6s ease; flex-shrink: 0; }
#logo-link:hover { opacity: 0.7; }
#logo-main { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.15em; color: white; transition: color 0.5s ease; }
#logo-sub { font-family: var(--font-label); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); transition: color 0.5s ease; }

#desktop-nav { display: none; align-items: center; gap: 1.5rem; flex-wrap: nowrap; flex-shrink: 0; }
@media (min-width: 900px) { #desktop-nav { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-link { position: relative; font-family: var(--font-label); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; transition: color 0.3s ease; text-decoration: none; padding: 0.25rem 0; white-space: nowrap; }
.nav-link .nav-ul { position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--color-brand); transition: width 0.4s ease; }
.nav-link:hover .nav-ul { width: 100%; }
.nav-link:hover { color: rgba(255,255,255,0.8) !important; }
header.scrolled .nav-link { color: #2d4a4a !important; }
header.scrolled .nav-link:hover { color: var(--color-brand) !important; }
header.scrolled .nav-link .nav-ul { background: var(--color-brand); }

#login-btn { display: none; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 0.5rem; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.3); font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
@media (min-width: 768px) { #login-btn { display: flex; } }
#login-btn:hover { background: rgba(255,255,255,0.25) !important; color: white !important; border-color: rgba(255,255,255,0.8) !important; }
header.scrolled #login-btn:hover { background: var(--color-brand) !important; color: white !important; border-color: var(--color-brand) !important; }

#menu-btn { display: block; position: relative; z-index: 61; padding: 0.5rem; background: none; border: none; cursor: pointer; color: white; line-height: 0; }
@media (min-width: 900px) { #menu-btn { display: none; } }

#icon-x { display: none; }

#mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2.5rem 2.5rem; overflow: hidden;
  background: linear-gradient(135deg, #e4f9f9 0%, #c8f0ef 60%, #dafafa 100%);
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem);
  opacity: 0; pointer-events: none;
  transition: clip-path 0.6s cubic-bezier(0.77,0,0.175,1), opacity 0.4s ease;
}
#mobile-menu.open { clip-path: circle(170% at calc(100% - 2.5rem) 2.5rem); opacity: 1; pointer-events: auto; }
body.menu-open #float-cta,
body.menu-open #back-to-top { display: none !important; }
#mobile-menu::before { content: ''; position: absolute; top: -30%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(10,186,181,0.08) 0%, transparent 70%); pointer-events: none; }
#mobile-menu::after { content: ''; position: absolute; bottom: -20%; left: -15%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(10,186,181,0.05) 0%, transparent 70%); pointer-events: none; }

#mobile-menu-nav { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
#mobile-menu-reserve { margin-bottom: 1.5rem; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.38s, transform 0.4s ease 0.38s; }
#mobile-menu-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(45,74,74,0.15); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s; }
#mobile-menu.open #mobile-menu-nav,
#mobile-menu.open #mobile-menu-reserve,
#mobile-menu.open #mobile-menu-bottom { opacity: 1; transform: translateY(0); }

.mobile-nav-link { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: #2d4a4a; letter-spacing: 0.05em; text-decoration: none; line-height: 1; position: relative; transition: color 0.3s ease, letter-spacing 0.4s ease; display: inline-block; }
.mobile-nav-link::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--color-brand); transition: width 0.4s ease; }
.mobile-nav-link:hover { color: var(--color-brand); letter-spacing: 0.1em; }
.mobile-nav-link:hover::after { width: 100%; }

.mobile-reserve-btn { display: block; text-align: center; font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 1.5rem; background: var(--color-brand); color: white; border-radius: 0.5rem; text-decoration: none; transition: opacity 0.2s; }
.mobile-reserve-btn:hover { opacity: 0.85; }

.mobile-sns-links { display: flex; gap: 0.75rem; }
.mobile-sns-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: 9999px; color: white; font-family: var(--font-label); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-decoration: none; transition: opacity 0.2s; }
.mobile-sns-btn:hover { opacity: 0.85; }
.mobile-sns-btn--instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.mobile-sns-btn--line { background: #06C755; }

.mobile-member-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #2d4a4a; background: rgba(255,255,255,0.5); border: 1px solid rgba(45,74,74,0.3); padding: 0.5rem 1rem; border-radius: 0.5rem; text-decoration: none; transition: all 0.3s ease; }
.mobile-member-btn:hover { background: var(--color-brand); color: white; border-color: var(--color-brand); }

/* ── Footer ──────────────────────────────────── */
.footer { background: #2d4a4a; }
.footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-brand { margin-bottom: 1.5rem; }
.footer-logo { font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--color-brand); letter-spacing: 0.15em; line-height: 1.1; margin: 0 0 0.25rem; text-decoration: none; transition: opacity 0.5s ease, color 0.5s ease; display: inline-block; }
.footer-logo:hover { opacity: 0.7; }
.footer-logo-sub { font-family: var(--font-label); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--footer-text); margin: 0 0 0.6rem; }
.footer-accent-line { width: 2rem; height: 1px; background: var(--color-brand); }
.footer-desc { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--footer-text); line-height: 1.8; margin: 0; }
.footer-nav-title { font-family: var(--font-label); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-brand); margin: 0 0 1.25rem; }
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav-link { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; position: relative; display: inline-block; }
.footer-nav-link:hover { color: var(--color-brand); }
.footer-nav-link .footer-ul { position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--color-brand); transition: width 0.5s ease; }
.footer-nav-link:hover .footer-ul { width: 100%; }
.footer-star { color: var(--color-brand); font-size: 0.65em; margin-right: 0.5rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; }
.footer-legal-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.footer-legal-links > span { white-space: nowrap; }
.footer-legal-link { font-family: var(--font-body); font-weight: 300; font-size: 0.75rem; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; position: relative; display: inline-block; }
.footer-legal-link:hover { color: var(--color-brand); }
.footer-legal-link .footer-ul { position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--color-brand); transition: width 0.5s ease; }
.footer-legal-link:hover .footer-ul { width: 100%; }
.footer-copyright { font-family: var(--font-label); font-weight: 300; font-size: 0.7rem; color: var(--footer-text); letter-spacing: 0.05em; margin: 0; }
.footer-social { display: flex; gap: 1.25rem; margin-top: 1.5rem; align-items: center; }
.footer-social-btn { display: flex; align-items: center; justify-content: center; color: var(--footer-text); text-decoration: none; transition: color 0.5s ease; }
.footer-social-btn:hover { color: var(--color-brand); }
.footer-social-btn svg { width: 20px; height: 20px; }

/* ── Floating buttons ────────────────────────── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: rgba(10,186,181,0.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,186,181,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  backdrop-filter: blur(4px);
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); }

#float-cta {
  position: fixed; bottom: 6rem; right: 1.5rem; z-index: 40;
  display: flex; align-items: center; gap: 0.6rem;
  border-radius: 99px; padding: 0.85rem 1.5rem;
  font-family: var(--font-label); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
}
#float-cta:hover { transform: translateY(-2px); }
#float-cta.show { opacity: 1; pointer-events: auto; }
#float-cta.login-style { background: var(--color-brand); color: #fff; box-shadow: 0 4px 24px rgba(10,186,181,0.4); }
#float-cta.login-style:hover { box-shadow: 0 8px 32px rgba(10,186,181,0.5); }
#float-cta.member-style { background: #fff; color: #374151; border: 1px solid #e0f0ef; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
#float-cta.member-style:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.16); }
.float-cta-avatar { width: 2rem; height: 2rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.float-cta-avatar-placeholder { width: 2rem; height: 2rem; border-radius: 50%; background: #e0f5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.float-cta-text { font-size: 0.75rem; line-height: 1.4; }
.float-cta-name { display: block; font-weight: 600; color: var(--color-brand); }
.float-cta-greeting { color: #9ca3af; }

/* ── Salon page ───────────────────────────────── */
.info-card { border-radius: 0.75rem; overflow: hidden; box-shadow: 0 4px 30px rgba(10,186,181,0.1); border: 1px solid #e0f0ef; }
.info-row { display: flex; align-items: stretch; border-bottom: 1px solid #e0f0ef; }
.info-row:last-child { border-bottom: none; }
.info-label { background: var(--color-heading); color: #81d8d0; font-family: var(--font-label); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 1.25rem; display: flex; align-items: center; min-width: 6rem; flex-shrink: 0; }
.info-value { padding: 1rem 1.25rem; display: flex; align-items: center; font-size: 0.95rem; color: var(--color-heading); line-height: 1.7; }
.info-value-sm { font-size: 0.9rem; color: #4a6a6a; }
.info-primary-value { font-weight: 600; font-size: 1.05rem; }
.info-hint { font-size: 0.82rem; color: var(--color-muted); margin-left: 0.5rem; }
.info-address { font-weight: 600; margin-bottom: 0.25rem; }
.info-sub { font-size: 0.88rem; color: #4a7a7a; }
.info-warn { font-size: 0.82rem; color: #c0392b; font-weight: 500; margin-top: 0.4rem; }
.img-frame { border-radius: 0.75rem; overflow: hidden; box-shadow: 0 8px 40px rgba(10,186,181,0.12); }
.img-frame img { width: 100%; display: block; object-fit: cover; }
#therapist-photo { width: 180px; height: 180px; float: right; margin: 0 0 1.5rem 2rem; overflow: hidden; flex-shrink: 0; }
#therapist-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (min-width: 640px) { #therapist-photo { width: 240px; height: 240px; } }
#therapist-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 40px rgba(10,186,181,0.12);
  border: 1px solid #e0f0ef;
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.therapist-role { font-family: var(--font-label); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-brand); margin: 0 0 0.75rem; }
.therapist-name-ja { font-family: var(--font-body); font-weight: 400; font-size: 1.7rem; letter-spacing: 0.1em; color: var(--color-heading); margin: 0 0 0.3rem; }
.therapist-name-en { font-family: var(--font-label); font-weight: 300; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--color-muted); margin: 0 0 1.5rem; }
.therapist-divider { width: 2.5rem; height: 2px; background: var(--color-brand); margin-bottom: 1.5rem; }
.therapist-career { font-family: var(--font-body); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.05em; color: var(--color-brand); margin: 0 0 0.75rem; }
.therapist-body { font-family: var(--font-body); font-weight: 300; font-size: 1rem; line-height: 2; color: #4a6a6a; margin: 0 0 1.25rem; }
.therapist-body strong { font-weight: 500; color: var(--color-heading); }
.therapist-closing { font-family: var(--font-body); font-weight: 500; font-size: 1rem; line-height: 1.9; color: var(--color-heading); margin: 0 0 1.5rem; }
.therapist-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; clear: both; }
.therapist-tag { display: inline-block; font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--color-heading); background: #e8f7f7; border-radius: 9999px; padding: 0.3rem 0.85rem; }

/* ── QA page ──────────────────────────────────── */
details.qa-item, div.qa-item { border: 1px solid #e0f0ef; border-radius: 0.5rem; margin-bottom: 0.75rem; overflow: hidden; background: white; box-shadow: 0 2px 12px rgba(10,186,181,0.05); transition: box-shadow 0.3s ease; }
details.qa-item:hover, div.qa-item:hover { box-shadow: 0 4px 20px rgba(10,186,181,0.12); }
details.qa-item[open], div.qa-item.open { border-color: var(--color-brand); }
summary.qa-question, button.qa-question { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.1rem 1.25rem; cursor: pointer; font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--color-heading); list-style: none; line-height: 1.6; }
button.qa-question { width: 100%; background: none; border: none; text-align: left; }
summary.qa-question::-webkit-details-marker { display: none; }
div.qa-item.open .qa-arrow { transform: rotate(90deg); }
.qa-q-badge { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 9999px; background: var(--color-brand); color: white; font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.qa-question-text { flex: 1; }
.qa-arrow { flex-shrink: 0; color: #7aadad; transition: transform 0.25s ease; margin-top: 3px; font-size: 1.1rem; }
details.qa-item[open] .qa-arrow { transform: rotate(90deg); }
.qa-answer { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem 1.25rem 1.25rem; border-top: 1px solid #e0f0ef; background: #f8fefe; }
.qa-a-label { flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 9999px; background: var(--color-heading); color: white; font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.qa-a-text { flex: 1; font-size: 1rem; color: var(--color-text); line-height: 1.9; }
.qa-answer-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease; }
.qa-answer-wrap.open { opacity: 1; }
.form-card { background: white; border-radius: 0.75rem; padding: 2rem; box-shadow: 0 8px 40px rgba(10,186,181,0.1); border: 1px solid #e0f0ef; }
.form-intro { font-weight: 300; font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1.5rem; text-align: center; }
.req { color: var(--color-heading); }
.section-header-desc { font-weight: 300; font-size: 0.95rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 1.5rem; }
@keyframes modalIn { from { transform: scale(.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Legal pages ──────────────────────────────── */
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--color-heading); border-left: 3px solid var(--color-brand); padding-left: 0.875rem; margin: 0 0 1rem; }
.legal-section p, .legal-section li { font-family: var(--font-body); font-weight: 300; font-size: 0.95rem; color: var(--color-text); line-height: 1.9; margin: 0 0 0.75rem; }
.legal-section ul { padding-left: 1.25rem; margin: 0 0 0.75rem; }
.legal-section li { margin: 0 0 0.4rem; }
.legal-updated { font-family: var(--font-label); font-size: 0.75rem; color: #9aacac; letter-spacing: 0.05em; margin-bottom: 2.5rem; }

/* ── Hero section ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20,50,50,0.65) 0%, rgba(10,30,30,0.45) 50%, rgba(30,60,50,0.35) 100%);
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
.hero-label { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.hero-heading {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: #81d8d0; }
.hero-divider {
  height: 1px;
  margin-bottom: 2rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.btn-hero-primary {
  color: white;
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.6s ease !important;
}
.btn-hero-primary:hover { background: rgba(255,255,255,0.9) !important; color: #0ABAB5 !important; border-color: rgba(255,255,255,0.9) !important; }
.btn-hero-secondary {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  background: transparent;
  transition: all 0.6s ease !important;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.9) !important; color: #2d4a4a !important; border-color: rgba(255,255,255,0.9) !important; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  animation: bounceY 1.5s ease-in-out infinite;
}
.hero-scroll-label { font-size: 0.55rem; color: rgba(255,255,255,0.5); }

/* ── Background utilities ──────────────────────── */
.bg-dark-teal  { background: rgba(45,74,74,0.82); }
.bg-light-teal { background: rgba(255,255,255,0.88); }
.bg-teal-mint  { background: rgba(180,235,235,0.5); }
.bg-dark-teal .label-mono      { color: rgba(255,255,255,0.6); }
.bg-dark-teal .heading-display { color: white; }
.bg-dark-teal .body-text       { color: rgba(255,255,255,0.75); }

/* ── Deco stars ────────────────────────────────── */
.deco-star { position: absolute; font-size: 3rem; opacity: 0.06; pointer-events: none; }
.deco-star-tr { top: 1.5rem; right: 2rem; animation: spinCW 20s linear infinite; }
.deco-star-bl { bottom: 1.5rem; left: 2rem; animation: spinCCW 20s linear infinite; }

/* ── Hero subtitle ─────────────────────────────── */
.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .hero-subtitle { font-size: 1.05rem; text-align: center; padding-left: 0; padding-right: 0; }
}


/* ── Service cards ─────────────────────────────── */
.svc-compact-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem; background: white; }
.svc-compact-actions { flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; }
@media (max-width: 499px) {
  .svc-compact-item { flex-wrap: wrap; padding: 1rem 1.25rem; }
  .svc-compact-actions { display: grid; grid-template-columns: 1fr auto 1fr; width: 100%; align-items: center; }
  .svc-compact-actions > button { grid-column: 2; justify-self: center; }
  .svc-compact-actions > a      { grid-column: 3; justify-self: end; }
}
.card-lift { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.card-lift:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,186,181,0.15) !important; }
.svc-img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-icon { transition: transform 0.3s ease; }
.svc-card:hover .svc-img  { transform: scale(1.05); }
.svc-card:hover .svc-icon { transform: scale(1.1); }

/* ── Feature rows ──────────────────────────────── */
#features, #mystory { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
.feat-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }
.feat-text { flex: 1; min-width: 0; }
.feat-text .body-text { margin: 0; }
.feat-num { color: var(--color-brand); margin-bottom: 0.75rem; }
.feat-title { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--color-heading); margin: 0 0 1rem; line-height: 1.35; }
.feat-row { display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 3.5rem; }
.feat-row:last-child { margin-bottom: 0; }
.feat-row.feat-reverse { flex-direction: row-reverse; }
.feat-img { flex: 0 0 320px; height: 240px; border-radius: 0.75rem; overflow: hidden; position: relative; background: #e0f0ef; }
.feat-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.92); transition: transform 0.6s ease; }
.feat-img:hover .feat-img-bg { transform: scale(1.06); }
@media (max-width: 768px) {
  .feat-row, .feat-row.feat-reverse { flex-direction: column; }
  .feat-img { flex: none; width: 100%; height: 200px; }
}

/* ── Blog grid ─────────────────────────────────── */
@media (min-width: 1024px) { .blog-span2 { grid-row: span 2; } }

/* ── Social button ─────────────────────────────── */
.social-btn { transition: background 0.3s ease; }
.social-btn:hover { background: rgba(255,255,255,0.1) !important; }

/* ── Keyframes ─────────────────────────────────── */
@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Thin scrollbar ────────────────────────────── */
.scrollbar-thin { scrollbar-width: thin; scrollbar-color: #c8dede transparent; }
.scrollbar-thin::-webkit-scrollbar { width: 4px; }
.scrollbar-thin::-webkit-scrollbar-track { background: transparent; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #c8dede; border-radius: 9999px; }
.scrollbar-thin::-webkit-scrollbar-thumb:hover { background: #7aadad; }

/* ── CTA Bar ──────────────────────────────────── */
.cta-bar { padding: 4rem 0; position: relative; overflow: hidden; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
.cta-heading { font-size: clamp(1rem, 5.5vw, 2.4rem); color: white; margin: 0 0 1rem; line-height: 1.3; }
.cta-body { font-weight: 300; font-size: 0.9rem; color: white; line-height: 1.9; margin: 0; }
.btn-cta { color: white; border-color: rgba(255,255,255,0.6); text-decoration: none; }
.btn-cta:hover { background: rgba(255,255,255,0.2) !important; opacity: 1 !important; }

/* ── Owner Message section ────────────────────── */
#owner {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-bg-img { position: absolute; inset: 0; z-index: -2; }
.section-bg-img > img { width: 100%; height: 100%; object-fit: cover; }
.section-bg-deco { position: absolute; inset: 0; z-index: 0; opacity: 0.05; }
.section-bg-deco > img { width: 100%; height: 100%; object-fit: cover; }
.owner-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(255,255,255,0.93), rgba(245,250,250,0.95));
}
.owner-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.owner-label { color: var(--color-heading); margin-bottom: 2rem; }
.owner-block { margin-bottom: 3rem; }
.owner-block .accent-line { margin-bottom: 2rem; }
.owner-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.owner-heading em { font-style: italic; color: var(--color-brand); }
.owner-body { font-size: 1.15rem; line-height: 2; color: var(--color-heading); max-width: 700px; margin: 0 auto; }
.highlight { font-weight: 500; color: var(--color-heading); background: linear-gradient(transparent 55%, rgba(10,186,181,0.25) 55%); }
.owner-byline { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding-top: 1rem; }
.owner-name-group { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.owner-name-brand { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; letter-spacing: 0.15em; color: var(--color-brand); line-height: 1.2; margin: 0; }
.owner-name-title { font-weight: 300; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--color-muted); line-height: 1.4; margin: 0; }
.owner-divider { width: 2rem; height: 1px; background: var(--color-brand); margin: 0.2rem 0; }
.owner-name { font-weight: 400; font-size: 1rem; letter-spacing: 0.12em; color: var(--color-heading); }

/* ── Contact section ─────────────────────────── */
#contact { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; position: relative; overflow: hidden; }
#contact .accent-line { margin-bottom: 1.5rem; }
#contact .section-header .heading-display { margin-bottom: 1rem; }
.contact-intro { max-width: 600px; margin: 0 auto; font-weight: 400; color: var(--color-heading); }
.contact-cta { text-align: center; }
.btn-contact { color: var(--color-heading); border-color: var(--color-heading); font-size: 0.875rem; text-decoration: none; transition: all 0.6s ease !important; }
.btn-contact:hover { background: var(--color-heading) !important; color: white !important; opacity: 1 !important; }

/* ── Members section ─────────────────────────── */
#members { position: relative; overflow: hidden; scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
#members-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.members-label { color: var(--color-brand); margin-bottom: 1rem; }
.members-heading { font-size: clamp(2.2rem, 4vw, 3.2rem); color: white; line-height: 1.15; margin-bottom: 2rem; }
.members-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.members-benefit-item { display: flex; gap: 1rem; }
.members-icon { width: 3rem; height: 3rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--color-brand); }
.members-benefit-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: white; margin: 0 0 0.25rem; }
.members-benefit-body { font-weight: 300; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }
.members-card { border-radius: 0.5rem; padding: 2rem; background: white; box-shadow: 0 20px 60px rgba(10,186,181,0.2); }
.members-card-heading { font-size: 1.8rem; color: var(--color-heading) !important; margin: 0 0 0.5rem; }
.members-card-sub { font-weight: 400; font-size: 0.9rem; color: var(--color-heading); margin: 0 0 1.5rem; }
.members-btn-brand {
  display: block; width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: var(--color-brand); color: white;
  font-family: var(--font-label); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  margin-bottom: 0.75rem; transition: background 0.2s, box-shadow 0.2s;
}
.members-btn-brand:hover { background: #089e9a; box-shadow: 0 4px 16px rgba(10,186,181,0.4); }
.members-btn-dark {
  display: block; width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: var(--color-heading); color: white;
  font-family: var(--font-label); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.members-btn-dark:hover { background: #1a3333; box-shadow: 0 4px 16px rgba(45,74,74,0.4); }
.members-btn-line {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 0.875rem; border-radius: 0.5rem;
  background: #06C755; color: white;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  border: none; cursor: pointer; text-decoration: none;
  margin-bottom: 1rem; transition: opacity 0.2s;
}
.members-btn-line:hover { opacity: 0.75; }
.members-card-note { font-weight: 300; font-size: 0.75rem; color: #9ca3af; text-align: center; margin: 0; }

/* ── Services section ─────────────────────────── */
#services { scroll-margin-top: 5rem; padding-top: 6rem; padding-bottom: 6rem; }
#svc-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
.svc-card {
  border-radius: 0.75rem; overflow: hidden;
  background: white; border: 1px solid #e0f0ef;
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  display: flex; flex-direction: column;
}
.svc-img-wrap { position: relative; overflow: hidden; height: 220px; flex-shrink: 0; }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(15,60,60,0.5) 100%); }
.svc-img-caption { position: absolute; bottom: 1rem; left: 1.25rem; right: 1.25rem; }
.svc-card-name { font-size: 1.25rem; color: white; line-height: 1.3; margin: 0 0 0.35rem; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.svc-card-body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card-note { margin: 0 0 1.25rem; flex: 1; }
.svc-price-row { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; background: #f0fafa; border-radius: 0.5rem; margin-bottom: 1rem; }
.svc-price-label { font-size: 0.7rem; color: var(--color-brand); font-weight: 600; letter-spacing: 0.06em; }
.svc-price-value { font-size: 1.1rem; font-weight: 700; color: var(--color-heading); }

/* ── Service add-on menus（単品でも・組み合わせでも） ── */
.svc-addon-block { max-width: 64rem; margin: 2.75rem auto 0; }
.svc-addon-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: var(--color-brand); }
.svc-addon-divider::before, .svc-addon-divider::after { content: ""; flex: 1; height: 1px; background: #cfe7e6; }
.svc-addon-divider > span { font-family: var(--font-label); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; white-space: nowrap; }
#svc-addon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.svc-addon-card {
  background: white; border: 1px solid #e0f0ef; border-radius: 0.75rem;
  padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
}
.svc-addon-head { display: flex; flex-direction: column; gap: 0.35rem; }
.svc-addon-name { font-size: 1rem; color: var(--color-heading); line-height: 1.35; margin: 0; }
.svc-addon-dur { font-size: 0.8rem; color: #5b7573; }
.svc-addon-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; }
.svc-addon-price { display: flex; flex-direction: column; line-height: 1.2; }
.svc-addon-price-label { font-size: 0.65rem; color: var(--color-brand); font-weight: 600; letter-spacing: 0.05em; }
.svc-addon-price-value { font-size: 1.05rem; font-weight: 700; color: var(--color-heading); }
.svc-addon-btn {
  flex-shrink: 0; background: var(--color-brand); color: white;
  font-family: var(--font-label); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em;
  text-decoration: none; padding: 0.55rem 0.9rem; border-radius: 0.5rem; white-space: nowrap;
  transition: background 0.2s;
}
.svc-addon-btn:hover { background: #089e9a; }

/* ── Service compact list ─────────────────────── */
.svc-full-width { grid-column: 1 / -1; }
.svc-list { border-radius: 0.75rem; overflow: hidden; border: 1px solid #e0f0ef; box-shadow: 0 4px 24px rgba(10,186,181,0.08); }
.svc-compact-item + .svc-compact-item { border-top: 1px solid #e0f0ef; }
.svc-thumb { flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: 0.5rem; overflow: hidden; }
.svc-thumb > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-name-btn { flex: 1; min-width: 0; text-align: left; background: none; border: none; padding: 0; cursor: pointer; transition: opacity 0.15s; }
.svc-name-btn:hover { opacity: 0.65; }
.svc-item-name { font-weight: 500; font-size: 0.95rem; color: var(--color-heading); margin: 0 0 0.2rem; line-height: 1.4; }
.btn-detail {
  font-size: 0.75rem; font-weight: 500; color: var(--color-heading);
  background: white; border: 1.5px solid #c0d8d8; border-radius: 0.375rem;
  padding: 0.45rem 0.875rem; cursor: pointer; white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.btn-detail:hover { border-color: var(--color-brand); background: #f0fafa; }
.btn-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: var(--color-brand); color: white;
  font-size: 1.1rem; font-weight: 700;
  text-decoration: none; flex-shrink: 0; transition: opacity 0.2s;
}
.btn-arrow:hover { opacity: 0.8; }

/* ── Menu modal ───────────────────────────────── */
#menu-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45);
  align-items: center; justify-content: center; padding: 1rem;
}
#menu-modal-inner {
  background: white; border-radius: 1rem;
  max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 8px 48px rgba(0,0,0,0.2); animation: modalIn .22s ease;
}
.mm-img-wrap { position: relative; }
#mm-image { width: 100%; height: 180px; object-fit: cover; border-radius: 1rem 1rem 0 0; display: block; }
#mm-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: rgba(0,0,0,0.45); border: none; cursor: pointer;
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.mm-body { padding: 1.5rem 1.75rem 2rem; }

/* ── 物販 PR ページ（product_lp）─────────────────── */
.lp-lead {
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text);
}

/* 特長カード */
.lp-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* 本文リードの直後にカード群が来る場合の余白（例：/stemcell Voices） */
.content-narrow + .lp-points { margin-top: 2.5rem; }
/* リード文：細字で薄く見えるので濃く・少し大きく */
.lp-lead { color: #14302e; font-weight: 500; font-size: 1.05rem; }
/* 特定見出しをPCで1行に収める（最大サイズを抑えて折り返し禁止） */
@media (min-width: 768px) {
  .section-header .heading-display.lp-heading-1line {
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    white-space: nowrap;
  }
}
.lp-point {
  background: white;
  border: 1px solid #e0f0ef;
  border-radius: 0.75rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 30px rgba(10,186,181,0.08);
}
.lp-point-label { color: var(--color-brand); margin-bottom: 0.9rem; }
.lp-point-title {
  font-size: 1.2rem;
  color: var(--color-heading);
  margin: 0 0 0.75rem;
}
.lp-point-body {
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0;
}
/* 商品LPで濃い緑パネル(bg-dark-teal)に載せるセクション共通（例: /products/totocle の特長／商品詳細／お問い合わせ） */
/* 背景直置きの見出しを白に（section-header の指定が bg-dark-teal の白指定より強いため明示上書き） */
.lp-ondark .section-header .heading-display { color: #fff; }
/* 白背景の特長カードは bg-dark-teal に白化されるので、カード内の文字は元の色へ戻す */
.lp-ondark .lp-point-label { color: var(--color-brand); }
.lp-ondark .lp-point-title { color: var(--color-heading); }
/* 枠線ボタン（お問い合わせCTA）は濃い背景で白抜きに */
.lp-ondark .btn-contact { color: #fff; border-color: rgba(255,255,255,0.8); }
.lp-ondark .btn-contact:hover { background: #fff !important; color: var(--color-heading) !important; }
/* Instagramボタンは塗りのまま。共通の btn-modern:hover が透過＋inherit(暗色)に反転して
   濃い背景で文字が消えるのを防ぎ、ホバーはフェードのみに */
.lp-ondark .lp-btn-ig:hover { background: #d6336c !important; border-color: #d6336c !important; color: #fff !important; opacity: 0.85; }

/* stemcell ハブ：分岐カード（実写真付き・2列） */
.lp-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.lp-branch {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0f0ef;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(10,186,181,0.08);
  text-decoration: none;
}
.lp-branch-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.lp-branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.lp-branch:hover .lp-branch-img img { transform: scale(1.06); }
.lp-branch-tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: rgba(10,186,181,0.85); color: #fff;
  backdrop-filter: blur(4px);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.06em;
  padding: 0.32rem 0.8rem; border-radius: 999px;
  box-shadow: 0 2px 10px rgba(10,186,181,0.35);
}
.lp-branch-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.6rem; }
.lp-branch-body .lp-point-label { margin-bottom: 0.6rem; }
.lp-branch-body .lp-point-body { flex: 1; margin-bottom: 1.1rem; }
.lp-branch-more {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--color-brand); font-family: var(--font-label);
  font-size: 0.82rem; letter-spacing: 0.08em; font-weight: 600;
}
.lp-branch-arrow { transition: transform 0.3s ease; }
.lp-branch:hover .lp-branch-arrow { transform: translateX(5px); }
@media (max-width: 640px) {
  .lp-branches { grid-template-columns: 1fr; }
}
/* 回遊：3列（フェイシャル下部のほかのラインナップ） */
.lp-branches--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .lp-branches--3 { grid-template-columns: 1fr; } }
.lp-back-wrap { text-align: center; margin-top: 2.5rem; }
.lp-back-hub {
  font-family: var(--font-label); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--color-brand); text-decoration: none;
}
.lp-back-hub:hover { text-decoration: underline; }

/* 使い方 */
.lp-steps { list-style: none; margin: 0; padding: 0; }
.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e0f0ef;
  line-height: 1.9;
  color: var(--color-text);
  font-weight: 500;
}
.lp-step:last-child { border-bottom: none; }
.lp-step-num {
  flex: 0 0 auto;
  width: 1.9rem; height: 1.9rem;
  border-radius: 9999px;
  background: var(--color-brand);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.lp-step-body { flex: 1; }

/* 商品詳細（dl/dt/dd・スマホは縦積み） */
.lp-spec {
  margin: 0;
  background: #fff;
  border: 1px solid #e0f0ef;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(10,186,181,0.08);
}
.lp-spec-row { display: flex; border-bottom: 1px solid #e0f0ef; }
.lp-spec-row:last-child { border-bottom: none; }
.lp-spec-label {
  flex: 0 0 7rem;
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--color-heading);
  color: #81d8d0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
.lp-spec-value {
  flex: 1;
  margin: 0;
  padding: 1rem 1.25rem;
  background: #fff;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .lp-spec-row { display: block; }
  .lp-spec-label {
    flex: none; width: 100%;
    background: rgba(10,186,181,0.08);
    color: var(--color-heading);
    padding: 0.7rem 1.25rem 0.45rem;
  }
  .lp-spec-value { width: 100%; padding-top: 0.6rem; }
}

/* お客様の声 */
.lp-voices { display: grid; gap: 1.25rem; }
.lp-voice {
  background: white;
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 4px 30px rgba(10,186,181,0.08);
}
.lp-voice-body { line-height: 1.9; color: #14302e; font-weight: 500; margin: 0 0 0.75rem; }
.lp-voice-name { font-size: 0.85rem; color: var(--color-muted); margin: 0; text-align: right; }

/* 問い合わせボタン群（横並び・中央） */
.lp-contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.lp-btn-ig {
  color: white !important;
  background: #d6336c;
  border-color: #d6336c;
}
.lp-btn-ig:hover { opacity: 0.85; }
/* 体験施術の案内（/facial と同じメニューカードで予約） */
.lp-trial-lead { text-align: center; margin: 0 auto 2rem; }

/* 差し替え用プレースホルダー（公開前に中身へ置き換える） */
.lp-placeholder {
  border: 1px dashed var(--color-brand);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  background: rgba(10,186,181,0.04);
  color: var(--color-muted);
  line-height: 1.9;
  text-align: center;
}
.lp-placeholder-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-brand);
  margin: 0 0 0.6rem;
}

/* 満足度スタット */
.lp-stat { text-align: center; margin-top: 2.5rem; }
.lp-stat-num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  line-height: 1;
  color: var(--color-brand);
  margin: 0;
}
.lp-stat-unit { font-size: 0.5em; margin-left: 0.15em; }
.lp-stat-label { color: var(--color-heading); font-weight: 500; margin: 0.6rem 0 0; }
/* /stemcell/facial Lead：テキスト＋施術写真の2カラム */
.lp-lead-split { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3rem; align-items: start; }
.lp-lead-split .section-header { margin-bottom: 1.75rem; }
.lp-lead-split .section-header .heading-display { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
/* 長い見出し用にPCで少し小さく（tagline_class で付与。SPは lp-tagline-sp-xs 側で縮小） */
@media (min-width: 768px) {
  .lp-lead-split .section-header .heading-display.lp-tagline-pc-sm { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
}
.lp-lead-split .lp-lead { margin: 0 0 1.1rem; text-align: left; }
.lp-lead-split .lp-lead:last-child { margin-bottom: 0; }
.lp-lead-split-media { border-radius: 1rem; overflow: hidden; align-self: stretch; box-shadow: 0 20px 45px rgba(10,186,181,0.15); }
.lp-lead-split-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .lp-lead-split { grid-template-columns: 1fr; gap: 2rem; }
  .lp-lead-split .section-header { margin-bottom: 1.5rem; }
  .lp-lead-split-media { aspect-ratio: 4 / 3; }
}
/* 実感の引用カード */
.lp-lead-section { padding-bottom: 1.5rem; }
.lp-satisfy { padding-top: 2rem; padding-bottom: 6.5rem; }
.lp-satisfy-card {
  background: #fff;
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  padding: 3rem 3rem 2.75rem;
  text-align: center;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(10,186,181,0.10);
}
.lp-satisfy-card::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 2px; background: var(--color-brand);
}
.lp-satisfy-label { color: var(--color-brand); margin: 0 0 1rem; }
.lp-satisfy-main {
  font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', var(--font-heading), serif;
  font-weight: 600; color: #14302e;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.55; margin: 0;
}
.lp-satisfy-sub { color: var(--color-heading); font-weight: 500; font-size: 0.98rem; line-height: 1.9; margin: 1rem 0 0; }
.lp-satisfy-note { font-size: 0.78rem; color: var(--color-muted); margin: 0.8rem 0 0; }
.lp-placeholder-inline {
  font-size: 0.75rem;
  color: var(--color-brand);
  border: 1px dashed var(--color-brand);
  border-radius: 9999px;
  padding: 0.1rem 0.6rem;
  margin-left: 0.4rem;
  white-space: nowrap;
}

/* お悩みリスト */
.lp-concerns { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.lp-concern {
  background: white;
  border-radius: 9999px;
  padding: 0.9rem 1.5rem;
  text-align: center;
  color: var(--color-text);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(10,186,181,0.08);
}
.lp-concerns-note { text-align: center; font-size: 0.78rem; color: var(--color-muted); margin: 1.25rem 0 0; }

/* Before / After */
.lp-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.lp-ba-item { text-align: center; }
.lp-ba-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}
.lp-ba-tag-after { color: var(--color-brand); }
.lp-ba-slot {
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--color-brand);
  border-radius: 0.75rem;
  background: rgba(10,186,181,0.04);
  color: var(--color-muted);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}

/* スマホのみ改行（PCでは無効） */
.br-sp { display: inline; }
@media (min-width: 768px) { .br-sp { display: none; } }

/* ラインマーカー（蛍光ペン風・下半分をハイライト） */
.lp-marker {
  background: linear-gradient(transparent 58%, rgba(10,186,181,0.30) 58%);
  padding: 0 0.08em;
}
/* この見出しのマーカーだけ細く */
.lp-lead-heading .lp-marker { background: linear-gradient(transparent 74%, rgba(10,186,181,0.30) 74%); }
/* スマホは文字が小さく帯が薄く見えるので、少し厚くする */
@media (max-width: 767px) {
  .lp-lead-heading .lp-marker { background: linear-gradient(transparent 64%, rgba(10,186,181,0.30) 64%); }
}

/* 見出しをスマホで少し小さく（基準ルールと同等の詳細度で上書き） */
@media (max-width: 767px) {
  .section-header .heading-display.lp-heading-sp-sm { font-size: 1.5rem; }
  /* さらに小さく（essencellタグライン等・後勝ちで上書き） */
  .section-header .heading-display.lp-tagline-sp-xs { font-size: 1.3rem; }
  /* タグライン2行目はさらに少し小さく（親サイズ比） */
  .lp-tagline-sub { font-size: 0.82em; }
  /* ページヒーロー見出しをスマホで少しだけ小さく（意図した改行を保ち、余計な折り返しを防ぐ） */
  .page-hero-content .heading-display { font-size: 1.7rem; }
}

/* 追従バナー（下部固定） */
/* バナーがフッター末尾に被らないよう、フッター側の下余白だけ広げる（隙間は作らない） */
.lp-sticky-cta ~ .footer .footer-inner { padding-bottom: 7rem; }
.lp-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: flex;
  justify-content: center;
  padding: 0.75rem 1rem 1rem;
  background: transparent;
  pointer-events: none;
}
.lp-sticky-cta > .lp-sticky-btn { pointer-events: auto; }
.lp-sticky-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 1rem;
  border-radius: 99px;
  background: var(--color-brand);
  color: #fff;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(10,186,181,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,186,181,0.45); }
/* 2ボタン版（Instagram / お問い合わせ） */
.lp-sticky-cta-2 { gap: 0.6rem; }
.lp-sticky-cta-2 .lp-sticky-btn { flex: 1 1 0; max-width: 220px; }
.lp-sticky-btn-ig { background: #d6336c; box-shadow: 0 4px 16px rgba(214,51,108,0.35); }
.lp-sticky-btn-ig:hover { box-shadow: 0 8px 28px rgba(214,51,108,0.45); }
/* 追従バナーがある時は TOPへ戻るボタンをバナーの上へ逃がす */
.lp-sticky-cta ~ #back-to-top { bottom: 5.5rem; }

@media (max-width: 767px) {
  .lp-points { grid-template-columns: 1fr; }
  /* お悩みpillが折り返さないよう、横paddingを詰めて丸みを弱める（文字サイズは据え置き） */
  .lp-concern { padding-left: 0.75rem; padding-right: 0.75rem; border-radius: 0.9rem; }
}

/* ══ Tailwind CDN 撤去に伴う互換レイヤー（公開ページ用） ══════════════
   Play CDN(cdn.tailwindcss.com)を外したため、preflight相当の最小リセットと、
   index/blog/blog_post/services で使っていた Tailwind ユーティリティを素のCSSで再現。
   値は Tailwind v3 既定と同値。box-sizing は上部で定義済み。 */
/* preflight 相当（要点のみ） */
h1, h2, h3, h4, h5, h6, p, blockquote, figure, pre, dl, dd { margin: 0; }
ol, ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; }
button, [role="button"] { cursor: pointer; }
img, svg, video, canvas { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
/* 使用ユーティリティ */
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.transition { transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.bg-white { background-color: #fff; }
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-teal-100 { border-color: #ccfbf1; }
.text-stone-400 { color: #a8a29e; }
.text-stone-500 { color: #78716c; }
.text-stone-600 { color: #57534e; }
.text-stone-800 { color: #292524; }
.text-teal-500 { color: #14b8a6; }
.hover\:text-teal-600:hover { color: #0d9488; }
.hover\:border-teal-300:hover { border-color: #5eead4; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
