﻿:root {
  --bg: #f7f7f6;
  --surface: #ffffff;
  --surface-2: #fbfbfa;
  --surface-3: #f1f1ef;
  --surface-4: #ececeb;
  --surface-dark: #d9d9d6;
  --text: #26272b;
  --muted: #6e7177;
  --muted-2: #8c8f96;
  --line: rgba(78, 82, 90, .18);
  --line-soft: rgba(78, 82, 90, .09);
  --silver: #b7bcc4;
  --silver-strong: #9097a1;
  --champagne: #c7b18b;
  --champagne-soft: rgba(199, 177, 139, .24);
  --mauve-light: rgba(170, 149, 171, .13);
  --lilac-light: rgba(188, 180, 214, .14);
  --pop-blue: #3d68ff;
  --pop-yellow: #f4cd19;
  --pop-orange: #ff8b3d;
  --pop-green: #4cbf7a;
  --pop-pink: #ff5ea8;
  --pop-purple: #8e6bff;
  --fixed-reservation-height: 58px;
  --shadow-soft: 0 22px 54px rgba(24, 26, 31, .06), 0 4px 12px rgba(24, 26, 31, .04);
  --shadow-card: 0 28px 70px rgba(24, 26, 31, .08), 0 8px 24px rgba(24, 26, 31, .06);
  --font-logo: "Bodoni Moda", "Times New Roman", serif;
  --font-nav-en: "Cinzel", serif;
  --font-display-en: "Cormorant Garamond", serif;
  --font-display-jp: "Shippori Mincho", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-card-name: "Shippori Mincho B1", "Shippori Mincho", serif;
  --font-card-time: "Bodoni Moda", "Times New Roman", serif;
  --font-card-ui: "Inter", "Noto Sans JP", sans-serif;

  /* Shared typography roles (home page and future component work). */
  --type-section-en-font: var(--font-display-en);
  --type-section-en-size: clamp(1.75rem, 2.6vw, 2.35rem);
  --type-section-en-color: #30333a;
  --type-section-en-line-height: .92;
  --type-section-en-letter-spacing: .05em;
  --type-section-ja-font: var(--font-display-jp);
  --type-section-ja-size: .88rem;
  --type-section-ja-color: #666a73;
  --type-section-ja-line-height: 1.8;
  --type-section-ja-letter-spacing: .14em;
  --type-card-title-font: var(--font-card-name);
  --type-card-title-size: 1.54rem;
  --type-card-title-color: #20242b;
  --type-card-title-line-height: 1.14;
  --type-card-title-letter-spacing: .04em;
  --type-body-font: var(--font-body);
  --type-body-size: 1rem;
  --type-body-color: var(--text);
  --type-body-line-height: 1.8;
  --type-body-letter-spacing: .02em;
  --type-content-font: var(--font-body);
  --type-content-size: .875rem;
  --type-content-line-height: 1.85;
  --type-content-letter-spacing: .035em;
  --type-card-copy-font: var(--font-body);
  --type-card-copy-size: .78rem;
  --type-card-copy-line-height: 1.7;
  --type-card-copy-letter-spacing: .035em;
  --type-support-font: var(--font-body);
  --type-support-size: .74rem;
  --type-support-color: var(--muted);
  --type-support-line-height: 1.65;
  --type-support-letter-spacing: .04em;
  --type-link-font: var(--font-body);
  --type-link-size: .88rem;
  --type-link-color: #464c57;
  --type-link-line-height: 1.5;
  --type-link-letter-spacing: .04em;
  --type-button-font: var(--font-body);
  --type-button-size: .82rem;
  --type-button-color: #464c57;
  --type-button-line-height: 1.3;
  --type-button-letter-spacing: .04em;
  --home-heading-en-ja-gap: 6px;
  --home-heading-content-gap: 42px;
  --home-heading-ornament-gap: 10px;
  --home-heading-inner-padding-block-start: 9px;
  --home-heading-inner-padding-block-end: 8px;
  --button-primary-height: 50px;
  --button-secondary-height: 48px;
  --button-radius-pill: 999px;
  --button-font-size: 13px;
  --button-font-weight: 500;
  --button-line-height: 1.3;
  --button-letter-spacing: .04em;
  --ui-card-border: rgba(54, 59, 65, .08);
  --ui-button-border: rgba(50, 50, 60, .16);
  --ui-shadow-cta: 0 8px 20px rgba(42, 48, 57, .045), inset 0 1px 0 rgba(255,255,255,.9);
  --ui-shadow-photo-card: 0 14px 32px rgba(42, 48, 57, .08);
  --ui-text-subtle: #737983;
  --radius-small: 10px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: .02em;
  overflow-x: clip;
  background:
    radial-gradient(circle at 16% 10%, rgba(192, 180, 215, .14), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(209, 190, 165, .1), transparent 18%),
    linear-gradient(180deg, #fdfdfc 0%, #f5f5f4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.7) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(0deg, rgba(92, 96, 104, .09) 0 1px, transparent 1px 22px);
  mix-blend-mode: soft-light;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.page {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  background: var(--surface);
  box-shadow: 0 0 0 1px rgba(255,255,255,.8);
  overflow: clip;
}

.page-shell {
  width: min(100% - 96px, 980px);
  margin: 0 auto;
}

.site-header,
.hero,
.section,
.reservation-strip,
.site-footer {
  position: relative;
}

.section {
  padding: clamp(72px, 8vw, 104px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.78) 0 1px, transparent 1px 18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 32px 9px;
  color: var(--muted);
  font-size: .81rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,248,247,.98));
  border-bottom: 1px solid rgba(151, 157, 167, .16);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a,
.topbar span {
  white-space: nowrap;
  text-decoration: none;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 32px 18px;
  background:
    radial-gradient(circle at 10% 12%, rgba(207, 201, 219, .12), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(249,249,248,.98));
  border-bottom: 1px solid rgba(151, 157, 167, .12);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.brand-logo--header {
  width: min(100%, 420px);
  height: 56px;
  margin-left: -34px;
}

.brand-grid-mark {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(144, 151, 161, .4);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(244,244,243,.92));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.84);
}

.brand-grid-mark::before,
.brand-grid-mark::after {
  content: "";
  position: absolute;
  background: rgba(144, 151, 161, .28);
}

.brand-grid-mark::before {
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  transform: translateX(-50%);
}

.brand-grid-mark::after {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  transform: translateY(-50%);
}

.brand-grid-mark span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(199, 177, 139, .72);
  background: rgba(255,255,255,.88);
}

.brand-grid-mark span:nth-child(1) { left: 10px; top: 10px; }
.brand-grid-mark span:nth-child(2) { right: 10px; top: 10px; }
.brand-grid-mark span:nth-child(3) { left: 10px; bottom: 10px; }
.brand-grid-mark span:nth-child(4) { right: 10px; bottom: 10px; }

.brand-grid-mark span:nth-child(1) { background: rgba(61, 104, 255, .14); border-color: rgba(61, 104, 255, .48); }
.brand-grid-mark span:nth-child(2) { background: rgba(255, 94, 168, .12); border-color: rgba(255, 94, 168, .42); }
.brand-grid-mark span:nth-child(3) { background: rgba(244, 205, 25, .12); border-color: rgba(244, 205, 25, .44); }
.brand-grid-mark span:nth-child(4) { background: rgba(142, 107, 255, .12); border-color: rgba(142, 107, 255, .4); }

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  position: relative;
  display: inline-block;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 2.5vw, 2.65rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: .05em;
  color: var(--text);
}

.brand-copy b {
  margin-top: 7px;
  font-family: var(--font-display-jp);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: #4e525a;
}

.brand-copy small {
  margin-top: 6px;
  font-family: var(--font-nav-en);
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--muted);
}

.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pill-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding: 10px 18px;
  border-radius: 0;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(144, 151, 161, .32);
  background: rgba(255,255,255,.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.84);
  transition: transform .32s ease, border-color .32s ease, background-color .32s ease, color .32s ease;
}

.pill-link.primary {
  color: #fff;
  background: linear-gradient(180deg, rgba(58, 61, 69, .96), rgba(38, 40, 45, .96));
  border-color: rgba(58, 61, 69, .9);
}

.pill-link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pop-yellow);
  transform: translate3d(-10px, -50%, 0);
  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
}

.pill-link.primary::before {
  background: var(--pop-pink);
}

.pill-link:hover,
.pill-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(61, 104, 255, .34);
}

.pill-link:hover::before,
.pill-link:focus-visible::before {
  transform: translate3d(0, -50%, 0);
  opacity: 1;
}

.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}

.global-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 4px;
  padding: 0 32px 8px;
  background: linear-gradient(180deg, rgba(249,249,248,.98), rgba(247,247,246,.98));
}

.nav-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 2px;
  padding: 6px 8px 5px;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,244,.96));
  border: 1px solid rgba(144, 151, 161, .28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(199, 177, 139, .22);
  overflow: hidden;
}

.nav-box::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(144, 151, 161, .15);
}

.nav-box::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -45%;
  width: 22%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.84), rgba(199, 177, 139, .24), transparent);
  opacity: 0;
}

.nav-box strong,
.nav-box span {
  position: relative;
  z-index: 1;
}

.nav-box strong {
  font-family: var(--font-nav-en);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
}

.nav-box span {
  font-family: var(--font-display-jp);
  font-size: .63rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .08em;
  color: var(--muted);
}

.nav-box:hover {
  border-color: rgba(144, 151, 161, .54);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(241,241,239,.96));
}

.nav-box:hover strong,
.nav-box:focus-visible strong {
  color: #3156ef;
}

.nav-box:hover span,
.nav-box:focus-visible span {
  color: #745cf1;
}

.nav-box.is-active {
  border-color: rgba(144, 151, 161, .54);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(241,241,239,.96));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.92),
    inset 0 -2px 0 rgba(199, 177, 139, .38);
}

.nav-box:hover::after {
  opacity: 1;
  animation: sweep .75s ease-out 1;
}

.news-ticker {
  height: 38px;
  margin: 0 32px;
  overflow: hidden;
  border-top: 1px solid rgba(144, 151, 161, .18);
  border-bottom: 1px solid rgba(144, 151, 161, .18);
  background: linear-gradient(180deg, rgba(252,252,251,.98), rgba(240,240,238,.98));
}

.news-ticker-track {
  display: flex;
  align-items: center;
  min-width: max-content;
  height: 100%;
  animation: marquee 30s linear infinite;
}

.news-ticker:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 0 18px;
  text-decoration: none;
  color: var(--text);
  font-size: .79rem;
  white-space: nowrap;
}

.news-ticker b {
  position: relative;
  color: #515763;
  font-weight: 500;
  letter-spacing: .08em;
  padding-left: 12px;
}

.news-ticker b::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--pop-blue);
  transform: translateY(-50%);
}

.hero {
  min-height: 720px;
  background: #f7f7f6;
}

.hero-picture,
.hero-photo,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.04) 28%, rgba(255,255,255,.02) 58%, rgba(255,255,255,.08) 100%),
    radial-gradient(circle at 24% 20%, rgba(195, 188, 218, .08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(34,36,39,.02));
}

.hero-frame {
  position: absolute;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: inset 0 0 0 1px rgba(199,177,139,.18);
  pointer-events: none;
}

.hero-frame-a {
  left: 4%;
  top: 13%;
  width: 28%;
  height: 58%;
}

.hero-frame-b {
  right: 5%;
  top: 9%;
  width: 18%;
  height: 66%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 80px;
}

.hero-copy {
  max-width: 430px;
}

.hero-copy--otona {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(8%);
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-title-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.hero-symbol-bg {
  display: none;
}

.hero-title {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  margin: 0;
  color: rgba(255,255,255,.985);
  font-family: var(--font-logo);
  font-size: clamp(5.25rem, 8vw, 9.4rem);
  font-weight: 400;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  line-height: .88;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255,255,255,.99),
    0 0 10px rgba(255,255,255,.22),
    0 0 24px rgba(255,255,255,.12),
    0 8px 22px rgba(83, 90, 101, .1),
    0 18px 42px rgba(83, 90, 101, .08);
}

.hero-title-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.hero-title-line--aroma {
  letter-spacing: .07em;
  padding-left: .05em;
  margin-bottom: .1em;
}

.hero-title-line--aura-lee {
  gap: .3em;
  padding-left: .035em;
}

.hero-title-line--aura-lee .hero-title-word {
  letter-spacing: .055em;
}

.hero-title::after {
  content: "";
  position: absolute;
  inset: -18% auto -18% -28%;
  width: 18%;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.16) 18%,
      rgba(255,255,255,.92) 46%,
      rgba(255,255,255,.98) 52%,
      rgba(176, 208, 255, .28) 62%,
      rgba(255, 208, 222, .22) 74%,
      rgba(255,255,255,0) 100%);
  transform: skewX(-16deg);
  filter: blur(.3px);
  mix-blend-mode: screen;
  animation: titleSweep 9.6s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-kicker {
  margin: 26px 0 0;
  font-family: var(--font-nav-en);
  font-size: 1rem;
  letter-spacing: .28em;
  color: rgba(176, 152, 118, .92);
  text-shadow: 0 2px 14px rgba(78, 84, 94, .12);
}

.hero-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: heroSparkle 6.4s ease-in-out infinite;
}

.hero-spark::before,
.hero-spark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-spark::before {
  left: 50%;
  top: 0;
  width: 1.4px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.98) 28%,
    rgba(194, 226, 255, .72) 52%,
    rgba(255, 209, 222, .52) 74%,
    rgba(255,255,255,0)
  );
}

.hero-spark::after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.4px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.96) 28%,
    rgba(255, 229, 130, .62) 52%,
    rgba(169, 150, 255, .48) 72%,
    rgba(255,255,255,0)
  );
}

.hero-spark::after {
  box-shadow: 0 0 8px rgba(255,255,255,.38);
}

.hero-spark::before {
  box-shadow: 0 0 8px rgba(255,255,255,.42);
}

.spark-a { top: 16%; left: 12%; width: 16px; height: 16px; animation-delay: .4s; }
.spark-b { top: 34%; right: 13%; width: 11px; height: 11px; animation-delay: 3.1s; }
.spark-c { bottom: 17%; right: 8%; width: 18px; height: 18px; animation-delay: 6.8s; }
.spark-d { top: 56%; left: 22%; width: 9px; height: 9px; animation-delay: 1.8s; }
.spark-e { top: 24%; left: 58%; width: 12px; height: 12px; animation-delay: 5.6s; }
.spark-f { bottom: 28%; left: 68%; width: 10px; height: 10px; animation-delay: 8.9s; }
.spark-g { top: 10%; right: 22%; width: 8px; height: 8px; animation-delay: 10.4s; }

.spark-a::before,
.spark-a::after,
.spark-b::before,
.spark-b::after,
.spark-c::before,
.spark-c::after,
.spark-d::before,
.spark-d::after,
.spark-e::before,
.spark-e::after,
.spark-f::before,
.spark-f::after,
.spark-g::before,
.spark-g::after { opacity: 1; }

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

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

.hero-light-sweep,
.hero-prism {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-light-sweep {
  top: 8%;
  bottom: 8%;
  width: 13%;
  opacity: 0;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0),
      rgba(255,255,255,.12) 18%,
      rgba(255,255,255,.3) 48%,
      rgba(182, 214, 255, .12) 64%,
      rgba(255, 207, 227, .12) 78%,
      rgba(255,255,255,0));
  mix-blend-mode: screen;
  animation: heroSweep 14.8s ease-in-out infinite;
  will-change: transform, opacity;
}

.sweep-a {
  left: -18%;
  animation-delay: 1.2s;
}

.sweep-b {
  left: -18%;
  width: 10%;
  animation-delay: 6.3s;
}

.sweep-c {
  left: -20%;
  width: 7%;
  top: 12%;
  bottom: 14%;
  animation-delay: 10.1s;
}

.hero-prism {
  opacity: .18;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,.54), rgba(255,255,255,0) 56%),
    linear-gradient(135deg, rgba(151, 202, 255, .18), rgba(255, 208, 222, .12) 42%, rgba(255, 230, 145, .12) 66%, rgba(177, 154, 255, .16));
  filter: blur(6px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: prismDrift 9.8s ease-in-out infinite;
}

.prism-a {
  right: 6%;
  top: 16%;
  width: 140px;
  height: 56px;
  --prism-rotate: 24deg;
  transform: rotate(24deg);
  animation-delay: 2.1s;
}

.prism-b {
  left: 19%;
  bottom: 16%;
  width: 126px;
  height: 44px;
  --prism-rotate: -18deg;
  transform: rotate(-18deg);
  animation-delay: 4.8s;
}

.prism-c {
  left: 56%;
  top: 20%;
  width: 96px;
  height: 36px;
  --prism-rotate: 90deg;
  transform: rotate(90deg);
  animation-delay: 7.4s;
}

@keyframes heroSparkle {
  0%, 14%, 100% {
    opacity: 0;
    transform: scale(.42) rotate(0deg);
  }
  18% {
    opacity: .86;
    transform: scale(1.16) rotate(0deg);
  }
  24% {
    opacity: .38;
    transform: scale(.72) rotate(6deg);
  }
  28% {
    opacity: 0;
    transform: scale(.4) rotate(8deg);
  }
}

@keyframes heroSweep {
  0%, 70%, 100% {
    opacity: 0;
    transform: translate3d(-6vw, 0, 0) skewX(-14deg);
  }
  76% {
    opacity: .12;
  }
  84% {
    opacity: .3;
    transform: translate3d(92vw, 0, 0) skewX(-14deg);
  }
  88% {
    opacity: 0;
    transform: translate3d(108vw, 0, 0) skewX(-14deg);
  }
}

@keyframes prismDrift {
  0%, 100% {
    opacity: .08;
    transform: translate3d(0, 0, 0) rotate(var(--prism-rotate, 0deg));
  }
  35% {
    opacity: .22;
  }
  55% {
    opacity: .14;
    transform: translate3d(12px, -8px, 0) rotate(calc(var(--prism-rotate, 0deg) + 4deg));
  }
  78% {
    opacity: .24;
  }
}

@keyframes titleSweep {
  0%, 68%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) skewX(-16deg);
  }
  72% {
    opacity: .2;
  }
  79% {
    opacity: .96;
    transform: translate3d(620%, 0, 0) skewX(-16deg);
  }
  83% {
    opacity: 0;
    transform: translate3d(700%, 0, 0) skewX(-16deg);
  }
}

.brand-video-section {
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 214, 220, .24), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(213, 197, 176, .18), transparent 20%),
    linear-gradient(180deg, rgba(250,250,249,.96) 0%, rgba(245,245,243,.98) 100%);
}

.brand-video-section::before {
  opacity: .02;
}

.brand-video-shell {
  width: min(100% - 96px, 1180px);
}

.brand-video-head {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-video-kicker {
  margin: 0;
  font-family: var(--font-nav-en);
  font-size: .78rem;
  letter-spacing: .28em;
  color: #676d77;
}

.brand-video-frame {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(180, 186, 195, .52);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,246,244,.82));
  box-shadow: 0 20px 54px rgba(23, 25, 31, .06), 0 4px 16px rgba(23, 25, 31, .05);
  overflow: hidden;
}

.brand-video-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,.76);
  pointer-events: none;
}

.brand-video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(180deg, rgba(238,239,240,.8), rgba(248,248,247,.92));
  overflow: hidden;
}

.brand-video-media video,
.brand-video-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: transparent;
}

.brand-video-gloss {
  position: absolute;
  inset: 14px auto 14px 14px;
  width: 22%;
  background: linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,0));
  pointer-events: none;
}

.brand-video-playmark {
  position: absolute;
  right: 32px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(198, 177, 143, .58);
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.brand-video-playmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(86, 92, 101, .86);
  transform: translate(-34%, -50%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 50px;
  text-align: center;
}

.section-heading > div {
  position: relative;
  min-width: min(100%, 360px);
  padding: 11px 22px 9px;
}

.section-heading > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(144, 151, 161, .15);
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.24));
  pointer-events: none;
}

.section-heading-en {
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: var(--font-display-en);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: .05em;
  color: #30333a;
}

.section-heading-en::before,
.section-heading-en::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.campaign-section .section-heading-en::before,
.access-section .section-heading-en::before,
.recruit-section .section-heading-en::before {
  left: -.52em;
  top: .24em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.campaign-section .section-heading-en::before { background: var(--pop-orange); }
.access-section .section-heading-en::before { background: var(--pop-green); }
.recruit-section .section-heading-en::before { background: var(--pop-pink); }

.schedule-section .section-heading-en::after,
.new-face-section .section-heading-en::after,
.therapists-guide-section .section-heading-en::after,
.therapist-directory-section .section-heading-en::after,
.price-section .section-heading-en::after {
  right: -.48em;
  top: .12em;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--pop-blue);
  transform: rotate(18deg);
}

.new-face-section .section-heading-en::after { border-bottom-color: var(--pop-pink); }
.therapists-guide-section .section-heading-en::after { border-bottom-color: var(--pop-yellow); }
.therapist-directory-section .section-heading-en::after { border-bottom-color: var(--pop-yellow); }
.price-section .section-heading-en::after { border-bottom-color: var(--pop-purple); }

/* The heading frame and side diamonds carry the accent; omit the detached triangle. */
.schedule-section .section-heading-en::after,
.new-face-section .section-heading-en::after,
.therapists-guide-section .section-heading-en::after,
.therapist-directory-section .section-heading-en::after,
.price-section .section-heading-en::after {
  display: none;
}

.section-heading-ja {
  margin: 10px 0 0;
  font-family: var(--font-display-jp);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: #666a73;
}

.section-heading-ja::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  margin-left: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pop-blue), var(--pop-yellow));
  vertical-align: middle;
  transform: translateY(-2px);
}

.heading-ornament {
  position: relative;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,188,196,.9), transparent);
}

.heading-ornament::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(199, 177, 139, .95);
  transform: translateY(-50%) rotate(45deg);
}

.heading-ornament.left::before { right: 6px; }
.heading-ornament.right::before { left: 6px; }

.section-frame {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(144, 151, 161, .15);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(248,248,247,.9));
  box-shadow: var(--shadow-soft);
}

.section-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}

.today-label {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.schedule-area-label {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  letter-spacing: .08em;
}

.schedule-area-label span {
  position: relative;
  padding: 0 14px;
  color: #6a7280;
}

.schedule-area-label span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(210, 218, 229, 0), rgba(178, 186, 198, .9), rgba(210, 218, 229, 0));
}

.text-link,
.detail-link,
.ghost-button {
  text-decoration: none;
}

.text-link {
  color: #505661;
  font-size: .88rem;
  letter-spacing: .04em;
}

.text-link.align-center {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
}

.promo-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.promo-carousel-window {
  overflow: hidden;
}

.promo-carousel-rail {
  display: flex;
  gap: 20px;
  transition: transform .65s ease;
}

.promo-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(144, 151, 161, .2);
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.promo-card::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  font-family: var(--font-nav-en);
  font-size: 1rem;
  line-height: 1;
  color: rgba(255,255,255,.86);
  background: linear-gradient(135deg, var(--pop-yellow), var(--pop-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-card img,
.promo-card-overlay {
  position: absolute;
  inset: 0;
}

.promo-card picture,
.card-image-wrap picture,
.newface-visual picture,
.guide-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card-overlay {
  background:
    linear-gradient(180deg, rgba(24,26,31,.04), rgba(24,26,31,.46)),
    linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.24) 44%, rgba(31,33,38,.58) 100%);
}

.promo-card--navy .promo-card-overlay,
.promo-card--burgundy .promo-card-overlay {
  background:
    linear-gradient(180deg, rgba(20,22,28,.18), rgba(20,22,28,.56)),
    linear-gradient(90deg, rgba(73,76,86,.74) 0%, rgba(73,76,86,.24) 46%, rgba(20,22,28,.54) 100%);
}

.promo-card-mark {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  font-family: var(--font-logo);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: .92;
  letter-spacing: .08em;
  color: rgba(255,255,255,.24);
  text-align: right;
}

.promo-card:nth-child(1) .promo-card-mark { color: rgba(61, 104, 255, .26); }
.promo-card:nth-child(2) .promo-card-mark { color: rgba(255, 94, 168, .24); }
.promo-card:nth-child(3) .promo-card-mark { color: rgba(244, 205, 25, .3); }
.promo-card:nth-child(4) .promo-card-mark { color: rgba(142, 107, 255, .24); }

.promo-card-copy {
  position: absolute;
  inset: auto 20px 18px;
  z-index: 2;
}

.promo-card-copy small {
  display: block;
  font-family: var(--font-display-en);
  font-size: .88rem;
  letter-spacing: .08em;
  color: rgba(38,40,45,.88);
}

.promo-card--navy .promo-card-copy small,
.promo-card--burgundy .promo-card-copy small {
  color: rgba(255,255,255,.82);
}

.promo-card-copy strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display-jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.32;
  color: #23252a;
}

.promo-card--navy .promo-card-copy strong,
.promo-card--burgundy .promo-card-copy strong {
  color: #fff;
}

.promo-card-copy em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-logo);
  font-size: 2.3rem;
  line-height: .96;
  color: #f3e4cb;
}

.promo-card-copy b {
  display: block;
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(38,40,45,.82);
}

.promo-card--navy .promo-card-copy b,
.promo-card--burgundy .promo-card-copy b {
  color: rgba(255,255,255,.82);
}

.promo-card-copy span {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  letter-spacing: .08em;
}

.promo-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(144, 151, 161, .24);
  background: rgba(255,255,255,.9);
  transform: translateY(-50%);
  cursor: pointer;
}

.promo-nav.prev { left: 0; }
.promo-nav.next { right: 0; }

.promo-pagination,
.newface-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.promo-pagination button,
.newface-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(144, 151, 161, .36);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  cursor: pointer;
}

.promo-pagination button.is-active,
.newface-dots button.is-active {
  background: #555a63;
  border-color: #555a63;
}

.promo-pagination button.is-active {
  background: var(--pop-blue);
  border-color: var(--pop-blue);
}

.newface-dots button {
  position: relative;
  overflow: hidden;
}

.newface-dots button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pop-pink), var(--pop-purple));
  opacity: 0;
  transition: opacity .3s ease;
}

.newface-dots button.is-active {
  border-color: rgba(142, 107, 255, .46);
  background: rgba(255,255,255,.96);
}

.newface-dots button.is-active::before {
  opacity: 1;
}

.schedule-strip {
  width: min(100%, 1108px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: 28px 20px;
}

.schedule-date-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: min(100%, 980px);
  margin: 0 auto 32px;
  border: 1px solid rgba(46, 50, 58, .14);
}

.schedule-date-tabs button {
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(46, 50, 58, .12);
  background: rgba(255, 255, 255, .72);
  color: #555d6a;
  font: inherit;
  font-size: .8rem;
  letter-spacing: .02em;
  cursor: pointer;
}

.schedule-date-tabs button:last-child {
  border-right: 0;
}

.schedule-date-tabs button.is-active {
  background: #34363d;
  color: #fff;
}

.schedule-card {
  position: relative;
  width: 100%;
  max-width: 258px;
  overflow: hidden;
  border: 1px solid rgba(144, 151, 161, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,248,247,.96));
  box-shadow: var(--shadow-soft);
}

.card-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform .45s ease;
}

.schedule-card:nth-child(1) .card-image-wrap img { object-position: 42% 24%; }
.schedule-card:nth-child(2) .card-image-wrap img { object-position: 38% 17%; }
.schedule-card:nth-child(3) .card-image-wrap img { object-position: 49% 19%; }
.schedule-card:nth-child(4) .card-image-wrap img { object-position: 54% 18%; }

.card-image-wrap::after {
  content: "";
  position: absolute;
  top: -24%;
  left: -48%;
  width: 22%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), rgba(199,177,139,.18), transparent);
  opacity: 0;
}

.schedule-card:hover .card-image-wrap img {
  transform: scale(1.035);
}

.schedule-card:hover .card-image-wrap::after {
  opacity: 1;
  animation: sweep .8s ease-out 1;
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  font-size: .74rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(8px);
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px rgba(24, 26, 31, .08);
}

.status-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  vertical-align: middle;
}

.is-available { background: linear-gradient(135deg, rgba(61, 104, 255, .88), rgba(103, 137, 255, .86)); }
.is-time { background: linear-gradient(135deg, rgba(255, 143, 104, .88), rgba(255, 177, 82, .84)); }
.is-sold { background: linear-gradient(135deg, rgba(116, 92, 241, .88), rgba(144, 117, 255, .84)); }
.is-last { background: linear-gradient(135deg, rgba(255, 94, 168, .88), rgba(255, 140, 122, .84)); }

.ticker-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}

.ticker-wrap.rose { background: rgba(230, 228, 235, .58); }
.ticker-wrap.sand { background: rgba(238, 236, 231, .62); }
.ticker-wrap.greige { background: rgba(226, 225, 223, .66); }

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-block;
  padding-left: 18px;
  font-family: var(--font-display-en);
  font-size: .86rem;
  color: rgba(38,40,45,.82);
}

.schedule-card-body {
  padding: 16px 18px 18px;
}

.schedule-card-body h3,
.newface-copy h3 {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: 1.18rem;
  font-weight: 500;
}

.profile-meta,
.newface-meta,
.newface-note,
.map-note,
.footer-jp,
.footer-note,
.footer-service {
  margin: 0;
  color: var(--muted);
}

.profile-meta {
  margin-top: 6px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
  margin: 12px 0;
}

.tag-row span {
  position: relative;
  padding: 4px 10px 5px;
  border: 1px solid rgba(144, 151, 161, .14);
  background: linear-gradient(180deg, rgba(246,246,245,.92), rgba(238,238,236,.72));
  font-size: .74rem;
  line-height: 1.45;
  overflow: hidden;
}

.tag-row span::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(61, 104, 255, .72);
}

.tag-row span:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(242, 240, 245, .86), rgba(238,238,236,.72));
}

.tag-row span:nth-child(3n) {
  background: linear-gradient(180deg, rgba(241, 235, 228, .86), rgba(238,238,236,.72));
}

.schedule-card-body dl,
.newface-copy dl {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
}

.schedule-card-body dl > div,
.newface-copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}

.schedule-card-body dt,
.newface-copy dt {
  color: var(--muted);
  font-size: .8rem;
}

.schedule-card-body dd,
.newface-copy dd {
  margin: 0;
  font-family: var(--font-display-en);
  font-weight: 500;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #505661;
  font-size: .86rem;
}

.detail-link::after {
  content: "→";
}

.newface-slider {
  position: relative;
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 0 64px;
}

.newface-window {
  position: relative;
  min-height: 560px;
}

.newface-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 32px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.newface-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.newface-visual {
  overflow: hidden;
  border: 1px solid rgba(144, 151, 161, .18);
  box-shadow: var(--shadow-card);
}

.newface-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.newface-copy {
  padding: 34px;
  border: 1px solid rgba(144, 151, 161, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(248,248,247,.94));
  box-shadow: var(--shadow-soft);
}

.newface-label,
.link-group-title,
.price-mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display-en);
  font-size: .88rem;
  letter-spacing: .12em;
  color: #5d636d;
}

.newface-label::before,
.link-group-title::before,
.price-mini-title::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(183,188,196,.84);
}

.newface-copy h3 {
  margin-top: 16px;
  font-size: 2rem;
}

.newface-meta {
  margin-top: 10px;
}

.newface-note {
  margin: 16px 0 18px;
  color: rgba(38,40,45,.78);
}

.newface-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(144, 151, 161, .22);
  background: rgba(255,255,255,.88);
  transform: translateY(-50%);
  cursor: pointer;
}

.newface-nav.prev { left: 0; }
.newface-nav.next { right: 0; }

.guide-grid {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.16fr .92fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.guide-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(144, 151, 161, .18);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.guide-panel.large { grid-row: span 2; }
.guide-panel.tall { grid-row: span 2; }
.guide-panel.wide { grid-column: 2 / span 2; }

.guide-panel img,
.guide-panel::after {
  position: absolute;
  inset: 0;
}

.guide-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.guide-panel::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(36,38,42,.24)),
    linear-gradient(135deg, rgba(229,226,235,.28), rgba(255,255,255,.08));
}

.guide-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 92px;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.74);
  color: var(--text);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
  transform: translate(-50%, -50%);
}

.guide-copy strong {
  font-family: var(--font-display-en);
  font-size: clamp(1.28rem, 2vw, 1.96rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .06em;
}

.guide-copy span {
  margin-top: 8px;
  font-family: var(--font-display-jp);
  font-size: .92rem;
  letter-spacing: .1em;
}

.guide-shine {
  position: absolute;
  top: -20%;
  left: -40%;
  width: 18%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), rgba(199,177,139,.18), transparent);
  opacity: 0;
  z-index: 2;
}

.guide-panel:hover img {
  transform: scale(1.04);
}

.guide-panel:hover {
  border-color: rgba(144, 151, 161, .44);
}

.guide-panel:hover .guide-shine {
  opacity: 1;
  animation: sweep .9s ease-out 1;
}

.new-face-section {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 86px);
}

.therapists-guide-section {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 92px);
}

.section-lead {
  margin: -6px auto 24px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}

.relaxy-widget-container {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 40px 28px;
  border: 1px solid rgba(144, 151, 161, .15);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(247,247,246,.9));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.relaxy-placeholder-title {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: 1.08rem;
}

.relaxy-placeholder-note {
  margin-top: 10px;
  font-size: .86rem;
  color: var(--muted);
}

.information-list {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.information-item {
  display: grid;
  grid-template-columns: 140px 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(144, 151, 161, .1);
  text-decoration: none;
}

.information-item span {
  font-family: var(--font-display-en);
  font-size: .92rem;
  color: var(--muted);
}

.information-item b {
  display: inline-flex;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(144, 151, 161, .14);
  background: rgba(246,246,245,.92);
  font-family: var(--font-display-jp);
  font-size: .86rem;
  font-weight: 500;
}

.information-item:nth-child(4n + 1) b {
  border-color: rgba(61, 104, 255, .2);
  background: rgba(61, 104, 255, .06);
}

.information-item:nth-child(4n + 2) b {
  border-color: rgba(255, 94, 168, .18);
  background: rgba(255, 94, 168, .06);
}

.information-item:nth-child(4n + 3) b {
  border-color: rgba(244, 205, 25, .22);
  background: rgba(244, 205, 25, .08);
}

.information-item:nth-child(4n) b {
  border-color: rgba(142, 107, 255, .18);
  background: rgba(142, 107, 255, .06);
}

.information-item p {
  margin: 0;
  color: rgba(38,40,45,.88);
}

.price-board {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 34px 34px 30px;
  border: 1px solid rgba(144, 151, 161, .18);
  background:
    radial-gradient(circle at 10% 12%, rgba(194, 188, 214, .12), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,247,246,.96));
  box-shadow: var(--shadow-card);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  padding: 28px 18px 24px;
  border: 1px solid rgba(144, 151, 161, .12);
  background: rgba(255,255,255,.84);
  text-align: center;
}

.price-card:nth-child(2) {
  position: relative;
  border-color: rgba(244, 205, 25, .2);
  box-shadow: 0 14px 30px rgba(35, 39, 46, .05);
}

.price-card:nth-child(2)::before {
  content: "RECOMMEND";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 205, 25, .14), rgba(255, 94, 168, .12));
  border: 1px solid rgba(244, 205, 25, .2);
  font-family: var(--font-nav-en);
  font-size: .56rem;
  letter-spacing: .14em;
  color: rgba(38,40,45,.76);
}

.price-card span,
.price-extend span {
  display: block;
  font-family: var(--font-display-en);
  font-size: 1.02rem;
  letter-spacing: .06em;
  color: var(--muted);
}

.price-card strong,
.price-extend strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
}

.price-extend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px 0;
  border-top: 1px solid rgba(144, 151, 161, .12);
}

.access-layout {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.area-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.area-tabs button {
  padding: 10px 16px;
  border: 1px solid rgba(144, 151, 161, .2);
  background: rgba(255,255,255,.88);
  color: #505661;
  cursor: pointer;
}

.area-tabs button.is-active {
  background: linear-gradient(180deg, rgba(54,57,63,.96), rgba(37,39,44,.96));
  color: #fff;
  border-color: rgba(54,57,63,.96);
}

.access-map-card {
  border: 1px solid rgba(144, 151, 161, .16);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,246,244,.94));
  box-shadow: var(--shadow-soft);
}

.access-map-ui {
  padding: 28px;
}

.map-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.map-topbar strong {
  font-family: var(--font-display-jp);
  font-size: 1.16rem;
  font-weight: 500;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(144, 151, 161, .16);
  background: rgba(255,255,255,.84);
  color: #505661;
  font-size: .84rem;
}

.map-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(144, 151, 161, .12);
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 177, 139, .08), transparent 18%),
    linear-gradient(180deg, #fbfbfa, #efefed);
}

.map-stage.is-embed {
  padding: 0;
  background: #f6f5f2;
}

.access-map-embed {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.map-road {
  position: absolute;
  background: rgba(176, 178, 182, .38);
  border-radius: 999px;
}

.road-1 {
  left: 6%;
  right: 8%;
  top: 50%;
  height: 10px;
}

.road-2 {
  left: 42%;
  top: 14%;
  bottom: 10%;
  width: 10px;
}

.road-3 {
  right: 14%;
  top: 18%;
  bottom: 18%;
  width: 8px;
}

.map-pin,
.map-station {
  position: absolute;
}

.map-pin {
  width: 22px;
  height: 22px;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  background: #5f6570;
  box-shadow: 0 8px 20px rgba(37,39,44,.14);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #fff;
}

.map-pin.main {
  left: 56%;
  top: 42%;
}

.map-pin.sub.p2 {
  left: 24%;
  top: 58%;
  width: 18px;
  height: 18px;
  background: rgba(199, 177, 139, .9);
}

.map-pin.sub.p3 {
  right: 20%;
  top: 28%;
  width: 18px;
  height: 18px;
  background: rgba(199, 177, 139, .9);
}

.map-station {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(144, 151, 161, .12);
  background: rgba(255,255,255,.88);
  font-size: .82rem;
  color: var(--muted);
}

.s1 { left: 10%; top: 42%; }
.s2 { left: 47%; top: 10%; }
.s3 { right: 10%; top: 62%; }

.map-note {
  margin-top: 14px;
  font-size: .88rem;
}

.link-groups {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.fake-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(144, 151, 161, .16);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,246,245,.9));
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  text-align: center;
  color: var(--text);
  font-size: .9rem;
}

.link-banner {
  overflow: hidden;
}

.link-banner-media,
.link-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.link-banner-media img {
  object-fit: contain;
  background: #fff;
}

.link-banner-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: 100%;
  padding: 12px;
}

.recruit-section {
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 94px);
}

.recruit-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 28px;
  align-items: stretch;
}

.recruit-copy,
.recruit-card {
  border: 1px solid rgba(144, 151, 161, .16);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,246,244,.92));
  box-shadow: var(--shadow-soft);
}

.recruit-copy {
  padding: 32px 34px;
}

.recruit-label {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: .88rem;
  letter-spacing: .12em;
  color: #5d636d;
}

.recruit-copy h3 {
  margin: 18px 0 16px;
  font-family: var(--font-display-jp);
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  font-weight: 500;
}

.recruit-copy p:last-of-type {
  margin: 0;
  color: rgba(38,40,45,.82);
  line-height: 1.9;
}

.recruit-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.recruit-visual {
  display: grid;
}

.recruit-card {
  position: relative;
  min-height: 100%;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(241,241,239,.92)),
    radial-gradient(circle at 84% 18%, rgba(205, 190, 158, .12), transparent 26%);
}

.recruit-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.8);
  pointer-events: none;
}

.recruit-card-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-display-en);
  font-size: .82rem;
  letter-spacing: .16em;
  color: #727784;
}

.recruit-card strong {
  display: block;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: .94;
}

.recruit-card b {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display-en);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: #6f7480;
}

.recruit-card p {
  max-width: 28rem;
  margin: 22px 0 0;
  color: rgba(38,40,45,.82);
  line-height: 1.85;
}

/* OTONA LAB. playful accent */
.newface-label {
  position: relative;
  padding-right: 18px;
}

.newface-label::after {
  content: "!";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  color: var(--pop-orange);
  font-size: .92rem;
}

.guide-panel.small::before,
.guide-panel.wide::before {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.guide-panel.small::before {
  right: 18px;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(142, 107, 255, .86);
}

.guide-panel.wide::before {
  left: 18px;
  bottom: 18px;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pop-yellow), var(--pop-green));
}

.guide-panel:hover::before {
  transform: translateY(-2px) rotate(6deg);
  transition: transform .3s ease;
}

.topbar-right a:hover,
.topbar-right a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #2f4df0;
}

.ghost-button,
.reservation-actions a,
.footer-actions a,
.detail-link {
  position: relative;
  overflow: hidden;
}

.ghost-button::before,
.reservation-actions a::before,
.footer-actions a::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pop-blue);
  opacity: 0;
  transform: translate(8px, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.ghost-button:hover,
.ghost-button:focus-visible,
.reservation-actions a:hover,
.reservation-actions a:focus-visible,
.footer-actions a:hover,
.footer-actions a:focus-visible {
  transform: translateY(-2px);
}

.ghost-button:hover::before,
.ghost-button:focus-visible::before,
.reservation-actions a:hover::before,
.reservation-actions a:focus-visible::before,
.footer-actions a:hover::before,
.footer-actions a:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.detail-link {
  transition: color .28s ease, transform .28s ease;
}

.detail-link::after {
  content: "→";
}

.detail-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pop-orange), var(--pop-pink));
  flex: 0 0 auto;
  transform: translateX(0);
  transition: transform .28s ease;
}

.detail-link:hover,
.detail-link:focus-visible {
  color: #2f4df0;
  transform: translateX(2px);
}

.detail-link:hover::before,
.detail-link:focus-visible::before {
  transform: translateX(4px);
}

.campaign-section .heading-ornament::before { background: var(--pop-orange); }
.schedule-section .heading-ornament::before { background: var(--pop-blue); }
.new-face-section .heading-ornament::before { background: var(--pop-pink); }
.therapists-guide-section .heading-ornament::before { background: var(--pop-yellow); }
.therapist-directory-section .heading-ornament::before { background: var(--pop-yellow); }
.access-section .heading-ornament::before { background: var(--pop-green); }
.recruit-section .heading-ornament::before { background: var(--pop-purple); }

.fake-banner.wide {
  grid-column: span 2;
}

.reservation-strip {
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(44,46,52,.96), rgba(29,31,36,.96));
}

.reservation-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.reservation-label {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: rgba(255,255,255,.96);
  letter-spacing: .08em;
}

.reservation-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.reservation-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  color: #fff;
  text-decoration: none;
  font-size: .86rem;
  letter-spacing: .04em;
  transition: background .2s ease, border-color .2s ease;
}

.reservation-actions a:hover,
.reservation-actions a:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.46);
}

.site-footer {
  min-height: 360px;
  overflow: hidden;
}

.footer-photo,
.footer-overlay {
  position: absolute;
  inset: 0;
}

.footer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer-overlay {
  background:
    linear-gradient(180deg, rgba(38,40,45,.52), rgba(25,27,31,.82)),
    radial-gradient(circle at 12% 18%, rgba(188,180,214,.16), transparent 24%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 32px 72px;
  align-items: center;
  min-height: 360px;
  padding: 52px 0 28px;
  color: rgba(255,255,255,.94);
}

.footer-brand {
  margin: 0;
  font-family: var(--font-logo);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: .06em;
  white-space: nowrap;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.footer-jp {
  margin-top: 10px;
  color: rgba(255,255,255,.84);
}

.footer-note {
  margin-top: 6px;
  font-family: var(--font-nav-en);
  font-size: .76rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.76);
}

.footer-area {
  margin: 12px 0 0;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  line-height: 1.7;
}

.footer-info {
  display: grid;
  gap: 8px;
}

.footer-info p {
  margin: 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.86);
  font-size: .9rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

.mobile-fixed-nav {
  display: none;
}

/* OTONA LAB. mobile flow and visual depth */

body:not([data-page="home"]) .hero,
body:not([data-page="home"]) .news-ticker,
body:not([data-page="home"]) .brand-video-section {
  display: none;
}

body:not([data-page="therapists"]) .therapist-directory-section,
body:not([data-page="home"]) .terms-section {
  display: none;
}

body[data-page="home"] .therapist-directory-section,
body[data-page="therapists"] .therapist-directory-section,
body[data-page="home"] .terms-section {
  display: block;
}

body[data-page="therapists"] .therapists-guide-section {
  display: none;
}

body[data-page="therapists"] main > section:not(.therapist-directory-section) {
  display: none;
}

body[data-page="campaign"] .schedule-section,
body[data-page="campaign"] .new-face-section,
body[data-page="campaign"] .therapists-guide-section,
body[data-page="campaign"] .therapist-directory-section,
body[data-page="campaign"] .relaxi-section,
body[data-page="campaign"] .information-section,
body[data-page="campaign"] .price-section,
body[data-page="campaign"] .access-section,
body[data-page="campaign"] .recruit-section,
body[data-page="campaign"] .links-section,
body[data-page="campaign"] .terms-section {
  display: none;
}

body[data-page="schedule"] .campaign-section,
body[data-page="schedule"] .new-face-section,
body[data-page="schedule"] .therapists-guide-section,
body[data-page="schedule"] .therapist-directory-section,
body[data-page="schedule"] .relaxi-section,
body[data-page="schedule"] .information-section,
body[data-page="schedule"] .price-section,
body[data-page="schedule"] .access-section,
body[data-page="schedule"] .recruit-section,
body[data-page="schedule"] .links-section,
body[data-page="schedule"] .terms-section {
  display: none;
}

body[data-page="information"] .campaign-section,
body[data-page="information"] .schedule-section,
body[data-page="information"] .new-face-section,
body[data-page="information"] .therapists-guide-section,
body[data-page="information"] .therapist-directory-section,
body[data-page="information"] .relaxi-section,
body[data-page="information"] .price-section,
body[data-page="information"] .access-section,
body[data-page="information"] .recruit-section,
body[data-page="information"] .links-section,
body[data-page="information"] .terms-section {
  display: none;
}

body[data-page="price"] .campaign-section,
body[data-page="price"] .schedule-section,
body[data-page="price"] .new-face-section,
body[data-page="price"] .therapists-guide-section,
body[data-page="price"] .therapist-directory-section,
body[data-page="price"] .relaxi-section,
body[data-page="price"] .information-section,
body[data-page="price"] .access-section,
body[data-page="price"] .recruit-section,
body[data-page="price"] .links-section,
body[data-page="price"] .terms-section {
  display: none;
}

body[data-page="access"] .campaign-section,
body[data-page="access"] .schedule-section,
body[data-page="access"] .new-face-section,
body[data-page="access"] .therapists-guide-section,
body[data-page="access"] .therapist-directory-section,
body[data-page="access"] .relaxi-section,
body[data-page="access"] .information-section,
body[data-page="access"] .price-section,
body[data-page="access"] .recruit-section,
body[data-page="access"] .links-section,
body[data-page="access"] .terms-section {
  display: none;
}

body[data-page="reservation"] .campaign-section,
body[data-page="reservation"] .schedule-section,
body[data-page="reservation"] .new-face-section,
body[data-page="reservation"] .therapists-guide-section,
body[data-page="reservation"] .therapist-directory-section,
body[data-page="reservation"] .relaxi-section,
body[data-page="reservation"] .information-section,
body[data-page="reservation"] .price-section,
body[data-page="reservation"] .access-section,
body[data-page="reservation"] .recruit-section,
body[data-page="reservation"] .links-section,
body[data-page="reservation"] .terms-section {
  display: none;
}

body[data-page="caution"] .campaign-section,
body[data-page="caution"] .schedule-section,
body[data-page="caution"] .new-face-section,
body[data-page="caution"] .therapists-guide-section,
body[data-page="caution"] .therapist-directory-section,
body[data-page="caution"] .relaxi-section,
body[data-page="caution"] .information-section,
body[data-page="caution"] .price-section,
body[data-page="caution"] .access-section,
body[data-page="caution"] .recruit-section,
body[data-page="caution"] .links-section,
body[data-page="caution"] .terms-section {
  display: none;
}

body[data-page="recruit"] .campaign-section,
body[data-page="recruit"] .schedule-section,
body[data-page="recruit"] .new-face-section,
body[data-page="recruit"] .therapists-guide-section,
body[data-page="recruit"] .therapist-directory-section,
body[data-page="recruit"] .relaxi-section,
body[data-page="recruit"] .information-section,
body[data-page="recruit"] .price-section,
body[data-page="recruit"] .access-section,
body[data-page="recruit"] .recruit-section,
body[data-page="recruit"] .links-section,
body[data-page="recruit"] .terms-section,
body[data-page="recruit"] .reservation-strip {
  display: none;
}

body[data-page="recruit"] .recruit-page {
  display: block;
}

body[data-page="campaign"] .campaign-section,
body[data-page="schedule"] .schedule-section,
body[data-page="information"] .information-section,
body[data-page="price"] .price-section,
body[data-page="access"] .access-section,
body[data-page="reservation"] .reservation-strip,
body[data-page="ranking"] .ranking-page-section,
body[data-page="terms"] .terms-page-section,
body[data-page="recruit"] .recruit-page {
  display: block;
}

.campaign-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 36px;
}

.campaign-section .section-heading {
  display: none;
}

.schedule-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,249,251,.98));
}

.new-face-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 94, 168, .05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #faf8fb 100%);
}

.information-section,
.links-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.price-section {
  background:
    linear-gradient(180deg, rgba(248,249,250,.98), rgba(255,255,255,.98));
}

.access-section,
.recruit-section {
  background:
    linear-gradient(180deg, rgba(250,250,252,.98), rgba(245,247,250,.98));
}

.section-frame,
.price-board,
.access-map-card,
.recruit-copy,
.recruit-card,
.link-grid,
.relaxy-widget-container {
  border-radius: 16px;
  border: 1px solid rgba(176, 183, 194, .18);
  box-shadow:
    0 22px 54px rgba(40, 48, 65, .10),
    0 5px 14px rgba(110, 90, 150, .07),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* OTONA LAB. schedule / new face / therapists / price / recruit redesign */

.schedule-strip {
  width: min(100% - 96px, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 22px;
}

.schedule-card--clickable {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  border-radius: 0;
  overflow: hidden;
}

.schedule-card-visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.4), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(238,243,250,.95));
}

.schedule-card-visual picture,
.schedule-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.schedule-card-visual img {
  object-fit: cover;
  transition: transform .45s ease;
}

.schedule-card-visual::before,
.therapist-mini-visual::before,
.newface-visual::before,
.price-visual-media::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
  z-index: 2;
}

.schedule-card-visual::after,
.therapist-mini-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.12), rgba(248,250,255,.48));
  pointer-events: none;
  z-index: 1;
}

.status-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 98px;
  padding: 10px 12px 9px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 30px rgba(40, 48, 65, .08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.status-ribbon strong {
  font-family: var(--font-display-en);
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .08em;
}

.status-ribbon small {
  font-size: .68rem;
  color: rgba(52, 58, 70, .74);
  letter-spacing: .04em;
}

.ribbon-blue strong { color: #2f66f0; }
.ribbon-purple strong { color: #7d55f0; }
.ribbon-pink strong { color: #e96d93; }
.ribbon-gray strong { color: #626975; }
.ribbon-yellow strong { color: #8f6d05; }

.schedule-card-body {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.995), rgba(247,249,252,.985));
}

.card-name-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  flex-wrap: wrap;
}

.card-name-row strong,
.therapist-mini-body strong {
  font-family: var(--font-card-name);
  font-size: 1.54rem;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: .04em;
  color: #20242b;
}

.card-age {
  font-family: var(--font-card-ui);
  font-size: .81rem;
  font-weight: 400;
  color: #9299a6;
  letter-spacing: 0;
  white-space: nowrap;
}

.card-size-line,
.schedule-size-line,
.therapist-size-line,
.newface-size {
  margin-top: 4px;
  font-family: var(--font-card-ui);
  font-size: .84rem;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  color: #3e4652;
  font-feature-settings: "tnum" 1, "lnum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  white-space: nowrap;
}

.schedule-time-panel {
  display: grid;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(212, 219, 228, .9);
}

.schedule-time-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.schedule-kicker {
  font-family: var(--font-card-ui);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: #9aa0aa;
  text-transform: uppercase;
}

.schedule-status-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(7px);
  border-bottom: 1px solid rgba(232, 236, 242, .92);
}

.schedule-status-marquee::before,
.schedule-status-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 2;
  pointer-events: none;
}

.schedule-status-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,0));
}

.schedule-status-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,.82), rgba(255,255,255,0));
}

.schedule-status-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  height: 100%;
  padding-left: 18px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  color: rgba(25, 30, 38, .78);
  white-space: nowrap;
  animation: scheduleStatusMarquee 16s linear infinite;
  animation-delay: var(--status-delay, 0s);
}

@keyframes scheduleStatusMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.schedule-time-main {
  display: block;
  font-family: var(--font-card-time);
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.005em;
  font-variant-numeric: tabular-nums;
  color: #20242b;
  font-feature-settings: "tnum" 1, "lnum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.schedule-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
}

.schedule-tag,
.therapist-tag,
.schedule-tag-row em,
.newface-tag-row span,
.therapist-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 26px;
  padding: 4px 9px 5px;
  border-radius: 2px;
  border: 1px solid rgba(206, 213, 223, .9);
  background: rgba(255,255,255,.94);
  font-family: var(--font-card-ui);
  font-size: .67rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  font-style: normal;
  color: #525b68;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.has-dot::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: #9aa3b0;
}

.dot-blue::before { background: #4a7cff; }
.dot-coral::before { background: #ff7a8f; }
.dot-yellow::before { background: #e8bd31; }
.dot-violet::before { background: #7f6cff; }

.therapist-mini-body {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,248,250,.99));
}

.therapist-mini-detail-link {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: #596fbd;
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: 0;
  transition: max-height .2s ease, opacity .2s ease, margin-top .2s ease;
}

.therapist-mini-card--detail:hover .therapist-mini-detail-link,
.therapist-mini-card--detail:focus-visible .therapist-mini-detail-link {
  max-height: 24px;
  margin-top: 2px;
  opacity: 1;
}

.therapist-mini-body .schedule-tag-row {
  margin-top: 2px;
}

.schedule-card:hover .schedule-card-visual img,
.schedule-card:focus-visible .schedule-card-visual img {
  transform: scale(1.035);
}

.newface-window {
  min-height: 640px;
}

.newface-slide {
  grid-template-columns: 1.03fr .97fr;
  gap: 34px;
  align-items: stretch;
}

.newface-visual {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 620px;
  border: 1px solid rgba(176, 183, 194, .18);
  box-shadow:
    0 24px 54px rgba(40, 48, 65, .12),
    0 6px 16px rgba(110, 90, 150, .08);
}

.newface-visual picture,
.newface-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.newface-visual img {
  object-fit: cover;
}

.newface-copy {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 620px;
  padding: 42px 42px 38px;
  border-radius: 0;
  border: 1px solid rgba(180, 188, 200, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,248,252,.96) 52%, rgba(241,245,252,.92)),
    radial-gradient(circle at 82% 18%, rgba(181, 212, 255, .16), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(255, 214, 232, .14), transparent 26%);
  box-shadow:
    0 24px 58px rgba(40, 48, 65, .12),
    0 8px 22px rgba(110, 90, 150, .08),
    inset 0 1px 0 rgba(255,255,255,.94);
  overflow: hidden;
}

.newface-copy::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}

.newface-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,.22) 40%, rgba(255,255,255,0) 58%),
    linear-gradient(180deg, rgba(255,255,255,.12), transparent 28%, transparent 72%, rgba(204, 214, 232, .08));
  opacity: .75;
}

.newface-copy > * {
  position: relative;
  z-index: 1;
}

.newface-copy .newface-label::before,
.newface-copy .newface-meta::before,
.newface-copy .newface-size::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 190, 152, .7), rgba(214, 190, 152, 0));
  transform: translateY(-50%);
}

.newface-copy .newface-label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -2px;
  width: 44px;
  height: 44px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.28) 0 12%, transparent 14%),
    linear-gradient(135deg, rgba(117, 174, 255, .08), rgba(255,255,255,0) 55%, rgba(255, 174, 201, .12));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: .85;
  pointer-events: none;
}

.newface-copy .newface-size::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(190, 199, 214, .55), rgba(255,255,255,0));
}

.newface-copy dl::before {
  content: "";
  position: absolute;
  right: 24px;
  top: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 213, 255, .12), rgba(170, 213, 255, 0) 68%);
  pointer-events: none;
  filter: blur(2px);
}

.newface-copy dl::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: -12px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 205, 224, .12), rgba(255, 205, 224, 0) 68%);
  pointer-events: none;
  filter: blur(3px);
}

.newface-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.newface-debut-line {
  margin: 0 0 6px;
}

.newface-meta {
  margin: -4px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  color: #6d7582;
}

.newface-catch {
  margin: 4px 0 0;
  font-family: var(--font-display-jp);
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
  line-height: 1.7;
  color: #222832;
}

.newface-intro {
  display: grid;
  gap: 8px;
}

.newface-intro p {
  margin: 0;
  line-height: 1.9;
  color: rgba(38,40,45,.82);
}

.newface-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newface-size {
  margin: -2px 0 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(191, 199, 211, .18);
}

.newface-copy dl {
  position: relative;
  display: grid;
  gap: 0;
  margin: 6px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(191, 199, 211, .14);
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  border-radius: 12px;
}

.newface-copy dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(191, 199, 211, .14);
}

.newface-copy dt {
  font-size: .9rem;
  color: #7f8895;
  letter-spacing: .04em;
}

.newface-copy dd {
  margin: 0;
  text-align: right;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: #2a3039;
}

.newface-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.section-button.is-compact {
  min-height: 44px;
  padding: 11px 18px;
}

.therapist-section-note {
  margin: 0 auto 26px;
  width: min(100%, 760px);
  text-align: center;
  color: #727986;
  font-size: .92rem;
}

.therapist-directory-grid {
  width: min(100%, 1180px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px 18px;
}

.therapist-mini-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.therapist-mini-card--debut::before,
.newface-slide--debut::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(114, 142, 255, .14) 0%,
    rgba(255, 255, 255, .84) 34%,
    rgba(255, 153, 167, .1) 66%,
    rgba(255, 215, 107, .14) 100%
  );
}

.therapist-mini-card--debut::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.therapist-mini-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.therapist-mini-visual picture,
.therapist-mini-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.therapist-mini-visual img {
  object-fit: cover;
}

.therapist-mini-body {
  display: grid;
  gap: 8px;
  min-height: 160px;
  position: relative;
}

.therapist-mini-card--debut .therapist-mini-body::before {
  content: "NEW FACE";
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: .16em;
  color: rgba(103, 111, 124, .034);
  pointer-events: none;
  white-space: nowrap;
}

.therapist-debut-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 28px);
  padding: 5px 10px 6px;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.62),
    0 8px 20px rgba(26, 31, 39, .08);
  font-family: var(--font-card-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.2;
  color: rgba(46, 52, 61, .82);
  text-transform: uppercase;
  white-space: nowrap;
}

.therapist-debut-line,
.newface-debut-line {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: #747b86;
  text-transform: uppercase;
}

.newface-slide--debut::before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
}

.newface-watermark {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: .16em;
  color: rgba(103, 111, 124, .034);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.therapist-mini-body b {
  font-size: .82rem;
  font-weight: 500;
  color: #5e6571;
}

.therapist-mini-tag-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.price-visual-board {
  width: min(100%, 1140px);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 0;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(176, 183, 194, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,248,252,.96));
  box-shadow:
    0 26px 60px rgba(40, 48, 65, .12),
    0 8px 24px rgba(110, 90, 150, .08),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.price-visual-board:has(.price-visual-poster) {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-visual-poster {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(187, 195, 208, .28);
  box-shadow:
    0 28px 68px rgba(40, 48, 65, .12),
    0 10px 28px rgba(110, 90, 150, .08),
    inset 0 1px 0 rgba(255,255,255,.92);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,249,252,.9));
}

.price-visual-poster picture,
.price-visual-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.price-visual-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 16px;
  padding: 52px 52px 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,252,.9) 55%, rgba(244,248,255,.76));
}

.price-visual-copy::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(188, 195, 208, .42), transparent);
}

.price-visual-brand {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.price-brand-name {
  margin: 0;
  font-family: var(--font-logo);
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  font-weight: 500;
  letter-spacing: .02em;
  color: #3e424b;
}

.price-brand-sub {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: .92rem;
  letter-spacing: .28em;
  color: rgba(184, 155, 111, .9);
}

.price-visual-divider {
  position: relative;
  display: block;
  width: min(100%, 340px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 185, 154, .9) 16%, rgba(204, 185, 154, .9) 84%, transparent);
}

.price-visual-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(212, 191, 156, .82);
  background: rgba(255,255,255,.92);
  transform: translate(-50%, -50%) rotate(45deg);
}

.price-kicker {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: 1.08rem;
  letter-spacing: .28em;
  color: #7b6a58;
  text-align: center;
}

.price-visual-copy h3 {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: clamp(2.3rem, 3.6vw, 3.6rem);
  font-weight: 500;
  line-height: .96;
  text-align: center;
}

.price-copy {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: 1.18rem;
  color: #716556;
  text-align: center;
}

.price-visual-list,
.price-visual-extension {
  display: grid;
  gap: 8px;
}

.price-visual-frame {
  position: relative;
  margin-top: 8px;
  padding: 28px 26px 20px;
  border: 1px solid rgba(210, 190, 160, .8);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
}

.price-visual-frame::before,
.price-visual-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(214, 194, 162, .8);
  background: rgba(255,255,255,.94);
  transform: translateX(-50%) rotate(45deg);
}

.price-visual-frame::before {
  top: -8px;
}

.price-visual-frame::after {
  bottom: -8px;
}

.price-visual-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 12px 0;
  border-bottom: 1px solid rgba(183, 191, 205, .16);
}

.price-visual-row span {
  font-family: var(--font-display-en);
  font-size: .96rem;
  letter-spacing: .08em;
  color: #67707d;
}

.price-visual-row strong {
  font-family: var(--font-logo);
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 500;
  color: #4a433e;
}

.price-visual-extension small {
  font-family: var(--font-display-en);
  font-size: .76rem;
  letter-spacing: .18em;
  color: #8d7a66;
}

.price-visual-note {
  margin: 4px 0 0;
  font-size: .96rem;
  line-height: 1.9;
  color: #6d6963;
}

.price-visual-signoff {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.price-visual-signoff strong {
  font-family: var(--font-display-jp);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  color: #4a443f;
}

.price-visual-signoff span {
  display: inline-block;
  font-family: "Bodoni Moda", var(--font-display-en);
  font-size: 1.24rem;
  font-style: italic;
  color: rgba(173, 146, 111, .88);
}

.price-visual-media {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244,247,252,.66), rgba(255,255,255,.12));
}

.price-visual-media picture,
.price-visual-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.price-visual-media img {
  object-fit: cover;
}

.price-visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 28%, transparent 70%, rgba(255,255,255,.12));
  pointer-events: none;
}

.recruit-hero-stage {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.recruit-hero-card {
  display: grid;
  gap: 22px;
  border-radius: 0;
  border: 1px solid rgba(180, 188, 200, .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(247,249,252,.95)),
    radial-gradient(circle at 12% 16%, rgba(121, 171, 255, .12), transparent 24%),
    radial-gradient(circle at 85% 16%, rgba(255, 164, 196, .1), transparent 22%),
    radial-gradient(circle at 74% 82%, rgba(255, 218, 108, .1), transparent 22%);
  box-shadow:
    0 24px 54px rgba(40, 48, 65, .1),
    0 8px 22px rgba(110, 90, 150, .08),
    inset 0 1px 0 rgba(255,255,255,.95);
  padding: 20px;
}

.recruit-banner-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(205, 212, 224, .42);
  background: rgba(255,255,255,.84);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 14px 34px rgba(41, 48, 67, .08);
}

.recruit-banner-frame picture,
.recruit-banner-frame img {
  display: block;
  width: 100%;
}

.recruit-banner-frame img {
  height: auto;
}

.recruit-hero-summary {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 4px 12px 2px;
}

.recruit-hero-kicker {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #20242b;
}

.recruit-hero-lead {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.recruit-hero-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(38,40,45,.78);
}

.recruit-hero-highlight {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.24;
  color: #1f2430;
}

.recruit-hero-support {
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(62, 70, 82, .82);
}

.recruit-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.recruit-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 205, 218, .58);
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(245,247,250,.82));
  color: #3f4855;
  font-size: .92rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.94);
}

.recruit-hero-actions {
  margin-top: 4px;
}

.recruit-hero-cta {
  min-width: min(100%, 360px);
  justify-content: center;
}

.recruit-page {
  display: none;
  padding: clamp(72px, 8vw, 112px) 0 clamp(88px, 9vw, 128px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,247,250,.98));
}

.recruit-page-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 24px;
}

.recruit-page-hero,
.recruit-page-card {
  border-radius: 18px;
  border: 1px solid rgba(180, 188, 200, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,248,251,.96));
  box-shadow:
    0 22px 52px rgba(40, 48, 65, .12),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.recruit-page-hero {
  padding: 48px 44px;
  margin-bottom: 28px;
}

.recruit-page-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display-en);
  font-size: .84rem;
  letter-spacing: .18em;
  color: #7d55f0;
}

.recruit-page-hero h2 {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: .95;
}

.recruit-page-lead,
.recruit-page-text {
  margin: 16px 0 0;
}

.recruit-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.recruit-page-card {
  padding: 30px 28px;
}

.recruit-page-card--wide {
  grid-column: 1 / -1;
}

.recruit-page-card--banner {
  padding: 14px;
}

.recruit-page-banner-frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(200, 207, 220, .44);
  background: rgba(255,255,255,.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    0 16px 38px rgba(40, 48, 65, .08);
}

.recruit-page-banner-frame picture,
.recruit-page-banner-frame img {
  display: block;
  width: 100%;
}

.recruit-page-banner-frame img {
  height: auto;
}

.recruit-page-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display-jp);
  font-size: 1.26rem;
}

.recruit-promise-list {
  display: grid;
  gap: 18px;
}

.recruit-promise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(183, 191, 205, .14);
}

.recruit-promise-item:first-child {
  padding-top: 4px;
  border-top: 0;
}

.recruit-promise-number {
  margin: 0;
  font-family: var(--font-display-en);
  font-size: 1rem;
  letter-spacing: .14em;
  color: #7b8290;
}

.recruit-promise-item h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.recruit-promise-item p {
  margin: 0;
}

.recruit-page-card p,
.recruit-page-card li,
.recruit-page-card dd,
.recruit-page-card dt,
.recruit-page-sub-link a {
  color: rgba(38,40,45,.82);
}

.recruit-page-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.recruit-page-card li + li {
  margin-top: 10px;
}

.recruit-page-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.recruit-page-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(183, 191, 205, .14);
}

.recruit-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.recruit-faq-list {
  display: grid;
  gap: 12px;
}

.recruit-faq-list details {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(183, 191, 205, .14);
}

.recruit-faq-list summary {
  cursor: pointer;
  font-weight: 500;
}

.recruit-faq-list p {
  margin: 12px 0 0;
}

.section-button,
.ghost-button,
.detail-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 0;
  border: 1px solid rgba(167, 174, 185, .26);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,247,250,.96));
  box-shadow:
    0 12px 28px rgba(40, 48, 65, .08),
    inset 0 1px 0 rgba(255,255,255,.94);
  color: #464c57;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, color .35s ease, background .35s ease;
  overflow: hidden;
}

.section-button::before,
.ghost-button::before,
.detail-link::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 26%;
  height: 160%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), rgba(204, 214, 235, .32), transparent);
  opacity: 0;
}

.section-button::after,
.ghost-button::after {
  content: "→";
  font-size: .9rem;
  transition: transform .3s ease;
}

.section-button:hover,
.section-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible,
.detail-link:hover,
.detail-link:focus-visible,
.text-link.align-center:hover,
.text-link.align-center:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(61, 104, 255, .22);
  box-shadow:
    0 18px 38px rgba(40, 48, 65, .12),
    0 5px 16px rgba(61, 104, 255, .08),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.section-button:hover::before,
.section-button:focus-visible::before,
.ghost-button:hover::before,
.ghost-button:focus-visible::before,
.detail-link:hover::before,
.detail-link:focus-visible::before {
  opacity: 1;
  animation: sweep .75s ease-out 1;
}

.text-link.align-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  margin-top: 10px;
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #57606d;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.text-link.align-center::after {
  content: "→";
  font-size: .9em;
  transition: transform .25s ease, opacity .25s ease;
}

.text-link.align-center:hover,
.text-link.align-center:focus-visible {
  transform: translateX(2px);
  color: #2c3542;
}

.text-link.align-center:hover::after,
.text-link.align-center:focus-visible::after {
  transform: translateX(2px);
}

.section-button:hover::after,
.section-button:focus-visible::after,
.ghost-button:hover::after,
.ghost-button:focus-visible::after {
  transform: translateX(4px);
}

.filter-tabs,
.area-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin: 0 auto 24px;
}

.filter-tabs button,
.area-tabs button {
  position: relative;
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid rgba(176, 183, 194, .24);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,247,250,.96));
  box-shadow: 0 10px 24px rgba(40, 48, 65, .06);
  color: #505661;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease, color .3s ease;
}

.filter-tabs button.is-active,
.area-tabs button.is-active {
  color: #1f2530;
  border-color: rgba(61, 104, 255, .22);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(236,243,255,.95));
  box-shadow:
    0 14px 28px rgba(40, 48, 65, .08),
    0 4px 12px rgba(61, 104, 255, .12);
}

.filter-tabs button:hover,
.area-tabs button:hover {
  transform: translateY(-1px);
}

.filter-empty {
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
}

.schedule-card,
.therapist-mini-card {
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(208, 187, 150, .34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(246,248,251,.97)),
    linear-gradient(135deg, rgba(255,255,255,.44), rgba(244,247,252,.18));
  box-shadow:
    0 20px 48px rgba(40, 48, 65, .13),
    0 6px 16px rgba(110, 90, 150, .08),
    inset 0 1px 0 rgba(255,255,255,.92);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.schedule-card::after,
.therapist-mini-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.8);
  pointer-events: none;
}

.schedule-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.84) 0%,
    rgba(233, 206, 155, .72) 22%,
    rgba(255,255,255,.22) 50%,
    rgba(140, 186, 255, .26) 76%,
    rgba(255,255,255,.82) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .92;
}

.schedule-card:hover,
.schedule-card:focus-within,
.therapist-mini-card:hover,
.therapist-mini-card:focus-within {
  transform: translateY(-3px);
  box-shadow:
    0 26px 56px rgba(40, 48, 65, .17),
    0 10px 20px rgba(110, 90, 150, .10),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.card-image-wrap,
.therapist-mini-visual {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(180, 188, 200, .18);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(241,244,248,.96));
}

.card-image-wrap::before,
.therapist-mini-visual::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,.62);
  pointer-events: none;
  z-index: 2;
}

.card-image-wrap::after,
.therapist-mini-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.18), rgba(255,255,255,.42));
  pointer-events: none;
}

.card-image-wrap img,
.therapist-mini-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.schedule-card:hover .card-image-wrap img,
.therapist-mini-card:hover .therapist-mini-visual img {
  transform: scale(1.03);
}

.schedule-card-body,
.therapist-mini-body {
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,248,250,.98));
}

.profile-area {
  margin: 6px 0 0;
  font-size: .76rem;
  letter-spacing: .08em;
  color: #5f6670;
}

.therapist-directory-grid {
  width: min(100% - 96px, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
}

.therapist-mini-body h3 {
  margin: 0;
  font-family: var(--font-display-jp);
  font-size: 1.1rem;
  font-weight: 500;
}

.therapist-mini-body dl {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
}

.therapist-mini-body dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(180, 188, 200, .12);
}

.therapist-mini-body dt {
  font-size: .76rem;
  color: var(--muted);
}

.therapist-mini-body dd {
  margin: 0;
  font-family: var(--font-display-en);
}

.status-badge {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.44);
  box-shadow:
    0 10px 22px rgba(40, 48, 65, .10),
    inset 0 1px 0 rgba(255,255,255,.36);
}

.is-available {
  background: linear-gradient(135deg, rgba(71, 176, 255, .96), rgba(94, 211, 216, .88));
}

.is-time {
  background: linear-gradient(135deg, rgba(168, 136, 255, .92), rgba(120, 107, 255, .88));
}

.is-last {
  background: linear-gradient(135deg, rgba(255, 120, 153, .94), rgba(255, 147, 124, .88));
}

.is-sold {
  background: linear-gradient(135deg, rgba(111, 116, 126, .92), rgba(88, 92, 100, .92));
}

.is-new {
  background: linear-gradient(135deg, rgba(255, 218, 76, .95), rgba(255, 202, 83, .88));
  color: #524312;
}

.status-badge.is-new::before {
  background: rgba(82, 67, 18, .82);
}

.information-list {
  display: grid;
  gap: 14px;
}

.information-card {
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(180, 188, 200, .18);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,251,.98));
  box-shadow:
    0 18px 42px rgba(40, 48, 65, .08),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.information-thumb {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244,246,250,.92), rgba(235,239,245,.96));
}

.information-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.information-thumb.is-placeholder {
  display: grid;
  place-items: center;
  color: #5b6270;
  font-family: var(--font-logo);
}

.information-copy {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
}

.information-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.information-meta time {
  font-family: var(--font-display-en);
  font-size: .88rem;
  color: var(--muted);
}

.information-copy strong {
  font-family: var(--font-display-jp);
  font-size: 1rem;
  line-height: 1.55;
}

.information-copy p {
  display: -webkit-box;
  margin: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(38,40,45,.76);
}

.information-copy small {
  color: #606771;
}

.mobile-menu-panel {
  display: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(242, 245, 248, .62);
  backdrop-filter: blur(10px);
}

.mobile-menu-sheet {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 22px 20px calc(28px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 94, 168, .07), transparent 22%),
    radial-gradient(circle at 18% 12%, rgba(61, 104, 255, .08), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,247,250,.98));
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-menu-kicker {
  margin: 0 0 6px;
  font-family: var(--font-nav-en);
  font-size: .74rem;
  letter-spacing: .18em;
  color: #69707c;
}

.brand-logo--mobile-menu {
  width: min(100%, 250px);
  height: 34px;
}

.mobile-menu-brand-link { display:inline-flex; max-width:100%; }

/* Use the same menu control on the hero and every subpage. */
@media (max-width:900px) {
  body[data-page="home"] .site-header {
    position:fixed;
    z-index:110;
    top:12px;
    right:16px;
    left:auto;
    width:auto;
    min-height:0;
    background:transparent;
    box-shadow:none;
  }
  body[data-page="home"] .site-header .brand-row {
    position:static;
    display:flex;
    width:auto;
    min-height:0;
    padding:0;
  }
  body[data-page="home"] .site-header .mobile-menu-button {
    display:grid;
    width:42px;
    height:42px;
    place-items:center;
    border:1px solid rgba(50,50,60,.12);
    border-radius:11px;
    background:rgba(255,255,255,.88);
    box-shadow:0 5px 15px rgba(40,45,60,.10);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  body[data-page="home"] .site-header .mobile-menu-button span {
    width:21px;
    height:2px;
    margin:3px 0;
    border-radius:99px;
    background:#282d30;
  }
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(176, 183, 194, .22);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(40, 48, 65, .08);
}

.mobile-menu-links {
  display: grid;
  border-top: 1px solid rgba(176, 183, 194, .22);
}

.mobile-menu-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  row-gap: 4px;
  min-height: 68px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(176, 183, 194, .18);
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}

.mobile-menu-link span {
  grid-column: 1;
  grid-row: 1;
  font-size: .94rem;
  font-weight: 500;
  color: #5e6570;
}

.mobile-menu-link b {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display-en);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(76, 84, 98, .56);
}

.mobile-menu-link i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  font-style: normal;
  color: #808792;
}

.mobile-menu-link.is-active,
.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  background: linear-gradient(90deg, rgba(244,247,252,.92), rgba(255,255,255,0));
}

.mobile-menu-link.is-active b {
  color: var(--pop-blue);
}

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

.mobile-menu-actions a {
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(176, 183, 194, .22);
  background: rgba(255,255,255,.62);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #535b67;
  font-size: .82rem;
  letter-spacing: .04em;
}

.mobile-menu-actions a:last-child {
  border-color: rgba(41, 46, 54, .78);
  background: linear-gradient(180deg, rgba(47,52,61,.96), rgba(31,35,41,.98));
  color: #fff;
  box-shadow: 0 12px 28px rgba(40, 48, 65, .14);
}

.mobile-menu-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .82rem;
}

.terms-section {
  background:
    linear-gradient(180deg, rgba(248,249,251,.98), rgba(255,255,255,.98));
}

.terms-shell {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.terms-mark {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 20px;
}

.terms-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(40, 48, 65, .08);
}

.terms-dot-blue { background: #4c79ff; }
.terms-dot-pink { background: #ff7e9a; }
.terms-dot-yellow { background: #f3cd42; }

.terms-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(178, 186, 198, .28);
  background:
    linear-gradient(180deg, rgba(252,253,255,.98), rgba(243,246,249,.96));
  box-shadow:
    0 24px 56px rgba(40, 48, 65, .10),
    0 10px 26px rgba(110, 90, 150, .06),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.terms-item {
  border-radius: 18px;
  border: 1px solid rgba(186, 194, 207, .36);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,249,252,.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 24px rgba(40, 48, 65, .05);
  overflow: hidden;
}

.terms-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display-jp);
  font-size: 1.12rem;
  color: #2e333b;
}

.terms-summary::-webkit-details-marker {
  display: none;
}

.terms-summary b {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.terms-summary b::before,
.terms-summary b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: #6a7280;
  transform: translate(-50%, -50%);
  transition: transform .24s ease, opacity .24s ease;
}

.terms-summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.terms-item[open] .terms-summary b::after {
  opacity: 0;
}

.terms-content {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.95;
  color: #555e6c;
}

.terms-content p {
  margin: 0;
}

.terms-content p + p,
.terms-content p + ul,
.terms-content ul + p {
  margin-top: 16px;
}

.terms-content ul {
  margin: 0;
  padding-left: 1.2em;
}

.terms-content li + li {
  margin-top: 10px;
}

.terms-actions {
  margin-top: 24px;
}

.terms-page-section {
  padding-top: 88px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, rgba(250,251,252,.98), rgba(255,255,255,.98));
}

.terms-page-section .terms-shell {
  width: min(100%, 1000px);
}

.terms-page-lead {
  margin: 0 auto 24px;
  max-width: 760px;
  text-align: center;
  color: #5d6571;
  font-size: 1rem;
  line-height: 1.9;
}

.terms-static-list {
  display: grid;
  gap: 16px;
}

.terms-static-block {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(186, 194, 207, .36);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,249,252,.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 14px 28px rgba(40, 48, 65, .06);
}

.terms-static-title {
  margin: 0 0 14px;
  font-family: var(--font-display-jp);
  font-size: 1.18rem;
  color: #2e333b;
}

.ranking-page-section {
  padding-top: 88px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, rgba(249,250,252,.98), rgba(255,255,255,.98));
}

.ranking-simulation {
  display: grid;
  gap: 72px;
}

.ranking-category {
  display: grid;
  gap: 26px;
}

.ranking-category-heading {
  text-align: center;
}

.ranking-category-heading p,
.ranking-category-heading h3 {
  margin: 0;
}

.ranking-category-heading p {
  color: #78818e;
  font-family: var(--font-nav-en);
  font-size: .7rem;
  letter-spacing: .2em;
}

.ranking-category-heading h3 {
  margin-top: 9px;
  color: #303640;
  font-family: var(--font-display-jp);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 500;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ranking-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(38, 43, 52, .08);
  color: #303640;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ranking-card:hover,
.ranking-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(38, 43, 52, .14);
}

.ranking-number {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  background: rgba(45, 50, 59, .9);
  color: #fff;
  font-family: var(--font-display-en);
  font-size: .92rem;
  letter-spacing: .04em;
}

.ranking-card--1 .ranking-number { background: #b79a53; }
.ranking-card--2 .ranking-number { background: #798392; }
.ranking-card--3 .ranking-number { background: #a97f65; }

.ranking-card-photo {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ranking-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.ranking-card-copy {
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
}

.ranking-card-copy strong {
  font-family: var(--font-display-jp);
  font-size: 1.2rem;
  font-weight: 500;
}

.ranking-card-copy small {
  margin-left: 4px;
  color: #6e7783;
  font-size: .75rem;
}

.ranking-card-copy > span,
.ranking-card-copy em {
  color: #697381;
  font-size: .7rem;
  font-style: normal;
  line-height: 1.55;
}

.ranking-card-copy em {
  color: #8a6f68;
}

.therapist-card-detail-hint {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #737c8a;
  font-size: .72rem;
  letter-spacing: .04em;
  opacity: 0;
  transition: max-height .18s ease, margin .18s ease, opacity .18s ease;
}

.newface-slide--detail {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .schedule-card--detail:hover .therapist-card-detail-hint,
  .schedule-card--detail:focus-visible .therapist-card-detail-hint,
  .ranking-card--detail:hover .therapist-card-detail-hint,
  .ranking-card--detail:focus-visible .therapist-card-detail-hint,
  .newface-slide--detail:hover .therapist-card-detail-hint,
  .newface-slide--detail:focus-visible .therapist-card-detail-hint {
    max-height: 24px;
    margin-top: 8px;
    opacity: 1;
  }

  .newface-slide--detail:hover,
  .newface-slide--detail:focus-visible {
    transform: translateY(-2px);
    filter: drop-shadow(0 14px 24px rgba(38, 43, 52, .10));
  }

  .newface-slide--detail:hover .newface-visual img,
  .newface-slide--detail:focus-visible .newface-visual img {
    transform: scale(1.02);
  }
}

.ranking-admin-panel {
  margin-top: 72px;
}

.ranking-admin-panel-inner {
  padding: 28px;
  border: 1px solid rgba(68, 77, 91, .18);
  background: rgba(245, 247, 250, .9);
}

.ranking-admin-panel h3,
.ranking-admin-panel p {
  margin: 0;
}

.ranking-admin-panel h3 {
  margin-top: 6px;
  font-family: var(--font-display-jp);
  font-size: 1.35rem;
}

.ranking-admin-panel p {
  margin-top: 8px;
  color: #65707c;
  font-size: .88rem;
}

.ranking-admin-kicker {
  color: #697486 !important;
  font-family: var(--font-nav-en);
  font-size: .68rem !important;
  letter-spacing: .16em;
}

.ranking-admin-panel form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ranking-admin-panel label {
  display: grid;
  gap: 7px;
}

.ranking-admin-panel label span {
  color: #737c89;
  font-family: var(--font-nav-en);
  font-size: .68rem;
  letter-spacing: .1em;
}

.ranking-admin-panel input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(67, 76, 91, .25);
  background: #fff;
  color: #2f3540;
  font: inherit;
}

.ranking-admin-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ranking-admin-actions button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #3b424e;
  background: #3b424e;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.ranking-admin-actions .ranking-admin-reset {
  background: transparent;
  color: #3b424e;
}

.ranking-coming-card {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 46px 32px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(186, 194, 207, .34);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(244,247,251,.95));
  box-shadow:
    0 24px 56px rgba(40, 48, 65, .08),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.ranking-coming-card p,
.ranking-coming-card h3,
.ranking-coming-card small {
  margin: 0;
}

.ranking-coming-kicker {
  font-family: var(--font-nav-en);
  font-size: .85rem;
  letter-spacing: .24em;
  color: #6a7280;
}

.ranking-coming-title {
  margin-top: 18px;
  font-family: var(--font-logo);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: .94;
  color: #232831;
}

.ranking-coming-sub {
  margin-top: 12px;
  font-family: var(--font-display-jp);
  font-size: 1.08rem;
  color: #5b6470;
}

.ranking-coming-note {
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.9;
  color: #606977;
}

.ranking-select-box {
  margin-top: 34px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(191, 199, 211, .32);
  background: rgba(255,255,255,.72);
}

.ranking-select-box strong {
  display: block;
  font-family: var(--font-display-en);
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: #2f3440;
}

.ranking-select-box small {
  display: block;
  margin-top: 10px;
  font-size: .94rem;
  line-height: 1.8;
  color: #69717d;
}

@media (max-width: 640px) {
  .ranking-page-section {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .ranking-simulation {
    gap: 52px;
  }

  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ranking-card-copy {
    padding: 11px 10px 13px;
  }

  .ranking-card-copy strong {
    font-size: 1.05rem;
  }

  .ranking-card-copy > span,
  .ranking-card-copy em {
    font-size: .63rem;
  }

  .ranking-number {
    top: 8px;
    left: 8px;
    min-width: 48px;
    min-height: 24px;
    font-size: .78rem;
  }

  .ranking-admin-panel {
    margin-top: 48px;
  }

  .ranking-admin-panel-inner {
    padding: 20px 16px;
  }

  .ranking-admin-panel form {
    grid-template-columns: 1fr;
  }

  .schedule-date-tabs {
    grid-template-columns: repeat(7, minmax(68px, 1fr));
    width: 100%;
    margin-bottom: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .schedule-date-tabs button {
    min-height: 44px;
    font-size: .7rem;
    white-space: nowrap;
  }

  .footer-lockup {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .footer-brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .footer-brand {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
    text-align: center;
  }

  .therapist-mini-card--debut .therapist-mini-body::before,
  .newface-watermark {
    top: 12px;
    right: 12px;
    font-size: 2.2rem;
  }

  .therapist-debut-line,
  .newface-debut-line {
    font-size: 9px;
    letter-spacing: .12em;
  }

  .therapist-debut-overlay {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 4px 8px 5px;
    font-size: 8.5px;
    letter-spacing: .1em;
  }

  .terms-shell {
    width: 100%;
  }

  .terms-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .terms-summary {
    padding: 18px 16px;
    font-size: 1rem;
  }

  .terms-content {
    padding: 0 16px 18px;
    font-size: .98rem;
    line-height: 1.85;
  }

  .terms-actions .section-button {
    width: 100%;
    justify-content: center;
  }
}

/* Final home-hero alignment: shared decorative system for desktop and mobile. */
body[data-page="home"] .hero-graphic-marks,
body[data-page="home"] .hero-glass-orbs {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

body[data-page="home"] .hero-mark {
  position: absolute;
  display: block;
  color: #4f86df;
  font-family: var(--font-sans);
  font-style: normal;
  line-height: 1;
  animation: hero-mark-drift 5.6s ease-in-out infinite;
}

body[data-page="home"] .hero-mark--dots {
  top: 67%; left: 30%; width: 42px; height: 54px;
  background-image: radial-gradient(circle, rgba(81, 211, 180, .76) 0 1.55px, transparent 2px);
  background-size: 9px 9px;
  animation-delay: -2.1s;
}
body[data-page="home"] .hero-mark--plus { top: 38%; left: 37%; color: #5c95ef; font-size: 2rem; animation-delay: -.8s; }
body[data-page="home"] .hero-mark--ring { top: 33%; right: 35%; width: 13px; height: 13px; border: 3px solid #5c95ef; border-radius: 50%; animation-delay: -3.3s; }
body[data-page="home"] .hero-mark--triangle { top: 49%; right: 25%; width: 0; height: 0; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 29px solid rgba(141, 91, 200, .92); transform: rotate(-12deg); animation-delay: -1.6s; }
body[data-page="home"] .hero-mark--wave { top: 40%; right: 32%; color: #f278ad; font-size: 2rem; letter-spacing: -.3em; transform: rotate(-18deg); animation-delay: -4.2s; }
body[data-page="home"] .hero-mark--dot { right: 27%; bottom: 30%; width: 11px; height: 11px; border-radius: 50%; background: #64e0a1; animation-delay: -2.7s; }

body[data-page="home"] .hero-glass-orbs i {
  position: absolute;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.88), rgba(196, 226, 245, .18) 36%, rgba(255,255,255,.06) 68%);
  box-shadow: inset 6px 6px 12px rgba(255,255,255,.45), inset -5px -5px 12px rgba(143, 191, 214, .12), 0 7px 16px rgba(97, 123, 147, .08);
  animation: hero-orb-float 8s ease-in-out infinite;
}
body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top: 18%; left: 13%; width: 48px; height: 48px; animation-delay: -1.3s; }
body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top: 20%; right: 18%; width: 78px; height: 78px; animation-delay: -4.4s; }
body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right: 12%; bottom: 23%; width: 44px; height: 44px; animation-delay: -6.2s; }

@media (min-width: 641px) {
  body[data-page="home"] .hero-veil::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(124deg, transparent 12%, rgba(255,255,255,.42) 21%, rgba(215,232,255,.16) 24%, transparent 29%),
      linear-gradient(302deg, transparent 67%, rgba(255,240,205,.24) 73%, rgba(255,255,255,.4) 76%, transparent 81%),
      radial-gradient(circle at 16% 74%, rgba(255,255,255,.78) 0 1px, transparent 1.8px),
      radial-gradient(circle at 79% 22%, rgba(255,255,255,.7) 0 1px, transparent 1.8px);
    opacity: .72;
    animation: hero-glint-breathe 5s ease-in-out infinite alternate;
  }

  body[data-page="home"] .mobile-menu-panel {
    display: none;
    position: fixed;
    z-index: 80;
    inset: 0;
    padding: 24px;
    background: rgba(247, 248, 246, .72);
    backdrop-filter: blur(12px);
  }

  body[data-page="home"].menu-open .mobile-menu-panel { display: block; }
  body[data-page="home"] .mobile-menu-sheet {
    width: min(540px, calc(100% - 48px));
    margin: 26px 30px 0 auto;
    padding: 28px;
    border: 1px solid rgba(42, 47, 49, .1);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 48px rgba(36, 42, 46, .12);
  }
  body[data-page="home"] .mobile-menu-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: transparent; }
  body[data-page="home"] .mobile-menu-sheet { position: relative; z-index: 1; }
  body[data-page="home"] .mobile-menu-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
  body[data-page="home"] .mobile-menu-link { min-height: 74px; }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero-veil {
    background:
      linear-gradient(136deg, transparent 16%, rgba(255,255,255,.36) 20%, transparent 24%),
      linear-gradient(311deg, transparent 66%, rgba(255,246,211,.32) 71%, transparent 76%),
      radial-gradient(ellipse 80% 42% at 14% 5%, rgba(248, 230, 235, .72), transparent 72%),
      radial-gradient(ellipse 88% 44% at 83% 48%, rgba(249, 242, 205, .6), transparent 74%),
      radial-gradient(ellipse 72% 38% at 52% 100%, rgba(232, 241, 205, .62), transparent 76%),
      repeating-linear-gradient(12deg, rgba(58, 61, 63, .025) 0 1px, transparent 1px 48px),
      repeating-linear-gradient(101deg, rgba(58, 61, 63, .018) 0 1px, transparent 1px 74px),
      linear-gradient(164deg, #fbf4f5 0%, #f7f4f2 37%, #faf7e8 68%, #f1f5df 100%);
  }

  body[data-page="home"] .hero-mark--dots { top: 68%; left: 24%; width: 34px; height: 45px; }
  body[data-page="home"] .hero-mark--plus { top: 38%; left: 31%; }
  body[data-page="home"] .hero-mark--ring { top: 33%; right: 25%; }
  body[data-page="home"] .hero-mark--triangle { top: 49%; right: 15%; }
  body[data-page="home"] .hero-mark--wave { top: 40%; right: 24%; }
  body[data-page="home"] .hero-mark--dot { right: 13%; bottom: 30%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top: 20%; left: 14%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top: 22%; right: 18%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right: 11%; bottom: 26%; }
}

/* Preserve the desktop title treatment on mobile at a compact scale. */
@media (max-width: 640px) {
  .section-heading {
    gap: 10px;
    margin-bottom: 30px;
    padding-inline: 8px;
  }

  .section-heading > div {
    width: auto;
    min-width: 0;
    padding: 9px 14px 8px;
  }

  .section-heading > div::before,
  .section-heading::after {
    display: block;
  }

  .section-heading::after {
    bottom: -7px;
    width: 76px;
    height: 7px;
  }

  .heading-ornament {
    display: block;
    flex: 0 0 34px;
    width: 34px;
  }

  .heading-ornament::before {
    width: 6px;
    height: 6px;
  }

  .section-heading-ja {
    margin-top: 6px;
  }

  .section-heading-en::before,
  .section-heading-en::after {
    display: none;
  }
}

/* Reference-driven home visual: a soft plaster panel with playful, quiet color. */
body[data-page="home"] .hero {
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(61, 65, 68, .08);
  background: #f7f6f3;
  box-shadow: 0 10px 30px rgba(45, 49, 53, .035);
}

body[data-page="home"] .hero-picture {
  display: none;
}

body[data-page="home"] .hero-veil {
  z-index: 0;
  background:
    radial-gradient(ellipse 48% 36% at 5% 18%, rgba(255, 211, 222, .44), transparent 76%),
    radial-gradient(ellipse 45% 34% at 93% 80%, rgba(216, 239, 204, .42), transparent 78%),
    radial-gradient(ellipse 52% 38% at 68% 10%, rgba(220, 215, 250, .34), transparent 76%),
    repeating-linear-gradient(15deg, rgba(83, 87, 90, .018) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(104deg, rgba(83, 87, 90, .014) 0 1px, transparent 1px 71px),
    #f8f8f5;
}

body[data-page="home"] .hero-inner {
  z-index: 3;
  width: 100%;
  max-width: none;
  padding-inline: 40px;
}

body[data-page="home"] .hero-copy--otona {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  transform: translateY(5%);
}

body[data-page="home"] .hero-corner-wordmark {
  position: absolute;
  z-index: 5;
  top: 34px;
  left: 34px;
  margin: 0;
  color: #25292b;
  font-family: "Allura", cursive;
  font-size: 1.6rem;
  line-height: 1;
}

body[data-page="home"] .hero-social-rail {
  position: absolute;
  z-index: 5;
  right: 34px;
  top: 50%;
  display: grid;
  gap: 22px;
  color: #25292b;
  font-family: var(--font-sans);
  font-size: 1.16rem;
  text-align: center;
  transform: translateY(-20%);
}

body[data-page="home"] .hero-social-rail span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  transition: transform .2s ease, color .2s ease;
}

body[data-page="home"] .hero-social-rail span:hover {
  color: #fb6d85;
  transform: scale(1.12);
}

body[data-page="home"] .hero-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 100px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(37, 41, 43, .78);
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .22em;
  transform: translateX(-50%);
}

body[data-page="home"] .hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(37, 41, 43, .3);
}

body[data-page="home"] .hero-scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 11px;
  background: #25292b;
  animation: heroScrollLine 2.6s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0%, 20% { transform: translateY(-12px); opacity: 0; }
  45% { opacity: .8; }
  80%, 100% { transform: translateY(30px); opacity: 0; }
}

body[data-page="home"] .hero-quick-actions {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(48, 52, 54, .12);
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(7px);
}

body[data-page="home"] .hero-quick-actions a {
  display: grid;
  min-height: 66px;
  place-content: center;
  gap: 5px;
  color: #25292b;
  font-family: var(--font-sans);
  font-size: .78rem;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease;
}

body[data-page="home"] .hero-quick-actions a + a {
  border-left: 1px solid rgba(48, 52, 54, .13);
}

body[data-page="home"] .hero-quick-actions a:hover {
  background: rgba(255, 246, 249, .8);
}

body[data-page="home"] .hero-quick-actions b {
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 641px) {
  body[data-page="home"] .site-header {
    position: absolute;
    z-index: 20;
    top: 38px;
    right: 44px;
    left: auto;
    width: auto;
    min-height: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .site-header .topbar,
  body[data-page="home"] .site-header .brand-lockup,
  body[data-page="home"] .site-header .brand-cta,
  body[data-page="home"] .site-header .global-nav {
    display: none;
  }

  body[data-page="home"] .site-header .brand-row {
    min-height: 0;
    padding: 0;
  }

  body[data-page="home"] .site-header .mobile-menu-button {
    display: grid;
    width: 44px;
    height: 38px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .site-header .mobile-menu-button span {
    width: 32px;
    height: 1.5px;
    margin: 4px 0;
    background: #25292b;
  }

  body[data-page="home"] .hero {
    min-height: 92vh;
    margin: 16px 2vw;
    border-radius: 20px;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .hero-inner {
    min-height: 92vh;
  }

  body[data-page="home"] .hero-title {
    display: none;
  }

  body[data-page="home"] .hero-handwritten-logo {
    --hero-ink-color: #25292b;
    display: block;
    position: relative;
    z-index: 3;
    width: min(100%, 545px);
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .45));
  }

  body[data-page="home"] .hero-handwritten-word {
    fill: transparent;
    stroke: var(--hero-ink-color);
    stroke-width: .8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    font-family: "Allura", cursive;
    font-style: italic;
    letter-spacing: -.025em;
    animation: hero-ink-draw 1.2s cubic-bezier(.5, 0, .2, 1) forwards;
  }

  body[data-page="home"] .hero-handwritten-word--one { font-size: 95px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size: 98px; animation-delay: .7s; }

  body[data-page="home"] .hero-copy--otona {
    transform: translateY(1%);
  }

  body[data-page="home"] .hero-kicker {
    color: rgba(37, 41, 43, .78);
    text-shadow: none;
  }

  body[data-page="home"] .hero-abstract-shapes,
  body[data-page="home"] .hero-shape { display: block; }

  body[data-page="home"] .hero-abstract-shapes {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
  }

  body[data-page="home"] .hero-shape {
    position: absolute;
    opacity: .72;
    filter: saturate(.82);
    animation: hero-shape-float 9s ease-in-out infinite alternate;
    will-change: transform;
  }

  body[data-page="home"] .hero-shape--blue { top: 42%; left: 26%; width: 140px; height: 200px; --shape-rotate: 14deg; --shape-x: 7px; --shape-y: -10px; border-radius: 61% 39% 47% 53% / 46% 41% 59% 54%; background: rgba(119, 183, 242, .58); animation-delay: -.8s; }
  body[data-page="home"] .hero-shape--yellow { top: 35%; left: 42%; width: 144px; height: 110px; --shape-rotate: -17deg; --shape-x: -6px; --shape-y: 7px; border-radius: 55% 45% 48% 52% / 64% 43% 57% 36%; background: rgba(249, 213, 89, .68); animation-delay: -2.2s; }
  body[data-page="home"] .hero-shape--pink { top: 49%; right: 28%; width: 205px; height: 130px; --shape-rotate: -12deg; --shape-x: -8px; --shape-y: -5px; border-radius: 59% 41% 58% 42% / 42% 55% 45% 58%; background: rgba(240, 110, 165, .56); animation-delay: -4.3s; }
  body[data-page="home"] .hero-shape--sky { top: 21%; left: 50%; width: 162px; height: 67px; --shape-rotate: -5deg; --shape-x: 5px; --shape-y: 7px; border-radius: 56% 44% 62% 38% / 71% 56% 44% 29%; background: rgba(135, 190, 243, .54); animation-delay: -6.1s; }
  body[data-page="home"] .hero-shape--small { top: 17%; right: 42%; width: 42px; height: 42px; --shape-x: -4px; --shape-y: 6px; border-radius: 50%; background: rgba(108, 194, 229, .45); box-shadow: 0 0 0 1px rgba(255, 255, 255, .44) inset; animation-delay: -3.4s; }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    min-height: calc(100svh - var(--fixed-reservation-height) - 22px);
    margin: 10px 10px 0;
    border-radius: 15px;
  }

  body[data-page="home"] .hero,
  body[data-page="home"] .hero-inner {
    min-height: calc(100svh - var(--fixed-reservation-height) - 22px);
  }

  body[data-page="home"] .hero-inner {
    padding: 64px 22px calc(var(--fixed-reservation-height) + 54px);
  }

  body[data-page="home"] .hero-copy--otona {
    width: min(100%, 355px);
    transform: translateY(5%);
  }

  body[data-page="home"] .hero-corner-wordmark {
    top: 24px;
    left: 24px;
    font-size: 1.15rem;
  }

  body[data-page="home"] .hero-social-rail,
  body[data-page="home"] .hero-scroll-cue,
  body[data-page="home"] .hero-quick-actions {
    display: none;
  }

  body[data-page="home"] .mobile-menu-button {
    top: 22px;
    right: 22px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .mobile-menu-button span {
    width: 28px;
    height: 1.5px;
    margin: 4px 0;
    background: #25292b;
  }
}

/* Shared UI: quiet white surfaces, restrained aurora accents, and lighter cards. */
.section {
  background-color: #fbfbf9;
}

.section:nth-of-type(even) {
  background-color: #f7f8f6;
}

.schedule-card,
.newface-slide,
.ranking-card,
.therapist-mini-card,
.information-card {
  border: 1px solid rgba(58, 64, 69, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 24px rgba(47, 53, 59, .045);
}

.tag-row span {
  border-color: rgba(67, 73, 79, .1);
  color: #34393e;
}

.tag-row span:nth-child(4n + 1) { background: rgba(205, 241, 224, .72); }
.tag-row span:nth-child(4n + 2) { background: rgba(253, 222, 231, .72); }
.tag-row span:nth-child(4n + 3) { background: rgba(215, 235, 255, .72); }
.tag-row span:nth-child(4n) { background: rgba(255, 243, 192, .72); }

.reservation-actions a,
.section-actions a,
.campaign-actions a {
  border-radius: 999px;
}

@media (hover: hover) and (pointer: fine) {
  .schedule-card:hover,
  .newface-slide:hover,
  .ranking-card:hover,
  .therapist-mini-card:hover {
    border-color: rgba(113, 185, 234, .38);
    box-shadow: 0 14px 30px rgba(119, 180, 226, .12);
    transform: translateY(-3px);
  }
}

@media (max-width: 900px) {
  .therapist-detail-layout {
    grid-template-columns: 1fr;
  }

  .therapist-detail-copy {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .therapist-detail-copy {
    padding: 18px 16px;
  }

  .therapist-detail-intro {
    font-size: .9rem;
    line-height: 1.7;
  }

  .therapist-detail-facts div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 11px;
  }

  .therapist-detail-messages {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .therapist-detail-message {
    padding: 14px;
  }

  .therapist-detail-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .therapist-detail-actions .section-button {
    min-height: 43px;
    padding: 0 4px;
    font-size: .72rem;
    white-space: nowrap;
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tickerFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(.6); }
  35%, 55% { opacity: 1; transform: scale(1); }
}

@keyframes glassSweep {
  0%, 100% { transform: translateX(-18%) skewX(-8deg); opacity: 0; }
  18% { opacity: .12; }
  48% { transform: translateX(28%) skewX(-8deg); opacity: .3; }
  70% { opacity: 0; }
}

@keyframes prismFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.94); opacity: 0; }
  24% { opacity: .18; }
  55% { transform: translate3d(-8px, 10px, 0) scale(1); opacity: .34; }
  78% { opacity: 0; }
}

@keyframes sweep {
  from { left: -42%; opacity: .12; }
  to { left: 128%; opacity: 1; }
}

@keyframes bobFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -5px, 0); }
}

@keyframes tiltFloat {
  0%, 100% { transform: rotate(-6deg) translate3d(0, 0, 0); }
  50% { transform: rotate(4deg) translate3d(0, -4px, 0); }
}

@keyframes popPulse {
  0%, 100% { transform: scale(1); opacity: .95; }
  50% { transform: scale(1.14); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .news-ticker-track,
  .ticker-track,
  .hero-spark,
  .hero-light-sweep,
  .hero-prism,
  .hero-title::after,
  .hero::before,
  .hero::after,
  .hero-inner::before,
  .promo-carousel-rail,
  .card-image-wrap::after,
  .guide-shine,
  .nav-box::after,
  .newface-slide {
    animation: none !important;
    transition: none !important;
  }

  .hero-spark,
  .hero-light-sweep {
    opacity: 0 !important;
  }

  .hero-prism {
    opacity: .14 !important;
  }
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(100% - 48px, 1120px);
  }

  .global-nav {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .promo-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .schedule-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newface-slide {
    grid-template-columns: 1fr;
  }

  .newface-window {
    min-height: 900px;
  }

  .newface-visual img {
    height: 420px;
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 230px);
  }

  .guide-panel.large,
  .guide-panel.tall,
  .guide-panel.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar,
  .brand-row,
  .global-nav,
  .news-ticker {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .brand-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand-cta {
    display: none;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(144, 151, 161, .18);
    background: rgba(255,255,255,.88);
  }

  .mobile-menu-button span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
    margin: 3px 0;
  }

  .global-nav,
  .news-ticker {
    display: none;
  }

  .mobile-menu-panel {
    display: none;
    padding: 0 18px 18px;
    background: rgba(249,249,248,.99);
  }

  body.menu-open .mobile-menu-panel {
    display: block;
  }

  .mobile-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-menu-grid .nav-box {
    min-height: 64px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 360px;
  }

  .promo-card {
    flex-basis: 100%;
  }

  .information-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-grid,
  .schedule-strip {
    grid-template-columns: 1fr;
  }

  .access-map-ui {
    padding: 20px;
  }

  .map-topbar,
  .reservation-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell {
    width: min(100% - 28px, 1120px);
  }

  .brand-video-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand-video-section {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  .brand-video-head {
    margin-bottom: 30px;
  }

  .brand-video-kicker {
    font-size: .68rem;
    letter-spacing: .24em;
  }

  .brand-video-frame {
    padding: 8px;
  }

  .brand-video-gloss {
    inset: 8px auto 8px 8px;
    width: 24%;
  }

  .brand-video-playmark {
    right: 18px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .brand-video-playmark::before {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .topbar {
    display: none;
  }

  .brand-row {
    position: absolute;
    inset: 14px 14px auto;
    z-index: 8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 28px);
    padding: 0;
    background: transparent;
    border: 0;
  }

  .brand-lockup {
    display: none;
  }

  .mobile-menu-button {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.32);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(35, 39, 46, .08);
  }

  .mobile-menu-button span {
    background: rgba(255,255,255,.96);
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - var(--fixed-reservation-height) - env(safe-area-inset-bottom));
  }

  @supports (min-height: 100dvh) {
    .hero,
    .hero-inner {
      min-height: calc(100dvh - var(--fixed-reservation-height) - env(safe-area-inset-bottom));
    }
  }

  .hero-photo {
    object-position: center center;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.08) 18%, rgba(255,255,255,.12) 100%),
      radial-gradient(circle at 24% 22%, rgba(207, 214, 228, .16), transparent 26%),
      linear-gradient(90deg, rgba(34,37,42,.08) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(34,37,42,.05) 100%);
  }

  .hero-frame {
    display: none;
  }

  .hero-inner {
    align-items: center;
    justify-content: center;
    padding: 98px 0 calc(var(--fixed-reservation-height) + env(safe-area-inset-bottom) + 34px);
  }

  .hero-copy--otona {
    display: grid;
    justify-items: center;
    width: min(100%, 88vw);
    max-width: 520px;
    margin-top: 0;
    text-align: center;
    transform: translateY(6%);
  }

  .hero-title-wrap {
    position: relative;
    z-index: 2;
  }

  .hero-symbol-bg {
    display: block;
    position: absolute;
    left: 50%;
    top: 51%;
    width: clamp(170px, 52vw, 220px);
    transform: translate(-50%, -50%) rotate(-8deg);
    opacity: .16;
    filter: saturate(.75) blur(.2px);
    z-index: 1;
    pointer-events: none;
  }

  .hero-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2.95rem, 13vw, 3.95rem);
    line-height: .9;
    color: rgba(255,255,255,.965);
    text-shadow:
      0 1px 0 rgba(255,255,255,.96),
      0 10px 26px rgba(31, 35, 40, .14),
      0 18px 40px rgba(31, 35, 40, .1);
  }

  .hero-title-line--aroma {
    letter-spacing: .065em;
    padding-left: .045em;
    margin-bottom: .12em;
  }

  .hero-title-line--aura-lee {
    gap: .24em;
    padding-left: .03em;
  }

  .hero-title-line--aura-lee .hero-title-word {
    letter-spacing: .05em;
  }

  .brand-copy strong::before,
  .brand-copy strong::after,
  .hero::before,
  .hero::after,
  .hero-inner::before {
    transform: scale(.8);
  }

  .brand-copy strong::before,
  .brand-copy strong::after {
    display: none;
  }

  .section-heading-en::before,
  .section-heading-en::after,
  .section-heading-ja::after {
    opacity: .72;
  }

  .schedule-card:nth-child(2)::before,
  .schedule-card:nth-child(4)::before,
  .guide-panel.small::before,
  .guide-panel.wide::before {
    opacity: .7;
  }

  .newface-label::after {
    font-size: .82rem;
  }

  .hero-kicker {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: .76rem;
    letter-spacing: .24em;
    color: rgba(201, 179, 143, .96);
    text-shadow: 0 1px 10px rgba(31, 35, 40, .08);
  }

  .spark-e,
  .spark-f,
  .spark-g,
  .sweep-c,
  .prism-c {
    display: none;
  }

  .hero-spark {
    width: 10px;
    height: 10px;
  }

  .spark-a { top: 14%; left: 10%; width: 12px; height: 12px; }
  .spark-b { top: 38%; right: 10%; width: 9px; height: 9px; }
  .spark-c { bottom: 22%; right: 12%; width: 13px; height: 13px; }
  .spark-d { top: 60%; left: 18%; width: 8px; height: 8px; }

  .prism-a {
    right: 4%;
    top: 15%;
    width: 96px;
    height: 42px;
  }

  .prism-b {
    left: 12%;
    bottom: 17%;
    width: 84px;
    height: 34px;
  }

  .hero-light-sweep {
    width: 10%;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading > div {
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .section-heading {
    justify-content: center;
    gap: 0;
    margin-bottom: 14px;
    padding-inline: 18px;
    text-align: center;
  }

  .section-heading::after,
  .section-heading > div::before {
    display: none;
  }

  .heading-ornament {
    display: none;
  }

  .section-heading-en {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: .94;
  }

  .section-heading-ja {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    font-size: .82rem;
    letter-spacing: .06em;
  }

  .section-heading-ja::after {
    width: 14px;
    height: 2px;
    margin-left: 0;
    border-radius: 999px;
    transform: none;
  }

  .section-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 16px;
    padding-inline: 14px;
  }

  .today-label,
  .text-link {
    font-size: .78rem;
  }

  .section-frame {
    padding: 0 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .campaign-section .section-frame {
    padding-inline: 0;
  }

  .promo-carousel {
    padding: 0 18px;
  }

  .promo-nav,
  .newface-nav {
    display: none;
  }

  .newface-slider {
    padding: 0;
  }

  .newface-window {
    min-height: 760px;
  }

  .newface-copy {
    padding: 22px 18px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
    gap: 14px;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .access-map-embed {
    min-height: 300px;
  }

  .recruit-copy,
  .recruit-card {
    padding: 24px 20px;
  }

  .recruit-actions {
    gap: 12px;
  }

  .fake-banner.wide {
    grid-column: auto;
  }

  .reservation-actions,
  .footer-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .footer-inner {
    justify-items: center;
    min-height: 360px;
    padding: 56px 0 32px;
    text-align: center;
  }

  .footer-brand-block,
  .footer-info,
  .footer-links {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .brand-logo--footer {
    width: min(100%, 190px);
    margin-bottom: 14px;
  }

  .footer-info {
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
  }

  .mobile-fixed-nav {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    z-index: 40;
    width: 100vw;
    display: flex;
    background: rgba(84, 89, 97, .96);
    border-top: 1px solid rgba(255,255,255,.16);
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateX(-50%);
  }

  .mobile-fixed-nav a {
    flex: 1 1 33.333%;
    min-height: 58px;
    border-right: 1px solid rgba(255,255,255,.12);
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: .84rem;
  }

  .mobile-fixed-nav a:last-child {
    border-right: 0;
  }
}

body.menu-open {
  overflow: hidden;
}

  .mobile-menu-link.is-active {
    border-left: 3px solid var(--pop-blue);
    padding-left: 12px;
  }

.mobile-fixed-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(227,233,241,.98));
  color: #2f3742;
  font-size: .9rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 0 0 1px rgba(172, 181, 194, .3);
}

.newface-count {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-display-en);
  font-size: .88rem;
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 110px;
  height: 10px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(61, 104, 255, 0), rgba(61, 104, 255, .12), rgba(255, 94, 168, .08), rgba(61, 104, 255, 0));
  filter: blur(5px);
  pointer-events: none;
}

.nav-box {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,249,251,.96));
  box-shadow: 0 12px 24px rgba(40, 48, 65, .04), inset 0 1px 0 rgba(255,255,255,.92);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nav-box:hover,
.nav-box:focus-visible,
.nav-box.is-active {
  transform: translateY(-2px);
  border-color: rgba(61, 104, 255, .18);
  box-shadow: 0 18px 28px rgba(40, 48, 65, .08), inset 0 1px 0 rgba(255,255,255,.96);
}

.nav-box.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,244,255,.98));
}

.guide-panel,
.promo-card,
.newface-copy,
.newface-visual {
  border-radius: 0;
}

.recruit-layout {
  align-items: stretch;
}

.recruit-card {
  min-height: 100%;
}

@media (max-width: 900px) {
  .campaign-section {
    padding-top: 12px;
    padding-bottom: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .schedule-strip,
  .therapist-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .schedule-card,
  .therapist-mini-card {
    max-width: none;
  }

  .schedule-card-body,
  .therapist-mini-body {
    padding: 12px 12px 14px;
  }

  .therapist-size-line {
    font-size: .78rem;
    letter-spacing: -.02em;
  }

  .schedule-card-body h3,
  .therapist-mini-body h3 {
    font-size: 1rem;
  }

  .profile-meta,
  .profile-area {
    font-size: .74rem;
  }

  .schedule-card-body dl,
  .therapist-mini-body dl {
    gap: 4px;
    margin-bottom: 10px;
  }

  .schedule-card-body dt,
  .schedule-card-body dd,
  .therapist-mini-body dt,
  .therapist-mini-body dd {
    font-size: .72rem;
  }

  .schedule-card .tag-row,
  .therapist-mini-card .tag-row {
    gap: 6px 5px;
    margin: 10px 0;
  }

  .schedule-card .tag-row span,
  .therapist-mini-card .tag-row span {
    padding: 3px 8px 4px;
    font-size: .68rem;
  }

  .schedule-card .ticker-wrap,
  .therapist-mini-card .ticker-wrap {
    display: none;
  }

  .therapist-mini-visual {
    aspect-ratio: 4 / 5;
  }

  .therapist-mini-body {
    padding: 10px 10px 12px;
    gap: 6px;
  }

  .section-actions {
    margin-top: 18px;
  }

  .section-button {
    width: min(100%, 340px);
  }

  .information-card {
    grid-template-columns: 96px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .information-copy strong {
    font-size: .92rem;
  }

  .information-copy p {
    font-size: .78rem;
    line-height: 1.6;
  }

  .filter-tabs,
  .area-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar,
  .area-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 80;
  }

  body.menu-open .mobile-menu-panel {
    display: block;
  }

  .mobile-fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    width: 100%;
    transform: none;
    background: rgba(248,250,252,.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(176, 183, 194, .24);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -12px 32px rgba(40, 48, 65, .12);
  }

  .mobile-fixed-nav a {
    flex: 1 1 25%;
    min-height: 66px;
    min-width: 0;
    border-right: 1px solid rgba(159, 169, 184, .34);
    padding: 10px 4px 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,242,247,.98));
    color: #2f3742;
    display: grid;
    gap: 6px;
    justify-items: center;
    align-content: center;
    font-size: .7rem;
    line-height: 1.2;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.96),
      inset 0 -1px 0 rgba(210, 217, 227, .72);
  }

  .mobile-fixed-nav a:last-child {
    border-right: 0;
  }

  .site-footer {
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 48px 0 28px;
  }

  .footer-note,
  .footer-info p,
  .footer-links a,
  .copyright {
    text-align: center;
  }

  .campaign-section {
    padding-top: 12px;
  }

  .promo-carousel {
    padding: 0 16px;
  }

  .promo-carousel-rail {
    gap: 12px;
  }

  .promo-card {
    flex: 0 0 calc(100% - 46px);
    min-height: 224px;
    border-radius: 6px;
    box-shadow:
      0 10px 24px rgba(40, 48, 65, .08),
      0 2px 10px rgba(110, 90, 150, .04);
  }

  .promo-carousel-window {
    overflow: visible;
  }

  .promo-carousel {
    overflow: visible;
  }

  .section-frame {
    overflow: hidden;
  }

  .campaign-section .section-frame {
    overflow: visible;
  }

  .mobile-menu-link {
    min-height: 58px;
    padding: 9px 2px;
  }

  .mobile-menu-link span {
    font-size: .88rem;
  }

  .mobile-menu-link b {
    font-size: .74rem;
    letter-spacing: .05em;
  }

  .schedule-strip,
  .therapist-directory-grid {
    padding: 0 2px;
  }

  .schedule-card-body .detail-link,
  .therapist-mini-body .detail-link {
    min-height: 40px;
    padding: 10px 12px;
    width: 100%;
    justify-content: space-between;
    font-size: .76rem;
  }

  .information-card {
    grid-template-columns: 84px 1fr;
  }

  .section-actions {
    margin-top: 10px;
    padding-inline: 16px;
    justify-content: flex-end;
  }

  .text-link.align-center {
    margin-top: 0;
    font-size: .8rem;
    letter-spacing: .06em;
  }
}

@media (max-width: 340px) {
  .schedule-strip,
  .therapist-directory-grid {
    grid-template-columns: 1fr;
  }

  .information-card {
    grid-template-columns: 1fr;
  }

  .section-heading > div {
    width: min(100%, 252px);
    padding-inline: 14px;
  }

  .mobile-menu-link span {
    font-size: .86rem;
  }

  .mobile-menu-link b {
    font-size: .72rem;
    letter-spacing: .04em;
  }
}

/* OTONA LAB. instruction 3 final overrides */

.schedule-section .section-meta {
  justify-content: center;
  margin-bottom: 28px;
}

.schedule-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.schedule-card--clickable::after,
.therapist-mini-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.8);
  pointer-events: none;
}

.schedule-card--clickable:hover,
.schedule-card--clickable:focus-visible,
.therapist-mini-card:hover,
.therapist-mini-card:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(40, 48, 65, .16),
    0 8px 18px rgba(110, 90, 150, .10),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.schedule-card-visual,
.therapist-mini-visual {
  border-bottom: 1px solid rgba(180, 188, 200, .16);
}

.schedule-card--clickable:hover .schedule-card-visual img,
.schedule-card--clickable:focus-visible .schedule-card-visual img,
.therapist-mini-card:hover .therapist-mini-visual img,
.therapist-mini-card:focus-visible .therapist-mini-visual img {
  transform: scale(1.03);
}

.schedule-card-body {
  min-height: 156px;
}

.therapist-mini-body {
  padding: 14px 14px 16px;
}

.therapist-mini-body strong {
  display: block;
}

.therapist-mini-body b {
  display: block;
  min-height: 2.8em;
  line-height: 1.55;
}

.newface-slider {
  width: min(100%, 1120px);
}

.newface-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.newface-count {
  margin-top: 10px;
  text-align: center;
}

.newface-copy dl {
  margin: 2px 0 0;
}

.newface-actions .detail-link {
  min-height: 44px;
}

.therapist-directory-section .section-actions {
  margin-top: 28px;
}

.price-section .section-heading,
.recruit-section .section-heading {
  margin-bottom: 30px;
}

.recruit-page-sub-link {
  margin: 14px 0 0;
}

@media (max-width: 1100px) {
  .price-visual-board,
  .recruit-hero-card,
  .newface-slide {
    grid-template-columns: 1fr;
  }

  .price-visual-poster {
    width: min(100%, 760px);
    border-radius: 0;
  }

  .price-visual-media,
  .newface-visual {
    min-height: 460px;
  }

  .price-visual-copy::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .price-visual-board,
  .recruit-hero-card,
  .newface-slide {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .schedule-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 760px);
  }

  .schedule-card-visual,
  .therapist-mini-visual {
    aspect-ratio: 1 / 1;
  }

  .schedule-card-body {
    min-height: 0;
    padding: 10px 10px 12px;
    gap: 7px;
  }

  .schedule-headline strong,
  .therapist-mini-body strong {
    font-size: .96rem;
  }

  .schedule-time-row {
    font-size: .7rem;
  }

  .schedule-tag-row em,
  .newface-tag-row span,
  .therapist-mini-tag {
    padding: 4px 7px;
    font-size: .63rem;
  }

  .newface-window {
    min-height: 0;
  }

  .newface-slide {
    position: absolute;
    inset: 0;
    gap: 18px;
  }

  .newface-slide.is-active {
    position: relative;
  }

  .newface-visual,
  .newface-copy {
    min-height: 0;
  }

  .newface-copy {
    padding: 24px 22px;
  }

  .therapist-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 760px);
  }

  .therapist-mini-body {
    min-height: 114px;
    padding: 12px;
  }

  .price-visual-copy,
  .recruit-hero-summary,
  .recruit-page-hero,
  .recruit-page-card {
    padding: 24px 20px;
  }

  .recruit-hero-card {
    padding: 14px;
    gap: 18px;
  }

  .price-visual-row strong {
    font-size: clamp(1.34rem, 7vw, 1.9rem);
  }

  .price-visual-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .recruit-page-grid {
    grid-template-columns: 1fr;
  }

  .recruit-promise-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .schedule-card--clickable,
  .therapist-mini-card {
    transition:
      transform .28s ease,
      box-shadow .28s ease,
      filter .28s ease;
  }

  .schedule-card--clickable:active,
  .schedule-card--clickable:focus-visible,
  .therapist-mini-card:active,
  .therapist-mini-card:focus-visible {
    transform: translateY(-2px);
    box-shadow:
      0 18px 34px rgba(40, 48, 65, .12),
      0 6px 14px rgba(110, 90, 150, .08),
      inset 0 1px 0 rgba(255,255,255,.96);
    filter: saturate(1.02);
  }

  .schedule-card--clickable:active .schedule-card-visual img,
  .schedule-card--clickable:focus-visible .schedule-card-visual img,
  .therapist-mini-card:active .therapist-mini-visual img,
  .therapist-mini-card:focus-visible .therapist-mini-visual img {
    transform: scale(1.02);
  }
}

@media (max-width: 640px) {
  .schedule-section .section-meta {
    margin-bottom: 18px;
  }

  .schedule-area-label {
    row-gap: 6px;
  }

  .schedule-area-label span {
    padding: 0 10px;
    font-size: .72rem;
  }

  .schedule-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
    margin-inline: 0;
  }

  .schedule-card-visual {
    aspect-ratio: 4 / 5;
  }

  .schedule-card-body {
    padding: 10px 10px 11px;
    gap: 6px;
  }

  .schedule-headline {
    gap: 8px;
  }

  .schedule-headline strong {
    font-size: .92rem;
  }

  .schedule-headline small {
    font-size: .68rem;
  }

  .schedule-size-line {
    margin-top: 6px;
    font-size: .74rem;
    line-height: 1.18;
  }

  .therapist-size-line {
    font-size: .72rem;
    line-height: 1.18;
    letter-spacing: -.03em;
  }

  .therapist-mini-visual {
    aspect-ratio: 4 / 5;
  }

  .card-name-row strong,
  .therapist-mini-body strong {
    font-size: 1.08rem;
    line-height: 1.14;
    letter-spacing: .03em;
  }

  .card-age {
    font-size: .78rem;
  }

  .schedule-time-main {
    font-size: .84rem;
    line-height: 1.12;
  }

  .schedule-kicker {
    font-size: .54rem;
    letter-spacing: .18em;
  }

  .schedule-status-marquee {
    height: 24px;
  }

  .schedule-status-marquee-track {
    gap: 28px;
    padding-left: 14px;
    font-size: 9px;
    animation-duration: 13s;
  }

  .schedule-time-band {
    gap: 8px;
    padding: 8px 9px;
    flex-wrap: nowrap;
  }

  .schedule-time-band b {
    font-size: .64rem;
    letter-spacing: .04em;
    flex: 0 0 auto;
  }

  .schedule-time-band strong {
    font-size: .9rem;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
  }

  .schedule-time-row {
    font-size: .67rem;
    gap: 8px;
  }

  .schedule-tag-row {
    gap: 5px;
  }

  .schedule-tag-row em {
    min-height: 24px;
    padding: 4px 6px 5px;
    font-size: .6rem;
  }

  .schedule-strip,
  .therapist-directory-grid {
    padding: 0;
  }

  .schedule-prism {
    width: 44%;
    height: 46%;
  }

  .status-ribbon {
    top: 10px;
    left: 10px;
    min-width: 88px;
    padding: 8px 10px;
  }

  .status-ribbon strong {
    font-size: .68rem;
  }

  .status-ribbon small {
    font-size: .62rem;
  }

  .schedule-arrow {
    right: 12px;
    bottom: 12px;
  }

  .newface-copy h3 {
    font-size: 1.72rem;
  }

  .newface-slider {
    padding: 0 12px 94px;
  }

  .newface-slide {
    position: absolute;
    inset: 0;
  }

  .newface-slide.is-active {
    position: relative;
  }

  .newface-visual {
    min-height: 340px;
  }

  .newface-catch {
    font-size: 1rem;
  }

  .newface-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newface-actions .section-button,
  .newface-actions .detail-link {
    width: 100%;
  }

  .price-visual-media {
    min-height: 360px;
  }

  .price-visual-board {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .price-visual-board:has(.price-visual-poster) {
    display: block;
    overflow: visible;
  }

  .price-visual-poster {
    width: 100%;
    border-radius: 0;
  }

  .price-visual-media {
    order: -1;
    min-height: 280px;
  }

  .price-visual-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 26px 18px 24px;
    gap: 14px;
  }

  .price-brand-name {
    font-size: 2.2rem;
  }

  .price-brand-sub {
    font-size: .74rem;
    letter-spacing: .18em;
  }

  .price-visual-copy h3 {
    font-size: 1.95rem;
  }

  .price-copy {
    font-size: .98rem;
  }

  .price-kicker {
    font-size: .94rem;
    letter-spacing: .2em;
  }

  .price-visual-frame {
    padding: 20px 16px 14px;
  }

  .price-visual-list,
  .price-visual-extension {
    gap: 4px;
  }

  .price-visual-row {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
    align-items: start;
  }

  .price-visual-row span,
  .price-extension span {
    min-width: 0;
    font-size: .82rem;
    letter-spacing: .06em;
  }

  .price-visual-row strong {
    max-width: 100%;
    font-size: clamp(1.45rem, 7.6vw, 1.88rem);
    line-height: 1.05;
    justify-self: start;
    text-align: left;
  }

  .price-visual-note {
    font-size: .84rem;
    line-height: 1.8;
  }

  .price-visual-signoff strong {
    font-size: 1.32rem;
  }

  .price-visual-signoff span {
    font-size: 1rem;
  }

  .newface-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .newface-nav.prev {
    left: 12px;
  }

  .newface-nav.next {
    right: 12px;
  }

  .recruit-page-shell {
    padding: 0 16px;
  }

  .recruit-hero-stage {
    width: min(100%, 100%);
  }

  .recruit-hero-lead {
    font-size: 1.08rem;
  }

  .recruit-hero-body,
  .recruit-hero-support {
    font-size: .92rem;
  }

  .recruit-hero-highlight {
    font-size: clamp(1.16rem, 5.9vw, 1.56rem);
    line-height: 1.16;
    letter-spacing: .01em;
    max-width: 12em;
  }

  .recruit-hero-tags {
    gap: 8px;
  }

  .recruit-hero-tag {
    width: calc(50% - 4px);
    min-width: 0;
    padding: 8px 10px;
    font-size: .82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-status-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}

/* therapist detail page */

.therapist-detail-page {
  padding: clamp(72px, 8vw, 108px) 0 calc(clamp(72px, 8vw, 108px) + 24px);
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 150, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 142, 184, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
}

.therapist-detail-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.therapist-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: #7d8592;
  font: 400 0.84rem/1.5 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
}

.therapist-detail-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.therapist-detail-breadcrumb span[aria-hidden="true"] {
  opacity: 0.42;
}

.therapist-detail-page-title {
  position: relative;
  width: min(100%, 360px);
  margin: 22px auto 40px;
  padding: 11px 22px 9px;
  text-align: center;
}

.therapist-detail-page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(144, 151, 161, .15);
  background: linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .24));
  pointer-events: none;
}

.therapist-detail-page-title p,
.therapist-detail-page-title h1 {
  margin: 0;
}

.therapist-detail-page-title p {
  position: relative;
  color: #30333a;
  font: 500 clamp(1.75rem, 2.6vw, 2.35rem) / .92 var(--font-display-en);
  letter-spacing: .05em;
}

.therapist-detail-page-title h1 {
  position: relative;
  margin-top: 10px;
  color: #666a73;
  font: 500 .88rem/1.4 var(--font-display-jp);
  letter-spacing: .14em;
}

.therapist-detail-page-title h1::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 4px;
  margin-left: 10px;
  background: linear-gradient(90deg, var(--pop-blue), var(--pop-yellow));
  vertical-align: middle;
  transform: translateY(-2px);
}

.therapist-detail-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 210, 221, 0.78);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 253, 0.92));
  box-shadow:
    0 24px 60px rgba(32, 36, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.therapist-detail-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.therapist-detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  padding: clamp(28px, 4vw, 42px);
}

.therapist-detail-media {
  display: grid;
  gap: 16px;
}

.therapist-detail-main {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(214, 219, 228, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 42px rgba(30, 34, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.therapist-detail-main::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.therapist-detail-main picture,
.therapist-detail-thumb picture {
  display: block;
}

.therapist-detail-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.therapist-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.therapist-detail-thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 219, 228, 0.88);
  background: rgba(255, 255, 255, 0.9);
}

.therapist-detail-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.therapist-detail-copy {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(214, 219, 228, 0.74);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.92), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(98, 150, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 142, 184, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.94));
  box-shadow:
    0 20px 48px rgba(30, 34, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.therapist-detail-copy::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  pointer-events: none;
}

.therapist-detail-copy > * {
  position: relative;
  z-index: 1;
}

.therapist-detail-kicker {
  margin: 0 0 18px;
  color: #7d8592;
  font: 500 0.78rem/1.4 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.18em;
}

.therapist-detail-debut {
  margin: 0 0 14px;
  color: #7d8592;
  font: 500 0.78rem/1.5 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.therapist-detail-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.therapist-detail-name-row strong {
  color: #20242b;
  font: 500 clamp(2.2rem, 5vw, 3.5rem) / 0.96 "Shippori Mincho B1", "Shippori Mincho", serif;
  letter-spacing: 0.04em;
}

.therapist-detail-name-row small {
  color: #8e95a1;
  font: 400 0.95rem/1.4 "Inter", "Noto Sans JP", sans-serif;
}

.therapist-detail-measurements {
  margin: 0 0 22px;
  color: #3f4652;
  font: 400 clamp(1rem, 2vw, 1.1rem) / 1.8 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}

.therapist-detail-feature {
  margin: 0 0 14px;
  color: #222831;
  font: 500 clamp(1.1rem, 2vw, 1.28rem) / 1.7 "Shippori Mincho", serif;
  letter-spacing: 0.04em;
}

.therapist-detail-intro {
  margin: 0 0 20px;
  color: #5f6875;
  font: 400 0.96rem/1.95 "Noto Sans JP", "Inter", sans-serif;
}

.therapist-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.therapist-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(205, 211, 221, 0.86);
  background: rgba(255, 255, 255, 0.92);
  color: #49515e;
  font: 500 0.86rem/1.4 "Inter", "Noto Sans JP", sans-serif;
}

.therapist-detail-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5d8bff, #ff82b2);
  flex: 0 0 auto;
}

.therapist-detail-facts {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  border-top: 1px solid rgba(223, 227, 234, 0.92);
}

.therapist-detail-facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(223, 227, 234, 0.92);
}

.therapist-detail-facts dt {
  color: #8c94a1;
  font: 500 0.8rem/1.6 "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.therapist-detail-facts dd {
  margin: 0;
  color: #232931;
  font: 500 0.98rem/1.8 "Noto Sans JP", "Inter", sans-serif;
}

.therapist-detail-qa {
  margin-top: 28px;
}

.therapist-detail-message {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(223, 227, 234, 0.92);
  background: rgba(248, 250, 253, 0.78);
}

.therapist-detail-message h3,
.therapist-detail-message p {
  margin: 0;
}

.therapist-detail-message h3 {
  color: #4d5664;
  font: 500 .84rem/1.6 "Shippori Mincho", serif;
  letter-spacing: .08em;
}

.therapist-detail-message p {
  margin-top: 10px;
  color: #5e6875;
  font: 400 .92rem/1.9 "Noto Sans JP", "Inter", sans-serif;
}

.therapist-detail-widget {
  margin-top: 28px;
}

.therapist-widget-heading {
  margin-bottom: 14px;
}

.therapist-widget-heading p,
.therapist-widget-heading h3 {
  margin: 0;
}

.therapist-widget-heading p {
  color: #8993a2;
  font: 500 .7rem/1.4 "Inter", sans-serif;
  letter-spacing: .18em;
}

.therapist-widget-heading h3 {
  margin-top: 5px;
  color: #444d5a;
  font: 500 1.12rem/1.5 "Shippori Mincho", serif;
}

.therapist-reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.therapist-review-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(218, 224, 232, .92);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 20px rgba(42, 50, 63, .045);
}

.therapist-review-card > div,
.therapist-review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.therapist-review-rating {
  color: #7c87a6;
  font-size: .78rem;
  letter-spacing: .04em;
}

.therapist-review-card time,
.therapist-review-card footer {
  color: #9099a6;
  font: 400 .68rem/1.4 "Inter", "Noto Sans JP", sans-serif;
}

.therapist-review-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #596370;
  font: 400 .82rem/1.7 "Noto Sans JP", "Inter", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.therapist-review-card footer small {
  font-size: inherit;
}

.therapist-widget-more,
.therapist-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 14px;
  padding: 0 16px;
  border: 1px solid rgba(102, 115, 140, .45);
  background: rgba(255, 255, 255, .72);
  color: #596985;
  font: 500 .78rem/1 "Noto Sans JP", "Inter", sans-serif;
  text-decoration: none;
}

.therapist-widget-more {
  cursor: pointer;
}

.therapist-social-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.therapist-social-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(155, 165, 181, .55);
  background: rgba(255, 255, 255, .64);
  color: #687384;
  font: 500 .75rem/1 "Inter", "Noto Sans JP", sans-serif;
  cursor: pointer;
}

.therapist-social-tabs button.is-active {
  border-color: #68799f;
  background: #68799f;
  color: #fff;
}

.therapist-social-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.therapist-social-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 224, 232, .92);
  background: rgba(255, 255, 255, .76);
}

.therapist-social-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
}

.therapist-social-card div {
  padding: 11px;
}

.therapist-social-card time {
  color: #919aa7;
  font: 400 .66rem/1.4 "Inter", sans-serif;
}

.therapist-social-card p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: #596370;
  font: 400 .78rem/1.65 "Noto Sans JP", "Inter", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.therapist-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.therapist-detail-actions .section-button {
  min-width: 180px;
}

/* Detail page density and card rhythm */
.therapist-detail-shell {
  width: min(100% - 96px, 980px);
  max-width: none;
  padding: 0;
}

.therapist-detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.08fr);
  gap: clamp(26px, 3.2vw, 46px);
  padding: clamp(24px, 3.2vw, 36px);
}

.therapist-detail-copy {
  padding: clamp(24px, 3vw, 32px);
}

.therapist-detail-kicker {
  margin-bottom: 12px;
}

.therapist-detail-debut {
  margin-bottom: 10px;
}

.therapist-detail-name-row {
  margin-bottom: 7px;
}

.therapist-detail-name-row strong {
  font-size: clamp(2rem, 3.5vw, 3.05rem);
  line-height: 1.08;
}

.therapist-detail-measurements {
  margin-bottom: 15px;
  font-size: clamp(.94rem, 1.3vw, 1.04rem);
  line-height: 1.55;
}

.therapist-detail-feature {
  margin-bottom: 9px;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

.therapist-detail-intro {
  margin-bottom: 15px;
  font-size: .92rem;
  line-height: 1.75;
}

.therapist-detail-tags {
  gap: 7px;
  margin-bottom: 18px;
}

.therapist-detail-tag {
  padding: 6px 10px;
  border-color: transparent;
  background: rgba(242, 246, 251, .9);
  font-size: .78rem;
}

.therapist-detail-facts {
  margin-bottom: 18px;
  border-top: 0;
  background: rgba(247, 249, 252, .66);
}

.therapist-detail-facts div {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 14px;
  border-bottom-color: rgba(220, 226, 234, .68);
}

.therapist-detail-facts dt {
  align-self: center;
  font-size: .74rem;
  line-height: 1.45;
}

.therapist-detail-facts dd {
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.6;
}

.therapist-detail-qa {
  margin-top: 18px;
}

.therapist-detail-messages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.therapist-detail-message,
.therapist-review-card,
.therapist-social-card {
  border: 0;
  background: rgba(247, 250, 253, .82);
  box-shadow: 0 10px 24px rgba(42, 50, 63, .055);
}

.therapist-detail-message {
  margin-top: 0;
  padding: 16px;
}

.therapist-detail-message h3 {
  font-size: .86rem;
  line-height: 1.45;
}

.therapist-detail-message p {
  margin-top: 7px;
  font-size: .87rem;
  line-height: 1.7;
}

.therapist-detail-widget {
  margin-top: 22px;
}

.therapist-widget-heading {
  margin-bottom: 10px;
}

.therapist-widget-heading h3 {
  font-size: 1.2rem;
}

.therapist-reviews-list,
.therapist-social-posts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.therapist-review-card {
  gap: 8px;
  padding: 15px 16px;
}

.therapist-review-rating {
  font-size: .74rem;
}

.therapist-review-card time,
.therapist-review-card footer {
  font-size: .7rem;
  line-height: 1.4;
}

.therapist-review-card p {
  font-size: .84rem;
  line-height: 1.62;
}

.therapist-review-card footer {
  align-items: flex-start;
}

.therapist-review-card footer span,
.therapist-review-card footer small {
  min-width: 0;
}

.therapist-social-card img {
  aspect-ratio: 4 / 3;
}

.therapist-social-card div {
  padding: 13px 14px 14px;
}

.therapist-social-card time {
  font-size: .69rem;
}

.therapist-social-card p {
  margin-top: 5px;
  font-size: .84rem;
  line-height: 1.58;
}

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

.therapist-detail-actions .section-button {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 10px;
  font-size: .82rem;
}

/* Profile page information flow */
.therapist-detail-copy {
  display: flex;
  flex-direction: column;
}

.therapist-detail-profile-block {
  order: 1;
  margin-top: 2px;
}

.therapist-detail-schedule-block {
  order: 2;
  margin-top: 22px;
}

.therapist-detail-messages {
  order: 3;
}

.therapist-detail-widget {
  order: 4;
}

.therapist-detail-actions {
  order: 5;
}

.therapist-detail-section-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.therapist-detail-section-heading p,
.therapist-detail-section-heading h2 {
  margin: 0;
}

.therapist-detail-section-heading p {
  color: #8993a2;
  font: 500 .7rem/1.4 "Inter", sans-serif;
  letter-spacing: .18em;
}

.therapist-detail-section-heading h2 {
  color: #444d5a;
  font: 500 1.12rem/1.5 "Shippori Mincho", serif;
  letter-spacing: .04em;
}

.therapist-detail-profile-block .therapist-detail-facts,
.therapist-detail-schedule-block .therapist-detail-facts {
  margin: 0;
}

.therapist-detail-schedule-block .therapist-detail-facts {
  background: linear-gradient(90deg, rgba(243, 247, 252, .86), rgba(250, 251, 253, .7));
}

/* Detail page blocks */
.therapist-detail-page {
  padding-bottom: 0;
}

.therapist-detail-block-stack {
  display: grid;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px clamp(56px, 7vw, 92px);
  background:
    radial-gradient(circle at 12% 18%, rgba(98, 150, 255, .05), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 142, 184, .05), transparent 28%),
    linear-gradient(180deg, rgba(247, 249, 252, .98), rgba(255, 255, 255, .98));
}

.therapist-detail-block-stack > .therapist-detail-schedule-block,
.therapist-detail-block-stack > .therapist-detail-message,
.therapist-detail-block-stack > .therapist-detail-widget,
.therapist-detail-block-stack > .therapist-detail-actions {
  min-width: 0;
  margin: 0;
  order: 0;
  padding: clamp(20px, 2.6vw, 30px);
  border: 0;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 14px 32px rgba(42, 50, 63, .06);
}

.therapist-detail-block-stack > .therapist-detail-schedule-block,
.therapist-detail-block-stack > .therapist-detail-widget,
.therapist-detail-block-stack > .therapist-detail-actions {
  width: 100%;
}

.therapist-detail-block-stack > .therapist-detail-schedule-block .therapist-detail-section-heading,
.therapist-detail-block-stack > .therapist-detail-message h3,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(220, 226, 234, .72);
}

.therapist-detail-weekly {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.therapist-detail-weekly-day {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(246, 249, 253, .8);
  color: #697484;
  text-align: left;
}

.therapist-detail-weekly-day.is-today {
  background: linear-gradient(145deg, rgba(233, 240, 255, .96), rgba(253, 241, 247, .9));
  color: #45556d;
}

.therapist-detail-weekly-day time {
  white-space: nowrap;
  font: 500 .76rem/1.25 "Inter", "Noto Sans JP", sans-serif;
}

.therapist-detail-weekly-day time small {
  display: inline;
  margin-left: 4px;
  color: #9aa3b0;
  font-size: .68rem;
}

.therapist-detail-weekly-day strong {
  color: inherit;
  font: 500 .78rem/1.35 "Inter", "Noto Sans JP", sans-serif;
}

.therapist-detail-weekly-day span {
  padding: 3px 6px;
  background: rgba(184, 151, 82, .1);
  color: #927647;
  font: 500 .64rem/1.3 "Noto Sans JP", sans-serif;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts div {
  padding: 11px 14px;
}

.therapist-detail-block-stack > .therapist-detail-message h3 {
  margin: 0;
  color: #4d5664;
}

.therapist-detail-block-stack > .therapist-detail-message p {
  margin-top: 12px;
  font-size: .92rem;
  line-height: 1.8;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading {
  margin-bottom: 16px;
}

.therapist-detail-block-stack > .therapist-detail-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 901px) {
  .therapist-detail-block-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .therapist-detail-block-stack > .therapist-detail-schedule-block,
  .therapist-detail-block-stack > .therapist-detail-actions {
    grid-column: 1 / -1;
  }

  .therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list,
  .therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .therapist-detail-block-stack {
    gap: 12px;
    padding: 0 16px calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .therapist-detail-block-stack > .therapist-detail-schedule-block,
  .therapist-detail-block-stack > .therapist-detail-message,
  .therapist-detail-block-stack > .therapist-detail-widget,
  .therapist-detail-block-stack > .therapist-detail-actions {
    padding: 18px 16px;
  }

  .therapist-detail-weekly-day {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    min-height: 46px;
    gap: 8px;
    padding: 7px 8px;
  }

  .therapist-detail-weekly-day time {
    font-size: .64rem;
  }

  .therapist-detail-weekly-day time small,
  .therapist-detail-weekly-day span {
    font-size: .57rem;
  }

  .therapist-detail-weekly-day strong {
    font-size: .6rem;
  }

  .therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts {
    grid-template-columns: 1fr;
  }

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts div {
  grid-template-columns: 86px minmax(0, 1fr);
  padding: 10px 0;
}
}

/* Refined therapist-detail ornaments */
.therapist-detail-feature,
.therapist-detail-intro {
  display: none;
}

.therapist-detail-frame {
  border-color: rgba(205, 199, 181, .52);
  background:
    radial-gradient(circle at 74% 18%, rgba(246, 180, 201, .15), transparent 32%),
    radial-gradient(circle at 16% 85%, rgba(143, 119, 202, .09), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, .96), rgba(251, 248, 251, .92));
}

.therapist-detail-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(186, 155, 91, .58), rgba(155, 128, 204, .42), transparent);
}

.therapist-detail-copy {
  border-color: rgba(208, 202, 190, .48);
  background:
    radial-gradient(circle at 92% 10%, rgba(246, 185, 205, .13), transparent 31%),
    radial-gradient(circle at 10% 86%, rgba(203, 183, 232, .1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(252, 249, 252, .92));
}

.therapist-detail-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a795a;
}

.therapist-detail-kicker::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .7), transparent);
}

.therapist-detail-profile-block .therapist-detail-facts {
  display: grid;
  gap: 7px;
  background: transparent;
}

.therapist-detail-profile-block .therapist-detail-facts div {
  position: relative;
  min-height: 48px;
  padding: 10px 14px 10px 17px;
  border: 0;
  background: linear-gradient(90deg, rgba(247, 247, 244, .96), rgba(252, 252, 253, .72));
  box-shadow: inset 2px 0 0 rgba(184, 151, 82, .62);
}

.therapist-detail-profile-block .therapist-detail-facts div::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(184, 151, 82, .82);
  transform: translateY(-50%) rotate(45deg);
}

.therapist-detail-section-heading {
  position: relative;
  gap: 12px;
}

.therapist-detail-section-heading::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 151, 82, .62));
}

.therapist-detail-section-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  margin-left: 4px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .46), transparent);
}

.therapist-detail-section-heading p {
  color: #8a795a;
}

.therapist-detail-block-stack {
  gap: 20px;
}

.therapist-detail-block-stack > .therapist-detail-schedule-block,
.therapist-detail-block-stack > .therapist-detail-message,
.therapist-detail-block-stack > .therapist-detail-widget,
.therapist-detail-block-stack > .therapist-detail-actions {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(208, 202, 190, .42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(249, 250, 252, .82));
  box-shadow: 0 13px 28px rgba(52, 49, 43, .045);
}

.therapist-detail-block-stack > [data-therapist-reviews] {
  border-color: rgba(204, 187, 151, .5);
  background: linear-gradient(135deg, rgba(255, 253, 247, .96), rgba(249, 246, 237, .82));
}

.therapist-detail-block-stack > [data-therapist-social] {
  border-color: rgba(183, 181, 213, .52);
  background: linear-gradient(135deg, rgba(250, 250, 255, .96), rgba(242, 244, 253, .86));
}

.therapist-detail-block-stack > [data-therapist-reviews]::before {
  background: linear-gradient(90deg, rgba(184, 151, 82, .78), rgba(220, 192, 126, .45));
}

.therapist-detail-block-stack > [data-therapist-social]::before {
  background: linear-gradient(90deg, rgba(123, 125, 183, .74), rgba(174, 150, 210, .44));
}

.therapist-detail-block-stack > .therapist-detail-schedule-block::before,
.therapist-detail-block-stack > .therapist-detail-message::before,
.therapist-detail-block-stack > .therapist-detail-widget::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 20px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .72), rgba(155, 128, 204, .42)) top left / 58px 2px no-repeat;
}

.therapist-detail-block-stack > .therapist-detail-schedule-block::before {
  content: "";
}

.therapist-detail-block-stack > .therapist-detail-message::before,
.therapist-detail-block-stack > .therapist-detail-widget::before {
  content: "";
}

.therapist-detail-block-stack > .therapist-detail-message h3,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading {
  position: relative;
}

.therapist-detail-block-stack > .therapist-detail-message h3 {
  display: flex;
  align-items: center;
  gap: 2px;
}

.therapist-detail-block-stack > .therapist-detail-message h3::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  margin-left: 10px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .44), transparent);
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading {
  display: flex;
  align-items: center;
  gap: 9px;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading p::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .54), transparent);
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading h3 {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 7px;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading h3::before {
  flex: 0 0 auto;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading h3::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  margin-left: 7px;
  background: linear-gradient(90deg, rgba(184, 151, 82, .4), transparent);
}

.therapist-detail-block-stack > [data-therapist-social] .therapist-widget-heading h3::after {
  content: " / RELAXY";
  flex: 0 0 auto;
  width: auto;
  height: auto;
  margin-left: 0;
  background: none;
}

/* Aya only: clean gravure-editorial first view */
body.therapist-detail--aya .therapist-detail-page {
  background:
    radial-gradient(circle at 14% 30%, rgba(29, 24, 54, .14), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(132, 23, 77, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 247, 252, .98));
}

body.therapist-detail--aya .therapist-detail-layout::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 10%;
  bottom: 7%;
  left: -20px;
  width: 47%;
  background: linear-gradient(145deg, rgba(13, 15, 30, .96), rgba(58, 12, 42, .82) 66%, rgba(129, 32, 87, .64));
  clip-path: polygon(0 4%, 96% 0, 100% 92%, 4% 100%);
}

body.therapist-detail--aya .therapist-detail-media,
body.therapist-detail--aya .therapist-detail-copy {
  position: relative;
  z-index: 1;
}

body.therapist-detail--aya .therapist-detail-main {
  transform: translate(10px, 10px);
}

body.therapist-detail--aya .therapist-detail-gallery {
  position: relative;
  z-index: 2;
  margin-left: 24px;
}

body.therapist-detail--aya .therapist-detail-gallery .therapist-detail-thumb:first-child {
  transform: translateY(-8px) rotate(-1.2deg);
}

body.therapist-detail--aya .therapist-detail-kicker {
  width: fit-content;
  padding: 5px 9px;
  background: #17151e;
  color: #e7c66c;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .17em;
}

body.therapist-detail--aya .therapist-detail-kicker::after {
  display: none;
}

body.therapist-detail--aya .therapist-detail-name-row {
  position: relative;
  z-index: 3;
  width: fit-content;
  min-width: min(100%, 360px);
  margin-left: clamp(-82px, -5.2vw, -44px);
  padding: 12px 18px 13px;
  background: linear-gradient(105deg, rgba(16, 15, 23, .96), rgba(64, 11, 43, .91));
  box-shadow: 12px 14px 26px rgba(25, 12, 23, .18);
}

body.therapist-detail--aya .therapist-detail-name-row strong {
  color: #fffdfb;
  font-size: clamp(2.65rem, 4.25vw, 4rem);
  font-style: italic;
  letter-spacing: .1em;
}

body.therapist-detail--aya .therapist-detail-name-row small {
  border: 0;
  border-radius: 0;
  background: #e7c66c;
  color: #201921;
  font-weight: 700;
}

body.therapist-detail--aya .therapist-detail-measurements {
  margin-top: 10px;
  padding: 8px 12px;
  border: 0;
  background: #16141d;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(.9rem, 1.25vw, 1.05rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .12em;
  transform: rotate(-.7deg);
}

body.therapist-detail--aya .therapist-detail-feature {
  display: block;
  margin: 18px 0 14px;
  color: #2b1726;
  font: 700 clamp(1.2rem, 1.9vw, 1.55rem)/1.45 "Shippori Mincho", serif;
  letter-spacing: .1em;
}

body.therapist-detail--aya .therapist-detail-feature::before,
body.therapist-detail--aya .therapist-detail-feature::after {
  color: #a52862;
  font: 700 1.45em/0 "Inter", sans-serif;
  vertical-align: -.16em;
}

body.therapist-detail--aya .therapist-detail-feature::before { content: "“"; margin-right: 4px; }
body.therapist-detail--aya .therapist-detail-feature::after { content: "”"; margin-left: 4px; }

body.therapist-detail--aya .therapist-detail-tags {
  margin-bottom: 22px;
}

body.therapist-detail--aya .therapist-detail-tag {
  border-radius: 0;
  border-color: rgba(36, 20, 31, .7);
  background: rgba(255, 255, 255, .86);
  color: #241b26;
  font-weight: 700;
}

body.therapist-detail--aya .therapist-detail-schedule-block .therapist-detail-section-heading {
  margin-bottom: 14px;
}

body.therapist-detail--aya .therapist-detail-weekly-day.is-today {
  border: 0;
  background: linear-gradient(100deg, #261125, #a2225d);
  color: #fff;
}

body.therapist-detail--aya .therapist-detail-weekly-day.is-today time small,
body.therapist-detail--aya .therapist-detail-weekly-day.is-today strong {
  color: inherit;
}

body.therapist-detail--aya .therapist-detail-today-label,
body.therapist-detail--aya .therapist-detail-availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 6px;
  background: #e7c66c;
  color: #21151d;
  font: 800 .58rem/1 "Inter", sans-serif;
  font-style: italic;
  letter-spacing: .1em;
}

body.therapist-detail--aya .therapist-detail-today-label {
  position: absolute;
  top: -8px;
  left: 8px;
}

body.therapist-detail--aya .therapist-detail-availability {
  margin-left: auto;
  background: #f04f8d;
  color: #fff;
}

@media (max-width: 900px) {
  body.therapist-detail--aya .therapist-detail-layout::before {
    top: 5%;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 47%;
  }

  body.therapist-detail--aya .therapist-detail-name-row {
    margin-left: 20px;
    margin-top: -54px;
  }
}

@media (max-width: 640px) {
  body.therapist-detail--aya .therapist-detail-main {
    transform: translate(5px, 6px);
  }

  body.therapist-detail--aya .therapist-detail-gallery {
    margin-left: 15px;
  }

  body.therapist-detail--aya .therapist-detail-name-row {
    min-width: min(100%, 262px);
    margin-left: 10px;
    padding: 9px 13px 10px;
  }

  body.therapist-detail--aya .therapist-detail-name-row strong {
    font-size: clamp(2.2rem, 12vw, 2.9rem);
  }

  body.therapist-detail--aya .therapist-detail-feature {
    margin-top: 16px;
    font-size: 1.14rem;
  }

  body.therapist-detail--aya .therapist-detail-weekly-day.is-today {
    grid-template-columns: 54px minmax(0, 1fr) auto auto;
  }

  body.therapist-detail--aya .therapist-detail-availability {
    font-size: .52rem;
  }
}

/* Aya first-view refinement: retain a quiet after-dark accent, not a cover design. */
body.therapist-detail--aya .therapist-detail-layout::before {
  display: none;
}

body.therapist-detail--aya .therapist-detail-main,
body.therapist-detail--aya .therapist-detail-gallery .therapist-detail-thumb:first-child {
  transform: none;
}

body.therapist-detail--aya .therapist-detail-gallery {
  margin-left: 0;
}

body.therapist-detail--aya .therapist-detail-kicker {
  padding: 0;
  background: transparent;
  color: #856f58;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}

body.therapist-detail--aya .therapist-detail-kicker::after {
  display: block;
}

body.therapist-detail--aya .therapist-detail-name-row {
  min-width: 0;
  margin: 0 0 8px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

body.therapist-detail--aya .therapist-detail-name-row strong {
  color: #25212a;
  font-size: clamp(2.3rem, 3.8vw, 3.35rem);
  font-style: normal;
  letter-spacing: .07em;
}

body.therapist-detail--aya .therapist-detail-name-row small {
  min-height: 0;
  padding: 3px 7px;
  border: 1px solid rgba(199, 165, 94, .55);
  border-radius: 0;
  background: rgba(250, 245, 232, .9);
  color: #846a37;
  font-weight: 500;
}

body.therapist-detail--aya .therapist-detail-measurements {
  display: block;
  width: auto;
  margin-top: 0;
  padding: 0 0 0 11px;
  border-left: 2px solid rgba(147, 59, 100, .6);
  background: transparent;
  color: #3f4652;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(.94rem, 1.3vw, 1.04rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: .05em;
  transform: none;
}

body.therapist-detail--aya .therapist-detail-feature,
body.therapist-detail--aya .therapist-detail-feature::before,
body.therapist-detail--aya .therapist-detail-feature::after,
body.therapist-detail--aya .therapist-detail-today-label,
body.therapist-detail--aya .therapist-detail-availability {
  display: none;
}

body.therapist-detail--aya .therapist-detail-tag {
  border-radius: 0;
  border: 0;
  color: rgba(255, 255, 255, .96);
  font-weight: 600;
  box-shadow: none;
}

body.therapist-detail--aya .therapist-detail-tag:nth-child(3n + 1) { background: #3c3447; }
body.therapist-detail--aya .therapist-detail-tag:nth-child(3n + 2) { background: #805268; }
body.therapist-detail--aya .therapist-detail-tag:nth-child(3n) { background: #a9657b; }

body.therapist-detail--aya .therapist-detail-tag::before {
  background: rgba(255, 255, 255, .72);
}

body.therapist-detail--aya .therapist-detail-tag {
  min-height: 32px;
  padding: 7px 13px 8px;
  border: 1px solid rgba(133, 143, 158, .26);
  border-radius: 1px;
  background: rgba(255, 255, 255, .82);
  color: #37404d;
  font-family: "Shippori Mincho B1", "Shippori Mincho", serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.25;
}

body.therapist-detail--aya .therapist-detail-tag::before {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8c9cf0, #d594bd);
}

body.therapist-detail--aya .therapist-detail-tags {
  gap: 10px;
}

body.therapist-detail--aya .therapist-detail-tag:nth-child(3n + 1),
body.therapist-detail--aya .therapist-detail-tag:nth-child(3n + 2),
body.therapist-detail--aya .therapist-detail-tag:nth-child(3n) {
  background: rgba(255, 255, 255, .82);
}

body.therapist-detail--aya .therapist-detail-weekly-day.is-today {
  border: 1px solid rgba(199, 143, 161, .48);
  background: linear-gradient(100deg, rgba(255, 246, 249, .94), rgba(246, 238, 251, .88));
  color: #794055;
  box-shadow: none;
}

@media (max-width: 900px) {
  body.therapist-detail--aya .therapist-detail-name-row {
    margin: 0 0 8px;
  }
}

@media (max-width: 640px) {
  body.therapist-detail--aya .therapist-detail-main {
    transform: none;
  }

  body.therapist-detail--aya .therapist-detail-name-row {
    min-width: 0;
    margin: 0 0 8px;
    padding: 0;
  }

body.therapist-detail--aya .therapist-detail-name-row strong {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }
}

@media (max-width: 640px) {
  .mobile-menu-button {
    position: fixed;
    z-index: 120;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: 14px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(95, 90, 101, .34);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 7px 18px rgba(42, 36, 47, .12);
    backdrop-filter: blur(12px);
  }

  .mobile-menu-button span {
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: rgba(49, 45, 55, .88);
  }

  body.menu-open .mobile-menu-button {
    border-color: rgba(153, 117, 133, .5);
    background: rgba(250, 246, 248, .94);
  }
}

.therapist-detail-block-stack > .therapist-detail-message h3::before,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading::before {
  display: inline-block;
  min-width: 22px;
  margin-right: 8px;
  color: #aa8a50;
  font: 500 .64rem/1 "Inter", sans-serif;
  letter-spacing: .08em;
  vertical-align: middle;
}

.therapist-detail-block-stack > .therapist-detail-message h3::before,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading::before {
  display: none;
}

/* 彩：出勤情報以降のセクション見出しは中央で統一 */
body.therapist-detail--aya .therapist-detail-section-heading,
body.therapist-detail--aya .therapist-detail-block-stack > .therapist-detail-message h3,
body.therapist-detail--aya .therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading {
  justify-content: center;
  text-align: center;
}

body.therapist-detail--aya .therapist-detail-section-heading::before,
body.therapist-detail--aya .therapist-detail-section-heading::after,
body.therapist-detail--aya .therapist-detail-block-stack > .therapist-detail-message h3::after,
body.therapist-detail--aya .therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading p::after,
body.therapist-detail--aya .therapist-detail-block-stack > [data-therapist-reviews] .therapist-widget-heading h3::after {
  display: none;
}

body.therapist-detail--aya .therapist-detail-block-stack > .therapist-detail-widget .therapist-widget-heading h3 {
  flex: 0 0 auto;
}

body.therapist-detail--aya .therapist-detail-block-stack > [data-therapist-social] .therapist-widget-heading h3::after {
  flex: 0 0 auto;
}

.therapist-detail-weekly-day {
  position: relative;
  border: 1px solid rgba(222, 220, 214, .42);
  background: rgba(251, 251, 249, .84);
}

.therapist-detail-weekly-day.is-today {
  border-color: rgba(184, 151, 82, .44);
  background: linear-gradient(145deg, rgba(250, 245, 232, .94), rgba(246, 240, 252, .82));
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts {
  gap: 7px;
  background: transparent;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts div {
  border: 1px solid rgba(222, 220, 214, .42);
  background: rgba(251, 251, 249, .76);
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts div[hidden] {
  display: none !important;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts {
  display: none;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-weekly {
  margin-bottom: 0;
}

.therapist-detail-block-stack .therapist-detail-schedule-block .therapist-detail-facts dt {
  color: #9b8b6a;
}

.therapist-detail-reviews-list,
.therapist-social-posts {
  gap: 14px;
}

.therapist-detail-block-stack .therapist-review-card,
.therapist-detail-block-stack .therapist-social-card {
  border: 1px solid rgba(220, 216, 207, .5);
  background: rgba(253, 253, 252, .86);
  box-shadow: none;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts {
  max-height: 294px;
  padding-right: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(184, 151, 82, .62) rgba(246, 246, 244, .7);
  scrollbar-width: thin;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list::-webkit-scrollbar,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts::-webkit-scrollbar {
  width: 5px;
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list::-webkit-scrollbar-track,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts::-webkit-scrollbar-track {
  background: rgba(246, 246, 244, .7);
}

.therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list::-webkit-scrollbar-thumb,
.therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(184, 151, 82, .72), rgba(155, 128, 204, .55));
}

.therapist-detail-block-stack > [data-therapist-social] .therapist-widget-heading h3::after {
  content: " / RELAXY";
  color: #9b8b6a;
  font: 500 .66rem/1 "Inter", sans-serif;
  letter-spacing: .12em;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .therapist-detail-shell {
    width: 100%;
  }

  .therapist-detail-block-stack > .therapist-detail-widget .therapist-reviews-list,
  .therapist-detail-block-stack > .therapist-detail-widget .therapist-social-posts {
    max-height: 308px;
  }
}

.therapist-detail-fallback {
  padding: 48px 20px;
  text-align: center;
}

.therapist-detail-fallback p {
  margin: 0 0 18px;
  color: #5f6875;
  font: 400 1rem/1.8 "Noto Sans JP", "Inter", sans-serif;
}

@media (max-width: 900px) {
  .therapist-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .therapist-detail-copy {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .therapist-detail-page {
    padding: 52px 0 0;
  }

  .therapist-detail-shell {
    padding: 0 16px;
  }

  .therapist-detail-breadcrumb {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.74rem;
  }

  .therapist-detail-layout {
    gap: 16px;
    padding: 16px;
  }

  .therapist-detail-main img {
    aspect-ratio: 1 / 1.18;
  }

  .therapist-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .therapist-detail-copy {
    padding: 18px 16px;
  }

  .therapist-detail-kicker,
  .therapist-detail-debut {
    font-size: 0.72rem;
  }

.therapist-detail-name-row strong {
  text-shadow: 0 8px 20px rgba(122, 83, 97, .12);
}

.therapist-detail-name-row small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(204, 164, 176, .45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 249, 250, .92), rgba(246, 235, 240, .85));
  color: #9f7180;
}

.therapist-detail-measurements {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-left: 2px solid rgba(194, 143, 160, .75);
  background: linear-gradient(90deg, rgba(253, 245, 247, .92), transparent);
  letter-spacing: .08em;
}

.therapist-detail-tags {
  gap: 8px;
}

.therapist-detail-tag {
  border: 1px solid rgba(212, 183, 194, .34);
  background: linear-gradient(135deg, rgba(255, 251, 252, .96), rgba(246, 238, 248, .86));
  box-shadow: 0 6px 14px rgba(147, 111, 129, .05);
}

.therapist-detail-tag::before {
  background: linear-gradient(135deg, #d996ad, #9d7bc5);
}

.therapist-detail-main {
  border-color: rgba(207, 175, 159, .68);
  box-shadow: 0 26px 48px rgba(76, 45, 54, .14);
}

.therapist-detail-main::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(52, 31, 38, .04), transparent 26%, transparent 68%, rgba(53, 29, 38, .13));
}

.therapist-detail-main::after {
  z-index: 2;
  border-color: rgba(255, 246, 242, .76);
}

.therapist-detail-thumb {
  border-color: rgba(207, 175, 159, .6);
  box-shadow: 0 8px 16px rgba(80, 52, 60, .09);
}

.therapist-detail-block-stack > .therapist-detail-schedule-block {
  border-color: rgba(207, 174, 157, .5);
  background:
    radial-gradient(circle at 92% 15%, rgba(246, 197, 208, .16), transparent 26%),
    linear-gradient(135deg, rgba(255, 253, 249, .96), rgba(252, 246, 247, .88));
}

.therapist-detail-weekly-day.is-today {
  border-color: rgba(201, 143, 159, .68);
  box-shadow: 0 8px 18px rgba(170, 104, 128, .11);
}

.therapist-detail-weekly-day.is-today strong {
  color: #9a536b;
}
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .therapist-detail-name-row small {
    font-size: 0.84rem;
  }

  .therapist-detail-measurements {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .therapist-detail-feature {
    font-size: 1.06rem;
    line-height: 1.65;
  }

  .therapist-detail-intro {
    font-size: 0.92rem;
    line-height: 1.85;
  }

  .therapist-detail-tags {
    gap: 8px;
    margin-bottom: 18px;
  }

  .therapist-detail-tag {
    font-size: 0.8rem;
    padding: 7px 10px;
  }

  .therapist-detail-facts div {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
  }

  .therapist-detail-facts dt {
    font-size: 0.72rem;
  }

  .therapist-detail-facts dd {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .therapist-detail-actions {
    flex-direction: column;
  }

  .therapist-detail-actions .section-button {
    min-width: 0;
    width: 100%;
  }

  .therapist-reviews-list,
  .therapist-social-posts {
    grid-template-columns: 1fr;
  }

  .therapist-review-card,
  .therapist-social-card {
    min-width: 0;
  }

  .therapist-social-tabs button {
    flex: 1 1 0;
    min-height: 44px;
  }

  .therapist-widget-more,
  .therapist-social-link {
    width: 100%;
    min-height: 44px;
  }
}

/* screenshot shot-mode */

body[data-shot] .site-header,
body[data-shot] .hero,
body[data-shot] .news-ticker,
body[data-shot] .brand-video-section,
body[data-shot] .campaign-section,
body[data-shot] .schedule-section,
body[data-shot] .new-face-section,
body[data-shot] .therapists-guide-section,
body[data-shot] .therapist-directory-section,
body[data-shot] .relaxi-section,
body[data-shot] .information-section,
body[data-shot] .price-section,
body[data-shot] .access-section,
body[data-shot] .recruit-section,
body[data-shot] .links-section,
body[data-shot] .caution-section,
body[data-shot] .reservation-strip,
body[data-shot] .site-footer,
body[data-shot] .mobile-fixed-nav,
body[data-shot] .recruit-page {
  display: none !important;
}

body[data-shot="schedule"] .schedule-section,
body[data-shot="new-face"] .new-face-section,
body[data-shot="therapists-top"] .therapist-directory-section,
body[data-shot="price"] .price-section,
body[data-shot="recruit-top"] .recruit-section,
body[data-shot="recruit-page"] .recruit-page {
  display: block !important;
}

body[data-shot] .page {
  padding-top: 0;
}

@media (max-width: 640px) {
  .reservation-strip {
    padding: 18px 0;
  }

  .reservation-strip-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .reservation-label {
    font-size: 1.55rem;
  }

  .reservation-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
  }

  .reservation-actions a {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 8px 4px;
    font-size: .75rem;
  }

  .site-footer {
    min-height: 0;
    padding-bottom: calc(94px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
    gap: 28px;
    padding: 42px 0 28px;
    text-align: left;
  }

  .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .copyright {
    text-align: left;
  }
}

/* Earlier compact title ornament override. */
@media (max-width: 640px) {
  .section-heading {
    gap: 10px;
    margin-bottom: 30px;
    padding-inline: 8px;
  }

  .section-heading > div {
    width: auto;
    min-width: 0;
    padding: 9px 14px 8px;
  }

  .section-heading > div::before,
  .section-heading::after {
    display: block;
  }

  .section-heading::after {
    bottom: -7px;
    width: 76px;
    height: 7px;
  }

  .heading-ornament {
    display: block;
    flex: 0 0 34px;
    width: 34px;
  }

  .heading-ornament::before {
    width: 6px;
    height: 6px;
  }

  .section-heading-ja {
    margin-top: 6px;
  }

  .section-heading-en::before,
  .section-heading-en::after {
    display: none;
  }

  body[data-page="home"] .hero-photo {
    object-position: 38% center;
    filter: brightness(1.08) saturate(.94);
  }

  body[data-page="home"] .hero-veil {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1) 28%, rgba(255, 255, 255, .18)),
      radial-gradient(circle at 24% 22%, rgba(214, 225, 245, .12), transparent 30%);
  }

  .section-heading > div::before,
  .therapist-detail-page-title::before {
    display: none;
  }
}

/* Final mobile scale adjustment after all legacy hero rules. */
@media (max-width: 640px) {
  body[data-page="home"] .hero {
    margin: 0;
    border-radius: 0;
    border-right: 0;
    border-left: 0;
  }
  body[data-page="home"] .hero-copy--otona { width: 100%; transform: translateY(12%); }
  body[data-page="home"] .hero-handwritten-logo { width: 340px; max-width: 100%; }
  body[data-page="home"] .hero-handwritten-word--one { font-size: 68px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size: 70px; }
  body[data-page="home"] .hero-kicker { margin-top: 19px; font-size: .82rem; letter-spacing: .34em; }
  body[data-page="home"] .hero-corner-wordmark { display: none; }

  body[data-page="home"] .hero-veil {
    background:
      radial-gradient(ellipse 68% 16% at 5% 18%, rgba(255,255,255,.72), transparent 74%),
      radial-gradient(ellipse 74% 19% at 93% 79%, rgba(255,255,255,.7), transparent 75%),
      linear-gradient(136deg, transparent 16%, rgba(255,255,255,.36) 20%, transparent 24%),
      linear-gradient(311deg, transparent 66%, rgba(255,246,211,.32) 71%, transparent 76%),
      radial-gradient(ellipse 80% 42% at 14% 5%,rgba(248,230,235,.76),transparent 72%),
      radial-gradient(ellipse 88% 44% at 83% 48%,rgba(249,242,205,.64),transparent 74%),
      radial-gradient(ellipse 72% 38% at 52% 100%,rgba(232,241,205,.66),transparent 76%),
      repeating-linear-gradient(12deg,rgba(58,61,63,.028) 0 1px,transparent 1px 48px),
      repeating-linear-gradient(101deg,rgba(58,61,63,.022) 0 1px,transparent 1px 74px),
      linear-gradient(164deg,#fbf4f5 0%,#f7f4f2 37%,#faf7e8 68%,#f1f5df 100%);
  }

  body[data-page="home"] .hero-light-sweep,
  body[data-page="home"] .hero-prism { display:block; position:absolute; z-index:1; pointer-events:none; }
  body[data-page="home"] .hero-light-sweep { width:42%; height:14%; opacity:.52; filter:blur(9px); background:linear-gradient(112deg, transparent 15%, rgba(255,255,255,.76) 38%, rgba(190,222,255,.24) 49%, rgba(255,219,244,.32) 57%, transparent 76%); animation:hero-glint-breathe 6s ease-in-out infinite alternate; }
  body[data-page="home"] .sweep-a { top:13%; left:-11%; transform:rotate(-38deg); }
  body[data-page="home"] .sweep-b { right:-13%; bottom:8%; transform:rotate(-37deg); animation-delay:-2.3s; }
  body[data-page="home"] .sweep-c { bottom:22%; left:-18%; transform:rotate(-37deg) scale(.7); animation-delay:-4.2s; }
  body[data-page="home"] .hero-prism { width:86px; height:86px; border-radius:50%; opacity:.25; background:conic-gradient(from 35deg, rgba(255,255,255,.8), rgba(144,206,255,.18), rgba(255,182,220,.3), rgba(255,232,132,.18), rgba(255,255,255,.8)); filter:blur(4px); animation:hero-orb-float 9s ease-in-out infinite; }
  body[data-page="home"] .prism-a { top:15%; left:9%; }
  body[data-page="home"] .prism-b { right:8%; bottom:27%; animation-delay:-3.2s; }
  body[data-page="home"] .prism-c { bottom:8%; left:24%; animation-delay:-5s; }

  body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top:18%; left:14%; width:58px; height:58px; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top:20%; right:15%; width:92px; height:92px; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right:5%; bottom:28%; width:52px; height:52px; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(4) { bottom:22%; left:27%; width:74px; height:74px; animation-delay:-5.1s; }

  body[data-page="home"] .mobile-menu-button {
    top:30px;
    right:30px;
    width:64px;
    height:64px;
    border:1px solid rgba(43,47,49,.19);
    border-radius:0;
    background:rgba(255,255,255,.86);
    box-shadow:0 8px 18px rgba(39,43,46,.1);
  }
  body[data-page="home"] .mobile-menu-button span { width:34px; height:2px; margin:5px 0; }
}

/* 2026-07-23: reference visual final cascade. Keep this at the end of the sheet. */
body[data-page="home"] .hero-frame,
body[data-page="home"] .hero-symbol-bg {
  display: none !important;
}

body[data-page="home"] .hero-graphic-marks,
body[data-page="home"] .hero-glass-orbs {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  pointer-events: none;
}

body[data-page="home"] .hero-mark {
  position: absolute;
  display: block;
  color: #4f86df;
  font-family: var(--font-sans);
  font-style: normal;
  line-height: 1;
  animation: hero-mark-drift 5.6s ease-in-out infinite;
}

body[data-page="home"] .hero-mark--dots { top: 67%; left: 30%; width: 42px; height: 54px; background-image: radial-gradient(circle, rgba(81, 211, 180, .76) 0 1.55px, transparent 2px); background-size: 9px 9px; animation-delay: -2.1s; }
body[data-page="home"] .hero-mark--plus { top: 38%; left: 37%; color: #5c95ef; font-size: 2rem; animation-delay: -.8s; }
body[data-page="home"] .hero-mark--ring { top: 33%; right: 35%; width: 13px; height: 13px; border: 3px solid #5c95ef; border-radius: 50%; animation-delay: -3.3s; }
body[data-page="home"] .hero-mark--triangle { top: 49%; right: 25%; width: 0; height: 0; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 29px solid rgba(141, 91, 200, .92); transform: rotate(-12deg); animation-delay: -1.6s; }
body[data-page="home"] .hero-mark--wave { top: 40%; right: 32%; color: #f278ad; font-size: 2rem; letter-spacing: -.3em; transform: rotate(-18deg); animation-delay: -4.2s; }
body[data-page="home"] .hero-mark--dot { right: 27%; bottom: 30%; width: 11px; height: 11px; border-radius: 50%; background: #64e0a1; animation-delay: -2.7s; }

body[data-page="home"] .hero-glass-orbs i {
  position: absolute;
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.88), rgba(196,226,245,.18) 36%, rgba(255,255,255,.06) 68%);
  box-shadow: inset 6px 6px 12px rgba(255,255,255,.45), inset -5px -5px 12px rgba(143,191,214,.12), 0 7px 16px rgba(97,123,147,.08);
  animation: hero-orb-float 8s ease-in-out infinite;
}
body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top: 18%; left: 13%; width: 48px; height: 48px; animation-delay: -1.3s; }
body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top: 20%; right: 18%; width: 78px; height: 78px; animation-delay: -4.4s; }
body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right: 12%; bottom: 23%; width: 44px; height: 44px; animation-delay: -6.2s; }

@media (min-width: 641px) {
  body[data-page="home"] .hero { min-height: 92vh; margin: 16px 2vw; border-radius: 20px; }
  body[data-page="home"] .hero-inner { min-height: 92vh; }
  body[data-page="home"] .hero-copy--otona { width: min(100%, 700px); transform: translateY(1%); }
  body[data-page="home"] .hero-handwritten-logo { --hero-ink-color:#25292b; display:block; position:relative; z-index:3; width:545px; max-width:100%; filter:drop-shadow(0 1px 1px rgba(255,255,255,.45)); }
  body[data-page="home"] .hero-handwritten-word { fill:transparent; stroke:var(--hero-ink-color); stroke-width:.8; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:1200; stroke-dashoffset:1200; font-family:"Allura",cursive; font-style:italic; letter-spacing:-.025em; animation:hero-ink-draw 1.2s cubic-bezier(.5,0,.2,1) forwards; }
  body[data-page="home"] .hero-handwritten-word--one { font-size:95px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size:98px; animation-delay:.7s; }
  body[data-page="home"] .hero-kicker { color:rgba(37,41,43,.78); text-shadow:none; }
  body[data-page="home"] .hero-veil::before { content:""; position:absolute; inset:0; background:linear-gradient(124deg,transparent 12%,rgba(255,255,255,.42) 21%,rgba(215,232,255,.16) 24%,transparent 29%),linear-gradient(302deg,transparent 67%,rgba(255,240,205,.24) 73%,rgba(255,255,255,.4) 76%,transparent 81%); opacity:.72; animation:hero-glint-breathe 5s ease-in-out infinite alternate; }
  body[data-page="home"] .site-header { position:absolute; z-index:20; top:38px; right:44px; left:auto; width:auto; min-height:0; background:transparent; box-shadow:none; }
  body[data-page="home"] .site-header .topbar, body[data-page="home"] .site-header .brand-lockup, body[data-page="home"] .site-header .brand-cta, body[data-page="home"] .site-header .global-nav { display:none; }
  body[data-page="home"] .site-header .brand-row { min-height:0; padding:0; }
  body[data-page="home"] .site-header .mobile-menu-button { display:grid; width:44px; height:38px; border:0; background:transparent; box-shadow:none; }
  body[data-page="home"] .site-header .mobile-menu-button span { width:32px; height:1.5px; margin:4px 0; background:#25292b; }
  body[data-page="home"] .mobile-menu-panel { display:none; position:fixed; z-index:80; inset:0; padding:24px; background:rgba(247,248,246,.72); backdrop-filter:blur(12px); }
  body[data-page="home"].menu-open .mobile-menu-panel { display:block; }
  body[data-page="home"] .mobile-menu-backdrop { position:absolute; inset:0; width:100%; height:100%; border:0; background:transparent; }
  body[data-page="home"] .mobile-menu-sheet { position:relative; z-index:1; width:min(540px,calc(100% - 48px)); margin:26px 30px 0 auto; padding:28px; border:1px solid rgba(42,47,49,.1); border-radius:18px; background:rgba(255,255,255,.96); box-shadow:0 20px 48px rgba(36,42,46,.12); }
  body[data-page="home"] .mobile-menu-links { display:grid; grid-template-columns:repeat(2,1fr); gap:9px; }
  body[data-page="home"] .mobile-menu-link { min-height:74px; }
}

@media (max-width:640px) {
  /* Final alignment pass: one light navigation surface rather than four cards. */
  body[data-page="home"] .hero {
    min-height:calc(100svh - 80px - env(safe-area-inset-bottom));
    height:calc(100svh - 80px - env(safe-area-inset-bottom));
  }
  body[data-page="home"] .mobile-fixed-nav {
    left:12px !important;
    right:12px !important;
    bottom:calc(8px + env(safe-area-inset-bottom));
    width:auto !important;
    max-width:none;
    height:68px;
    padding:4px;
    gap:0;
    border:1px solid rgba(45,49,51,.07);
    border-radius:17px;
    background:rgba(255,255,255,.83);
    box-shadow:0 7px 20px rgba(41,45,47,.075), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter:blur(14px);
  }
  body[data-page="home"] .mobile-fixed-nav a,
  body[data-page="home"] .mobile-fixed-nav .fixed-nav-item {
    min-height:58px;
    gap:3px;
    border:0 !important;
    border-radius:12px;
    background:transparent;
    box-shadow:none;
    font-size:.57rem;
    font-weight:400;
    letter-spacing:.025em;
  }
  body[data-page="home"] .mobile-fixed-nav a + a { border-left:1px solid rgba(45,49,51,.055) !important; }
  body[data-page="home"] .mobile-fixed-nav .fixed-nav-icon { width:29px; height:29px; flex-basis:29px; }
  body[data-page="home"] .mobile-fixed-nav .fixed-nav-icon svg { width:18px; height:18px; stroke-width:2; }
  body[data-page="home"] .mobile-fixed-nav .fixed-nav-icon--line svg { width:17px; height:17px; }
  body[data-page="home"] .site-header { inset:12px 20px auto auto; }
}

/* Persistent mobile menu: readable over every pale or coloured section. */
@media (max-width:640px) {
  body[data-page="home"] .site-header {
    z-index:100;
  }
  body[data-page="home"] .mobile-menu-button {
    border:1px solid rgba(50,50,60,.14);
    background:rgba(255,255,255,.88);
    box-shadow:0 6px 20px rgba(40,45,60,.13), 0 1px 3px rgba(40,45,60,.08);
    /* Kept off the header itself so the fixed menu panel can escape this container. */
  }
  body[data-page="home"] .mobile-menu-button span { background:#282d30; }
  body[data-page="home"] .mobile-menu-button:hover {
    border-color:rgba(40,45,52,.22);
    box-shadow:0 8px 24px rgba(40,45,60,.16), 0 2px 5px rgba(40,45,60,.10);
  }
  body[data-page="home"] .mobile-menu-button:active {
    border-color:rgba(40,45,52,.26);
    box-shadow:0 3px 10px rgba(40,45,60,.15), inset 0 1px 2px rgba(40,45,60,.08);
  }
}

@media (max-width:640px) {
  /* Access-area selector: compact, secondary navigation rather than large cards. */
  body[data-page="access"] .access-layout .area-tabs,
  body[data-page="home"] .access-layout .area-tabs {
    gap:4px;
    margin-bottom:10px;
    padding:0 10px 2px;
    justify-content:center;
    overflow:visible;
  }
  body[data-page="access"] .access-layout .area-tabs button,
  body[data-page="home"] .access-layout .area-tabs button {
    min-height:30px;
    padding:4px 8px;
    border-radius:6px;
    font-size:.64rem;
    line-height:1.2;
    box-shadow:0 2px 6px rgba(40,48,65,.035);
  }
}

/* The menu sheet has its own scroll area on short mobile screens. */
@media (max-width:900px) {
  .mobile-menu-panel { overflow-y:auto; overscroll-behavior:contain; -webkit-overflow-scrolling:touch; }
  .mobile-menu-sheet { max-height:calc(100dvh - 36px - env(safe-area-inset-bottom)); overflow-y:auto; overscroll-behavior:contain; padding-bottom:calc(24px + env(safe-area-inset-bottom)); }
}

@media (max-width:900px) {
  body[data-page="home"] .site-header { top:17px; right:18px; left:auto; width:auto; }
  body[data-page="home"].menu-open .site-header .mobile-menu-button { visibility:hidden; pointer-events:none; }
}

@media (max-width:900px) {
  body[data-page="home"] .site-header { position:fixed !important; inset:17px 18px auto auto !important; z-index:110; width:42px !important; min-height:42px; }
  body[data-page="home"] .site-header .brand-row { position:static !important; inset:auto !important; width:42px !important; min-height:42px; padding:0 !important; }
}

@media (max-width:900px) {
  body[data-page="home"] .site-header {
    position:fixed !important;
    inset:17px 18px auto auto !important;
    z-index:110;
    width:42px !important;
    min-height:42px;
  }
  body[data-page="home"] .site-header .brand-row {
    position:static !important;
    inset:auto !important;
    width:42px !important;
    min-height:42px;
    padding:0 !important;
  }
}

/* Campaign archive page. */
body[data-page="campaign"] .hero,
body[data-page="campaign"] .news-ticker { display:none; }
body[data-page]:not([data-page="caution"]) .caution-section { display:none; }
body[data-page="home"] .campaign-section { display:none; }
body[data-page="home"] .top-campaign-section { background:linear-gradient(180deg,#fff 0%,#fbf8fb 100%); }
.top-campaign-feature { position:relative; display:block; width:min(100% - 40px,720px); min-height:290px; margin:0 auto; overflow:hidden; border-radius:18px; color:#fff; box-shadow:0 16px 34px rgba(42,48,57,.10); text-decoration:none; }
.top-campaign-feature img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; object-position:center 30%; }
.top-campaign-feature-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(31,35,40,.62),rgba(31,35,40,.16) 72%,rgba(31,35,40,.05)); }
.top-campaign-feature-copy { position:relative; z-index:1; display:flex; min-height:290px; flex-direction:column; justify-content:center; align-items:flex-start; padding:34px 38px; }
.top-campaign-feature-copy small { font-family:var(--font-card-ui); font-size:.68rem; letter-spacing:.13em; }
.top-campaign-feature-copy strong { margin-top:9px; font-family:var(--font-display-jp); font-size:2rem; font-weight:500; }
.top-campaign-feature-copy b { margin-top:10px; font-size:.86rem; font-weight:500; }
.top-campaign-feature-copy em { margin-top:20px; font-style:normal; font-size:.78rem; letter-spacing:.08em; }
.top-campaign-more { display:flex; width:min(100% - 40px,720px); justify-content:flex-end; margin:18px auto 0; }
.top-campaign-more .text-link { font-size:.82rem; }
@media (max-width:640px) {
  .top-campaign-feature { width:calc(100% - 32px); min-height:205px; border-radius:14px; }
  .top-campaign-feature-copy { min-height:205px; padding:24px; }
  .top-campaign-feature-copy strong { font-size:1.45rem; }
  .top-campaign-feature-copy b { font-size:.72rem; }
  .top-campaign-more { width:calc(100% - 32px); margin-top:14px; }
  .top-campaign-more .text-link { font-size:.74rem; }
}
body[data-page="campaign"] .campaign-page-title {
  padding:36px 20px 22px;
  background:linear-gradient(180deg,#fff 0%,#faf9fb 100%);
}
body[data-page="campaign"] .campaign-page-title .section-heading-en { margin:0; }
body[data-page="campaign"] .campaign-page-title h1 { margin:6px 0 0; }
body[data-page="campaign"] .campaign-section { padding-top:10px; }
body[data-page="campaign"] .campaign-featured-carousel,
body[data-page="campaign"] .campaign-featured-action { display:none; }
body[data-page="campaign"] .campaign-detail-list { display:grid; width:min(100% - 40px,920px); margin:46px auto 28px; gap:20px; }
body[data-page="campaign"] .campaign-detail { display:grid; grid-template-columns:200px 1fr; min-height:220px; overflow:hidden; border:1px solid rgba(54,59,65,.08); border-radius:18px; background:rgba(255,255,255,.86); box-shadow:0 13px 34px rgba(42,48,57,.065); }
body[data-page="campaign"] .campaign-detail img { width:100%; height:100%; object-fit:cover; object-position:center top; }
body[data-page="campaign"] .campaign-detail > div { display:flex; flex-direction:column; justify-content:center; padding:28px 32px; }
body[data-page="campaign"] .campaign-detail p { margin:0 0 7px; color:#9c7c84; font-family:var(--font-card-ui); font-size:.68rem; letter-spacing:.14em; }
body[data-page="campaign"] .campaign-detail h2 { margin:0; color:#292d31; font-family:var(--font-display-jp); font-size:1.45rem; font-weight:500; }
body[data-page="campaign"] .campaign-detail b { margin-top:13px; color:#5b616b; font-size:.88rem; font-weight:500; }
body[data-page="campaign"] .campaign-detail span { margin-top:8px; color:#737983; font-size:.8rem; line-height:1.8; }
body[data-page="campaign"] .campaign-page-nav { display:flex; align-items:center; justify-content:center; gap:7px; padding:10px 0 58px; }
body[data-page="campaign"] .campaign-page-nav a { display:grid; width:36px; height:36px; place-items:center; border:1px solid rgba(50,50,60,.11); border-radius:9px; color:#3d4247; background:rgba(255,255,255,.78); font-family:var(--font-card-ui); font-size:.78rem; text-decoration:none; }
body[data-page="campaign"] .campaign-page-nav .is-current { border-color:rgba(246,148,185,.45); background:rgba(246,148,185,.18); }
body[data-page="campaign"] .campaign-page-nav .campaign-next { width:auto; padding:0 14px; letter-spacing:.08em; }
.campaign-back-top { position:fixed; z-index:95; right:18px; bottom:calc(82px + env(safe-area-inset-bottom)); display:grid; width:42px; height:42px; place-items:center; border:1px solid rgba(50,50,60,.12); border-radius:11px; color:#282d30; background:rgba(255,255,255,.88); box-shadow:0 5px 15px rgba(40,45,60,.10); font-size:1rem; line-height:1; opacity:0; pointer-events:none; transform:translateY(12px); transition:opacity .24s ease,transform .24s ease; backdrop-filter:blur(10px); }
.campaign-back-top.is-visible { opacity:1; pointer-events:auto; transform:translateY(0); }

@media (max-width:640px) {
  body[data-page="campaign"] .campaign-page-title { padding:27px 18px 17px; }
  body[data-page="campaign"] .campaign-detail-list { width:calc(100% - 28px); margin:30px auto 20px; gap:14px; }
  body[data-page="campaign"] .campaign-detail { grid-template-columns:104px 1fr; min-height:156px; border-radius:14px; }
  body[data-page="campaign"] .campaign-detail > div { padding:16px; }
  body[data-page="campaign"] .campaign-detail p { font-size:.56rem; }
  body[data-page="campaign"] .campaign-detail h2 { font-size:1.04rem; line-height:1.45; }
  body[data-page="campaign"] .campaign-detail b { margin-top:7px; font-size:.68rem; }
  body[data-page="campaign"] .campaign-detail span { margin-top:5px; font-size:.65rem; line-height:1.55; }
  .campaign-back-top { right:16px; bottom:calc(78px + env(safe-area-inset-bottom)); }
}

/* Keep the home trigger aligned with the subpage header control. */
@media (max-width:900px) {
  body[data-page="home"] .site-header {
    top:17px;
    right:18px;
    left:auto;
    width:auto;
  }
  body[data-page="home"].menu-open .site-header .mobile-menu-button {
    visibility:hidden;
    pointer-events:none;
  }
}

/* Shared subpage header: brand link on the left, menu on the right. */
@media (max-width:900px) {
  body[data-page]:not([data-page="home"]) {
    padding-top:76px;
  }
  body[data-page]:not([data-page="home"]) .site-header {
    position:fixed;
    z-index:110;
    top:0;
    right:0;
    left:0;
    width:100%;
    min-height:76px;
    background:rgba(255,255,255,.90);
    border-bottom:1px solid rgba(40,40,50,.06);
    box-shadow:0 3px 14px rgba(40,45,60,.045);
    /* No filter here: filters create a containing block that traps the menu panel. */
  }
  body[data-page]:not([data-page="home"]) .site-header .topbar,
  body[data-page]:not([data-page="home"]) .site-header .global-nav,
  body[data-page]:not([data-page="home"]) .site-header .brand-cta { display:none; }
  body[data-page]:not([data-page="home"]) .site-header .brand-row {
    position:static;
    display:flex;
    width:100%;
    min-height:76px;
    padding:12px 18px;
    align-items:center;
    justify-content:space-between;
    background:transparent;
  }
  body[data-page]:not([data-page="home"]) .site-header .brand-lockup {
    display:inline-flex;
    flex:0 1 min(60vw,250px);
    min-width:0;
    align-items:center;
    overflow:visible;
  }
  body[data-page]:not([data-page="home"]) .site-header .brand-logo--header {
    width:min(60vw,250px);
    height:34px;
    margin-left:0;
    object-fit:contain;
    object-position:left center;
  }
  body[data-page]:not([data-page="home"]) .site-header .mobile-menu-button {
    display:grid;
    width:42px;
    height:42px;
    flex:0 0 42px;
    place-items:center;
    border:1px solid rgba(50,50,60,.12);
    border-radius:11px;
    background:rgba(255,255,255,.88);
    box-shadow:0 5px 15px rgba(40,45,60,.10);
  }
  body[data-page]:not([data-page="home"]) .site-header .mobile-menu-button span {
    width:21px;
    height:2px;
    margin:3px 0;
    border-radius:99px;
    background:#282d30;
  }
  body[data-page]:not([data-page="home"]) .mobile-menu-panel {
    position:fixed;
    inset:0;
    z-index:130;
  }
}
  body[data-page="home"] .hero-veil { background:linear-gradient(136deg,transparent 16%,rgba(255,255,255,.36) 20%,transparent 24%),linear-gradient(311deg,transparent 66%,rgba(255,246,211,.32) 71%,transparent 76%),radial-gradient(ellipse 80% 42% at 14% 5%,rgba(248,230,235,.72),transparent 72%),radial-gradient(ellipse 88% 44% at 83% 48%,rgba(249,242,205,.6),transparent 74%),radial-gradient(ellipse 72% 38% at 52% 100%,rgba(232,241,205,.62),transparent 76%),repeating-linear-gradient(12deg,rgba(58,61,63,.025) 0 1px,transparent 1px 48px),repeating-linear-gradient(101deg,rgba(58,61,63,.018) 0 1px,transparent 1px 74px),linear-gradient(164deg,#fbf4f5 0%,#f7f4f2 37%,#faf7e8 68%,#f1f5df 100%); }
  body[data-page="home"] .hero-mark--dots { top:68%; left:24%; width:34px; height:45px; }
  body[data-page="home"] .hero-mark--plus { top:38%; left:31%; }
  body[data-page="home"] .hero-mark--ring { top:33%; right:25%; }
  body[data-page="home"] .hero-mark--triangle { top:49%; right:15%; }
  body[data-page="home"] .hero-mark--wave { top:40%; right:24%; }
  body[data-page="home"] .hero-mark--dot { right:13%; bottom:30%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top:20%; left:14%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top:22%; right:18%; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right:11%; bottom:26%; }
  body[data-page="home"] .hero-copy--otona { width:calc(100% - 44px); }
  body[data-page="home"] .hero-handwritten-logo { width:340px; max-width:100%; }
  body[data-page="home"] .hero-handwritten-word--one { font-size:68px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size:70px; }
}

/* Mobile home hero: retain the existing visual, with a quieter and clearer wordmark. */
@media (max-width: 640px) {
  body[data-page="home"] .hero-symbol-bg {
    display: none !important;
    opacity: 0 !important;
  }

  body[data-page="home"] .hero-copy--otona {
    transform: translate(-3%, 10%);
  }

  body[data-page="home"] .hero-title {
    font-size: clamp(2.72rem, 12vw, 3.62rem);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, .72),
      0 4px 15px rgba(43, 49, 57, .18),
      0 12px 28px rgba(43, 49, 57, .09);
  }

  body[data-page="home"] .hero-kicker {
    margin-top: 24px;
    font-size: .82rem;
    letter-spacing: .22em;
    color: rgba(231, 220, 198, .98);
    text-shadow: 0 2px 10px rgba(43, 49, 57, .16);
  }

  body[data-page="home"] .hero-veil {
    background:
      radial-gradient(ellipse 54% 25% at 47% 57%, rgba(43, 49, 57, .14), transparent 74%),
      linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .1) 28%, rgba(255, 255, 255, .18)),
      radial-gradient(circle at 24% 22%, rgba(214, 225, 245, .12), transparent 30%);
  }
}

/* Mobile home only: a restrained plaster wall and a one-time ink signature. */
.hero-handwritten-logo {
  display: none;
}

@keyframes hero-ink-draw {
  0%, 84% { fill: transparent; }
  100% {
    stroke-dashoffset: 0;
    fill: var(--hero-ink-color, #2f3435);
  }
}

@keyframes hero-kicker-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-pastel-drift {
  0%, 100% {
    opacity: .18;
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  48% {
    opacity: .38;
    transform: translate3d(2%, 1.5%, 0) scale(1.05);
  }
  72% {
    opacity: .27;
    transform: translate3d(1%, -1.5%, 0) scale(1.025);
  }
}

@keyframes hero-mark-ripple {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.1) rotate(-8deg);
  }
  22% { opacity: .23; }
  60% { opacity: .1; }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08) rotate(6deg);
  }
}

@keyframes hero-glint-breathe {
  0% { opacity: .28; transform: translate3d(-.5%, -.5%, 0); }
  100% { opacity: .82; transform: translate3d(.5%, .5%, 0); }
}

@keyframes hero-shape-float {
  0% { transform: translate3d(0, 0, 0) rotate(var(--shape-rotate, 0deg)); }
  100% { transform: translate3d(var(--shape-x, 5px), var(--shape-y, -8px), 0) rotate(calc(var(--shape-rotate, 0deg) + 5deg)); }
}

@keyframes hero-mark-drift {
  0%, 100% { opacity: .72; transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { opacity: 1; transform: translate3d(3px, -5px, 0) rotate(4deg); }
}

@keyframes hero-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .46; }
  50% { transform: translate3d(4px, -8px, 0) scale(1.05); opacity: .72; }
}

@media (max-width: 640px) {
  body[data-page="home"] .hero {
    background: #f3f3f0;
  }

  body[data-page="home"] .hero-picture,
  body[data-page="home"] .hero-light-sweep,
  body[data-page="home"] .hero-prism {
    display: none;
  }

  body[data-page="home"] .hero-abstract-shapes {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
  }

  body[data-page="home"] .hero-graphic-marks,
  body[data-page="home"] .hero-glass-orbs {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
  }

  body[data-page="home"] .hero-mark {
    position: absolute;
    display: block;
    color: #4f86df;
    font-family: var(--font-sans);
    font-style: normal;
    line-height: 1;
    animation: hero-mark-drift 5.6s ease-in-out infinite;
  }

  body[data-page="home"] .hero-mark--dots {
    top: 68%;
    left: 24%;
    width: 34px;
    height: 45px;
    background-image: radial-gradient(circle, rgba(81, 211, 180, .82) 0 1.6px, transparent 2px);
    background-size: 8px 8px;
    animation-delay: -2.1s;
  }

  body[data-page="home"] .hero-mark--plus { top: 38%; left: 31%; color: #5c95ef; font-size: 2rem; animation-delay: -.8s; }
  body[data-page="home"] .hero-mark--ring { top: 33%; right: 25%; width: 13px; height: 13px; border: 3px solid #5c95ef; border-radius: 50%; animation-delay: -3.3s; }
  body[data-page="home"] .hero-mark--triangle { top: 49%; right: 15%; width: 0; height: 0; border-top: 18px solid transparent; border-bottom: 18px solid transparent; border-left: 29px solid rgba(141, 91, 200, .92); transform: rotate(-12deg); animation-delay: -1.6s; }
  body[data-page="home"] .hero-mark--wave { top: 40%; right: 24%; color: #f278ad; font-size: 2rem; letter-spacing: -.3em; transform: rotate(-18deg); animation-delay: -4.2s; }
  body[data-page="home"] .hero-mark--dot { right: 13%; bottom: 30%; width: 11px; height: 11px; border-radius: 50%; background: #64e0a1; animation-delay: -2.7s; }

  body[data-page="home"] .hero-glass-orbs i {
    position: absolute;
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.88), rgba(196, 226, 245, .18) 36%, rgba(255,255,255,.06) 68%);
    box-shadow: inset 6px 6px 12px rgba(255,255,255,.45), inset -5px -5px 12px rgba(143, 191, 214, .12), 0 7px 16px rgba(97, 123, 147, .08);
    animation: hero-orb-float 8s ease-in-out infinite;
  }

  body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top: 20%; left: 14%; width: 48px; height: 48px; animation-delay: -1.3s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top: 22%; right: 18%; width: 78px; height: 78px; animation-delay: -4.4s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right: 11%; bottom: 26%; width: 44px; height: 44px; animation-delay: -6.2s; }

  body[data-page="home"] .hero-shape {
    position: absolute;
    opacity: .72;
    filter: saturate(.82);
    animation: hero-shape-float 9s ease-in-out infinite alternate;
    will-change: transform;
  }

  body[data-page="home"] .hero-shape--blue {
    top: 40%;
    left: 17%;
    width: 91px;
    height: 139px;
    --shape-rotate: 14deg;
    --shape-x: 7px;
    --shape-y: -10px;
    border-radius: 61% 39% 47% 53% / 46% 41% 59% 54%;
    background: rgba(119, 183, 242, .58);
    animation-delay: -.8s;
  }

  body[data-page="home"] .hero-shape--yellow {
    top: 34%;
    left: 38%;
    width: 91px;
    height: 83px;
    --shape-rotate: -17deg;
    --shape-x: -6px;
    --shape-y: 7px;
    border-radius: 55% 45% 48% 52% / 64% 43% 57% 36%;
    background: rgba(249, 213, 89, .68);
    animation-delay: -2.2s;
  }

  body[data-page="home"] .hero-shape--pink {
    top: 47%;
    right: 15%;
    width: 133px;
    height: 93px;
    --shape-rotate: -12deg;
    --shape-x: -8px;
    --shape-y: -5px;
    border-radius: 59% 41% 58% 42% / 42% 55% 45% 58%;
    background: rgba(240, 110, 165, .56);
    animation-delay: -4.3s;
  }

  body[data-page="home"] .hero-shape--sky {
    top: 20%;
    left: 48%;
    width: 112px;
    height: 48px;
    --shape-rotate: -5deg;
    --shape-x: 5px;
    --shape-y: 7px;
    border-radius: 56% 44% 62% 38% / 71% 56% 44% 29%;
    background: rgba(135, 190, 243, .54);
    animation-delay: -6.1s;
  }

  body[data-page="home"] .hero-shape--small {
    top: 27%;
    right: 25%;
    width: 31px;
    height: 31px;
    --shape-x: -4px;
    --shape-y: 6px;
    border-radius: 50%;
    background: rgba(108, 194, 229, .45);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .44) inset;
    animation-delay: -3.4s;
  }

  body[data-page="home"] .hero-spark,
  body[data-page="home"] .spark-e,
  body[data-page="home"] .spark-f,
  body[data-page="home"] .spark-g {
    display: block;
  }

  body[data-page="home"] .hero-spark {
    opacity: 0;
    animation-duration: 5.2s;
  }

  body[data-page="home"] .spark-a { animation-delay: .18s; }
  body[data-page="home"] .spark-b { animation-delay: 1.18s; }
  body[data-page="home"] .spark-c { animation-delay: 2.15s; }
  body[data-page="home"] .spark-d { animation-delay: .7s; }
  body[data-page="home"] .spark-e { animation-delay: 1.7s; }
  body[data-page="home"] .spark-f { animation-delay: 2.72s; }
  body[data-page="home"] .spark-g { animation-delay: 3.55s; }

  body[data-page="home"] .hero-veil {
    background:
      radial-gradient(ellipse 80% 42% at 14% 5%, rgba(248, 230, 235, .72), transparent 72%),
      radial-gradient(ellipse 88% 44% at 83% 48%, rgba(249, 242, 205, .6), transparent 74%),
      radial-gradient(ellipse 72% 38% at 52% 100%, rgba(232, 241, 205, .62), transparent 76%),
      linear-gradient(164deg, #fbf4f5 0%, #f7f4f2 37%, #faf7e8 68%, #f1f5df 100%);
  }

  body[data-page="home"] .hero-veil::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 12% 18%, rgba(255,255,255,.96) 0 1.5px, transparent 2.8px),
      radial-gradient(circle at 26% 39%, rgba(255,255,255,.88) 0 1px, transparent 2.4px),
      radial-gradient(circle at 43% 16%, rgba(255,244,209,.92) 0 1.4px, transparent 2.6px),
      radial-gradient(circle at 62% 29%, rgba(255,255,255,.9) 0 1px, transparent 2.4px),
      radial-gradient(circle at 82% 13%, rgba(230,239,255,.96) 0 1.4px, transparent 2.7px),
      radial-gradient(circle at 89% 48%, rgba(255,255,255,.88) 0 1px, transparent 2.4px),
      radial-gradient(circle at 16% 67%, rgba(238,228,255,.9) 0 1.3px, transparent 2.5px),
      radial-gradient(circle at 37% 82%, rgba(255,255,255,.94) 0 1px, transparent 2.5px),
      radial-gradient(circle at 67% 71%, rgba(255,248,213,.92) 0 1.4px, transparent 2.6px),
      radial-gradient(circle at 80% 91%, rgba(255,255,255,.9) 0 1px, transparent 2.4px);
    animation: hero-glint-breathe 3.6s ease-in-out infinite alternate;
  }

  body[data-page="home"] .hero-veil::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -8%;
    pointer-events: none;
    background:
      radial-gradient(ellipse 48% 42% at 12% 14%, rgba(250, 208, 221, .46), transparent 76%),
      radial-gradient(ellipse 50% 45% at 88% 54%, rgba(246, 229, 160, .36), transparent 78%),
      radial-gradient(ellipse 52% 40% at 45% 96%, rgba(210, 233, 178, .42), transparent 76%);
    animation: hero-pastel-drift 28s ease-in-out infinite;
    will-change: transform, opacity;
  }

  body[data-page="home"] .hero-copy--otona {
    position: relative;
    width: min(100% - 48px, 360px);
    transform: translate(-1%, 5%);
  }

  body[data-page="home"] .hero-title-wrap {
    isolation: isolate;
  }

  body[data-page="home"] .hero-title-wrap::before,
  body[data-page="home"] .hero-title-wrap::after {
    display: none !important;
  }

  body[data-page="home"] .hero-title-wrap::after {
    display: none;
  }

  body[data-page="home"] .hero-copy--otona::before,
  body[data-page="home"] .hero-copy--otona::after {
    content: "";
    position: absolute;
    left: 50%;
    pointer-events: none;
  }

  body[data-page="home"] .hero-copy--otona::before {
    top: -27px;
    width: 66px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(164, 141, 102, .72) 28%, rgba(47, 52, 53, .6) 50%, rgba(164, 141, 102, .72) 72%, transparent);
  }

  body[data-page="home"] .hero-copy--otona::after {
    bottom: -35px;
    width: 4px;
    height: 4px;
    transform: translateX(-50%) rotate(45deg);
    border: 1px solid rgba(164, 141, 102, .72);
    background: rgba(255, 255, 255, .38);
  }

  body[data-page="home"] .hero-copy--otona::before,
  body[data-page="home"] .hero-copy--otona::after {
    display: none;
  }

  body[data-page="home"] .hero-title {
    display: none;
  }

  body[data-page="home"] .hero-handwritten-logo {
    --hero-ink-color: #25292b;
    display: block;
    position: relative;
    z-index: 2;
    width: min(100%, 340px);
    overflow: visible;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .46));
  }

  body[data-page="home"] .hero-handwritten-word {
    fill: transparent;
    stroke: var(--hero-ink-color);
    stroke-width: .9;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    font-family: "Allura", cursive;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.025em;
    animation: hero-ink-draw 1.2s cubic-bezier(.5, 0, .2, 1) forwards;
  }

  body[data-page="home"] .hero-handwritten-word--one {
    font-size: 60px;
  }

  body[data-page="home"] .hero-handwritten-word--two {
    font-size: 61px;
    animation-delay: .7s;
  }

  body[data-page="home"] .hero-kicker {
    margin-top: 17px;
    color: rgba(37, 41, 43, .78);
    font-size: .73rem;
    letter-spacing: .3em;
    text-shadow: none;
    opacity: 0;
    transform: translateY(4px);
    animation: hero-kicker-reveal .65s ease 1.95s forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-handwritten-word,
  body[data-page="home"] .hero-shape,
  body[data-page="home"] .hero-veil::before,
  body[data-page="home"] .hero-veil::after,
  body[data-page="home"] .hero-title-wrap::before,
  body[data-page="home"] .hero-title-wrap::after,
  body[data-page="home"] .hero-kicker {
    animation: none;
  }

  body[data-page="home"] .hero-handwritten-word {
    stroke-dashoffset: 0;
    fill: var(--hero-ink-color, #2f3435);
  }

  body[data-page="home"] .hero-veil::after {
    opacity: .24;
    transform: none;
  }

  body[data-page="home"] .hero-veil::before {
    opacity: .45;
    transform: none;
  }

  body[data-page="home"] .hero-kicker {
    opacity: 1;
    transform: none;
  }

  body[data-page="home"] .hero-title-wrap::before,
  body[data-page="home"] .hero-title-wrap::after {
    display: none !important;
  }

}

/* Ranking page: celebratory highlights without changing the shared page system */
.ranking-page-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 199, 112, .15), transparent 25%),
    radial-gradient(circle at 86% 26%, rgba(174, 150, 210, .12), transparent 28%),
    linear-gradient(180deg, rgba(255, 254, 250, .99), rgba(248, 249, 253, .98) 54%, rgba(255, 255, 255, .99));
}

.ranking-category {
  position: relative;
  padding: 30px 22px 24px;
  border: 1px solid rgba(199, 184, 149, .22);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 42px rgba(58, 51, 41, .045);
}

.ranking-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, #c6a550, #e9d699 52%, #a990c6);
  transform: translateX(-50%);
}

.ranking-category-heading {
  position: relative;
  padding-bottom: 18px;
}

.ranking-category-heading p {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 11px;
  border: 1px solid rgba(191, 156, 74, .34);
  background: rgba(255, 250, 234, .9);
  color: #8a7040;
  letter-spacing: .16em;
}

.ranking-category-heading h3 {
  position: relative;
  display: inline-block;
  margin-top: 0;
  padding: 0 18px 8px;
  isolation: isolate;
}

.ranking-category-heading h3::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 9px;
  bottom: 6px;
  left: 9px;
  height: .62em;
  background: linear-gradient(90deg, rgba(240, 213, 119, .34), rgba(210, 183, 238, .2));
}

.ranking-category-heading h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 154, 78, .78), rgba(164, 137, 197, .6), transparent);
}

.ranking-card {
  border: 1px solid rgba(202, 190, 165, .42);
  box-shadow: 0 14px 30px rgba(45, 43, 48, .075), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.ranking-card--1 { border-color: rgba(194, 157, 69, .68); }
.ranking-card--2 { border-color: rgba(141, 151, 165, .52); }
.ranking-card--3 { border-color: rgba(183, 133, 103, .56); }

@media (max-width: 640px) {
  .ranking-page-section {
    overflow: hidden;
  }

  .ranking-category {
    padding: 24px 0 20px;
    border-right: 0;
    border-left: 0;
  }

  .ranking-category-heading {
    padding: 0 16px 16px;
  }

  .ranking-grid[data-ranking-slider] {
    display: flex;
    width: 100%;
    gap: 8px;
    padding: 0 16px 8px;
    overflow-x: hidden;
    scroll-snap-type: none;
    scroll-behavior: smooth;
  }

  .ranking-grid[data-ranking-slider] .ranking-card {
    flex: 0 0 calc((100% - 16px) / 3);
    scroll-snap-align: none;
  }

  .ranking-grid[data-ranking-slider] .ranking-card-copy {
    gap: 4px;
    padding: 8px 7px 10px;
  }

  .ranking-grid[data-ranking-slider] .ranking-card-copy strong {
    font-size: .92rem;
  }

  .ranking-grid[data-ranking-slider] .ranking-card-copy small,
  .ranking-grid[data-ranking-slider] .ranking-card-copy > span,
  .ranking-grid[data-ranking-slider] .ranking-card-copy em {
    display: none;
  }

  .ranking-grid[data-ranking-slider] .ranking-number {
    top: 5px;
    left: 5px;
    min-width: 35px;
    min-height: 20px;
    font-size: .62rem;
  }

}

/* Keep the title ornaments visible on small screens, after the compact defaults. */
@media (max-width: 640px) {
  .section-heading {
    gap: 10px;
    margin-bottom: 30px;
    padding-inline: 8px;
  }

  .section-heading > div {
    width: auto;
    min-width: 0;
    padding: 9px 14px 8px;
  }

  .section-heading > div::before,
  .section-heading::after {
    display: block;
  }

  .section-heading::after {
    bottom: -7px;
    width: 76px;
    height: 7px;
  }

  .heading-ornament {
    display: block;
    flex: 0 0 34px;
    width: 34px;
  }

  .heading-ornament::before {
    width: 6px;
    height: 6px;
  }

  .section-heading-ja {
    margin-top: 6px;
  }

  /* Keep the PC title frame, but let the mobile title breathe. */
  .section-heading > div::before,
  .therapist-detail-page-title::before {
    display: none;
  }
}

/* Final mobile scale adjustment after all legacy hero rules. */
@media (max-width: 640px) {
  body[data-page="home"] .hero-copy--otona { width: 100%; }
  body[data-page="home"] .hero-handwritten-logo { width: 340px; max-width: 100%; }
  body[data-page="home"] .hero-handwritten-word--one { font-size: 68px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size: 70px; }
}

/* 2026-07-23 — reference 02 hero: plaster, prism light and generously scaled logo. */
body[data-page="home"] .hero-ink-trace {
  fill: none;
  stroke: #111315;
  stroke-width: .9;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

@keyframes aroma-ink-trace { 0% { stroke-dashoffset:1; opacity:1; } 88% { opacity:1; } 100% { stroke-dashoffset:0; opacity:0; } }
@keyframes aura-ink-trace { 0% { stroke-dashoffset:1; opacity:1; } 88% { opacity:1; } 100% { stroke-dashoffset:0; opacity:0; } }
@keyframes aura-blue-drift { 0%,100% { transform:translate3d(0,0,0) rotate(14deg) scale(1); } 52% { transform:translate3d(7px,-10px,0) rotate(17deg) scale(1.018); } }
@keyframes aura-yellow-drift { 0%,100% { transform:translate3d(0,0,0) rotate(-12deg) scale(1); } 50% { transform:translate3d(-7px,6px,0) rotate(-9deg) scale(1.035); } }
@keyframes aura-pink-drift { 0%,100% { transform:translate3d(0,0,0) rotate(-12deg) scale(.99); } 48% { transform:translate3d(-9px,-6px,0) rotate(-14deg) scale(1.02); } }
@keyframes aura-bubble-rise { 0%,100% { transform:translate3d(0,10px,0) scale(.98); opacity:.42; } 50% { transform:translate3d(7px,-30px,0) scale(1.04); opacity:.78; } }

@media (max-width:640px) {
  body[data-page="home"] .hero {
    min-height: calc(100svh - 72px - env(safe-area-inset-bottom));
    height: calc(100svh - 72px - env(safe-area-inset-bottom));
    overflow: hidden;
    background: #f8f7f3;
  }
  body[data-page="home"] .hero-inner { min-height: 100%; padding: 62px 0 72px; }
  body[data-page="home"] .hero-picture { display:none; }
  body[data-page="home"] .hero-veil {
    display:block;
    background:
      url("assets/decor/hero-painted-plaster-v1.png") center / cover no-repeat,
      #fffdf9;
  }
  body[data-page="home"] .hero-veil::before { content:""; inset:0; z-index:1; opacity:.72; background:linear-gradient(127deg,transparent 10%,rgba(255,255,255,.78) 17%,rgba(194,222,255,.26) 21%,rgba(255,222,246,.28) 24%,transparent 31%),linear-gradient(308deg,transparent 69%,rgba(255,240,188,.28) 73%,rgba(255,255,255,.72) 77%,transparent 82%); }
  body[data-page="home"] .hero-veil::after { display:none; }
  body[data-page="home"] .hero-light-sweep, body[data-page="home"] .hero-prism { display:block; z-index:2; }
  body[data-page="home"] .hero-light-sweep { width:150px; height:44px; opacity:.55; filter:blur(8px); background:linear-gradient(115deg,transparent 10%,rgba(255,255,255,.88) 35%,rgba(164,213,255,.33) 48%,rgba(255,189,229,.43) 58%,rgba(255,245,169,.32) 67%,transparent 87%); animation:hero-glint-breathe 7s ease-in-out infinite alternate; }
  body[data-page="home"] .sweep-a { display:block; top:13%; left:-19%; transform:rotate(-39deg); }
  body[data-page="home"] .sweep-b { display:block; right:-16%; bottom:9%; transform:rotate(-38deg); }
  body[data-page="home"] .sweep-c { display:block; bottom:25%; left:-22%; transform:rotate(-33deg) scale(.68); }
  body[data-page="home"] .hero-prism { width:95px; height:95px; border-radius:50%; opacity:.32; filter:blur(5px); background:conic-gradient(from 30deg,rgba(255,255,255,.8),rgba(147,212,255,.22),rgba(255,185,226,.4),rgba(255,232,129,.2),rgba(255,255,255,.8)); }
  body[data-page="home"] .prism-a { display:block; top:15%; left:8%; } body[data-page="home"] .prism-b { display:block; right:5%; bottom:29%; } body[data-page="home"] .prism-c { display:block; bottom:6%; left:27%; }
  body[data-page="home"] .hero-abstract-shapes { z-index:3; }
  body[data-page="home"] .hero-shape { opacity:.72; filter:saturate(1.06); }
  body[data-page="home"] .hero-shape--blue { top:40%; left:10%; width:166px; height:238px; background:rgba(130,199,241,.70); animation:aura-blue-drift 10s ease-in-out infinite; }
  body[data-page="home"] .hero-shape--yellow { top:33%; left:37%; width:166px; height:145px; background:rgba(250,215,95,.72); animation:aura-yellow-drift 8s ease-in-out infinite; }
  body[data-page="home"] .hero-shape--pink { top:52%; right:5%; width:224px; height:151px; background:rgba(244,139,177,.66); animation:aura-pink-drift 11s ease-in-out infinite; }
  body[data-page="home"] .hero-shape--sky, body[data-page="home"] .hero-shape--small { display:none; }
  body[data-page="home"] .hero-glass-orbs { z-index:4; }
  body[data-page="home"] .hero-glass-orbs i { border-color:rgba(255,255,255,.92); background:radial-gradient(circle at 33% 27%,rgba(255,255,255,.98) 0 7%,rgba(216,237,255,.48) 24%,rgba(255,219,239,.22) 45%,rgba(255,255,255,.04) 70%),conic-gradient(from 20deg,rgba(255,255,255,.2),rgba(147,217,255,.3),rgba(255,223,162,.28),rgba(255,183,232,.26),rgba(255,255,255,.2)); box-shadow:inset 8px 8px 15px rgba(255,255,255,.64),inset -7px -8px 14px rgba(142,197,223,.16),0 8px 20px rgba(85,102,111,.09); animation:aura-bubble-rise 15s ease-in-out infinite; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(1) { top:19%; left:13%; width:68px; height:68px; animation-delay:-2s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(2) { top:18%; right:12%; width:105px; height:105px; animation-delay:-7s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(3) { right:2%; bottom:24%; width:57px; height:57px; animation-delay:-5s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(4) { display:block; left:23%; bottom:16%; width:83px; height:83px; animation-delay:-10s; }
  body[data-page="home"] .hero-glass-orbs i:nth-child(5) { display:block; right:17%; bottom:8%; width:38px; height:38px; animation-delay:-12s; }
  body[data-page="home"] .hero-graphic-marks { z-index:5; }
  body[data-page="home"] .hero-mark--dots { top:70%; left:19%; width:42px; height:52px; background-size:9px 9px; }
  body[data-page="home"] .hero-mark--plus { top:38%; left:27%; font-size:2.25rem; }
  body[data-page="home"] .hero-mark--ring { display:none; }
  body[data-page="home"] .hero-mark--triangle { top:48%; right:10%; border-top-width:18px; border-bottom-width:18px; border-left-width:30px; }
  body[data-page="home"] .hero-mark--wave { top:39%; right:19%; font-size:2.1rem; }
  body[data-page="home"] .hero-mark--dot { right:8%; bottom:36%; }
  body[data-page="home"] .hero-copy--otona { z-index:6; width:100%; transform:translateY(3%); }
  body[data-page="home"] .hero-handwritten-logo { width:min(100%, 380px); max-width:calc(100vw - 12px); }
  body[data-page="home"] .hero-handwritten-word { stroke-width:.78; stroke-dasharray:1300; stroke-dashoffset:1300; animation:hero-ink-draw 1.55s cubic-bezier(.56,.03,.17,.98) forwards; }
  body[data-page="home"] .hero-handwritten-word--one { font-size:76px; }
  body[data-page="home"] .hero-handwritten-word--two { font-size:79px; animation-delay:1.1s; }
  body[data-page="home"] .hero-ink-trace--one { animation:aroma-ink-trace 1.45s cubic-bezier(.56,.03,.17,.98) forwards; }
  body[data-page="home"] .hero-ink-trace--two { animation:aura-ink-trace 1.55s cubic-bezier(.56,.03,.17,.98) 1.05s forwards; }
  body[data-page="home"] .hero-kicker { margin-top:23px; color:#1c1d1d; font-family:"Cormorant Garamond","Times New Roman",serif; font-size:1rem; font-weight:600; letter-spacing:.38em; animation:hero-kicker-reveal .55s ease 2.55s forwards; }
  body[data-page="home"] .site-header { top:24px; right:24px; z-index:12; }
  body[data-page="home"] .mobile-menu-button { width:54px; height:54px; border:1px solid rgba(38,41,43,.18); background:rgba(255,255,255,.9); box-shadow:0 6px 14px rgba(32,35,37,.11); }
  body[data-page="home"] .mobile-menu-button span { width:27px; height:2px; margin:4px 0; background:#292c2d; }
  body[data-page="home"] .hero-quick-actions { display:grid; position:fixed; z-index:30; bottom:0; left:0; width:100%; height:calc(86px + env(safe-area-inset-bottom)); padding-bottom:env(safe-area-inset-bottom); overflow:visible; border:0; border-top:1px solid rgba(45,49,51,.09); border-radius:0; background:rgba(255,255,255,.87); box-shadow:0 -5px 18px rgba(41,45,47,.055); backdrop-filter:blur(13px); }
  body[data-page="home"] .hero-quick-actions a { position:relative; display:flex; min-height:86px; align-items:center; justify-content:center; gap:5px; color:#2e3335; font-family:var(--font-body); font-size:.61rem; font-weight:500; letter-spacing:.04em; line-height:1.2; }
  body[data-page="home"] .hero-quick-actions a + a { border-left:1px solid rgba(45,49,51,.055); }
  body[data-page="home"] .quick-icon { display:grid; width:38px; height:38px; place-items:center; border-radius:48% 52% 54% 46% / 51% 45% 55% 49%; transition:transform .18s cubic-bezier(.2,.8,.25,1), background .18s ease; }
  body[data-page="home"] .quick-icon--phone { background:rgba(128,204,241,.32); }
  body[data-page="home"] .quick-icon--line { background:rgba(126,223,175,.29); border-radius:54% 46% 48% 52% / 47% 54% 46% 53%; }
  body[data-page="home"] .quick-icon--web { background:rgba(246,148,185,.28); border-radius:45% 55% 50% 50% / 53% 46% 54% 47%; }
  body[data-page="home"] .quick-icon--price { background:rgba(250,216,99,.35); border-radius:53% 47% 57% 43% / 46% 55% 45% 54%; }
  body[data-page="home"] .quick-icon svg { width:24px; height:24px; fill:none; stroke:#303537; stroke-width:2.1; stroke-linecap:round; stroke-linejoin:round; }
  body[data-page="home"] .quick-icon--line svg { width:23px; height:23px; }
  body[data-page="home"] .quick-icon--price svg { width:22px; height:22px; }
  body[data-page="home"] .hero-quick-actions a:active .quick-icon { transform:scale(1.14); }
  @media (hover:hover) { body[data-page="home"] .hero-quick-actions a:hover .quick-icon { transform:scale(1.08); } }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero-ink-trace, body[data-page="home"] .hero-handwritten-word, body[data-page="home"] .hero-shape, body[data-page="home"] .hero-glass-orbs i { animation:none !important; }
  body[data-page="home"] .hero-handwritten-word { stroke-dashoffset:0; fill:#111315; }
}

/* Shared mobile reservation navigation — home hero palette. */
@media (max-width:640px) {
  body[data-page="home"] .hero-quick-actions { display:none; }
  .mobile-fixed-nav {
    position:fixed;
    inset:auto 0 0 0;
    display:grid;
    grid-template-columns:repeat(3,33.3333%);
    grid-auto-flow:column;
    align-items:stretch;
    width:100vw !important;
    max-width:100vw;
    transform:none;
    height:calc(72px + env(safe-area-inset-bottom));
    padding-bottom:env(safe-area-inset-bottom);
    border:0;
    border-top:1px solid rgba(45,49,51,.09);
    background:rgba(255,255,255,.88);
    box-shadow:0 -5px 18px rgba(41,45,47,.055);
    backdrop-filter:blur(13px);
  }
  .mobile-fixed-nav a,
  .mobile-fixed-nav .fixed-nav-item {
    display:flex;
    width:100%;
    min-width:0;
    min-height:86px;
    align-items:center;
    justify-content:center;
    gap:5px;
    border:0 !important;
    color:#2e3335;
    font-family:var(--font-body);
    font-size:.61rem;
    font-weight:500;
    letter-spacing:.04em;
    line-height:1.2;
    text-decoration:none;
  }
  .mobile-fixed-nav a + a { border-left:1px solid rgba(45,49,51,.055) !important; }
  .mobile-fixed-nav .fixed-nav-icon {
    display:grid;
    width:38px;
    height:38px;
    flex:0 0 38px;
    place-items:center;
    border-radius:48% 52% 54% 46% / 51% 45% 55% 49%;
    transition:transform .18s cubic-bezier(.2,.8,.25,1), background .18s ease;
  }
  .mobile-fixed-nav .fixed-nav-icon--phone { background:rgba(128,204,241,.32); }
  .mobile-fixed-nav .fixed-nav-icon--line { background:rgba(126,223,175,.29); border-radius:54% 46% 48% 52% / 47% 54% 46% 53%; }
  .mobile-fixed-nav .fixed-nav-icon--web { background:rgba(246,148,185,.28); border-radius:45% 55% 50% 50% / 53% 46% 54% 47%; }
  .mobile-fixed-nav .fixed-nav-icon--price { background:rgba(250,216,99,.35); border-radius:53% 47% 57% 43% / 46% 55% 45% 54%; }
  .mobile-fixed-nav .fixed-nav-icon svg { width:24px; height:24px; fill:none; stroke:#303537; stroke-width:2.1; stroke-linecap:round; stroke-linejoin:round; }
  .mobile-fixed-nav .fixed-nav-icon--line svg { width:23px; height:23px; }
  .mobile-fixed-nav .fixed-nav-icon--price svg { width:22px; height:22px; }
  .mobile-fixed-nav a:active .fixed-nav-icon { transform:scale(1.14); }
}

@media (hover:hover) and (pointer:fine) { .mobile-fixed-nav a:hover .fixed-nav-icon { transform:scale(1.08); } }

@media (max-width:640px) {
  .mobile-fixed-nav {
    gap:5px;
    padding:5px 6px calc(5px + env(safe-area-inset-bottom));
    height:calc(86px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.88);
  }
  .mobile-fixed-nav a,
  .mobile-fixed-nav .fixed-nav-item {
    min-height:62px;
    gap:4px;
    border:1px solid rgba(45,49,51,.08) !important;
    border-radius:10px;
    background:rgba(255,255,255,.66);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
  }
  .mobile-fixed-nav a + a { border-left:1px solid rgba(45,49,51,.08) !important; }
  .mobile-fixed-nav .fixed-nav-icon { width:32px; height:32px; flex-basis:32px; }
  .mobile-fixed-nav .fixed-nav-icon svg { width:20px; height:20px; }
  .mobile-fixed-nav .fixed-nav-icon--line svg { width:19px; height:19px; }

  body[data-page="home"] .site-header { position:fixed; inset:16px 16px auto auto; left:auto; width:auto; min-height:0; background:transparent; box-shadow:none; }
  body[data-page="home"] .mobile-menu-button {
    position:relative;
    isolation:isolate;
    width:52px;
    height:52px;
    overflow:visible;
    border:1px solid rgba(48,52,54,.08);
    border-radius:12px;
    background:rgba(255,255,255,.92);
    box-shadow:0 6px 14px rgba(49,55,59,.10), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter:blur(10px);
  }
  body[data-page="home"] .mobile-menu-button::before,
  body[data-page="home"] .mobile-menu-button::after { display:none; }
  body[data-page="home"] .mobile-menu-button span { position:relative; z-index:1; width:25px; height:2px; margin:3.5px 0; border-radius:99px; background:#303537; }
  body[data-page="home"] .mobile-menu-button:active { transform:scale(.96); }
}

@media (max-width:900px) {
  .mobile-menu-panel { overflow-y:auto; overscroll-behavior:contain; -webkit-overflow-scrolling:touch; }
  .mobile-menu-sheet { max-height:calc(100dvh - 36px - env(safe-area-inset-bottom)); overflow-y:auto; overscroll-behavior:contain; padding-bottom:calc(24px + env(safe-area-inset-bottom)); }
}

@media (max-width:900px) {
  body[data-page="home"] .site-header { top:17px; right:18px; left:auto; width:auto; }
  body[data-page="home"].menu-open .site-header .mobile-menu-button { visibility:hidden; pointer-events:none; }
}

