:root {
  color-scheme: light;
  font-family:
    "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", Meiryo,
    serif;
  --bar-height: 72px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0d0c0a;
  color: #f6efe3;
  line-height: 1.7;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.concept-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--bar-height);
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.76);
  backdrop-filter: blur(18px);
}

.concept-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

.concept-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.concept-tab {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #fff8ec;
  font: 600 13px/1.2 "Yu Gothic", Meiryo, sans-serif;
  cursor: pointer;
}

.concept-tab.is-active {
  background: #f2d188;
  border-color: #f2d188;
  color: #1d160d;
}

.official-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--bar-height);
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.76);
  backdrop-filter: blur(18px);
}

.official-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.nav-reserve {
  min-height: 38px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f2d188;
  color: #1d160d;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  margin-right: 18px;
  color: #f4d68d;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
}

main {
  padding-top: var(--bar-height);
}

.site {
  display: none;
  min-height: 100vh;
  overflow: hidden;
}

.site.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--bar-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  isolation: isolate;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero-inner {
  padding: clamp(84px, 12vw, 150px) 0 clamp(58px, 8vw, 90px);
}

.page-hero .lead {
  max-width: 640px;
}

.section-inner {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
  min-width: 0;
}

.hero-inner {
  width: min(660px, calc(100vw - 40px));
  max-width: none;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  padding: clamp(64px, 10vw, 120px) 0;
  min-width: 0;
}

.hero-inner > * {
  width: 100%;
  max-width: 660px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
ol {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.12;
  font-weight: 500;
  overflow-wrap: anywhere;
  line-break: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.2;
}

.lead {
  margin-bottom: 34px;
  font-size: clamp(16px, 2vw, 20px);
  overflow-wrap: anywhere;
  line-break: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  min-width: 148px;
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-specs div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.quick-specs dt,
.mini-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.72;
}

.quick-specs dd {
  margin: 0;
  font-size: 16px;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.price-grid,
.clean-price-grid,
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.clean-price-card,
.chapter-card {
  min-height: 190px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
}

.price-card span,
.chapter-card span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-layout p {
  max-width: 620px;
}

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

.service-list div {
  min-height: 68px;
  padding: 18px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
}

.contact-panel {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 8px;
}

.contact-link {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
}

.contact-panel small {
  display: block;
  margin-top: 20px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  opacity: 0.78;
}

.theme-noir {
  --gold: #d8b46e;
  --gold-bright: #f4d68d;
  --ink: #0d0c0a;
  --brown: #21170e;
  background: var(--ink);
  color: #f8efd9;
}

.theme-noir h1 {
  font-size: clamp(38px, 6.2vw, 76px);
}

.theme-noir .hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.92) 0%, rgba(9, 8, 6, 0.64) 38%, rgba(9, 8, 6, 0.08) 76%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.18), rgba(9, 8, 6, 0.78));
}

.theme-noir .eyebrow {
  color: var(--gold-bright);
}

.theme-noir .button.primary {
  background: var(--gold-bright);
  color: #191209;
}

.theme-noir .button.secondary {
  border: 1px solid rgba(244, 214, 141, 0.6);
}

.theme-noir .section-dark {
  background: #0c0907;
}

.theme-noir .section-split {
  background: linear-gradient(135deg, #1b120b, #13100d 58%, #231a13);
}

.theme-noir .price-card,
.theme-noir .contact-panel {
  border: 1px solid rgba(244, 214, 141, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.theme-noir .price-card.featured {
  border-color: rgba(244, 214, 141, 0.62);
}

.theme-noir .price-card span {
  color: var(--gold-bright);
}

.theme-noir .service-list div {
  background: rgba(244, 214, 141, 0.08);
  border: 1px solid rgba(244, 214, 141, 0.2);
}

.final-site {
  display: block;
}

.final-site .section-heading {
  display: block;
}

.option-panel {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.option-panel h3 {
  margin-bottom: 22px;
}

.option-grid,
.info-grid,
.flow-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option-grid div,
.info-grid div,
.flow-cards article {
  min-height: 68px;
  padding: 16px;
  border: 1px solid rgba(244, 214, 141, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.option-grid span,
.info-grid span,
.flow-cards span {
  display: block;
  margin-bottom: 4px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-bright);
  opacity: 0.84;
}

.option-grid strong,
.info-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.flow-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-cards article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
}

.flow-cards h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.flow-cards p {
  margin-bottom: 0;
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.sticky-cta {
  display: none;
}

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

.home-duty-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 141, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.home-duty-card figure {
  margin: 0;
  min-height: 100%;
  background: #17100b;
}

.home-duty-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.home-duty-card > div {
  padding: clamp(22px, 3vw, 30px);
}

.home-duty-card h3 {
  margin-bottom: 12px;
}

.home-duty-card h3 span {
  color: rgba(248, 239, 217, 0.64);
  font-size: 18px;
}

.home-duty-card p:not(.therapist-status) {
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.home-duty-footer {
  margin-top: 18px;
}

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

.therapist-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(244, 214, 141, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.therapist-card.is-today {
  border-color: rgba(244, 214, 141, 0.48);
}

.therapist-visual {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 214, 141, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(244, 214, 141, 0.16), rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.18)),
    #17100b;
}

.therapist-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 214, 141, 0.18);
  background: linear-gradient(180deg, transparent 58%, rgba(10, 8, 6, 0.36));
  pointer-events: none;
}

.therapist-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.therapist-visual span {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 214, 141, 0.52);
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.48);
  color: var(--gold-bright);
  font-size: 42px;
  line-height: 1;
}

.therapist-body {
  padding: 24px;
}

.therapist-status {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(244, 214, 141, 0.28);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.therapist-body h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.therapist-body h3 span {
  color: rgba(248, 239, 217, 0.64);
  font-size: 18px;
}

.therapist-body dl {
  margin-bottom: 16px;
}

.therapist-body dl div {
  display: grid;
  gap: 4px;
}

.therapist-body dt {
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.therapist-body dd {
  margin: 0;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.therapist-body p:not(.therapist-status) {
  min-height: 74px;
  margin-bottom: 20px;
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.therapist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-button {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #191209;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
}

.mini-button-outline {
  border: 1px solid rgba(244, 214, 141, 0.42);
  background: transparent;
  color: #fff8ec;
}

.back-link {
  margin-bottom: 22px;
  display: inline-flex;
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
}

.profile-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.profile-photo-panel {
  margin: 0;
  border: 1px solid rgba(244, 214, 141, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.profile-main-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.photo-replace-note {
  padding: 14px 16px;
  border-top: 1px solid rgba(244, 214, 141, 0.14);
  color: rgba(248, 239, 217, 0.58);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  word-break: break-all;
}

.profile-detail-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 214, 141, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.045);
}

.profile-detail-panel h2 {
  margin-bottom: 16px;
}

.profile-detail-panel h2 small {
  color: rgba(248, 239, 217, 0.6);
  font-size: clamp(18px, 2vw, 24px);
}

.profile-copy {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgba(248, 239, 217, 0.82);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.profile-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.profile-meta-grid div,
.profile-point-grid div {
  padding: 16px;
  border: 1px solid rgba(244, 214, 141, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.profile-meta-grid dt {
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.profile-meta-grid dd {
  margin: 0;
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.profile-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.profile-point-grid div {
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
  text-align: center;
}

.profile-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-schedule-card {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(244, 214, 141, 0.18);
  border-radius: 8px;
  background: rgba(244, 214, 141, 0.06);
}

.profile-schedule-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.profile-schedule-card div {
  padding: 14px;
  border: 1px solid rgba(244, 214, 141, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.profile-schedule-card dt,
.attendance-meta dt {
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.profile-schedule-card dd,
.attendance-meta dd {
  margin: 0;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
}

.profile-schedule-card p:not(.eyebrow) {
  margin-bottom: 8px;
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.schedule-note {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 239, 217, 0.76);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.schedule-date-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(108px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.schedule-day {
  min-height: 72px;
  padding: 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(244, 214, 141, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(248, 239, 217, 0.84);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
  white-space: nowrap;
}

.schedule-day small {
  color: rgba(248, 239, 217, 0.56);
  font-size: 11px;
}

.schedule-day.is-active {
  border-color: rgba(244, 214, 141, 0.72);
  background: linear-gradient(180deg, rgba(244, 214, 141, 0.24), rgba(244, 214, 141, 0.08));
  color: var(--gold-bright);
}

.schedule-day.is-muted {
  opacity: 0.56;
}

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

.attendance-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 141, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.attendance-card.is-on-duty {
  border-color: rgba(244, 214, 141, 0.48);
}

.attendance-photo {
  margin: 0;
  min-height: 100%;
  background: #17100b;
}

.attendance-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.attendance-body {
  padding: clamp(22px, 3vw, 30px);
}

.attendance-body h3 {
  margin-bottom: 14px;
}

.attendance-body h3 span {
  color: rgba(248, 239, 217, 0.64);
  font-size: 18px;
}

.attendance-body p:not(.therapist-status) {
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 14px;
}

.attendance-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.attendance-meta div {
  padding: 14px;
  border: 1px solid rgba(244, 214, 141, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.attendance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-empty {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.schedule-empty p {
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

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

.booking-contact-card,
.booking-template,
.booking-check-grid article,
.booking-notice {
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 214, 141, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.booking-contact-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
}

.booking-contact-card span,
.booking-template span,
.booking-check-grid span,
.booking-info-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-main-link {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
}

.booking-contact-card p:not(.booking-main-link),
.booking-check-grid p,
.booking-notice li {
  color: rgba(248, 239, 217, 0.78);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.booking-template {
  padding: clamp(24px, 4vw, 36px);
}

.booking-template p {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244, 214, 141, 0.12);
  color: rgba(248, 239, 217, 0.84);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.booking-template p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-check-grid,
.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.booking-check-grid article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
}

.booking-check-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.booking-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-info-grid div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(244, 214, 141, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.booking-info-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.booking-notice {
  padding: clamp(26px, 5vw, 44px);
}

.booking-notice ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
  margin: 0 0 28px;
}

.profile-not-found {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(244, 214, 141, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.theme-white {
  --paper: #fbf8f0;
  --mist: #eef4ec;
  --sage: #54745f;
  --ink: #25251f;
  --champagne: #c49852;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.theme-white .hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.9) 0%, rgba(255, 252, 244, 0.58) 36%, rgba(255, 252, 244, 0.05) 76%),
    linear-gradient(180deg, rgba(255, 252, 244, 0.05), rgba(255, 252, 244, 0.52));
}

.theme-white .eyebrow {
  color: var(--sage);
}

.theme-white .button.primary {
  background: var(--sage);
  color: #fff;
}

.theme-white .button.secondary {
  border: 1px solid rgba(84, 116, 95, 0.35);
  color: #26362a;
}

.theme-white .section-light {
  background: var(--paper);
}

.theme-white .section-white-band {
  background: #eef4ec;
}

.overview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.overview-row div,
.clean-price-card,
.theme-white .contact-panel {
  background: #ffffff;
  border: 1px solid rgba(84, 116, 95, 0.18);
  box-shadow: 0 18px 60px rgba(65, 70, 55, 0.08);
}

.overview-row div {
  min-height: 98px;
  padding: 24px;
  border-radius: 8px;
}

.overview-row strong {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
}

.clean-price-card {
  text-align: center;
}

.clean-price-card h3 {
  color: var(--sage);
}

.clean-price-card p {
  margin: 0;
  color: #755828;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
}

.theme-white .service-list div,
.flow-list li {
  background: #fff;
  border: 1px solid rgba(84, 116, 95, 0.2);
}

.flow-list {
  counter-reset: flow;
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.flow-list li {
  counter-increment: flow;
  min-height: 60px;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 700;
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  margin-right: 14px;
  color: var(--sage);
}

.theme-story {
  --green: #0e241b;
  --green-2: #193527;
  --wine: #6f2430;
  --ivory: #fbf0d6;
  --gold: #dab56d;
  background: var(--green);
  color: var(--ivory);
}

.theme-story .hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 19, 14, 0.92) 0%, rgba(8, 19, 14, 0.66) 40%, rgba(8, 19, 14, 0.08) 78%),
    linear-gradient(180deg, rgba(8, 19, 14, 0.16), rgba(8, 19, 14, 0.8));
}

.theme-story .eyebrow {
  color: var(--gold);
}

.theme-story .button.primary {
  background: var(--wine);
  color: #fff8ec;
}

.theme-story .button.secondary {
  border: 1px solid rgba(218, 181, 109, 0.48);
}

.theme-story .section-story-band {
  background:
    linear-gradient(135deg, rgba(111, 36, 48, 0.22), transparent 40%),
    #11251c;
}

.theme-story .section-deep {
  background: #08130f;
}

.chapter-card,
.theme-story .contact-panel {
  border: 1px solid rgba(218, 181, 109, 0.28);
  background: rgba(255, 249, 231, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.chapter-card span {
  color: var(--gold);
}

.chapter-card p:not(.price) {
  margin-bottom: 0;
  color: rgba(251, 240, 214, 0.78);
}

.theme-story .service-list div {
  background: rgba(251, 240, 214, 0.08);
  border: 1px solid rgba(218, 181, 109, 0.24);
}

@media (max-width: 820px) {
  :root {
    --bar-height: 118px;
  }

  .concept-bar {
    min-height: var(--bar-height);
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .official-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .official-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    font-size: 11px;
  }

  .official-nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
  }

  .nav-reserve {
    padding-inline: 8px;
    border-color: #f2d188;
  }

  .official-page .quick-specs {
    display: none;
  }

  .concept-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-tab {
    min-width: 0;
    padding-inline: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: calc(100vh - var(--bar-height));
    align-items: start;
  }

  .section-inner {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero-inner {
    width: calc(100vw - 28px);
    margin-inline: 14px;
  }

  .hero-inner > * {
    max-width: calc(100vw - 28px);
  }

  .hero-inner {
    padding: 56px 0 46px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-inner {
    padding: 58px 0 48px;
  }

  .quick-specs,
  .price-grid,
  .clean-price-grid,
  .chapter-grid,
  .overview-row,
  .option-grid,
  .info-grid,
  .flow-cards,
  .home-duty-grid,
  .home-duty-card,
  .therapist-grid,
  .profile-detail,
  .profile-meta-grid,
  .profile-point-grid,
  .profile-schedule-card dl,
  .attendance-grid,
  .attendance-card,
  .booking-contact-grid,
  .booking-check-grid,
  .booking-info-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .theme-noir .hero-shade,
  .theme-story .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.5)),
      linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.86));
  }

  .theme-white .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 252, 244, 0.94), rgba(255, 252, 244, 0.62)),
      linear-gradient(180deg, rgba(255, 252, 244, 0.1), rgba(255, 252, 244, 0.78));
  }

  .official-page {
    padding-bottom: 76px;
  }

  .sticky-cta {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(244, 214, 141, 0.24);
    border-radius: 999px;
    background: rgba(10, 9, 7, 0.82);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
  }

  .sticky-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: "Yu Gothic", Meiryo, sans-serif;
    font-weight: 800;
  }

  .sticky-phone {
    background: #f2d188;
    color: #1d160d;
  }

  .sticky-line {
    border: 1px solid rgba(244, 214, 141, 0.42);
    color: #fff8ec;
  }

  .profile-main-photo {
    aspect-ratio: 4 / 5;
  }

  .home-duty-card img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .attendance-photo img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .concept-brand {
    font-size: 13px;
  }

  .concept-tab {
    font-size: 11px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .lead {
    font-size: 15px;
    word-break: break-all;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-specs div,
  .overview-row div,
  .price-card,
  .clean-price-card,
  .chapter-card,
  .flow-cards article,
  .home-duty-card > div,
  .therapist-body,
  .attendance-body,
  .booking-contact-card,
  .booking-template,
  .booking-check-grid article,
  .booking-notice,
  .profile-detail-panel,
  .contact-panel {
    padding: 20px;
  }

  .therapist-visual {
    aspect-ratio: 4 / 5;
  }
}
