/* =================================================================
   美肌理容室 つるるんとん 公式サイト
   style.css  —  共通スタイルシート
   配色: ティール(#1FB8B8) × チャコール × クリーム × ゴールド
   方針: モバイルファースト / レスポンシブ
   ================================================================= */

/* ---------- 1. デザイントークン（色・余白などの設定値） ---------- */
:root {
  --teal:        #1FB8B8;   /* ブランドメインカラー（ティール） */
  --teal-dark:   #138C8C;   /* 濃いティール（ホバー・文字用） */
  --teal-deep:   #0B6464;   /* さらに濃いティール（背景用） */
  --teal-pale:   #E7F6F6;   /* 淡いティール（背景アクセント） */
  --ink:         #1C2222;   /* 文字色（ほぼ黒） */
  --ink-soft:    #525a5a;   /* 補助テキスト */
  --cream:       #FAF7F1;   /* 温かみのある背景白 */
  --cream-2:     #F1EBE0;   /* 一段濃いクリーム */
  --white:       #ffffff;
  --gold:        #C2A35B;   /* エステ・美肌の上質アクセント */
  --gold-soft:   #E9DDC0;
  --red:         #DC3A4E;   /* バーバーポール 赤 */
  --blue:        #2E6CB6;   /* バーバーポール 青 */
  --line-green:  #06C755;   /* LINE ブランドカラー */

  /* ▼ ダーク×ネオン（メンズ）の配色 ── 2026-06-03 改訂 */
  --neon-teal:   #2DE0D0;   /* 電光ティール：主役のネオン */
  --neon-teal-d: #14B5A8;   /* 濃いネオンティール（ホバー用） */
  --neon-orange: #FF7A3D;   /* 差し色オレンジ：少量で効かせる */
  --neon-lime:   #C6F24E;   /* アクセントのライム（数字など） */
  --pop-dark:    #0E1B1E;   /* ダーク背景ベース（深い藍緑） */
  --pop-dark-2:  #13262A;   /* カード等の少し明るいダーク */
  --radius-pill: 999px;     /* ピル型ボタンの角丸 */

  --shadow-sm: 0 2px 8px rgba(28, 34, 34, .07);
  --shadow-md: 0 10px 30px rgba(28, 34, 34, .10);
  --shadow-lg: 0 24px 60px rgba(28, 34, 34, .16);

  --radius:    14px;
  --radius-lg: 24px;

  --container: 1120px;
  --header-h:  68px;

  --serif: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans:  "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN",
           "Yu Gothic", "Meiryo", sans-serif;
}
/* ---------- 2. リセット & 基本設定 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* 固定ヘッダー分、アンカー移動時に余白を確保 */
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. 汎用レイアウト ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--tint   { background: var(--white); }
.section--teal   { background: var(--teal-pale); }
.section--ink    { background: var(--ink); color: #eef2f2; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head .en {
  display: block;
  font-family: var(--serif);
  letter-spacing: .35em;
  color: var(--teal-dark);
  font-size: .8rem;
  margin-bottom: 12px;
  font-weight: 700;
  padding-left: .35em; /* letter-spacing 分のセンタリング補正 */
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.45;
}
.section-head .lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .98rem;
}
.section--ink .section-head .en { color: var(--gold); }
.section--ink .section-head .lead { color: #b9c4c4; }

/* 飾り線 */
.deco-line {
  width: 48px; height: 2px; background: var(--gold);
  margin: 16px auto 0;
}

/* ---------- 4. ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  transition: transform .2s ease, box-shadow .2s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(31,184,184,.35); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--gold    { background: var(--gold); color: #fff; box-shadow: 0 8px 20px rgba(194,163,91,.35); }
.btn--gold:hover { background: #ab8e47; }
.btn--line    { background: var(--line-green); color: #fff; box-shadow: 0 8px 20px rgba(6,199,85,.30); }
.btn--ghost   { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: var(--teal-dark); border: 1.5px solid var(--teal); }
.btn--outline:hover { background: var(--teal-pale); }
.btn--block   { display: flex; width: 100%; }
.btn--lg      { padding: 18px 40px; font-size: 1rem; }

/* ---------- 5. ヘッダー / ナビ ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250,247,241,.0);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}

/* ロゴ */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__text { line-height: 1.1; }
.logo__text b {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 800;
  color: var(--ink); display: block; white-space: nowrap;
}
.logo__text small { font-size: .6rem; letter-spacing: .18em; color: var(--ink-soft); white-space: nowrap; }
/* ヒーロー上（未スクロール時）は白文字 */
.header:not(.scrolled) .logo__text b,
.header:not(.scrolled) .logo__text small { color: #fff; }

/* PC ナビ */
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .9rem; font-weight: 500; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--teal); transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--teal-dark); }
.header:not(.scrolled) .nav > a { color: #fff; }
.header:not(.scrolled) .nav > a:hover { opacity: .8; }
.nav__cta { margin-left: 4px; }

/* ハンバーガー */
.hamburger { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.hamburger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.header:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.is-open span { background: var(--ink); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 6. ヒーロー ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; text-align: center;
  padding: calc(var(--header-h) + 30px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(31,184,184,.35), transparent 55%),
    radial-gradient(130% 90% at 10% 90%, rgba(194,163,91,.22), transparent 55%),
    linear-gradient(160deg, #0e2c2c 0%, #0b6464 55%, #114b4b 100%);
}
/* 斜めストライプ（理容室＝バーバーポールのニュアンス） */
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .06;
  background: repeating-linear-gradient(45deg, #fff 0 14px, transparent 14px 40px);
}
.hero__inner { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 18px; border-radius: 999px; font-size: .78rem; letter-spacing: .12em;
  margin-bottom: 26px; backdrop-filter: blur(4px);
}
.hero__badge b { color: var(--gold); font-weight: 800; }
.hero h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.3rem, 9vw, 4.4rem);
  line-height: 1.3; letter-spacing: .04em;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero h1 .accent { color: var(--gold); }
.hero__sub {
  margin: 24px auto 0; max-width: 30em;
  font-size: clamp(.95rem, 2.6vw, 1.08rem); line-height: 2; color: #e9f1f1;
}
.hero__actions {
  margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 1; font-size: .65rem; letter-spacing: .3em; color: rgba(255,255,255,.8);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 10px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 46px;
  background: linear-gradient(rgba(255,255,255,.8), transparent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* 信頼バー（実績の数字） */
.trust {
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.trust__item { text-align: center; padding: 26px 10px; }
.trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.12); }
.trust__num { font-family: var(--serif); font-size: clamp(1.5rem,5vw,2.2rem); font-weight: 800; color: var(--teal); }
.trust__num small { font-size: .55em; color: var(--gold); margin-left: 2px; }
.trust__label { font-size: .76rem; color: #c5cece; margin-top: 4px; letter-spacing: .08em; }

/* ---------- 7. コンセプト ---------- */
.concept { position: relative; }
.concept__grid {
  display: grid; gap: 40px; align-items: center;
  grid-template-columns: 1fr;
}
.concept__copy h2 {
  font-family: var(--serif); font-size: clamp(1.5rem,5vw,2.1rem);
  font-weight: 800; line-height: 1.6; margin-bottom: 20px;
}
.concept__copy h2 .mark {
  background: linear-gradient(transparent 65%, var(--gold-soft) 65%);
  padding: 0 .1em;
}
.concept__copy p { color: var(--ink-soft); margin-bottom: 16px; }
.concept__copy .sign { margin-top: 22px; font-family: var(--serif); color: var(--teal-dark); font-weight: 700; }
.concept__visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; box-shadow: var(--shadow-md);
  background:
    radial-gradient(80% 80% at 70% 20%, rgba(255,255,255,.25), transparent 60%),
    linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.concept__visual .badge-circle {
  width: 168px; height: 168px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: var(--teal-deep);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-lg);
}
.concept__visual .badge-circle b { font-family: var(--serif); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.concept__visual .badge-circle span { font-size: .72rem; letter-spacing: .1em; margin-top: 6px; display: block; color: var(--ink-soft); }

/* ---------- 8. 特徴（こだわり） ---------- */
.features__grid {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
.feature {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28,34,34,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-content: center; margin-bottom: 18px;
  background: var(--teal-pale); color: var(--teal-dark);
}
.feature__icon svg { width: 30px; height: 30px; }
.feature h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .92rem; }
.feature__no { font-family: var(--serif); color: var(--gold); font-weight: 800; font-size: .85rem; letter-spacing: .15em; }

/* ---------- 9. メニュー ---------- */
.menu__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
.menu-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(28,34,34,.05);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card__top {
  padding: 14px 18px; color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .08em;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(120deg, var(--teal), var(--teal-deep));
}
.menu-card--gold .menu-card__top { background: linear-gradient(120deg, var(--gold), #a3863f); }
.menu-card__body { padding: 22px 20px; flex: 1; }
.menu-card__body h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 800; margin-bottom: 6px; }
.menu-card__meta { font-size: .78rem; color: var(--ink-soft); margin-bottom: 12px; }
.menu-card__meta .time::before { content: "⏱ "; }
.menu-card__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 800; color: var(--teal-dark); }
.menu-card__price small { font-size: .6em; color: var(--ink-soft); font-weight: 500; margin-left: 3px; }
.menu-card__desc { font-size: .85rem; color: var(--ink-soft); margin-top: 10px; }
.menu__note { text-align: center; font-size: .8rem; color: var(--ink-soft); margin-top: 26px; }
.menu__more { text-align: center; margin-top: 34px; }

/* 料金表（menu.html 用） */
.pricelist { display: grid; gap: 14px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px dashed rgba(28,34,34,.16);
}
.price-row__name { font-weight: 700; }
.price-row__name span { display: block; font-weight: 400; font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.price-row__price { font-family: var(--serif); font-weight: 800; color: var(--teal-dark); white-space: nowrap; font-size: 1.1rem; }
.price-row__price small { font-size: .65em; color: var(--ink-soft); font-weight: 500; }

.menu-block { margin-bottom: 48px; }
.menu-block__title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.menu-block__title::before {
  content: ""; width: 6px; height: 26px; border-radius: 3px;
  background: linear-gradient(var(--teal), var(--gold));
}
.menu-block__note { color: var(--ink-soft); font-size: .85rem; margin-bottom: 18px; }

.menu-card-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 8px 24px; box-shadow: var(--shadow-sm); border: 1px solid rgba(28,34,34,.05);
}

/* プラン表（脱毛など） */
.plan-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.plan-table th, .plan-table td { padding: 12px 10px; text-align: center; border-bottom: 1px solid rgba(28,34,34,.1); }
.plan-table thead th { background: var(--teal-pale); color: var(--teal-dark); font-weight: 700; }
.plan-table td.name { text-align: left; font-weight: 700; }
.plan-table .yen { font-family: var(--serif); font-weight: 800; color: var(--teal-dark); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 10. スタッフ ---------- */
.staff__grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.staff-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(28,34,34,.05);
}
.staff-card__photo {
  height: 220px; display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  background: linear-gradient(150deg, var(--teal-pale), #d6efef);
}
.staff-card--b .staff-card__photo { background: linear-gradient(150deg, var(--gold-soft), #f3e9d2); }
.staff-card__avatar {
  width: 120px; height: 120px; border-radius: 50% 50% 8px 8px;
  background: #fff; margin-bottom: -1px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.staff-card__avatar svg { width: 76px; height: 76px; }
.staff-card__role {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: #fff; font-size: .7rem; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 999px;
}
.staff-card__body { padding: 24px 24px 28px; }
.staff-card__body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 800; }
.staff-card__body h3 small { font-size: .6em; color: var(--ink-soft); font-weight: 500; margin-left: 8px; letter-spacing: .05em; }
.staff-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 14px; }
.staff-card__tags span { font-size: .72rem; background: var(--teal-pale); color: var(--teal-dark); padding: 4px 10px; border-radius: 999px; }
.staff-card--b .staff-card__tags span { background: var(--gold-soft); color: #8a6f2f; }
.staff-card__body p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- 11. お客様の声 ---------- */
.voice__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.voice-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); position: relative; border: 1px solid rgba(28,34,34,.05);
}
.voice-card::before {
  content: "“"; position: absolute; top: 6px; left: 18px;
  font-family: var(--serif); font-size: 4rem; color: var(--teal-pale); line-height: 1; z-index: 0;
}
.voice-card__stars { color: var(--gold); letter-spacing: 2px; position: relative; z-index: 1; }
.voice-card__text { position: relative; z-index: 1; margin: 10px 0 14px; font-size: .92rem; }
.voice-card__who { font-size: .8rem; color: var(--ink-soft); }
.voice__cta { text-align: center; margin-top: 32px; }

/* ---------- 12. FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(28,34,34,.05);
}
.faq-q {
  width: 100%; text-align: left; display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px; font-weight: 700; font-size: .96rem;
}
.faq-q .q { color: var(--teal); font-family: var(--serif); font-weight: 800; flex: none; }
.faq-q .ico {
  margin-left: auto; flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s ease;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: ""; position: absolute; background: var(--teal); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .ico::before { width: 14px; height: 2px; }
.faq-q .ico::after  { width: 2px; height: 14px; transition: transform .3s ease; }
.faq-item.is-open .faq-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 22px 20px 56px; color: var(--ink-soft); font-size: .9rem; }

/* ---------- 13. アクセス ---------- */
.access__grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 15px 6px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(28,34,34,.12); font-size: .92rem; }
.info-table th { width: 6.5em; color: var(--teal-dark); font-weight: 700; white-space: nowrap; }
.info-table td .hours { font-family: var(--serif); font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.access__map {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  min-height: 300px; border: 0;
}
.access__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.access__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

/* ---------- 14. 予約CTA ---------- */
.cta { position: relative; overflow: hidden; text-align: center; color: #fff; }
.cta__bg { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--teal-deep), #0e3030 90%); }
.cta__bg::after { content: ""; position: absolute; inset: 0; opacity: .07;
  background: repeating-linear-gradient(45deg, #fff 0 14px, transparent 14px 40px); }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { font-family: var(--serif); font-size: clamp(1.6rem,5vw,2.4rem); font-weight: 800; line-height: 1.4; }
.cta p { margin: 18px auto 0; max-width: 32em; color: #d5e6e6; }
.cta__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__tel { margin-top: 26px; font-family: var(--serif); }
.cta__tel a { font-size: 1.7rem; font-weight: 800; color: #fff; }
.cta__tel small { display: block; font-size: .72rem; color: #bcd2d2; letter-spacing: .1em; margin-top: 4px; }

/* ---------- 15. フッター ---------- */
.footer { background: #121717; color: #c7d0d0; padding: 56px 0 110px; font-size: .88rem; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer__brand .logo__text b { color: #fff; }
.footer__brand .logo__text small { color: #9fb0b0; }
.footer__brand p { margin-top: 16px; color: #9fb0b0; font-size: .82rem; line-height: 1.9; }
.footer h4 { color: #fff; font-family: var(--serif); font-size: 1rem; margin-bottom: 14px; }
.footer__links li { margin-bottom: 9px; }
.footer__links a:hover { color: var(--teal); }
.footer__sns { display: flex; gap: 12px; margin-top: 6px; }
.footer__sns a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); transition: background .25s ease, transform .2s ease;
}
.footer__sns a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__sns svg { width: 20px; height: 20px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px;
  text-align: center; font-size: .76rem; color: #8a9999;
}
/* バーバーポール装飾ライン */
.barber-line { height: 5px; background: repeating-linear-gradient(45deg,
  var(--red) 0 12px, #fff 12px 24px, var(--blue) 24px 36px, #fff 36px 48px); }

/* ---------- 16. モバイル固定フッターバー ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: #fff; box-shadow: 0 -4px 18px rgba(0,0,0,.12);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: 9px 4px; font-size: .68rem; font-weight: 700; color: var(--ink);
}
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar a.is-tel  { color: var(--teal-dark); }
.mobile-bar a.is-line { color: var(--line-green); }
.mobile-bar a.is-book { background: var(--teal); color: #fff; }

/* ---------- 17. スクロール演出 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* パンくず（下層ページ用） */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 56px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(150deg, #0e2c2c, var(--teal-deep)); }
.page-hero__bg::after { content:""; position:absolute; inset:0; opacity:.06;
  background: repeating-linear-gradient(45deg,#fff 0 14px,transparent 14px 40px); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero .en { font-family: var(--serif); letter-spacing: .35em; color: var(--gold); font-size: .78rem; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(1.8rem,6vw,2.6rem); font-weight: 800; margin-top: 10px; }
.breadcrumb { font-size: .76rem; color: var(--ink-soft); padding: 16px 0; }
.breadcrumb a:hover { color: var(--teal-dark); }

/* ---------- 18. レスポンシブ ---------- */

/* タブレット以上 */
@media (min-width: 720px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid     { grid-template-columns: repeat(2, 1fr); }
  .staff__grid    { grid-template-columns: repeat(2, 1fr); }
  .voice__grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__grid   { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer { padding-bottom: 56px; }
}

/* PC */
@media (min-width: 960px) {
  .section { padding: 100px 0; }
  .concept__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .menu__grid     { grid-template-columns: repeat(3, 1fr); }
  .voice__grid    { grid-template-columns: repeat(3, 1fr); }
  .access__grid   { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
}

/* モバイルのみ（ハンバーガー & 固定バー） */
@media (max-width: 880px) {
  .hamburger { display: block; }
  /* 【重要修正 2026-06-06】スクロール後ヘッダーの backdrop-filter（すりガラス）が
     子要素の position:fixed メニューを閉じ込め、下部で開くと途切れる不具合の根治。
     スマホ幅ではすりガラスをやめ、不透明な白背景にする（PC表示は変更なし）。 */
  .header.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,.97);
  }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: #fff; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
    /* 固定ヘッダー分を上に空け、項目が多い時は内部スクロールで全部見えるように */
    padding: calc(var(--header-h) + 20px) 30px 32px;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a { color: var(--ink) !important; font-size: 1.05rem; padding: 14px 6px; border-bottom: 1px solid rgba(28,34,34,.08); }
  .nav > a::after { display: none; }
  .nav__cta { margin: 18px 0 0; }
  .nav__cta.btn { padding: 16px; }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 95; background: rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 0; }
}

/* 余白微調整（極小画面） */
@media (max-width: 400px) {
  .logo__mark { width: 30px; height: 30px; }
  .logo__text b { font-size: .98rem; }
  .logo__text small { font-size: .54rem; letter-spacing: .12em; }
}
@media (max-width: 380px) {
  .hero__actions .btn { width: 100%; }
}

/* =================================================================
   脱毛ページ用の写真スタイル（2026-06-07）
   ================================================================= */
/* 施術風景などの写真（角丸＋やわらかい影） */
.photo-figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--cream-2);
}
.photo-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-figure figcaption {
  font-size: .8rem; color: var(--ink-soft); padding: 10px 14px; background: #fff; text-align: center;
}

/* 施術風景：文章と写真の2カラム */
.datsumo-intro {
  display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center;
}
.datsumo-intro .photo-figure { max-height: 420px; }
.datsumo-intro h3 {
  font-family: var(--serif); font-size: clamp(1.3rem,4vw,1.8rem); font-weight: 800;
  line-height: 1.5; margin-bottom: 16px;
}
.datsumo-intro p { color: var(--ink-soft); margin-bottom: 14px; }

/* ビフォーアフター */
.ba-wrap { max-width: 760px; margin-inline: auto; }
.ba-figure { position: relative; }
.ba-figure .ba-labels {
  position: absolute; top: 14px; left: 0; right: 0; display: flex; justify-content: space-between;
  padding: 0 16px; pointer-events: none;
}
.ba-figure .ba-labels span {
  background: rgba(14,27,30,.82); color: #fff; font-size: .8rem; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-pill); letter-spacing: .06em;
}
.ba-figure .ba-labels .after { background: var(--neon-teal-d); color: #052523; }
.ba-note { text-align: center; font-size: .78rem; color: var(--ink-soft); margin-top: 14px; }

@media (min-width: 800px) {
  .datsumo-intro { grid-template-columns: 1.05fr .95fr; gap: 44px; }
  .datsumo-intro.reverse .photo-figure { order: -1; }
}

/* =================================================================
   ✨ マイクロアニメーション / マイクロインタラクション（2026-06-03）
   リッチな操作感を上品に。ダーク×ネオンの世界観に合わせ、
   光のスイープ・ホバーの反応・カウントアップ・進捗バー等を追加。
   ※やりすぎず、可読性と予約導線を最優先。
   ================================================================= */

/* (1) スクロール進捗バー（最上部のネオンライン） */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--neon-teal), var(--neon-lime));
  box-shadow: 0 0 10px rgba(45,224,208,.7);
  z-index: 200; transition: width .1s linear;
}

/* (2) ボタン共通：光沢スイープ＋押し込み */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-20deg); transition: left .6s ease; pointer-events: none;
}
.btn:hover::before { left: 140%; }
.btn:active { transform: translateY(1px) scale(.99); }

/* (3) カードのホバー反応（浮く＋枠が光る） */
.feature, .menu-card, .voice-card, .staff-card {
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.feature:hover, .menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(28,34,34,.14), 0 0 0 1.5px rgba(31,184,184,.35);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* (4) こだわりアイコンが跳ねて光る */
.feature__icon { transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease, color .3s ease; }
.feature:hover .feature__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.08);
  background: var(--teal); color: #fff;
  box-shadow: 0 8px 18px rgba(31,184,184,.4);
}

/* (5) 数字カウントアップ（JSが data-count を入れる。初期はちらつき防止） */
.is-counting { font-variant-numeric: tabular-nums; }

/* (6) ヒーローのマウス追従グロー（PCのみ・淡く） */
.hero--pop .hero__glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,224,208,.08), transparent 72%);
  transform: translate(-50%, -50%); left: 50%; top: 40%;
  pointer-events: none; z-index: 0; transition: left .25s ease, top .25s ease, opacity .4s ease;
  opacity: 0;
}
.hero--pop:hover .hero__glow { opacity: 1; }

/* (7) セクション見出しの下線がスッと伸びる */
.deco-line { width: 0; transition: width .8s cubic-bezier(.2,.7,.3,1) .15s; }
.section-head.is-visible .deco-line { width: 48px; }

/* (8) バッジの明滅はマット化のため停止（発光させない） */

/* (9) トップへ戻るボタン */
.to-top {
  position: fixed; right: 18px; bottom: 84px; z-index: 95;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(31,184,184,.4);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.9);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--teal-dark); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }
@media (min-width: 881px) { .to-top { bottom: 24px; } }

/* (10) スマホ固定バーのタップ反応 */
.mobile-bar a { transition: transform .15s ease, filter .2s ease; }
.mobile-bar a:active { transform: scale(.93); filter: brightness(1.1); }

/* (11) 電話・LINE等のリンクhoverを少し持ち上げ */
.access__actions .btn:hover, .cta__actions .btn:hover, .hero__actions .btn:hover { transform: translateY(-3px); }

/* (12) 画像・地図のふわっと拡大（ホバー） */
.access__map iframe { transition: transform .5s ease; }
.access__map:hover iframe { transform: scale(1.02); }

/* アニメーションを控える設定のユーザーに配慮 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero__scroll::after { animation: none; }
  .pop-blob, .pop-badge, .hero--pop .hero__badge { animation: none !important; }
  .btn::before { display: none; }
  .deco-line { width: 48px; transition: none; }
  .feature:hover, .menu-card:hover, .voice-card:hover, .staff-card:hover { transform: none; }
  .feature:hover .feature__icon { transform: none; }
  .access__map:hover iframe { transform: none; }
}

/* =================================================================
   ダーク×ネオン・スタイル（メンズ向け／2026-06-03 改訂）
   ジム・バーバーショップ風。濃いダーク背景にネオンのティールを主役、
   差し色は少量のオレンジ。ポップさは「勢い・コントラスト」で出す。
   ================================================================= */

/* ヒーロー背景をダークに（ネオンが映える） */
.hero.hero--pop { color: #EAF4F4; }
.hero--pop .hero__bg {
  background:
    radial-gradient(60% 50% at 14% 16%, rgba(45,224,208,.10), transparent 60%),
    radial-gradient(55% 50% at 88% 20%, rgba(255,122,61,.07), transparent 60%),
    radial-gradient(80% 70% at 80% 100%, rgba(45,224,208,.06), transparent 62%),
    linear-gradient(160deg, #0C1A1D 0%, #0E2226 55%, #0A1517 100%);
}
.hero--pop .hero__bg::after { /* 斜めストライプ（マット：ごく薄く） */
  opacity: .03;
  background: repeating-linear-gradient(45deg, var(--neon-teal) 0 14px, transparent 14px 46px);
}
/* 文字エリアは軽く暗く沈めてコントラスト確保（白文字をくっきり） */
.hero--pop .hero__inner {
  background: radial-gradient(120% 95% at 30% 45%, rgba(6,16,18,.55), rgba(6,16,18,.15) 70%, transparent 100%);
  border-radius: 32px;
  padding-top: 8px; padding-bottom: 8px;
}

/* 動く背景の光（マット：ぼかし強め・薄く・静かに） */
.pop-blob {
  position: absolute; border-radius: 50%; z-index: 0; filter: blur(34px);
  opacity: .14; animation: blobFloat 9s ease-in-out infinite;
}
.pop-blob.b1 { width: 150px; height: 150px; background: var(--neon-teal);   top: 14%; left: 7%; }
.pop-blob.b2 { width: 110px; height: 110px; background: var(--neon-orange); top: 22%; right: 10%; animation-delay: 1.2s; }
.pop-blob.b3 { width: 100px; height: 100px; background: var(--neon-teal);   bottom: 16%; left: 16%; animation-delay: 2.4s; }
@keyframes blobFloat { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }

/* バッジ（マット：発光なし・落ち着いた枠） */
.hero--pop .hero__badge {
  background: rgba(255,255,255,.06); color: #EAF4F4; border: 1px solid rgba(45,224,208,.55);
  border-radius: var(--radius-pill); font-weight: 700; letter-spacing: .04em;
  box-shadow: none; transform: none;
}
.hero--pop .hero__badge b { color: var(--neon-teal); }

/* 特大見出し（マット：発光を消し、軽い陰影で読みやすさだけ確保） */
.hero--pop h1 { color: #F4F8F8; text-shadow: 0 1px 2px rgba(0,0,0,.35); line-height: 1.25; }
.hero--pop h1 .accent { color: var(--neon-teal); text-shadow: none; }
.hero--pop h1 .hl {
  position: relative; display: inline-block; padding: 0 .08em; color: #fff; z-index: 0;
}
.hero--pop h1 .hl::after { /* マットな下線バー（光らせない・少し透過） */
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .24em;
  background: rgba(45,224,208,.55); z-index: -1; border-radius: 4px;
  box-shadow: none;
}
.hero--pop .hero__sub { color: #BFD2D2; font-weight: 500; }

/* ピル型ボタン（マット：発光なし・落ち着いたティール塗り） */
.btn--pop {
  background: var(--neon-teal-d); color: #052523; border-radius: var(--radius-pill);
  font-weight: 800; box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.btn--pop:hover { background: #10a99d; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.22); }
.btn--pop:active { transform: translateY(1px); }
/* もう一方は枠線のゴーストボタン */
.btn--pop-line {
  background: transparent; color: #EAF4F4; border: 1.5px solid rgba(234,244,244,.45);
  border-radius: var(--radius-pill); font-weight: 800;
}
.btn--pop-line:hover { transform: translateY(-2px); border-color: var(--neon-teal); color: var(--neon-teal); }

/* 数字カード（マット：内側の光をやめ、落ち着いた縁取り） */
.pop-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 34px; max-width: 470px;
}
.pop-stat {
  border-radius: 16px; padding: 16px 8px; text-align: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  box-shadow: none; transform: none;
}
.pop-stat b { font-family: var(--serif); font-size: 1.8rem; font-weight: 800; line-height: 1; display: block; }
.pop-stat span { font-size: .68rem; font-weight: 700; margin-top: 6px; display: block; letter-spacing: .04em; color: #AFC6C6; }
.pop-stat.s1 b { color: var(--neon-teal); }
.pop-stat.s2 b { color: #A9D65C; }
.pop-stat.s3 b { color: var(--neon-orange); }

/* ダークなヒーローなので、未スクロール時のヘッダー文字は白のまま（既定どおり）。
   念のため確実に白＆視認性を確保 */
.has-pop-hero .header:not(.scrolled) .logo__text b,
.has-pop-hero .header:not(.scrolled) .logo__text small,
.has-pop-hero .header:not(.scrolled) .nav > a { color: #fff; }
.has-pop-hero .header:not(.scrolled) .hamburger span { background: #fff; }
.hero--pop .hero__scroll { color: rgba(234,244,244,.8); }
.hero--pop .hero__scroll::after { background: linear-gradient(rgba(234,244,244,.8), transparent); }

@media (max-width: 480px) {
  .pop-stat b { font-size: 1.4rem; }
  .pop-stat span { font-size: .6rem; }
}
