@charset "UTF-8";
/* ============================================================================
   みなも治療院（ハッキリ訴求版サンプル）スタイルシート
   ----------------------------------------------------------------------------
   デザインの型：Notion「ホームページデザイン」の【整体（トリケラトプス）】
   配色テーマ：「碧の水面」（院名みなも＝水面のイメージ）
   ・白背景に朱（CTA・強調）と青緑（信頼・見出し）をはっきり効かせる
   ・ファーストビューに 悩み／専門性／初回オファー／予約CTA を集める
   ・CTAは画面下部に固定して、長いページでもすぐ予約に戻れるようにする
   ▼色を変えたいときは、下の変数だけ変えれば全体が変わります
   ========================================================================== */
:root {
  --color-bg:        #FFFFFF;  /* 地の白 */
  --color-cream:     #EAF2F0;  /* 淡い水色。セクション背景 */
  --color-red:       #C0521F;  /* 朱色。CTA・初回オファー・強調（白文字とのコントラスト比4.7を確保） */
  --color-red-dk:    #A84517;  /* 朱色の濃色（押したとき） */
  --color-blue:      #1E5A5A;  /* 深い青緑。見出し・信頼感 */
  --color-blue-dk:   #16403F;  /* 青緑の濃色。フッター背景 */
  --color-text:      #222222;
  --color-text-sub:  #555555;
  --color-border:    #D9E3E0;

  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-ud:   "BIZ UDPGothic", "Noto Sans JP", sans-serif;

  --width-content: 1000px;
  --width-narrow:  720px;
  --space-section: 56px;
  --tel-fixed-h: 64px;       /* 追従ボタンの高さぶん、下に余白を取る */
}

/* ---- リセット・基本 ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  padding-bottom: var(--tel-fixed-h); /* 追従ボタンで最下部が隠れないように */
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--color-blue); }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
s { color: var(--color-text-sub); font-weight: 400; }

.container { max-width: var(--width-content); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: var(--width-narrow); }
.section { padding: var(--space-section) 0; }
.section--pale { background: var(--color-cream); }
.pc-only { display: none; }
.sp-only { display: inline; }
.note { font-size: 13px; color: var(--color-text-sub); margin-top: 16px; text-align: center; }

/* ---- 見出し ---- */
.section-title {
  font-family: var(--font-ud);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 32px;
}
.section-title em { font-style: normal; color: var(--color-red); }

/* ============================================================
   ヘッダー
   ============================================================ */
.header { background: #fff; border-bottom: 3px solid var(--color-blue); }
.header__inner {
  max-width: var(--width-content); margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.header__logo { text-decoration: none; color: var(--color-text); }
.header__logo-text { display: block; font-family: var(--font-ud); font-weight: 700; font-size: 20px; line-height: 1.2; }
.header__logo-sub { display: block; font-size: 11px; color: var(--color-text-sub); }
.header__tel { text-decoration: none; text-align: right; color: var(--color-text); }
.header__tel-num {
  display: block; font-family: var(--font-ud); font-weight: 700;
  font-size: 18px; line-height: 1.2; color: var(--color-blue);
}
.header__tel-time { display: block; font-size: 10px; color: var(--color-text-sub); }

/* ============================================================
   ファーストビュー
   ============================================================ */
.hero { background: var(--color-cream); padding: 32px 0 40px; }
.hero__inner { max-width: var(--width-content); margin: 0 auto; padding: 0 20px; }
.hero__area {
  display: inline-block; background: var(--color-blue); color: #fff;
  font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.hero__catch {
  font-family: var(--font-ud); font-weight: 700;
  font-size: 32px; line-height: 1.35; letter-spacing: 0.02em;
}
.hero__catch .line { display: block; }
.hero__catch em { font-style: normal; color: var(--color-red); }
.hero__sub { margin-top: 14px; font-size: 15px; }
.hero__sub strong { color: var(--color-blue); }

.hero__badges { display: flex; gap: 8px; margin-top: 18px; }
.hero__badges li {
  flex: 1; background: #fff; border: 2px solid var(--color-blue);
  color: var(--color-blue); font-weight: 700; font-size: 12px; line-height: 1.4;
  text-align: center; padding: 10px 4px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero__figure { margin-top: 24px; }
.hero__figure img { border-radius: 12px; width: 100%; object-fit: cover; }
.hero__cta-note { text-align: center; font-size: 13px; color: var(--color-text-sub); margin-top: 8px; }

/* ---- 初回オファー ---- */
.offer {
  background: #fff; border: 3px solid var(--color-red); border-radius: 12px;
  text-align: center; padding: 16px 12px 14px; margin-top: 22px; position: relative;
}
.offer__label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-red); color: #fff; font-weight: 700; font-size: 13px;
  padding: 2px 18px; border-radius: 999px; white-space: nowrap;
}
.offer__price { font-family: var(--font-ud); margin-top: 6px; }
.offer__price s { font-size: 15px; margin-right: 10px; }
.offer__price em {
  font-style: normal; color: var(--color-red); font-weight: 700;
  font-size: 40px; line-height: 1.1;
}
.offer__price small { font-size: 15px; font-weight: 700; white-space: nowrap; }
.offer__note { font-size: 12px; color: var(--color-text-sub); margin-top: 4px; }
.offer--cta { background: #fff; }

/* ---- CTAボタン ---- */
.btn-cta {
  display: block; background: var(--color-red); color: #fff; text-decoration: none;
  text-align: center; border-radius: 12px; padding: 14px 16px; margin-top: 16px;
  box-shadow: 0 4px 0 var(--color-red-dk);
}
.btn-cta:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--color-red-dk); }
.btn-cta__label { display: block; font-size: 14px; font-weight: 700; }
.btn-cta__num { display: block; font-family: var(--font-ud); font-weight: 700; font-size: 28px; line-height: 1.2; }

/* ============================================================
   症状チェック
   ============================================================ */
.symptom-figure { margin-bottom: 24px; }
.symptom-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; }
.checklist li {
  position: relative; padding: 12px 12px 12px 42px; font-weight: 500;
  border-bottom: 1px dashed var(--color-border); font-size: 15px;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; line-height: 24px; text-align: center;
  background: var(--color-red); color: #fff; font-weight: 700; border-radius: 4px;
  font-size: 15px;
}
.arrow-down {
  width: 0; height: 0; margin: 24px auto 0;
  border-left: 28px solid transparent; border-right: 28px solid transparent;
  border-top: 22px solid var(--color-red);
}
.answer-box {
  background: var(--color-cream); border-radius: 12px; text-align: center;
  padding: 20px 16px; margin-top: 16px; font-size: 16px;
}
.answer-box strong { color: var(--color-red); font-size: 19px; }

/* ============================================================
   選ばれる理由
   ============================================================ */
.reasons { display: grid; gap: 16px; }
.reason { background: #fff; border-radius: 12px; padding: 22px 20px; border-top: 4px solid var(--color-blue); }
.reason__num { color: var(--color-red); font-weight: 700; font-family: var(--font-ud); font-size: 14px; }
.reason h3 { font-family: var(--font-ud); color: var(--color-blue); font-size: 18px; line-height: 1.5; margin: 6px 0 10px; }
.reason p { font-size: 14px; color: var(--color-text-sub); }

/* ============================================================
   施術の流れ
   ============================================================ */
.flow { display: grid; gap: 20px; counter-reset: flow; }
.flow__item { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start; }
.flow__item figure img { border-radius: 10px; aspect-ratio: 1 / 1; object-fit: cover; }
.flow__step { color: var(--color-red); font-family: var(--font-ud); font-weight: 700; font-size: 13px; }
.flow__item h3 { font-family: var(--font-ud); font-size: 17px; margin: 2px 0 4px; }
.flow__item p { font-size: 14px; color: var(--color-text-sub); }

/* ============================================================
   料金
   ============================================================ */
.price-card {
  background: #fff; border: 3px solid var(--color-red); border-radius: 12px;
  text-align: center; padding: 18px 12px 14px; position: relative; margin-top: 10px;
}
.price-card__label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-red); color: #fff; font-weight: 700; font-size: 13px;
  padding: 2px 18px; border-radius: 999px; white-space: nowrap;
}
.price-card__price { font-family: var(--font-ud); margin-top: 4px; }
.price-card__price s { font-size: 15px; margin-right: 10px; }
.price-card__price em { font-style: normal; color: var(--color-red); font-weight: 700; font-size: 40px; }
.price-card__price small { font-size: 15px; font-weight: 700; white-space: nowrap; }
.price-card__note { font-size: 12px; color: var(--color-text-sub); }

.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #fff; font-size: 14px; }
.info-table th, .info-table td { border: 1px solid var(--color-border); padding: 12px 14px; text-align: left; vertical-align: top; }
.info-table th { background: var(--color-cream); color: var(--color-blue); white-space: nowrap; width: 6.5em; font-family: var(--font-ud); }

/* ============================================================
   お客様の声
   ============================================================ */
.voices { display: grid; gap: 16px; }
.voice { background: var(--color-cream); border-radius: 12px; padding: 20px; }
.voice__head { font-weight: 700; color: var(--color-blue); font-family: var(--font-ud); font-size: 16px; margin-bottom: 8px; }
.voice__body { font-size: 14px; }
.voice__meta { font-size: 12px; color: var(--color-text-sub); margin-top: 10px; text-align: right; }

/* ============================================================
   院長紹介
   ============================================================ */
.profile { display: grid; gap: 20px; }
.profile__figure img { border-radius: 12px; max-width: 260px; margin: 0 auto; }
.profile__name { font-family: var(--font-ud); font-weight: 700; font-size: 22px; }
.profile__role { font-size: 13px; color: var(--color-text-sub); margin: 4px 0 12px; }
.profile__msg { font-size: 15px; }

/* ============================================================
   アクセス
   ============================================================ */
.two-col { display: grid; gap: 20px; }
.map { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--color-border); }
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: 14px 40px 14px 44px; position: relative;
  list-style: none; font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q"; position: absolute; left: 12px; top: 12px;
  width: 24px; height: 24px; line-height: 24px; text-align: center;
  background: var(--color-blue); color: #fff; border-radius: 50%; font-family: var(--font-ud); font-size: 14px;
}
.faq-item summary::after {
  content: "＋"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--color-red); font-weight: 700;
}
.faq-item[open] summary::after { content: "－"; }
.faq-item__body { padding: 0 16px 14px 44px; font-size: 14px; color: var(--color-text-sub); }

/* ============================================================
   最後のCTA
   ============================================================ */
.cta { background: var(--color-blue); }
.cta__title {
  font-family: var(--font-ud); color: #fff; text-align: center;
  font-size: 24px; line-height: 1.5; margin-bottom: 10px;
}
.cta .offer { border-color: #fff; }
.cta__note { color: #fff; text-align: center; font-size: 13px; margin-top: 12px; opacity: 0.9; }

/* ============================================================
   フッター
   ============================================================ */
.footer { background: var(--color-blue-dk); color: #fff; padding: 28px 0; text-align: center; font-size: 13px; }
.footer a { color: #fff; }
.footer__name { font-family: var(--font-ud); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.footer__copy { margin-top: 16px; opacity: 0.7; font-size: 12px; }

/* ============================================================
   追従電話ボタン（下部固定）
   ============================================================ */
.tel-fixed {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  height: var(--tel-fixed-h);
  background: var(--color-red); color: #fff; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.18);
}
.tel-fixed__offer {
  background: #fff; color: var(--color-red); font-weight: 700; font-size: 13px;
  padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.tel-fixed__main { text-align: left; line-height: 1.3; }
.tel-fixed__text { display: block; font-size: 11px; }
.tel-fixed__num { display: block; font-family: var(--font-ud); font-weight: 700; font-size: 20px; }

/* ============================================================
   狭いスマホ（359px以下）：文字切れ・不自然な折り返しを防ぐ
   ============================================================ */
@media (max-width: 359px) {
  .header__logo-text { font-size: 17px; }
  .header__logo-sub { display: none; }
  .header__tel-num { font-size: 16px; }
  .header__tel-time { font-size: 9px; }
  .hero__catch { font-size: 27px; }
  .hero__badges li { font-size: 11px; padding: 8px 2px; }
  .offer__price s, .price-card__price s { display: block; margin-right: 0; }
  .offer__price em, .price-card__price em { font-size: 36px; }
  .tel-fixed__offer { font-size: 11px; padding: 3px 8px; }
  .tel-fixed__num { font-size: 18px; }
}

/* ============================================================
   PC表示（768px以上）
   ============================================================ */
@media (min-width: 768px) {
  :root { --space-section: 80px; }
  .pc-only { display: inline; }
  .sp-only { display: none; }

  .section-title { font-size: 32px; }

  .hero { padding: 56px 0 64px; }
  .hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
  .hero__catch { font-size: 44px; }
  .hero__figure { margin-top: 0; }
  .hero__figure img { aspect-ratio: 4 / 5; object-fit: cover; }
  .hero__badges li { font-size: 13px; }

  .reasons { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .voices { grid-template-columns: repeat(3, 1fr); }
  .profile { grid-template-columns: 260px 1fr; align-items: start; }
  .two-col { grid-template-columns: 1fr 1fr; align-items: start; }

  /* PCでは追従ボタンを右下のカード型に */
  .tel-fixed {
    left: auto; right: 20px; bottom: 20px; height: auto;
    border-radius: 14px; padding: 12px 20px;
  }
  body { padding-bottom: 0; }
}
