/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

p, li, h1, h2, h3 {
  word-break: keep-all;      /* 日本語：句読点でのみ改行（文字途中で切らない） */
  overflow-wrap: anywhere;   /* 収まらない場合は最終手段として任意の位置で改行 */
  word-break: auto-phrase;   /* Chrome119+/Safari17+: 自然なフレーズ境界で改行 */
}

/* 折り返しを意味まとまりで制御 */
h1, h2, h3, h4,
.hero__catch, .hero__sub,
.section-head__ja, .section-head__bold, .section-head__cursive,
.concept__title, .concept__lead,
.therapist-banner__title,
.cta__title, .cta__en,
.page-hero__title, .page-hero__sub,
.therapist__name, .therapist__heading,
.therapist__closing-text {
  text-wrap: balance;
}

/* フレーズ途中で折れないようにするspan */
.nobr {
  display: inline-block;
  white-space: nowrap;
}

/* スマホのみ表示する改行 */
.sp-br { display: none; }
@media (max-width: 768px) {
  .sp-br { display: block; height: 0; }
}

/* スマホのみ文字を小さく（長いテキストを1行に収める用） */
@media (max-width: 768px) {
  .sp-text-sm { font-size: 0.82rem !important; letter-spacing: 0.01em !important; }
  .hero__sub { letter-spacing: 0 !important; font-size: 0.9rem !important; }

  /* ヒーロー：日常から〜をロゴの上に移動、ロゴ下の余白を詰める */
  .hero__catch { order: -1; }
  .hero__title { margin-bottom: 8px !important; }

  /* ヒーローロゴのみ：背景から輪郭を浮き上がらせる控えめなシャドウ */
  .hero__title-en {
    text-shadow: 0 0 1px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.18), 0 0 20px rgba(0,0,0,0.15) !important;
  }
}

:root {
  --color-bg:        #fdfbf9;
  --color-beige:     #f5f0eb;
  --color-beige-d:   #e9e2d9;
  --color-brown:     #b09a8a;
  --color-brown-d:   #6b5b50;
  --color-green:     #7a8c6e;
  --color-text:      #3a3330;
  --color-text-sub:  #8a7e78;
  --color-white:     #ffffff;
  --color-gold:      #c4a67a;

  --font-serif-ja:   'Noto Serif JP', serif;
  --font-serif-en:   'Cormorant Garamond', serif;

  --section-gap:     100px;
  --container-w:     1100px;
  --radius:          4px;
  --transition:      0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

/* ========================================
   DESKTOP FONT SIZE OVERRIDE
======================================== */
@media (min-width: 769px) {
  html { font-size: 18px; }
}

body {
  font-family: var(--font-serif-ja);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ========================================
   UTILITY
======================================== */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section--beige { background: var(--color-beige); }

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head__en {
  font-family: var(--font-serif-en);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head__ja {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-brown-d);
  margin-bottom: 16px;
}
.section-head__cursive {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: #c4a67a;
  margin-bottom: 6px;
  margin-top: 24px;
}
.section-head__bold {
  font-family: var(--font-serif-en);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #3a3330;
  margin-bottom: 16px;
}
.section-head__sub {
  font-size: 0.82rem;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 16px;
}
.section-head__line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid currentColor;
  letter-spacing: 0.15em;
  font-family: var(--font-serif-ja);
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn--nav {
  padding: 8px 22px;
  color: var(--color-brown);
  border-color: var(--color-brown);
  border-radius: 2px;
}
.btn--nav:hover { background: var(--color-brown); color: var(--color-white); }

.btn--hero {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
  padding: 16px 48px;
  font-size: 0.9rem;
  margin-top: 32px;
}
.btn--hero:hover { background: rgba(255,255,255,0.2); border-color: var(--color-white); }

.btn--menu {
  display: block;
  width: 100%;
  margin-top: 20px;
  color: var(--color-brown);
  border-color: var(--color-brown);
  text-align: center;
  font-size: 0.8rem;
}
.btn--menu:hover { background: var(--color-brown); color: var(--color-white); }

.btn--cta-tel {
  color: var(--color-white);
  border-color: var(--color-white);
  padding: 16px 40px;
  min-width: 220px;
}
.btn--cta-tel:hover { background: var(--color-white); color: var(--color-brown-d); }

.btn--cta-online {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  padding: 16px 40px;
  min-width: 220px;
}
.btn--cta-online:hover { background: #a07d48; border-color: #a07d48; }

.btn--cta-line {
  background: #06c755;
  border-color: #06c755;
  color: var(--color-white);
  padding: 11px 0;
  width: 220px;
  font-size: 0.88rem;
  text-align: center;
  justify-content: center;
}
.btn--cta-line:hover { background: #05a847; border-color: #05a847; }

.btn--cta-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: var(--color-white);
  padding: 11px 0;
  width: 220px;
  font-size: 0.88rem;
  text-align: center;
  justify-content: center;
}
.btn--cta-instagram:hover { opacity: 0.88; }

.btn--info {
  display: block;
  margin-top: 32px;
  text-align: center;
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
  padding: 16px;
}
.btn--info:hover { background: var(--color-brown-d); border-color: var(--color-brown-d); }

.btn__icon { margin-right: 6px; }

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-beige-d);
  transition: var(--transition);
}
.header__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__logo-en {
  font-family: var(--font-serif-en);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-brown-d);
  letter-spacing: 0.05em;
}
.header__logo-ja {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--color-text-sub);
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav-list a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  transition: color var(--transition);
}
.header__nav-list a:not(.btn):hover { color: var(--color-brown); }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-brown-d);
  transition: var(--transition);
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('logo2.jpg')
    center 45% / cover no-repeat;
  filter: brightness(1.1);
}
@media (min-width: 769px) {
  .hero__title { display: none; }
  .hero__catch { margin-bottom: 8px; }
  .hero__sub { margin-bottom: 0; }
  .hero__content { margin-bottom: 48vh; }
  .btn--hero {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .hero__bg {
    background:
      url('top.PNG')
      center 45% / cover no-repeat;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(58, 48, 42, 0.28) 0%,
    rgba(58, 48, 42, 0.38) 30%,
    rgba(58, 48, 42, 0.44) 60%,
    rgba(58, 48, 42, 0.50) 100%
  );
}
.hero__content {
  position: relative;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title-en {
  font-family: var(--font-serif-en);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 0, 0, 0.15);
}
.hero__catch {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: var(--color-white);
  margin-bottom: 12px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.hero__sub {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--color-white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   CONCEPT
======================================== */
.concept__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.concept__img-wrap { overflow: hidden; border-radius: var(--radius); position: relative; }
.concept__slider {
  position: relative;
  width: 100%;
  padding-top: 65%;
}
.concept__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.concept__slide--active {
  opacity: 1;
}

.concept__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-brown-d);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.concept__lead {
  font-size: clamp(0.78rem, 3.5vw, 0.9rem);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-style: italic;
}
.concept__desc {
  font-size: clamp(0.78rem, 3.5vw, 0.9rem);
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 32px;
}
.concept__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.concept__points li {
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.concept__icon { color: var(--color-gold); font-size: 0.7rem; }

/* ========================================
   MENU
======================================== */
/* --- Menu Category Cards (ELUCA style) --- */
.menu-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}
.menu-category-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(100, 80, 65, 0.08);
}
.menu-category-card__img {
  width: 100%;
  padding-top: 70%;
  background: center / cover no-repeat var(--color-beige-d);
  position: relative;
}
.menu-category-card__img--facial::before,
.menu-category-card__img--facial::after {
  content: '';
  position: absolute;
  z-index: 1;
}
.menu-category-card__img--facial::before {
  display: none;
}
.menu-category-card__img--facial::after {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 65%;
  background: radial-gradient(circle at 0% 100%, #ffffff 33%, rgba(255,255,255,0.5) 48%, transparent 62%);
}
.menu-category-card__body {
  padding: 32px 28px 36px;
}
.menu-category-card__en {
  font-family: var(--font-serif-en);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown-d);
  margin-bottom: 4px;
}
.menu-category-card__ja {
  font-size: 0.78rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.menu-category-card__desc {
  font-size: clamp(0.78rem, 3.4vw, 0.85rem);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}
.menu-category-card__btn {
  display: block;
  padding: 16px 24px;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-align: left;
  transition: background var(--transition);
  position: relative;
}
.menu-category-card__btn span {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}
.menu-category-card__btn:hover {
  background: var(--color-brown-d);
}

/* --- Menu Detail Sections --- */
.menu-detail {
  margin-top: 56px;
  scroll-margin-top: 100px;
}
.menu-detail__title {
  font-family: var(--font-serif-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown-d);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-beige-d);
}
.menu-detail__title span {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.menu-detail__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-detail__item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 16px rgba(100, 80, 65, 0.06);
  position: relative;
}
.menu-detail__item--recommend {
  border: 2px solid var(--color-gold);
}
.menu-detail__badge {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.menu-detail__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}
.menu-detail__time {
  font-family: var(--font-serif-en);
  font-size: 1.4rem;
  color: var(--color-gold);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.menu-detail__price {
  font-family: var(--font-serif-en);
  font-size: 1.5rem;
  color: var(--color-brown-d);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.menu-detail__tax {
  font-size: 0.7rem;
  color: var(--color-text-sub);
  font-family: var(--font-serif);
  margin-left: 2px;
}
.menu-detail__name {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown-d);
  margin-bottom: 12px;
}
.menu-detail__desc {
  font-size: clamp(0.76rem, 3.3vw, 0.83rem);
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
}

.menu__note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
}

/* ========================================
   PAGE HERO (Sub pages)
======================================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 72px;
  overflow: hidden;
}
.page-hero--short { height: 40vh; min-height: 260px; }
.page-hero--tall { width: 100%; height: 68.75vw; min-height: 600px; background: #ffffff; }
.page-hero--square { height: auto; min-height: auto; aspect-ratio: 740/493; }
.page-hero--top-text { align-items: flex-start; padding-top: 60px; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(1.1);
}
.page-hero__bg--facial {
  background-size: contain;
  background-position: center center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,48,42,0.30) 0%, rgba(58,48,42,0.50) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}
.page-hero__cursive {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: var(--font-serif-en);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}
.page-hero__sub {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

/* --- Menu Sub Page --- */
.menu-page__intro {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
.menu-detail__points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.menu-detail__points li {
  font-size: 0.82rem;
  color: var(--color-text);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.7;
}
.menu-detail__points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.75rem;
}
.menu-page__back {
  margin-top: 48px;
  text-align: center;
}

/* ========================================
   THERAPIST PAGE
======================================== */
.therapist {
  max-width: 800px;
  margin: 0 auto 60px;
}

.therapist__profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.therapist__img-wrap {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
}

.therapist__img {
  width: 100%;
  padding-top: 130%;
  background: center / cover no-repeat;
}

.therapist__name-block {
  padding-top: 12px;
}

.therapist__title-en {
  font-family: var(--font-serif-en);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.therapist__name {
  font-family: var(--font-serif-ja);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-brown-d);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 4px;
}

.therapist__name-kana {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.therapist__career {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.therapist__career-inline {
  font-size: 0.78rem;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.therapist__career span {
  font-size: 0.78rem;
  color: var(--color-brown-d);
  padding: 5px 12px;
  border: 1px solid var(--color-beige-d);
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.therapist__section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-beige-d);
}

.therapist__section:first-child {
  padding-top: 0;
}

.therapist__section--accent {
  background: var(--color-beige);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 0 -8px;
  border-bottom: none;
}

.therapist__section--closing {
  border-bottom: none;
  padding-bottom: 0;
}

.therapist__heading {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: var(--color-brown-d);
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.therapist__text {
  font-size: clamp(0.78rem, 3.5vw, 0.92rem);
  color: var(--color-text);
  line-height: 2.0;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.therapist__text em {
  font-style: normal;
  color: var(--color-brown-d);
  font-weight: 500;
}

.therapist__closing-inner {
  text-align: center;
  padding: 48px 24px;
}

.therapist__closing-text {
  font-family: var(--font-serif-ja);
  font-size: 0.95rem;
  color: var(--color-brown-d);
  line-height: 2.2;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.therapist__closing-sign {
  font-family: var(--font-serif-en);
  font-size: 1.2rem;
  color: var(--color-brown);
  letter-spacing: 0.15em;
  margin-top: 32px;
  font-style: italic;
}

@media (max-width: 640px) {
  .therapist__profile {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .therapist__img-wrap {
    width: 180px;
  }
  .therapist__name-block {
    text-align: center;
    padding-top: 0;
  }
  .therapist__career {
    align-items: center;
  }
  .therapist__section--accent {
    padding: 28px 24px;
    margin: 0;
  }
}
.btn--back {
  font-size: 0.85rem;
  color: var(--color-brown);
  letter-spacing: 0.1em;
}
.btn--back:hover {
  color: var(--color-brown-d);
}

/* --- Facial About (Bacterium Peel detail) --- */
.facial-about {
  margin-top: 56px;
}
.facial-about__section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-beige-d);
}
.facial-about__section:last-of-type {
  border-bottom: none;
}
.facial-about__section--accent {
  background: var(--color-beige);
  padding: 36px 28px;
  border-radius: var(--radius);
  border-bottom: none;
}
.facial-about__heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown-d);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}
.facial-about__text {
  font-size: clamp(0.78rem, 3.5vw, 0.88rem);
  color: var(--color-text-sub);
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.facial-about__text strong {
  color: var(--color-brown-d);
  font-weight: 400;
}
.facial-about__course {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
}
.facial-about__course-item {
  background: var(--color-white);
  border: 1px solid var(--color-beige-d);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  flex: 1;
  max-width: 220px;
  position: relative;
  overflow: hidden;
}
.facial-about__course-label {
  display: block;
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.facial-about__course-label--vata { color: #d08c4a; }
.facial-about__course-label--pitta { color: #6a9a5b; }
.facial-about__course-label--kapha { color: #8a6aad; }
.facial-about__course-value {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  color: var(--color-brown-d);
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.facial-about__cta {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 16px;
}
.facial-about__cta-text {
  font-size: 1.0rem;
  color: var(--color-brown-d);
  line-height: 2.1;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 500;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.facial-about__cta-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========================================
   BEFORE / AFTER
======================================== */
.ba-section {
  margin: 0 0 56px;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.ba-item {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.ba-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;   /* 縦長の枠で統一 */
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}
.ba-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.ba-label {
  position: absolute;
  left: 10px;
  background: rgba(255,255,255,0.82);
  color: var(--color-brown-d);
  font-size: 0.72rem;
  font-family: var(--font-serif-en);
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
}
.ba-label--before { top: 8px; }
.ba-label--after  { top: 50%; margin-top: 6px; }
.ba-caption {
  padding: 12px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;               /* 高さを揃えるため残りスペースを埋める */
}
.ba-caption__age {
  font-size: 0.78rem;
  color: var(--color-brown-d);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.ba-caption__concern {
  font-size: 0.78rem;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: 0.03em;
}
.ba-caption__label {
  font-size: 0.68rem;
  color: var(--color-white);
  background: var(--color-brown);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-caption__pace {
  font-size: 0.72rem;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
  padding-left: 2px;
}

.btn--facial-cta {
  display: inline-block;
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
  padding: 18px 40px;
  font-size: 0.9rem;
}
.btn--facial-cta:hover {
  background: var(--color-brown-d);
  border-color: var(--color-brown-d);
}
.cta-coupon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-coupon-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--color-brown-d);
  border: 1px solid var(--color-brown);
  padding: 3px 12px;
  border-radius: 20px;
}

/* ========================================
   VOICE
======================================== */
.voice__slider-wrap {
  position: relative;
}
.voice__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.voice__grid::-webkit-scrollbar { display: none; }
.voice__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.voice__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-beige-d);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.voice__dot.is-active { background: var(--color-brown); }
.voice-card {
  background: var(--color-white);
  border: 1px solid var(--color-beige-d);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  min-width: 280px;
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-serif-en);
  font-size: 4rem;
  color: var(--color-beige-d);
  line-height: 1;
}
.voice-card__stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.voice-card__text {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 20px;
}
.voice-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--color-beige-d);
}
.voice-card__name { font-size: 0.8rem; color: var(--color-brown-d); font-weight: 500; }
.voice-card__menu { font-size: 0.72rem; color: var(--color-text-sub); letter-spacing: 0.05em; }

/* ========================================
   CTA / RESERVE
======================================== */

/* ========================================
   THERAPIST BANNER
======================================== */
.therapist-banner {
  position: relative;
  aspect-ratio: 1440 / 990;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
}

.therapist-banner__img {
  position: absolute;
  inset: 0;
  background: center 60% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.therapist-banner:hover .therapist-banner__img {
  transform: scale(1.08);
}

.therapist-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 28, 20, 0.48);
}

.therapist-banner__content {
  position: relative;
  text-align: center;
  padding: 24px;
}

.therapist-banner__en {
  font-family: var(--font-serif-en);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.therapist-banner__title {
  font-family: var(--font-serif-ja);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.therapist-banner__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.btn--therapist-banner {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
  padding: 14px 36px;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.btn--therapist-banner:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.cta {
  position: relative;
  padding: 40px 48px 36px;
  text-align: center;
  overflow: hidden;
  background: #f3e8e2;
}
.cta__bg-img {
  position: absolute;
  inset: 0;
  background: url('reserve.PNG') center 40% / 150% auto no-repeat;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
}
.cta__content {
  position: relative;
  color: var(--color-brown-d);
  max-width: 400px;
  margin: 0 auto;
}
.cta__en {
  font-family: var(--font-serif-en);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  opacity: 0.75;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cta__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.cta__desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.9;
  margin-bottom: 20px;
}
.cta__desc p { margin-bottom: 0.6em; }
.cta__desc p:last-child { margin-bottom: 0; }
.cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.cta__tel-num {
  font-family: var(--font-serif-en);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.cta__hours { font-size: 0.78rem; opacity: 0.75; letter-spacing: 0.1em; }

/* ========================================
   INFO
======================================== */
.info__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-beige-d);
}
.info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.6) brightness(1.05);
}
.info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.info__table th,
.info__table td { padding: 14px 12px; border-bottom: 1px solid var(--color-beige-d); }
.info__table th {
  white-space: nowrap;
  color: var(--color-brown-d);
  font-weight: 500;
  letter-spacing: 0.08em;
  width: 30%;
  vertical-align: top;
}
.info__table td { color: var(--color-text-sub); line-height: 1.7; }
.info__table td a { color: var(--color-brown); border-bottom: 1px solid var(--color-brown); }
.store-info__table-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.store-info__link {
  text-align: center;
  margin-top: 32px;
}
.store-info__more {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--color-brown-d);
  border-bottom: 1px solid var(--color-brown-d);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.store-info__more:hover { opacity: 0.6; }

.info__single {
  max-width: 640px;
  margin: 0 auto;
}
.info__single .btn--info {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--color-brown-d);
  color: rgba(255,255,255,0.75);
  padding: 32px 0 20px;
  text-align: center;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.footer__logo-en {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
.footer__logo-ja { font-size: 0.6rem; letter-spacing: 0.3em; margin-top: 2px; }
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.footer__nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--color-white); }
.footer__copy { font-size: 0.7rem; letter-spacing: 0.1em; opacity: 0.5; }

/* ========================================
   FLOATING BUTTON
======================================== */
.floating-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(100, 80, 65, 0.35);
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
}
.floating-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.floating-btn:hover { background: var(--color-brown-d); transform: scale(1.08); }

/* ========================================
   RESPONSIVE — TABLET (≤768px)
======================================== */
@media (max-width: 768px) {
  :root { --section-gap: 72px; }

  /* Hero */
  .hero { height: 55vh; min-height: auto; }
  .hero__scroll { display: none; }

  /* Container */
  .container { padding: 0 20px; }

  /* Header */
  .header__hamburger { display: none; }
  .header__nav-list {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .header__nav-list a { font-size: 0.72rem; letter-spacing: 0.05em; }
  .header__inner { height: 60px; padding: 0 16px; }

  /* Concept */
  .concept__body { grid-template-columns: 1fr; gap: 40px; }
  .concept__img { padding-top: 70%; }

  /* Menu */
  .menu-category-card__body { padding: 24px 20px 28px; }
  .menu-detail__item { padding: 20px; }

  /* Voice */
  .voice-card { flex: 0 0 calc(100% - 40px); }

  /* Therapist banner — br はそのまま残す */

  /* CTA */
  .cta__btns { flex-direction: column; align-items: center; }
  .btn--cta-tel, .btn--cta-online, .btn--cta-line, .btn--cta-instagram {
    width: 220px;
    max-width: 100%;
    min-width: unset;
  }
  /* cta__desc は p タグ構造に変更済みのため br 非表示不要 */

  /* Info */
  .info__body { grid-template-columns: 1fr; gap: 32px; }

  /* Therapist profile */
  .therapist { flex-direction: column; }

  /* Footer nav */
  .footer__nav { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* フェイシャルページ：モバイルで下部の商品パッケージを隠す */
  .page-hero--tall { height: 46vh; min-height: 300px; background: var(--color-bg); aspect-ratio: auto; }
  .page-hero--square { height: auto; min-height: auto; aspect-ratio: 740/493; }
  .page-hero__bg--facial {
    background-position: center 5% !important;
  }

  /* セラピストページ：モバイルは元の画像を使用 */
  .page-hero__bg--therapist {
    background-image: url('serapisuto.PNG') !important;
    background-position: center center !important;
  }
}

/* ========================================
   RESPONSIVE — MOBILE (≤480px)
======================================== */
@media (max-width: 480px) {
  :root { --section-gap: 56px; }

  /* Container */
  .container { padding: 0 16px; }

  /* Base text */
  body { font-size: 15px; }

  /* Section head */
  .section-head { margin-bottom: 40px; }
  .section-head__ja { font-size: 1.3rem; }
  .section-head__bold { font-size: 1.6rem; }
  .section-head__cursive { font-size: 1.5rem; }

  /* Hero */
  .hero__catch { font-size: 0.72rem; letter-spacing: 0.2em; }
  .hero__content { padding: 0 20px; }
  .btn--hero { padding: 14px 36px; font-size: 0.85rem; }

  /* Concept */
  .concept__title { font-size: 1.4rem; }
  .concept__desc { font-size: 0.88rem; }

  /* Menu */
  .menu-category-card__en { font-size: 1.3rem; }
  .menu-detail__item { padding: 16px; }

  /* Voice */
  .voice-card { padding: 24px 20px; }
  .voice-card__text { font-size: 0.85rem; }
  /* モバイルで " が星に重ならないよう、引用符を小さくして上部余白を確保 */
  .voice-card::before { font-size: 2.8rem; top: 10px; }
  .voice-card__stars { padding-top: 28px; }

  /* CTA button */
  .btn--facial-cta { font-size: 0.85rem; padding: 18px 16px; white-space: nowrap; }

  /* Therapist banner */
  .therapist-banner { height: 60vh; min-height: 360px; margin: 40px 0; aspect-ratio: auto; width: 100%; }
  .therapist-banner__title { font-size: clamp(1.1rem, 5vw, 1.6rem); }
  .therapist-banner__desc { font-size: 0.82rem; }

  /* CTA */
  .cta { padding: 32px 20px 28px; }
  .cta__content { max-width: 100%; }
  .cta__title { font-size: 1.6rem; }
  .cta__desc { font-size: 0.85rem; }
  .btn--cta-line, .btn--cta-instagram { font-size: 0.85rem; padding: 11px 20px; min-width: unset; }

  /* Info table */
  .info__table th, .info__table td { padding: 12px 8px; font-size: 0.82rem; }
  .info__table th { width: 88px; }

  /* Therapist */
  .therapist__heading { font-size: 1.1rem; }
  .therapist__text { font-size: 0.88rem; }

  /* Footer */
  .footer__nav { gap: 12px; font-size: 0.78rem; }
  .floating-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 0.65rem; }

  /* Page hero */
  .page-hero__title { font-size: 1.6rem; }
  .page-hero--body {
    height: auto;
    min-height: auto;
    aspect-ratio: 1170 / 728;
  }
  .page-hero--body .page-hero__bg {
    background-size: contain;
    background-position: center center;
  }

  /* フェイシャルページ：下部の商品パッケージを隠す（768px側で適用済み） */
}

/* ========================================
   RESPONSIVE — SMALL PHONE (≤390px)
======================================== */
@media (max-width: 390px) {
  /* Header nav: フォントを極小に */
  .header__nav-list { gap: 8px; }
  .header__nav-list a { font-size: 0.65rem; }
  .btn--nav { padding: 6px 14px; font-size: 0.65rem; }
  .header__inner { padding: 0 12px; }
  .header__logo-en { font-size: 1.25rem; }

  /* Container */
  .container { padding: 0 14px; }
}
