/* ============================================================
   おしゃれ脱毛 by LARANJE LUXE ─ HP たたき台 スタイルシート
   ============================================================ */

:root {
  --ink: #262422;
  --ink-deep: #2b2b2b;
  --ink-muted: #6b655d;
  --paper: #fbfaf7;
  --paper-soft: #f3efe7;
  --paper-on-ink: #f2eee5;
  --sand: #a9825f;
  --sand-deep: #8a6a3b;
  --sand-pale: #efe6d8;
  --line: #ddd4c6;
  --line-on-ink: #4a4744;

  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  --container: 1120px;
  --measure: 640px;
  --section-pad: clamp(64px, 9vw, 112px);

  --cta-bar-h: 68px;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-serif); font-weight: 600; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------- layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.measure {
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
}
.section {
  padding: var(--section-pad) 0;
}
.section-head {
  margin-bottom: clamp(28px, 5vw, 44px);
}
.section-head .kicker {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: var(--sand-deep);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.section-head h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.rule {
  width: 44px;
  height: 2px;
  background: var(--sand);
  border: 0;
  margin: 18px 0 0;
}
.rule--ink { background: var(--ink-deep); }

/* ---------- provisional tags ---------- */
.tag {
  display: inline-block;
  border: 1px dashed var(--sand);
  background: var(--sand-pale);
  color: var(--sand-deep);
  font-family: var(--font-sans);
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0.5em;
  border-radius: 2px;
  white-space: normal;
}
.tag-banner {
  display: block;
  border: 1px dashed var(--sand);
  background: var(--sand-pale);
  color: var(--sand-deep);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ---------- buttons ---------- */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 560px) {
  .cta-group { flex-direction: row; flex-wrap: wrap; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid var(--ink-deep);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}
.btn--primary {
  background: var(--ink-deep);
  color: var(--paper-on-ink);
}
.btn--primary:hover { background: var(--ink); }
.btn--outline {
  background: transparent;
  color: var(--ink-deep);
}
.btn--outline:hover { background: var(--ink-deep); color: var(--paper-on-ink); }
.btn--on-dark.btn--primary {
  background: var(--paper-on-ink);
  color: var(--ink-deep);
  border-color: var(--paper-on-ink);
}
.btn--on-dark.btn--primary:hover { background: var(--paper); }
.btn--on-dark.btn--outline {
  background: transparent;
  color: var(--paper-on-ink);
  border-color: var(--line-on-ink);
}
.btn--on-dark.btn--outline:hover {
  background: var(--paper-on-ink);
  color: var(--ink-deep);
  border-color: var(--paper-on-ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
}
.text-link:hover { border-color: var(--ink-deep); }
.section-link {
  margin-top: clamp(28px, 5vw, 40px);
}

/* ---------- media placeholders ---------- */
.ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--sand-pale);
  display: block;
}

/* ============================================================
   S01 ファーストビュー
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .hero { flex-direction: row; min-height: 100vh; }
}
.hero__media {
  position: relative;
  height: clamp(200px, 36vh, 320px);
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .hero__media { height: auto; width: 53%; }
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 42%;
  background-color: var(--ink-deep);
}
.hero__brand {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--paper-on-ink);
  line-height: 1.5;
}
.hero__brand .brand-jp {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero__brand .brand-en {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--paper-on-ink);
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero__panel {
  background: var(--ink-deep);
  color: var(--paper-on-ink);
  padding: 30px 24px clamp(28px, 6vw, 44px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 960px) {
  .hero__panel { padding: 40px 44px; }
}
.hero__catch {
  font-size: clamp(1.65rem, 6.6vw, 2.5rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.hero__sub {
  margin-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--paper-on-ink);
  opacity: 0.88;
  max-width: 30em;
}
.hero .cta-group { margin-top: 26px; }

/* ============================================================
   S02 導入
   ============================================================ */
.intro {
  background: var(--paper);
}
.intro__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.6vw, 1.6rem);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 2px solid var(--sand);
}
.intro__body {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 2;
  color: var(--ink);
}
.intro__body p { margin-bottom: 1.5em; }
.intro__body p:last-child { margin-bottom: 0; }

/* ============================================================
   S03 / S04  WOMEN / MEN
   ============================================================ */
.gender-section .layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 900px) {
  .gender-section .layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .gender-section--men .layout { flex-direction: row-reverse; }
}
.gender-section .layout__media { flex: 0 0 auto; }
.gender-section .layout__body { flex: 1 1 auto; min-width: 0; }
@media (min-width: 900px) {
  .gender-section .layout__media { width: 42%; }
}

.gender-section--women {
  background: var(--paper);
}
.gender-section--women .layout__media .frame {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--sand);
  padding: 10px;
  background: var(--paper-soft);
}
.gender-section--women .layout__media img {
  width: 100%; height: 100%; border-radius: 6px;
}

.gender-section--men {
  background: var(--paper);
}
.gender-section--men .layout__media .frame {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
}
.gender-section--men .layout__media img {
  width: 100%; height: 100%;
}
.gender-section--men .layout__media .frame::before,
.gender-section--men .layout__media .frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink-deep);
  pointer-events: none;
}
.gender-section--men .layout__media .frame::before {
  top: -8px; left: -8px; border-right: 0; border-bottom: 0;
}
.gender-section--men .layout__media .frame::after {
  bottom: -8px; right: -8px; border-left: 0; border-top: 0;
}

.gender-section .lead {
  font-size: 1.0625rem;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 8px;
}

.menu-list {
  margin-top: 32px;
}
.menu-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.menu-item:first-child { border-top: none; padding-top: 6px; }
.menu-item__parts {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.menu-item h3 {
  font-size: clamp(1.0625rem, 2.6vw, 1.1875rem);
  margin-bottom: 14px;
}
.gender-section--women .menu-item h3 { border-left: 3px solid var(--sand); padding-left: 12px; }
.gender-section--men .menu-item h3 { border-left: 3px solid var(--ink-deep); padding-left: 12px; }

.menu-item__block { margin-bottom: 14px; }
.menu-item__block:last-of-type { margin-bottom: 0; }
.menu-item__block-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--sand-deep);
  margin-bottom: 6px;
}
.gender-section--men .menu-item__block-label { color: var(--ink-muted); }
.menu-item__block ul { padding-left: 1.1em; }
.menu-item__block li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 0.9375rem;
}
.menu-item__block p {
  font-size: 0.9375rem;
  line-height: 1.9;
}
.menu-item__meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dotted var(--line);
}
.menu-item__meta strong {
  color: var(--ink);
  font-weight: 700;
}

.menu-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.menu-item__intro {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

.callout {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  border-radius: 4px;
  font-size: 0.9375rem;
  line-height: 1.9;
}
.callout p { margin-bottom: 0.6em; }
.callout p:last-child { margin-bottom: 0; }

/* ============================================================
   S05 4つの理由
   ============================================================ */
.reasons {
  background: var(--paper-soft);
}
.reasons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: clamp(28px, 5vw, 44px);
}
@media (min-width: 640px) {
  .reasons__grid { grid-template-columns: 1fr 1fr; gap: 44px 40px; }
}
.reason .frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.reason .frame img { width: 100%; height: 100%; }
.reason h3 {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.reason p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--ink);
}

/* ============================================================
   S06 ビフォーアフター枠
   ============================================================ */
.before-after { background: var(--paper); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(28px, 5vw, 40px);
}
@media (min-width: 860px) {
  .ba-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.ba-frame {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--paper);
}
.ba-frame__box {
  aspect-ratio: 3 / 4;
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--paper-soft) 0px, var(--paper-soft) 10px, var(--paper) 10px, var(--paper) 20px);
  border: 1px solid var(--line);
}
.ba-frame__box::before,
.ba-frame__box::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--sand);
  transform: translate(-50%, -50%);
}
.ba-frame__box::before { width: 22px; height: 1px; }
.ba-frame__box::after { width: 1px; height: 22px; }
.ba-frame__label {
  margin-top: 10px;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--ink-muted);
  text-align: center;
}
.ba-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* 店舗確定待ちで、公開前に一括非表示にしたい区画に付ける印 */
.pending-block {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px dashed var(--sand);
  background: var(--sand-pale);
  border-radius: 4px;
}
.pending-block__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sand-deep);
  margin-bottom: 10px;
}
.pending-block ul { margin: 0; }
.pending-block li {
  list-style: disc;
  margin-left: 1.2em;
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 6px;
}
.pending-block li:last-child { margin-bottom: 0; }

/* 本公開前チェック用: コメントを外すと [data-pending] 要素を一括非表示にできる
[data-pending] { display: none !important; }
*/

/* ============================================================
   S07 施術の流れ
   ============================================================ */
.flow { background: var(--paper-soft); }
.flow-list {
  margin-top: clamp(28px, 5vw, 40px);
  max-width: var(--measure);
}
.flow-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 18px;
  position: relative;
  padding-bottom: 34px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink-deep);
  color: var(--paper-on-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  z-index: 1;
}
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 17px;
  width: 1px;
  bottom: 0;
  background: var(--line);
}
.flow-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  padding-top: 5px;
}
.flow-item p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--ink);
}
.flow-item p + p { margin-top: 0.6em; }
.flow-note {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: var(--measure);
}

/* ============================================================
   S08 料金
   ============================================================ */
.pricing { background: var(--paper); }
.pricing__lead { margin-bottom: 30px; font-size: 0.9375rem; line-height: 1.9; }
/* 列数が増えても(3列/4列とも)読みやすい上限幅 */
.pricing-table-wrap { margin-bottom: 40px; max-width: 880px; }
.pricing-table-wrap h3 {
  font-size: 1.0625rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink-deep);
}
.pricing-table {
  width: 100%;
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 14px 12px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pricing-table thead th {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--ink-deep);
}
.pricing-table td:first-child { font-weight: 700; }

@media (max-width: 640px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block; width: 100%;
  }
  .pricing-table tr {
    border-bottom: 1px solid var(--ink-deep);
    padding: 14px 0;
  }
  .pricing-table td {
    border-bottom: none;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .pricing-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    color: var(--ink-muted);
    font-weight: 400;
    flex-shrink: 0;
  }
  .pricing-table td:first-child::before { content: ""; }
  .pricing-table td:first-child { font-weight: 700; justify-content: flex-start; }
}

.pricing__total {
  font-size: 0.9375rem;
  line-height: 1.9;
  padding: 22px;
  background: var(--paper-soft);
  border-radius: 4px;
  margin-bottom: 32px;
}
.pricing__total p + p { margin-top: 0.9em; }
.pricing__notes {
  margin-bottom: 28px;
}
.pricing__notes li {
  list-style: disc;
  margin-left: 1.2em;
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 6px;
}
.pricing__legal {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: var(--ink-muted);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 24px 0 8px;
}

/* ============================================================
   S09 FAQ
   ============================================================ */
.faq { background: var(--paper-soft); }
.faq-list { margin-top: clamp(28px, 5vw, 40px); max-width: var(--measure); }
.faq-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.faq-item:first-child { border-top: none; padding-top: 6px; }
.faq-item__q {
  display: flex;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.03125rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.faq-item__q .mark {
  flex-shrink: 0;
  color: var(--sand-deep);
}
.faq-item__a {
  display: flex;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--ink);
}
.faq-item__a .mark {
  flex-shrink: 0;
  color: var(--ink-muted);
}
.faq-item__a p { margin-bottom: 0.5em; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ============================================================
   S10 店舗情報
   ============================================================ */
.shop { background: var(--paper); }
.shop__staff {
  margin-bottom: clamp(32px, 5vw, 48px);
  font-size: 0.9375rem;
  line-height: 1.9;
  max-width: var(--measure);
}
.shop__staff p { margin-bottom: 0.6em; }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
.shop-col .frame {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.shop-col .frame img { width: 100%; height: 100%; }
.shop-col .map-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.shop-col .map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.shop-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  margin-bottom: 4px;
}
.shop-detail { font-size: 0.9375rem; line-height: 1.9; }
.shop-detail dt {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-top: 14px;
}
.shop-detail dt:first-child { margin-top: 18px; }
.shop-detail dd { margin: 2px 0 0; }
.hours-table { margin-top: 18px; }
.hours-table td { padding: 4px 0; font-size: 0.9375rem; border: 0; }
.hours-table td:first-child { color: var(--ink-muted); width: 40%; }

/* ============================================================
   S11 最終CTA
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--ink-deep);
  color: var(--paper-on-ink);
  text-align: center;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 65%;
  opacity: 0.5;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,43,43,.92), rgba(43,43,43,.88));
}
.final-cta .container {
  position: relative;
  z-index: 1;
}
.final-cta .measure { margin-left: auto; margin-right: auto; }
.final-cta h2 {
  font-size: clamp(1.5rem, 4.4vw, 2.1875rem);
  line-height: 1.65;
  color: var(--paper-on-ink);
}
.final-cta__body {
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 1.95;
  color: var(--paper-on-ink);
  opacity: 0.88;
}
.final-cta__body p { margin-bottom: 1.2em; }
.final-cta__body p:last-child { margin-bottom: 0; }
.final-cta .cta-group {
  flex-direction: column;
  align-items: stretch;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .cta-group .btn { width: 100%; }

/* ============================================================
   S12 フッター
   ============================================================ */
.site-footer {
  background: var(--ink-deep);
  color: var(--paper-on-ink);
  padding: 48px 0 calc(40px + var(--cta-bar-h));
  border-top: 1px solid var(--line-on-ink);
}
@media (min-width: 960px) {
  .site-footer { padding-bottom: 48px; }
}
.site-footer .brand-jp {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  display: block;
  margin-bottom: 2px;
}
.site-footer .brand-en {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
  display: block;
  margin-bottom: 24px;
}
.footer-group__label { font-size: 0.8125rem; color: var(--paper-on-ink); opacity: 0.7; }
.footer-links {
  margin: 6px 0 28px;
}
.footer-links li { font-size: 0.9375rem; margin-bottom: 4px; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-disclaimer {
  border-top: 1px solid var(--line-on-ink);
  padding-top: 20px;
  margin-top: 8px;
}
.footer-disclaimer li {
  font-size: 0.75rem;
  line-height: 1.85;
  color: var(--paper-on-ink);
  opacity: 0.75;
  margin-bottom: 4px;
  padding-left: 1em;
  text-indent: -1em;
}

/* ============================================================
   モバイル固定CTAバー
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(38,36,34,0.08);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  z-index: 40;
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn {
  flex: 1 1 0;
  min-height: var(--cta-bar-h);
  min-height: 48px;
  padding: 0 12px;
  font-size: 0.875rem;
}
@media (min-width: 960px) {
  .mobile-cta-bar { display: none; }
}

/* 見出しの単語単位の折り返し（「脱毛す／る。」の孤立防止） */
.nowrap { white-space: nowrap; }
