@charset "UTF-8";

/* ============================================================
   訪問 爪のトータルケア – スタイル
   ------------------------------------------------------------
   設計方針（第1回レビューの指摘を反映）
   ・白基調＋広い余白。飾りではなく「余白と文字の大きさ」で品を出す
   ・本文は 18px（スマートフォンでも 17px 以上）／行間 1.9
   ・装飾のイラスト・アイコンは一切描かない（画像は差し込み枠のみ）
   ・Webフォントは読み込まない（file:// でも確実に表示するため）
   ============================================================ */

/* ---------- 配色・寸法の定義 ---------- */
:root {
  --c-bg: #ffffff;
  --c-bg-alt: #fbf8f3;        /* 極薄クリーム（交互の背景） */
  --c-tint: #eef4fa;          /* 淡い青の面（施設セクション） */
  --c-text: #4a3b2e;          /* こげ茶（真っ黒を避ける） */
  --c-text-soft: #6d5c4c;
  --c-main: #5b9bd5;          /* 屋号の青 */
  --c-main-deep: #2f7bc0;     /* ボタン専用の濃い青 */
  --c-main-pale: #dbe9f6;
  --c-line: #e7ded2;
  --c-line-strong: #cfc2b1;

  --fs-body: 18px;
  --lh-body: 1.9;

  --maxw: 1080px;
  --pad-x: 24px;

  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  /* 丸ゴシック系 → 無ければ標準ゴシックへ（Webフォントは読み込まない） */
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro",
    "BIZ UDPGothic", "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "Meiryo", sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: var(--c-main-deep);
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ---------- 共通レイアウト ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: 104px 0;
}

.section--alt {
  background: var(--c-bg-alt);
}

.section--tint {
  background: var(--c-tint);
}

.section__title {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

/* 見出し下の短い罫線（画像ではなく罫線1本だけ） */
.section__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--c-main);
  border-radius: 2px;
}

.section__lead {
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 2;
  color: var(--c-text-soft);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ---------- 屋号ロゴ ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  line-height: 1.3;
}

.logo__badge {
  background: var(--c-main);
  color: #fff;
  border-radius: 0.45em;
  padding: 0.16em 0.5em;
  font-size: 0.62em;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.logo__name {
  white-space: nowrap;
}

.logo--sm {
  font-size: 22px;
}

.logo--lg {
  font-size: clamp(34px, 7.2vw, 60px);
  margin-bottom: 28px;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--c-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  font-size: 17px;
  color: var(--c-text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--c-main-deep);
  border-bottom-color: var(--c-main);
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 20px 40px;
  font-size: 19px;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.15s ease;
}

.btn:hover,
.btn:focus {
  opacity: 0.86;
}

.btn--primary {
  background: var(--c-main-deep);
  color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--c-main-deep);
  border: 2px solid var(--c-main-deep);
}

.btn--xl {
  font-size: clamp(19px, 2.5vw, 22px);
  padding: 22px 46px;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ---------- 画像の差し込み枠（イラスト・写真共通） ---------- */
/* 画像が無い間は薄いグレー枠に案内文を出す（onerror でフォールバック） */
.frame {
  position: relative;
  background: #f4f2ef;
  border: 2px dashed var(--c-line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.frame__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 18px;
  text-align: center;
  color: #7c7267;
}

.frame__ph-main {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.frame__ph-file {
  font-size: 16px;
  line-height: 1.6;
  color: #8b8177;
  word-break: break-all;
}

.frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 画像が入ったら枠線と背景を消す */
.frame.is-loaded {
  background: none;
  border: 1px solid var(--c-line);
  min-height: 0;
}

/* ---------- 1. ヒーロー ---------- */
.hero {
  padding: 84px 0 96px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__catch {
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 40px;
}

.hero__visual .frame {
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

/* サービスの3本柱 */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.pillar {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
}

.pillar__label {
  display: block;
  font-size: clamp(21px, 2.8vw, 25px);
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar__desc {
  display: block;
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-text-soft);
}

/* ---------- 2. お悩み ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 900px;
  margin: 0 auto 72px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  border: 1px solid var(--c-line);
}

.checklist li {
  position: relative;
  padding-left: 42px;
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 1.8;
}

/* チェック印は記号文字（イラストは描かない） */
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-main);
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
}

.worry-list {
  display: grid;
  gap: 40px;
}

.worry {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.worry .frame {
  aspect-ratio: 4 / 3;
}

.worry__title {
  font-size: clamp(23px, 3.2vw, 29px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-main-pale);
}

.worry__row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.worry__row:last-child {
  margin-bottom: 0;
}

.worry__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-main-deep);
  background: var(--c-main-pale);
  border-radius: 999px;
  padding: 4px 14px;
  text-align: center;
  align-self: start;
  line-height: 1.7;
}

.worry__text {
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.95;
}

.callout {
  max-width: 900px;
  margin: 56px auto 0;
  padding: 28px 32px;
  border-radius: var(--radius);
  font-size: 17px;
  line-height: 1.9;
}

.callout--soft {
  background: #fff;
  border: 1px solid var(--c-line);
  color: var(--c-text-soft);
}

/* ---------- 3. 施術前・施術後 ---------- */
.ba-list {
  display: grid;
  gap: 72px;
}

.ba-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.ba-card__title {
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ba-item__label {
  display: block;
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 700;
  color: #fff;
  background: var(--c-text-soft);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 12px 20px;
  text-align: center;
}

.ba-item--after .ba-item__label {
  background: var(--c-main-deep);
}

.ba-item .frame {
  border-radius: 0 0 var(--radius) var(--radius);
  aspect-ratio: 4 / 3;
}

.ba-card__desc {
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.95;
  margin-top: 26px;
}

/* 注意書き（文例1）は必ず各組の直下に表示する */
.ba-card__note {
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-text-soft);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}

/* ---------- 4. 料金表（ページ最大の見せ場） ---------- */
.price-table {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.price-table th,
.price-table td {
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--c-line);
}

.price-table thead th {
  background: var(--c-main);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 26px;
  border-bottom: none;
}

.price-table tbody td {
  padding: 30px 26px;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table__name {
  width: 38%;
  font-size: clamp(18px, 2.3vw, 21px);
  font-weight: 700;
  line-height: 1.7;
}

.price-table__price {
  width: 27%;
}

.price-table__note {
  font-size: 17px;
  line-height: 1.85;
  color: var(--c-text-soft);
}

/* 価格は大きく・途中で改行させない */
.price-value {
  display: block;
  font-size: clamp(21px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--c-main-deep);
  white-space: nowrap;
  line-height: 1.4;
}

.price-sub {
  display: block;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text-soft);
  margin-top: 4px;
}

.price-badge {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--c-main-deep);
  border-radius: 999px;
  padding: 2px 14px;
  margin: 0 10px 10px 0;
}

.price-table tbody tr.is-highlight {
  background: #fff8ee;
}

/* 分割相談OKの枠（大きく明記） */
.split-note {
  margin-top: 48px;
  background: #fff;
  border: 3px solid var(--c-main);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  text-align: center;
}

.split-note__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--c-main-deep);
  margin-bottom: 16px;
}

.split-note__body {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 2;
}

/* ---------- 5. 所要時間 ---------- */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.duration-card {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
}

.duration-card__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-soft);
  margin-bottom: 12px;
}

.duration-card__value {
  font-size: clamp(30px, 4.4vw, 40px);
  font-weight: 700;
  color: var(--c-main-deep);
  line-height: 1.4;
  white-space: nowrap;
  margin-bottom: 18px;
}

.duration-card__desc {
  font-size: 17px;
  line-height: 1.9;
  text-align: left;
}

/* ---------- 6. 施術の流れ ---------- */
.flow-list {
  display: grid;
  gap: 32px;
  counter-reset: flow;
}

.flow-step {
  display: grid;
  grid-template-columns: 92px 260px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.flow-step__num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--c-main);
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 84px;
  text-align: center;
}

.flow-step .frame {
  aspect-ratio: 4 / 3;
  min-height: 150px;
}

.flow-step__title {
  font-size: clamp(21px, 2.9vw, 26px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.flow-step__desc {
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.95;
  color: var(--c-text-soft);
}

/* ---------- 7. 施術者 ---------- */
.staff {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.staff .frame {
  aspect-ratio: 1 / 1;
}

.staff__title {
  font-size: 18px;
  color: var(--c-text-soft);
  margin-bottom: 6px;
}

.staff__name {
  font-size: clamp(26px, 3.6vw, 33px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
}

.staff__msg {
  font-size: clamp(17px, 2vw, 18px);
  line-height: 2;
  margin-bottom: 18px;
}

.quals {
  display: grid;
  gap: 14px;
  margin: 32px 0 24px;
}

.qual {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 18px 24px 18px 62px;
  font-size: clamp(18px, 2.3vw, 21px);
  font-weight: 700;
  line-height: 1.6;
}

.qual::before {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-main);
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.staff__hygiene {
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
}

/* ---------- 8. 対応エリア ---------- */
.area-box {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--c-main);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
}

.area-box__main {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 700;
  color: var(--c-main-deep);
  line-height: 1.5;
  margin-bottom: 20px;
}

.area-box__sub {
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.9;
  margin-bottom: 24px;
}

.area-box__note {
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
  text-align: left;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 22px 26px;
}

/* ---------- 9. 施設・事業者の方へ ---------- */
.facility {
  max-width: 900px;
  margin: 0 auto;
}

.facility__body p {
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 2;
  margin-bottom: 18px;
}

.facility__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 24px;
}

.facility__note {
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
}

/* ---------- 10. お問い合わせ ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
}

.contact-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.contact-card--main {
  border: 3px solid var(--c-main);
  background: #fff;
}

.contact-card__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-soft);
  margin-bottom: 14px;
}

.contact-card__value {
  /* メールアドレスが1行に収まる大きさ（長い場合のみ折り返す） */
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--c-main-deep);
  line-height: 1.6;
  overflow-wrap: anywhere;
  margin-bottom: 18px;
}

.contact-card__note {
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
  text-align: left;
  margin-bottom: 26px;
  flex: 1 1 auto;
}

.contact-hours {
  max-width: 940px;
  margin: 36px auto 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
  text-align: center;
}

/* ---------- 11-12. 準備中の枠 ---------- */
.pending {
  max-width: 820px;
  margin: 0 auto;
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 1.9;
  color: var(--c-text-soft);
}

.section--alt .pending {
  background: #fff;
  border: 1px solid var(--c-line);
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  padding: 56px 0 72px;
}

.site-footer__name {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.site-footer__note {
  max-width: 860px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--c-text-soft);
}

/* ---------- 画面下の固定バー（スマートフォンのみ） ---------- */
.sticky-bar {
  display: none;
}

/* ============================================================
   タブレット（〜900px）
   ============================================================ */
@media (max-width: 900px) {
  /* スマホでもメニューを残す（横スクロールする丸タブ形式）。
     施設・事業者の方がすぐ選べるようにするため、非表示にはしない。 */
  .site-header__inner {
    flex-wrap: wrap;
    row-gap: 10px;
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-nav {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 16px;
    padding: 8px 14px;
    white-space: nowrap;
    border: 1px solid var(--c-main);
    border-radius: 999px;
    background: #fff;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .worry {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-step {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "num  title"
      "img  img";
    gap: 20px 24px;
    align-items: center;
  }

  .flow-step__num {
    grid-area: num;
    width: 68px;
    height: 68px;
    font-size: 30px;
    line-height: 68px;
  }

  .flow-step__media {
    grid-area: img;
  }

  .flow-step__body {
    grid-area: title;
  }

  .staff {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .staff .frame {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================================
   スマートフォン（〜700px）
   ・文字は小さくしない（本文17px以上を維持）
   ・横スクロールを出さない
   ============================================================ */
@media (max-width: 700px) {
  :root {
    --fs-body: 17px;
    --pad-x: 18px;
  }

  body {
    /* 画面下の固定バーのぶんを空ける */
    padding-bottom: 84px;
  }

  .section {
    padding: 64px 0;
  }

  .section__lead {
    margin-bottom: 40px;
    text-align: left;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .pillar {
    padding: 24px 20px;
  }

  .checklist {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    margin-bottom: 48px;
  }

  .checklist li {
    padding-left: 38px;
  }

  .worry {
    padding: 26px 22px;
  }

  .worry__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .worry__label {
    justify-self: start;
    padding: 3px 16px;
  }

  .callout {
    padding: 22px 20px;
  }

  .ba-list {
    gap: 44px;
  }

  .ba-card {
    padding: 26px 20px;
  }

  /* 施術前／施術後は縦に並べる */
  .ba-pair {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* 料金表：横スクロールを避けるため、1行を1つのカードに組み替える */
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table {
    border: none;
    background: none;
  }

  .price-table tr {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px 20px;
    margin-bottom: 16px;
  }

  .price-table tr.is-highlight {
    border: 3px solid var(--c-main);
  }

  /* 「.price-table tbody td」で指定しないと、パソコン用の余白が勝ってしまう */
  .price-table tbody td {
    border-bottom: none;
    padding: 0;
  }

  .price-table__name {
    margin-bottom: 12px;
  }

  .price-table__price {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--c-line) !important;
  }

  .split-note {
    padding: 30px 22px;
  }

  .duration-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .duration-card {
    padding: 30px 24px;
  }

  .flow-step {
    padding: 24px 20px;
  }

  .facility__btns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .area-box {
    padding: 34px 22px;
  }

  .area-box__note {
    padding: 18px 18px;
  }

  .pending {
    padding: 30px 22px;
  }

  .btn {
    padding: 18px 24px;
    width: 100%;
  }

  /* 画面下の固定バー */
  .sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--c-line);
  }

  .sticky-bar__btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 999px;
    padding: 14px 10px;
    line-height: 1.4;
  }

  .sticky-bar__btn--tel {
    background: #fff;
    color: var(--c-main-deep);
    border: 2px solid var(--c-main-deep);
  }

  .sticky-bar__btn--mail {
    background: var(--c-main-deep);
    color: #fff;
  }
}

/* 画面がとても狭い場合（〜360px）でも文字は小さくしない */
@media (max-width: 360px) {
  :root {
    --pad-x: 14px;
  }
}

/* 印刷時は固定バーを隠す */
@media print {
  .sticky-bar,
  .site-header {
    display: none;
  }
}
