/* =========================================================
   LUMIA ROOM style.css
   テーマ: ホワイトマーブル × ディープネイビー × シャンパンゴールド
   ========================================================= */

:root {
  --color-navy: #18233D;
  --color-navy-dark: #0D1528;
  --color-navy-light: #2E4D8F;

  --color-gold: #C7A66A;
  --color-gold-light: #E6D09C;
  --color-gold-dark: #987438;

  --color-white: #FFFFFF;
  --color-pearl: #FAFAF7;
  --color-ivory: #FAF7F3;
  --color-greige: #E8E3DC;

  --color-text: #242832;
  --color-text-light: #6F737C;
  --color-border: rgba(199, 166, 106, 0.45);
  --color-aqua-glow: rgba(83, 171, 188, 0.10);
  --color-rose-soft: #E9DCDD;
  --line-green: #06C755;

  --shadow-soft: 0 12px 36px rgba(13, 21, 40, 0.10);
  --shadow-hover: 0 18px 44px rgba(13, 21, 40, 0.16);
  --radius: 14px;
  --radius-large: 18px;

  /* 既存セレクタとの互換用エイリアス */
  --ivory: var(--color-ivory);
  --ivory-deep: var(--color-greige);
  --brown: var(--color-navy);
  --brown-deep: var(--color-navy-dark);
  --charcoal: var(--color-text);
  --ink: var(--color-text);
  --gold: var(--color-gold);
  --gold-soft: var(--color-gold-light);
  --rose: #B69A9E;
  --rose-pale: #F4ECEC;
  --white: var(--color-white);
  --shadow: var(--shadow-soft);

  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/* ---------- リセット・基本 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--ivory);
  padding-bottom: 84px; /* モバイル固定LINEボタン分の余白 */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.4; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container { width: min(1080px, 100% - 40px); margin-inline: auto; }
.section { padding: 56px 0; }
.section--dark { background: var(--brown); color: var(--ivory); }
.section--dark h2 { color: var(--ivory); }
.section--deep { background: var(--ivory-deep); }

.section-title { text-align: center; font-size: 1.6rem; letter-spacing: 0.08em; }
.section-title .en {
  display: block; font-size: 0.72rem; letter-spacing: 0.32em;
  color: var(--gold); font-family: var(--font-sans); font-weight: 500; margin-bottom: 6px;
}
.section-lead { text-align: center; max-width: 640px; margin: 0 auto 32px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 28px; border-radius: 999px;
  font-weight: 700; text-decoration: none; font-size: 1rem;
  border: 1px solid transparent; transition: opacity .2s ease, transform .2s ease;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--line { background: var(--line-green); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn--outline-light { background: transparent; color: var(--ivory); border-color: var(--gold-soft); }
.btn--rose { background: var(--rose); color: #fff; }
.btn--block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--brown); color: var(--ivory);
  border-bottom: 1px solid rgba(203, 182, 138, 0.35);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 64px; width: min(1160px, 100% - 32px); margin-inline: auto;
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ivory); }
.brand__name { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: 0.18em; line-height: 1.2; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--gold-soft); }

.site-nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; align-items: center; }
.site-nav a { color: var(--ivory); text-decoration: none; font-size: 0.92rem; }
.site-nav a:hover { color: var(--gold-soft); }
.site-nav .btn { min-height: 40px; padding: 8px 18px; font-size: 0.9rem; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--gold-soft); color: var(--ivory);
  border-radius: 8px; padding: 8px 12px; font-size: 0.85rem; cursor: pointer;
}

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--brown-deep); padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(203, 182, 138, 0.35);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav a { display: block; padding: 12px 8px; border-bottom: 1px solid rgba(246, 241, 231, 0.12); }
  .site-nav .btn { margin-top: 12px; justify-content: center; }
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative; color: var(--ivory);
  background: linear-gradient(150deg, #241A12 0%, #3A2C21 45%, #574332 78%, #7A5F45 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(203, 182, 138, 0.22), transparent 70%),
    radial-gradient(ellipse 50% 45% at 12% 90%, rgba(185, 138, 142, 0.14), transparent 70%);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero__inner { position: relative; z-index: 1; padding: 88px 0 96px; text-align: center; }
.hero__shop { font-family: var(--font-serif); letter-spacing: 0.3em; font-size: 0.95rem; color: var(--gold-soft); margin-bottom: 18px; }
.hero__title { font-size: clamp(1.55rem, 5.4vw, 2.6rem); letter-spacing: 0.06em; margin-bottom: 18px; }
.hero__sub { max-width: 560px; margin: 0 auto 32px; font-size: 0.98rem; color: #EFE7DA; }
.hero__areas { margin-top: 26px; font-size: 0.82rem; letter-spacing: 0.24em; color: var(--gold-soft); }

/* ---------- 特徴 ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.feature {
  background: var(--white); border: 1px solid var(--ivory-deep); border-radius: var(--radius);
  padding: 20px 14px; text-align: center; box-shadow: var(--shadow);
}
.feature__icon { font-family: var(--font-serif); color: var(--gold); font-size: 1.3rem; margin-bottom: 6px; }
.feature__label { font-weight: 700; font-size: 0.92rem; }

/* ---------- キャンペーン ---------- */
.campaign {
  position: relative; background: var(--brown); color: var(--ivory);
  border: 1px solid var(--gold-soft); border-radius: 14px;
  padding: 40px 24px 34px; text-align: center; box-shadow: var(--shadow);
}
.campaign__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; padding: 5px 20px; border-radius: 999px; white-space: nowrap;
}
.campaign__title { font-size: 1.45rem; color: var(--ivory); margin-bottom: 8px; }
.campaign__body { color: #EFE7DA; margin-bottom: 22px; }
.campaign__note { font-size: 0.8rem; color: var(--gold-soft); margin-top: 14px; }

/* ---------- エリアカード ---------- */
.area-cards { display: grid; gap: 20px; }
@media (min-width: 720px) { .area-cards { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--ivory-deep); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--ink); box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.area-card:hover { transform: translateY(-3px); }
.area-card__visual {
  height: 150px;
  background: linear-gradient(135deg, #4A3827 0%, #6E5539 55%, #A9884F 100%);
  position: relative;
}
.area-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.area-card__body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.area-card__name { font-family: var(--font-serif); font-size: 1.25rem; letter-spacing: 0.1em; margin: 0; }
.area-card__station { font-size: 0.85rem; color: #6B6156; }
.area-card__copy { font-size: 0.92rem; flex: 1; }
.area-card__more { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

.status-badge {
  display: inline-block; background: var(--rose-pale); color: #8D5B60;
  border: 1px solid var(--rose); border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; padding: 2px 12px; letter-spacing: 0.08em;
}

/* ---------- 料金カード ---------- */
.price-note { text-align: center; color: #6B6156; font-size: 0.88rem; margin-bottom: 24px; }
.price-cards { display: grid; gap: 14px; }
@media (min-width: 640px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }

.price-card {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; background: var(--white); border: 1px solid var(--ivory-deep);
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.price-card.is-recommended { border-color: var(--gold); border-left-width: 4px; background: #FDFBF5; }
.price-card__badge {
  position: absolute; top: -10px; right: 14px;
  background: var(--gold); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 2px 12px; border-radius: 999px; letter-spacing: 0.1em;
}
.price-card__time { display: flex; align-items: baseline; gap: 6px; font-family: var(--font-serif); color: var(--brown); }
.price-card__num { font-size: 2.1rem; font-weight: 600; line-height: 1; }
.price-card__unit { font-size: 0.72rem; letter-spacing: 0.24em; color: var(--gold); }
.price-card__price { font-size: 1.35rem; font-weight: 700; font-family: var(--font-serif); }

.price-rows { background: var(--white); border: 1px solid var(--ivory-deep); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-row { display: flex; justify-content: space-between; gap: 12px; padding: 16px 22px; }
.price-row + .price-row { border-top: 1px solid var(--ivory-deep); }
.price-row__label { font-weight: 600; }
.price-row__value { font-family: var(--font-serif); font-weight: 700; }

.price-block { margin-bottom: 40px; }
.price-block__title {
  font-size: 1.1rem; letter-spacing: 0.1em; display: flex; align-items: center; gap: 12px;
}
.price-block__title::after { content: ""; flex: 1; height: 1px; background: var(--gold-soft); }
.price-block__note { font-size: 0.85rem; color: #6B6156; margin-top: 8px; }

/* ---------- ご利用の流れ ---------- */
.flow { display: grid; gap: 16px; counter-reset: flow; }
@media (min-width: 780px) { .flow { grid-template-columns: repeat(4, 1fr); } }
.flow__step {
  background: var(--white); border: 1px solid var(--ivory-deep); border-radius: var(--radius);
  padding: 22px 18px; box-shadow: var(--shadow); counter-increment: flow;
}
.flow__step::before {
  content: "STEP " counter(flow);
  display: block; font-size: 0.72rem; letter-spacing: 0.28em; color: var(--gold);
  font-weight: 700; margin-bottom: 8px;
}
.flow__title { font-weight: 700; margin-bottom: 6px; font-size: 0.98rem; }
.flow__text { font-size: 0.88rem; margin: 0; color: #55493D; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--white); border: 1px solid var(--ivory-deep);
  border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 700; list-style: none;
  display: flex; gap: 12px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q."; color: var(--gold); font-family: var(--font-serif); }
.faq__answer { padding: 0 20px 18px 48px; margin: 0; font-size: 0.95rem; }

/* ---------- 注意事項 ---------- */
.notes { max-width: 760px; margin-inline: auto; background: var(--white); border: 1px solid var(--ivory-deep); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow); }
.notes ul { margin: 0; padding-left: 1.2em; }
.notes li { margin-bottom: 8px; font-size: 0.92rem; }

/* ---------- エリアページ ---------- */
.page-hero {
  background: linear-gradient(150deg, #241A12 0%, #3A2C21 55%, #5C4834 100%);
  color: var(--ivory); text-align: center; padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 85% 10%, rgba(203, 182, 138, 0.2), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gold-soft); margin-bottom: 10px; }
.page-hero__title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); color: var(--ivory); }
.page-hero__copy { max-width: 560px; margin: 12px auto 24px; color: #EFE7DA; font-size: 0.96rem; }

.location-note {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid var(--gold-soft); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow);
}

.other-areas { display: grid; gap: 14px; }
@media (min-width: 640px) { .other-areas { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 求人ページ ---------- */
.page-recruit { background: #FBF7F0; }
.page-recruit .page-hero {
  background: linear-gradient(150deg, #F6E9E6 0%, #F3DEDD 50%, #EED3D3 100%);
  color: #5B4646;
}
.page-recruit .page-hero::after { background: radial-gradient(ellipse 55% 60% at 85% 12%, rgba(255, 255, 255, 0.5), transparent 70%); }
.page-recruit .page-hero__title { color: #5B4646; }
.page-recruit .page-hero__eyebrow { color: var(--rose); }
.page-recruit .page-hero__copy { color: #6E5757; }
.recruit-points { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.recruit-point {
  background: var(--white); border: 1px solid var(--rose-pale); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; box-shadow: 0 4px 14px rgba(185, 138, 142, 0.15);
}
.recruit-point__label { font-weight: 700; color: #5B4646; }
.recruit-point__icon { color: var(--rose); font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 4px; }

/* ---------- フッター ---------- */
.site-footer { background: var(--brown-deep); color: var(--ivory); padding: 48px 0 36px; }
.site-footer a { color: var(--ivory); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand { text-align: center; margin-bottom: 24px; }
.footer-brand__name { font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 0.2em; }
.footer-brand__areas { font-size: 0.8rem; color: var(--gold-soft); letter-spacing: 0.16em; }
.footer-nav ul {
  list-style: none; margin: 0 auto 28px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; font-size: 0.88rem;
}
.footer-copy { text-align: center; font-size: 0.75rem; color: #B8AB99; margin: 0; }

/* ---------- モバイル固定LINEボタン ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(44, 33, 24, 0.92); backdrop-filter: blur(4px);
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- その他 ---------- */
.sp-only { display: inline; }
@media (min-width: 720px) { .sp-only { display: none; } }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.error-page { text-align: center; padding: 96px 0; }
.error-page h1 { font-size: 2rem; }


/* =========================================================
   セラピスト一覧・出勤スケジュール
   ========================================================= */
[hidden] { display: none !important; }

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 720px) {
  .therapist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}
@media (min-width: 1020px) {
  .therapist-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 350px) {
  .therapist-grid { grid-template-columns: 1fr; }
}

.therapist-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.therapist-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(150deg, #2C2118, #5D4935 58%, #A9884F);
}
.therapist-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.therapist-image__placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 1;
  color: rgba(246, 241, 231, 0.78); text-align: center;
  background: radial-gradient(circle at 70% 20%, rgba(203,182,138,.35), transparent 35%);
}
.therapist-image__placeholder span { font-family: var(--font-serif); font-size: .8rem; letter-spacing: .18em; }
.therapist-info { padding: 14px; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.therapist-name { font-size: 1.08rem; margin: 6px 0 2px; overflow-wrap: anywhere; }
.therapist-meta, .therapist-area-label, .therapist-no-schedule { margin: 0 0 8px; font-size: .82rem; color: #6B6156; }
.therapist-area-label { color: var(--gold); font-weight: 700; }
.therapist-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.therapist-tags span {
  display: inline-flex; align-items: center; min-height: 24px; padding: 2px 8px;
  border-radius: 999px; background: var(--rose-pale); color: #80555A;
  border: 1px solid rgba(185,138,142,.45); font-size: .67rem; font-weight: 700;
}
.therapist-schedule-info { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 5px 0 12px; }
.therapist-time { font-family: var(--font-serif); font-size: .92rem; font-weight: 700; }
.therapist-actions { display: grid; gap: 8px; margin-top: auto; }
.therapist-actions .btn { width: 100%; min-height: 42px; padding: 8px 8px; font-size: .76rem; }
@media (min-width: 520px) {
  .therapist-actions { grid-template-columns: 1fr; }
}

.status-badge.is-available { background: #EDF7EF; color: #397347; border-color: #8DB99A; }
.status-badge.is-few { background: #FFF4DE; color: #8B6323; border-color: #D7B36A; }
.status-badge.is-full, .status-badge.is-closed { background: #EEEAE5; color: #6B6156; border-color: #BDB2A6; }

.area-filter, .area-jump-nav {
  display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 12px;
  margin: 0 auto 34px; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.area-filter button, .area-jump-nav a {
  flex: 0 0 auto; min-height: 44px; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--gold-soft); background: var(--white); color: var(--brown);
  text-decoration: none; font: inherit; font-weight: 700; cursor: pointer;
}
.area-filter button.is-active, .area-jump-nav a:hover { background: var(--brown); color: var(--ivory); border-color: var(--brown); }

.area-section-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 18px;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--gold-soft);
}
.area-section-heading h2, .area-section-heading h3 { margin: 0; font-size: 1.35rem; }
.area-section-heading span { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .24em; font-weight: 700; }
.area-section-heading a { color: var(--gold); font-size: .78rem; font-weight: 700; text-align: right; }
.therapist-area-section, .schedule-area, .top-schedule-area { margin-top: 48px; }
.therapist-area-section:first-of-type, .schedule-area:first-of-type, .top-schedule-area:first-of-type { margin-top: 0; }
.schedule-area { scroll-margin-top: 88px; }

.date-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 3px 2px 14px; margin-bottom: 22px;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.date-tab {
  flex: 0 0 auto; min-width: 88px; min-height: 64px; border: 1px solid var(--gold-soft);
  border-radius: 10px; background: var(--white); color: var(--brown); cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  font: inherit; font-weight: 700;
}
.date-tab small { font-size: .72rem; font-weight: 500; }
.date-tab.is-active { background: var(--brown); color: var(--ivory); border-color: var(--brown); box-shadow: var(--shadow); }

.empty-state {
  grid-column: 1 / -1; background: rgba(255,255,255,.7); border: 1px dashed var(--gold-soft);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.empty-state p { margin-bottom: 10px; }
.empty-state__title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; }
.empty-state--wide { width: 100%; }
.schedule-bottom-cta {
  margin-top: 54px; padding: 30px 20px; text-align: center; color: var(--ivory);
  background: var(--brown); border: 1px solid var(--gold-soft); border-radius: 14px;
}

.page-hero--compact { padding-top: 42px; padding-bottom: 38px; }
.profile-layout { display: grid; gap: 28px; max-width: 920px; margin: 0 auto; }
@media (min-width: 760px) { .profile-layout { grid-template-columns: minmax(260px, 38%) 1fr; align-items: start; } }
.profile-visual .therapist-image { border-radius: var(--radius); box-shadow: var(--shadow); }
.profile-main { min-width: 0; }
.profile-name { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 6px; }
.profile-catch { font-family: var(--font-serif); font-size: 1.15rem; color: var(--brown); margin: 20px 0; }
.profile-copy { margin-top: 24px; }
.profile-copy h2 { font-size: 1.05rem; padding-bottom: 7px; border-bottom: 1px solid var(--gold-soft); }
.profile-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.profile-schedule, .profile-other { margin-top: 56px; }
.profile-schedule__list { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.profile-schedule__row { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; padding: 15px 18px; border-bottom: 1px solid var(--ivory-deep); }
.profile-schedule__row:last-child { border-bottom: 0; }
.profile-schedule__date { font-weight: 700; }
.profile-schedule__time { font-family: var(--font-serif); }
.profile-schedule__row .status-badge { grid-column: 1 / -1; justify-self: start; }
@media (min-width: 600px) {
  .profile-schedule__row { grid-template-columns: 1fr auto auto; }
  .profile-schedule__row .status-badge { grid-column: auto; }
}
.profile-not-found { max-width: 620px; margin: 20px auto; }
.copy-toast {
  position: fixed; z-index: 100; left: 50%; bottom: 96px; transform: translate(-50%, 12px);
  width: min(520px, calc(100% - 32px)); background: var(--charcoal); color: #fff;
  border: 1px solid var(--gold-soft); border-radius: 10px; padding: 12px 16px;
  text-align: center; font-size: .88rem; opacity: 0; pointer-events: none; transition: .2s ease;
}
.copy-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) { .copy-toast { bottom: 28px; } }

/* =========================================================
   LUMIA ROOM ブランドリニューアル
   White Marble × Deep Navy × Champagne Gold
   既存HTML・JSの構造と機能を維持した共通ビジュアル層
   ========================================================= */

/* ---------- 基本背景・余白 ---------- */
html {
  background: var(--color-pearl);
}
body {
  color: var(--color-text);
  background-color: var(--color-pearl);
  background-image:
    linear-gradient(rgba(250, 250, 247, 0.88), rgba(250, 250, 247, 0.88)),
    radial-gradient(circle at 82% 14%, var(--color-aqua-glow), transparent 30%),
    radial-gradient(circle at 12% 68%, rgba(199, 166, 106, 0.07), transparent 32%),
    url('/assets/images/marble-bg.svg');
  background-size: auto, auto, auto, 1920px auto;
  background-position: center, center, center, center top;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat-y;
  overflow-x: clip;
}
@media (min-width: 1024px) {
  body { background-attachment: fixed, fixed, fixed, fixed; }
}

.container { width: min(1120px, 100% - 40px); }
.section {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 7vw, 88px) 0;
  background: rgba(250, 250, 247, 0.68);
  border-top: 1px solid rgba(199, 166, 106, 0.12);
  overflow: hidden;
}
.section > .container { position: relative; z-index: 2; }
.section--deep {
  background:
    radial-gradient(circle at 90% 10%, rgba(46, 77, 143, 0.07), transparent 30%),
    linear-gradient(rgba(244, 246, 249, 0.84), rgba(248, 248, 246, 0.84));
}
.section--dark {
  color: var(--color-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(46, 77, 143, 0.34), transparent 34%),
    linear-gradient(145deg, var(--color-navy-dark), var(--color-navy));
}
.section:nth-of-type(odd)::before {
  content: "LR";
  position: absolute;
  z-index: 0;
  top: clamp(12px, 3vw, 36px);
  right: clamp(-20px, 2vw, 28px);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: clamp(7rem, 16vw, 15rem);
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.12em;
  color: var(--color-navy);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}
main > .section:not(:first-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(640px, 76vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(199,166,106,.16), rgba(199,166,106,.68), rgba(199,166,106,.16), transparent);
  box-shadow: 0 0 14px rgba(199, 166, 106, 0.14);
}

/* ---------- 見出し ---------- */
.section-title {
  position: relative;
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--color-navy);
  text-align: left;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: 0.08em;
}
.section-title .en {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.30em;
}
.section-title .en::before {
  content: "✦";
  color: var(--color-gold);
  font-size: 0.7rem;
  letter-spacing: 0;
}
.section-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--color-gold), rgba(199,166,106,0));
}
.section-lead {
  max-width: 720px;
  margin: 0 0 36px;
  color: var(--color-text-light);
  text-align: left;
}

/* ---------- ヘッダー・ロゴ ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--color-white);
  background: rgba(13, 21, 40, 0.94);
  border-bottom: 1px solid rgba(199, 166, 106, 0.65);
  box-shadow: 0 8px 28px rgba(13, 21, 40, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  min-height: 72px;
  width: min(1240px, 100% - 32px);
}
.brand {
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  color: var(--color-white);
}
.brand__monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(199, 166, 106, 0.78);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 0 3px rgba(199,166,106,.05), 0 0 16px rgba(199,166,106,.08);
}
.brand__monogram::after {
  content: "✦";
  position: absolute;
  top: -5px;
  right: -3px;
  padding: 0 2px;
  color: var(--color-gold);
  background: var(--color-navy-dark);
  font-size: 0.48rem;
  font-style: normal;
  letter-spacing: 0;
}
.brand__wordmark { display: flex; flex-direction: column; }
.brand__name {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.brand__sub { color: var(--color-gold-light); }
.site-nav { flex: 1 1 auto; min-width: 0; }
.site-nav ul { justify-content: center; gap: clamp(14px, 2vw, 28px); }
.site-nav li:last-child { margin-left: auto; }
.site-nav a {
  color: rgba(255,255,255,.9);
  font-size: 0.88rem;
  letter-spacing: .03em;
  transition: color .2s ease, opacity .2s ease;
}
.site-nav a:hover { color: var(--color-gold-light); }
.site-nav .btn { min-height: 42px; padding-inline: 18px; }
.nav-toggle {
  border-color: rgba(199,166,106,.72);
  color: var(--color-white);
  background: rgba(255,255,255,.03);
}
@media (max-width: 899px) {
  .site-header__inner { min-height: 64px; }
  .brand__monogram { width: 34px; height: 34px; flex-basis: 34px; font-size: .82rem; }
  .brand__name { font-size: .98rem; }
  .brand__sub { font-size: .52rem; }
  .site-nav {
    background: rgba(13, 21, 40, 0.985);
    border-bottom: 1px solid rgba(199,166,106,.45);
    box-shadow: 0 16px 28px rgba(13,21,40,.20);
  }
  .site-nav li:last-child { margin-left: 0; }
  .site-nav a { border-bottom-color: rgba(255,255,255,.09); }
}
@media (max-width: 380px) {
  .brand__sub { display: none; }
}

/* ---------- ボタン・予約導線 ---------- */
.btn {
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.btn--gold,
.button-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  border: 1px solid var(--color-gold);
  box-shadow: 0 8px 24px rgba(13, 21, 40, 0.16);
}
.btn--gold:hover,
.button-primary:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  box-shadow: 0 12px 28px rgba(13,21,40,.21);
}
.btn--line {
  color: var(--color-white);
  background: linear-gradient(135deg, #172745, var(--color-navy));
  border: 1px solid rgba(199,166,106,.85);
  box-shadow: 0 8px 24px rgba(13,21,40,.17);
}
.btn--line::before {
  content: "L";
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--line-green);
  font-family: Arial, sans-serif;
  font-size: .61rem;
  font-weight: 800;
  line-height: 1;
}
.btn--line:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
}
.btn--outline {
  color: var(--color-navy);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--color-gold);
  box-shadow: 0 6px 18px rgba(13,21,40,.07);
}
.btn--outline:hover { color: var(--color-navy); background: var(--color-white); }
.btn--outline-light {
  color: var(--color-white);
  background: rgba(255,255,255,.04);
  border-color: rgba(230,208,156,.82);
}
.btn--rose {
  color: var(--color-white);
  background: linear-gradient(135deg, #35476A, var(--color-navy));
  border: 1px solid rgba(199,166,106,.72);
}
.btn-group { justify-content: flex-start; }

/* ---------- トップヒーロー ---------- */
.hero {
  min-height: min(650px, 75vh);
  color: var(--color-text);
  background:
    radial-gradient(circle at 84% 16%, rgba(83,171,188,.11), transparent 27%),
    radial-gradient(circle at 10% 82%, rgba(199,166,106,.09), transparent 30%),
    linear-gradient(rgba(255,255,255,.72), rgba(250,250,247,.88)),
    url('/assets/images/marble-bg.svg') center / cover;
  border-bottom: 1px solid rgba(199,166,106,.48);
}
.hero::before {
  content: "LR";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(4%, 8vw, 12%);
  transform: translateY(-50%);
  color: var(--color-navy);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: clamp(9rem, 22vw, 21rem);
  font-style: italic;
  line-height: .8;
  letter-spacing: -.16em;
  opacity: .038;
  pointer-events: none;
}
.hero::after {
  z-index: 1;
  background:
    linear-gradient(112deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.72) 58%, rgba(250,250,247,.38) 100%),
    radial-gradient(ellipse 55% 45% at 88% 20%, rgba(46,77,143,.07), transparent 72%);
}
.hero__img {
  opacity: .055;
  filter: grayscale(1) contrast(.72) brightness(1.55);
  mix-blend-mode: multiply;
}
.hero__inner {
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(82px, 10vw, 126px) 0;
  text-align: left;
}
.hero__shop {
  color: var(--color-gold-dark);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  letter-spacing: .28em;
}
.hero__title {
  max-width: 760px;
  color: var(--color-navy);
  font-size: clamp(1.75rem, 4.6vw, 3.3rem);
  letter-spacing: .06em;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.hero__sub {
  max-width: 620px;
  margin: 0 0 34px;
  color: #4F5663;
  font-size: clamp(.96rem, 1.6vw, 1.08rem);
}
.hero__areas { color: var(--color-navy-light); }
@media (max-width: 640px) {
  .hero { min-height: 560px; }
  .hero__inner { padding: 78px 0 86px; }
  .hero__title { font-size: clamp(1.65rem, 7.2vw, 2.25rem); }
  .hero::before { right: -16%; opacity: .028; }
}

/* ---------- 下層ページタイトル ---------- */
.page-hero,
.page-recruit .page-hero {
  color: var(--color-text);
  text-align: left;
  padding: clamp(58px, 7vw, 82px) 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(83,171,188,.10), transparent 28%),
    linear-gradient(rgba(255,255,255,.80), rgba(250,250,247,.90)),
    url('/assets/images/marble-bg.svg') center / cover;
  border-bottom: 1px solid rgba(199,166,106,.50);
}
.page-hero::before {
  content: "LR";
  position: absolute;
  top: 50%;
  right: clamp(1%, 7vw, 10%);
  transform: translateY(-50%);
  color: var(--color-navy);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: clamp(7rem, 15vw, 13rem);
  font-style: italic;
  line-height: .8;
  letter-spacing: -.15em;
  opacity: .035;
  pointer-events: none;
}
.page-hero::after,
.page-recruit .page-hero::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.84), rgba(255,255,255,.32)),
    radial-gradient(ellipse 45% 75% at 88% 10%, rgba(46,77,143,.08), transparent 70%);
}
.page-hero .container { max-width: 1120px; }
.page-hero__eyebrow,
.page-recruit .page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-gold-dark);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .34em;
}
.page-hero__eyebrow::before { content: "✦"; color: var(--color-gold); font-size: .62rem; letter-spacing: 0; }
.page-hero__title,
.page-recruit .page-hero__title {
  max-width: 820px;
  color: var(--color-navy);
  font-size: clamp(1.65rem, 4vw, 2.7rem);
  letter-spacing: .06em;
}
.page-hero__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.page-hero__copy,
.page-recruit .page-hero__copy {
  max-width: 680px;
  margin: 16px 0 24px;
  color: var(--color-text-light);
}
.page-hero--compact { padding-top: 48px; padding-bottom: 44px; }

/* ---------- 共通カード ---------- */
.feature,
.area-card,
.price-card,
.price-rows,
.flow__step,
.faq details,
.notes,
.location-note,
.recruit-point,
.profile-schedule__list,
.empty-state {
  background: rgba(255,255,255,.88);
  border-color: rgba(199,166,106,.30);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.feature,
.area-card,
.price-card,
.flow__step,
.faq details,
.recruit-point {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.feature:hover,
.area-card:hover,
.price-card:hover,
.flow__step:hover,
.recruit-point:hover {
  transform: translateY(-3px);
  border-color: rgba(199,166,106,.62);
  box-shadow: var(--shadow-hover);
}
.feature__icon { color: var(--color-gold-dark); }
.feature__label { color: var(--color-navy); }

/* ---------- キャンペーン ---------- */
.campaign,
.schedule-bottom-cta {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 88% 12%, rgba(46,77,143,.38), transparent 32%),
    linear-gradient(145deg, var(--color-navy-dark), var(--color-navy));
  border: 1px solid rgba(199,166,106,.72);
  border-radius: var(--radius-large);
  box-shadow: 0 16px 44px rgba(13,21,40,.18);
}
.campaign::after,
.schedule-bottom-cta::after {
  content: "LR";
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: var(--color-white);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 6.4rem;
  font-style: italic;
  letter-spacing: -.14em;
  opacity: .035;
  pointer-events: none;
}
.campaign__ribbon {
  color: var(--color-navy-dark);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}
.campaign__title { color: var(--color-white); }
.campaign__body { color: rgba(255,255,255,.86); }
.campaign__note { color: var(--color-gold-light); }

/* ---------- エリアカード ---------- */
.area-card {
  border-radius: var(--radius-large);
  overflow: hidden;
}
.area-card__visual {
  height: 168px;
  background:
    radial-gradient(circle at 75% 18%, rgba(199,166,106,.22), transparent 26%),
    linear-gradient(140deg, var(--color-navy-dark), var(--color-navy-light));
}
.area-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  filter: saturate(.78) contrast(.96);
}
.area-card__name { color: var(--color-navy); }
.area-card__station { color: var(--color-text-light); }
.area-card__more { color: var(--color-gold-dark); }
.status-badge {
  background: #F1F3F7;
  color: var(--color-navy-light);
  border-color: rgba(46,77,143,.35);
}

/* ---------- 料金 ---------- */
.price-note,
.price-block__note { color: var(--color-text-light); }
.price-card {
  min-height: 100px;
  padding: 24px 24px;
  border: 1px solid rgba(199,166,106,.30);
  border-left: 4px solid var(--color-gold);
  border-radius: 14px;
}
.price-card.is-recommended {
  background: linear-gradient(115deg, rgba(255,255,255,.96), rgba(250,247,239,.95));
  border-color: rgba(199,166,106,.72);
}
.price-card__badge {
  color: var(--color-navy-dark);
  background: var(--color-gold-light);
}
.price-card__time { color: var(--color-navy); }
.price-card__unit { color: var(--color-gold-dark); }
.price-card__price {
  color: var(--color-navy);
  font-size: clamp(1.35rem, 3vw, 1.72rem);
}
.price-row + .price-row { border-top-color: rgba(199,166,106,.24); }
.price-row__label { color: var(--color-navy); }
.price-row__value { color: var(--color-navy); }
.price-block__title { color: var(--color-navy); }

/* ---------- エリア別セクション見出し ---------- */
.area-section-heading {
  position: relative;
  align-items: center;
  min-height: 76px;
  margin-bottom: 24px;
  padding: 15px 20px 16px;
  overflow: hidden;
  border: 0;
  border-left: 4px solid var(--color-gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(13,21,40,.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.area-section-heading::before {
  content: "LR";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--color-navy);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 4.8rem;
  font-style: italic;
  letter-spacing: -.14em;
  opacity: .035;
  pointer-events: none;
}
.area-section-heading::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), rgba(199,166,106,.08), transparent);
}
.area-section-heading h2,
.area-section-heading h3 { color: var(--color-navy); }
.area-section-heading span { color: var(--color-gold-dark); }
.area-section-heading a { position: relative; z-index: 1; color: var(--color-navy-light); }

/* ---------- セラピストカード ---------- */
.therapist-grid { gap: 18px; }
.therapist-card {
  border: 1px solid rgba(199,166,106,.30);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.therapist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,166,106,.72);
  box-shadow: var(--shadow-hover);
}
.therapist-image {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 74% 16%, rgba(199,166,106,.25), transparent 28%),
    linear-gradient(145deg, var(--color-navy-dark), var(--color-navy-light));
}
.therapist-image img {
  object-fit: cover;
  object-position: center 20%;
  transition: transform .5s ease;
}
.therapist-card:hover .therapist-image img { transform: scale(1.018); }
.therapist-image__placeholder {
  color: rgba(255,255,255,.76);
  background:
    radial-gradient(circle at 68% 18%, rgba(199,166,106,.25), transparent 32%),
    linear-gradient(140deg, rgba(13,21,40,.15), rgba(46,77,143,.20));
}
.therapist-photo-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border: 1px solid rgba(199,166,106,.88);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(13,21,40,.90);
  box-shadow: 0 6px 18px rgba(13,21,40,.18);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  backdrop-filter: blur(6px);
}
.therapist-info {
  color: var(--color-white);
  background:
    radial-gradient(circle at 95% 0%, rgba(46,77,143,.34), transparent 34%),
    linear-gradient(145deg, var(--color-navy-dark), var(--color-navy));
  border-top: 1px solid rgba(199,166,106,.55);
  padding: 16px;
}
.therapist-name { color: var(--color-white); }
.therapist-meta,
.therapist-no-schedule { color: rgba(255,255,255,.68); }
.therapist-area-label { color: var(--color-gold-light); }
.therapist-time { color: var(--color-white); }
.therapist-tags span {
  color: var(--color-gold-light);
  background: rgba(255,255,255,.055);
  border-color: rgba(199,166,106,.46);
}
.therapist-card .status-badge.is-available { color: #EAF8EF; background: rgba(51,123,77,.28); border-color: rgba(139,193,157,.65); }
.therapist-card .status-badge.is-few { color: #FFF2CD; background: rgba(143,103,38,.26); border-color: rgba(218,183,112,.68); }
.therapist-card .status-badge.is-full,
.therapist-card .status-badge.is-closed { color: #D7DCE5; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.therapist-card .btn--outline {
  color: var(--color-white);
  background: rgba(255,255,255,.035);
  border-color: rgba(199,166,106,.66);
  box-shadow: none;
}
.therapist-card .btn--line {
  color: var(--color-navy-dark);
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: none;
}
.therapist-card .btn--line:hover { color: var(--color-navy); background: var(--color-ivory); }

/* ---------- 出勤日・絞り込みUI ---------- */
.area-filter,
.area-jump-nav,
.date-tabs {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.area-filter::-webkit-scrollbar,
.area-jump-nav::-webkit-scrollbar,
.date-tabs::-webkit-scrollbar { display: none; }
.area-filter button,
.area-jump-nav a {
  min-height: 44px;
  border-color: rgba(46,77,143,.18);
  background: rgba(255,255,255,.86);
  color: var(--color-navy);
  box-shadow: 0 5px 16px rgba(13,21,40,.05);
}
.area-filter button.is-active,
.area-jump-nav a:hover {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-gold);
}
.date-tabs {
  gap: 10px;
  padding: 4px 2px 12px;
  margin-bottom: 26px;
}
.date-tab {
  flex: 0 0 auto;
  min-width: 76px;
  min-height: 66px;
  padding: 9px 14px;
  border: 1px solid rgba(35,43,66,.18);
  border-radius: 999px;
  color: var(--color-navy);
  background: rgba(255,255,255,.88);
  box-shadow: 0 5px 16px rgba(13,21,40,.05);
}
.date-tab small { color: var(--color-text-light); }
.date-tab.is-sat:not(.is-active) small { color: #5E78A8; }
.date-tab.is-sun:not(.is-active) small { color: #A16E75; }
.date-tab.is-active {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-gold);
  box-shadow: 0 8px 22px rgba(13,21,40,.18);
}
.date-tab.is-active small { color: rgba(255,255,255,.76); }
.empty-state {
  border: 1px solid rgba(199,166,106,.38);
  border-radius: 14px;
  color: var(--color-text);
}
.empty-state__title { color: var(--color-navy); }
.schedule-area { scroll-margin-top: 96px; }

/* ---------- FAQ・導線・アクセス ---------- */
.faq summary { color: var(--color-navy); }
.faq summary::before { color: var(--color-gold-dark); }
.location-note { border-color: rgba(199,166,106,.52); }
.flow__title { color: var(--color-navy); }
.flow__text { color: var(--color-text-light); }

/* ---------- 求人ページ ---------- */
.page-recruit {
  background:
    radial-gradient(circle at 14% 28%, rgba(182,154,158,.07), transparent 28%),
    transparent;
}
.page-recruit .page-hero {
  background:
    radial-gradient(circle at 85% 14%, rgba(182,154,158,.10), transparent 28%),
    linear-gradient(rgba(255,255,255,.82), rgba(250,247,243,.92)),
    url('/assets/images/marble-bg.svg') center / cover;
}
.recruit-point {
  border-color: rgba(182,154,158,.25);
  box-shadow: 0 10px 28px rgba(13,21,40,.08);
}
.recruit-point__label { color: var(--color-navy); }
.recruit-point__icon { color: var(--color-gold-dark); }

/* ---------- プロフィール ---------- */
.profile-visual .therapist-image {
  border-radius: var(--radius-large);
  border: 1px solid rgba(199,166,106,.50);
  box-shadow: var(--shadow-soft);
}
.profile-name,
.profile-catch { color: var(--color-navy); }
.profile-copy h2 { color: var(--color-navy); border-bottom-color: rgba(199,166,106,.52); }
.profile-schedule__row { border-bottom-color: rgba(199,166,106,.20); }

/* ---------- フッター・固定予約バー ---------- */
.site-footer {
  color: var(--color-white);
  background:
    radial-gradient(circle at 80% 0%, rgba(46,77,143,.25), transparent 28%),
    linear-gradient(145deg, #081020, var(--color-navy-dark));
  border-top: 1px solid rgba(199,166,106,.68);
}
.footer-brand { position: relative; }
.footer-brand::before {
  content: "LR";
  display: block;
  margin-bottom: 7px;
  color: var(--color-gold-light);
  font-family: Georgia, "Times New Roman", var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: -.08em;
}
.footer-brand__areas { color: var(--color-gold-light); }
.footer-copy { color: rgba(255,255,255,.56); }
.sticky-cta {
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  background: rgba(13,21,40,.94);
  border-top: 1px solid rgba(199,166,106,.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(13,21,40,.13);
}
.sticky-cta .btn { min-height: 50px; }
.copy-toast { background: var(--color-navy-dark); border-color: var(--color-gold); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 719px) {
  .container { width: min(100% - 32px, 1120px); }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.52rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card { padding: 21px 18px; }
  .area-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 15px;
  }
  .area-section-heading a { text-align: left; }
}
@media (max-width: 419px) {
  .therapist-grid { grid-template-columns: 1fr; }
  .therapist-actions .btn { font-size: .82rem; }
}
@media (min-width: 420px) and (max-width: 719px) {
  .therapist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .therapist-info { padding: 12px; }
  .therapist-name { font-size: .98rem; }
  .therapist-actions .btn { padding-inline: 5px; font-size: .69rem; }
  .therapist-photo-badge { top: 8px; right: 8px; padding: 4px 7px; font-size: .61rem; }
}
@media (min-width: 720px) and (max-width: 1019px) {
  .therapist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1020px) {
  .therapist-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
}
@media (max-width: 1023px) {
  body { background-size: auto, auto, auto, 1500px auto; }
}

/* ---------- 控えめなアニメーション ---------- */
@keyframes lumiaFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__inner,
.page-hero .container,
.section > .container {
  animation: lumiaFadeUp .58s ease both;
}
@media (prefers-reduced-motion: reduce) {
  .hero__inner,
  .page-hero .container,
  .section > .container { animation: none; }
  .therapist-card:hover .therapist-image img { transform: none; }
}


/* =========================================================
   TOPヒーロー上書き：ネイビーホール画像をフル表示
   ========================================================= */
.page-top .hero {
  min-height: min(700px, 84vh);
  background: #0B1226;
  border-bottom: 1px solid rgba(199,166,106,.48);
}
.page-top .hero::before { content: none; }
.page-top .hero::after {
  background: linear-gradient(180deg,
    rgba(6,10,24,.28) 0%,
    rgba(6,10,24,0) 32%,
    rgba(6,10,24,.10) 58%,
    rgba(6,10,24,.72) 100%);
}
.page-top .hero__img {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}
.page-top .hero__inner {
  z-index: 3;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: clamp(230px, 34vw, 340px) 0 clamp(52px, 6.5vw, 78px);
}
.page-top .hero__shop,
.page-top .hero__title,
.page-top .hero__sub,
.page-top .hero__areas { display: none; } /* 文字は画像内に含まれるため非表示 */
.page-top .hero .btn-group { justify-content: center; }
@media (max-width: 640px) {
  .page-top .hero { min-height: 620px; }
  .page-top .hero__inner { padding: 300px 0 70px; }
}

/* =========================================================
   スマホ表示改善：専用ヒーロー画像・CTA・キャンペーン
   PC版の見た目は変更しない
   ========================================================= */
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media .hero__img {
  width: 100%;
  height: 100%;
}

/* OPEN CAMPAIGNラベルをカード外まで正常表示 */
.campaign {
  overflow: visible;
}
.campaign::after {
  bottom: 0;
}

/* 固定CTAは、JSで通常CTA通過後のみ表示 */
.sticky-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 719px) {
  /* 縦長専用画像を、トリミングせず画像本来の比率で表示 */
  .page-top .hero {
    min-height: 0;
    height: auto;
    overflow: hidden;
    background: #07101f;
  }
  .page-top .hero::after {
    display: none;
  }
  .page-top .hero__media {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    background: #07101f;
  }
  .page-top .hero__media .hero__img {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center top;
  }
  .page-top .hero__inner {
    min-height: 0;
    width: min(100% - 32px, 520px);
    padding: 30px 0 42px;
    background: transparent;
  }
  .page-top .hero .btn-group {
    width: 100%;
    gap: 12px;
  }
  .page-top .hero .btn-group .btn {
    width: 100%;
    min-height: 52px;
  }

  /* 小さい端末でもリボンが画面外へ出ない */
  .campaign {
    padding: 48px 18px 34px;
  }
  .campaign__ribbon {
    top: -13px;
    max-width: calc(100% - 28px);
    padding-inline: 16px;
    font-size: clamp(.68rem, 3vw, .78rem);
    letter-spacing: .13em;
  }
}

@media (max-width: 374px) {
  .page-top .hero__inner {
    width: min(100% - 24px, 520px);
    padding-top: 26px;
    padding-bottom: 36px;
  }
  .page-top .hero .btn-group .btn {
    padding-inline: 16px;
    font-size: .92rem;
  }
}

.footer-link-banners {
  width: 100%;
  max-width: 680px;
  margin: 28px auto 26px;
  padding: 0 16px;
}

.footer-link-banners__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-link-banners__areas {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-link-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 200px;
}

.footer-link-banner-label {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.footer-link-banners a {
  display: inline-block;
  line-height: 0;
}

.footer-link-banners img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .footer-link-banners__top,
  .footer-link-banners__areas {
    flex-direction: column;
    align-items: center;
  }

  .footer-link-banners__areas {
    gap: 14px;
  }

  .footer-link-banner-item {
    flex-basis: auto;
  }
}
