/*
Theme Name: Trendhack
Theme URI: https://example.com
Author: Your Name
Description: 治療院グループ向けWordPressテーマ。カスタマイザーでカラー・写真・院情報を変更可能。
Version: 2.1.5
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: trendhack
*/

/* ============================================================
   リセット・基本
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #4a7c59;
  --brand-dark:  #335843;
  --brand-light: #e8f0eb;
  --gold:        #b8956a;
  --gold-light:  #f5ede0;
  --cream:       #f9f6f0;
  --warm-gray:   #8a8278;
  --dark:        #1c1c1c;
  --border:      #e0dbd2;
}

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

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; }

/* ============================================================
   タイポグラフィ
   ============================================================ */
.serif { font-family: 'Noto Serif JP', 'Georgia', serif; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .08em;
}

/* ============================================================
   レイアウト
   ============================================================ */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 64px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: #1c2820; }

/* セクションタイトル */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header__en {
  font-size: 17px;
  letter-spacing: .25em;
  color: var(--brand);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
.section-header__ja {
  font-size: 24px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: .1em;
}
.section-header__rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ロゴ（左） */
.site-logo { text-decoration: none; flex-shrink: 0; }
.site-logo__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .1em;
  display: block;
}
.site-logo__en {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 2px;
  display: block;
}

/* 右側まとめ */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 電話・住所 */
.header-info { text-align: right; }
.header-tel {
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}
.header-tel__label {
  font-size: 11px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 2px;
}
.header-tel__num {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: .05em;
  display: block;
}
.header-address {
  font-size: 12px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ヘッダーCTAボタン */
.header-cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  min-width: 140px;
}
.btn-reserve--line { background: #06c755; color: #fff; }
.btn-reserve--web  { background: var(--brand); color: #fff; }
.btn-reserve:hover { opacity: .85; color: #fff; text-decoration: none; }


/* グローバルナビ */
.global-nav {
  background: var(--brand);
}
.global-nav__list {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}
.global-nav__item a {
  display: block;
  padding: 14px 24px;
  font-size: 20px;
  color: #fff;
  letter-spacing: .08em;
  font-family: 'Noto Sans JP', sans-serif;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.global-nav__item:first-child a { border-left: 1px solid rgba(255,255,255,.2); }
.global-nav__item a:hover { background: rgba(0,0,0,.15); opacity: 1; color: #fff; }

/* ハンバーガー（SP） */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dark);
  transition: transform .3s;
}

/* ============================================================
   メインビジュアル
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #2c3e35;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,25,18,.72) 0%, rgba(15,25,18,.25) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
  max-width: 640px;
}
.hero__en {
  font-size: 16px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.65);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 16px;
}
.hero__catch {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  line-height: 1.9;
  letter-spacing: .12em;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__badges {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero__badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: 17px;
  padding: 6px 14px;
  letter-spacing: .08em;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 2px;
}
.hero__placeholder {
  min-height: 420px;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
}

/* ============================================================
   お知らせ
   ============================================================ */
.news-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.news-bar__label {
  font-size: 16px;
  letter-spacing: .22em;
  color: var(--brand);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 12px;
}
.news-list__item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #e8e3db;
}
.news-list__item:last-child { border-bottom: none; }
.news-list__date {
  font-size: 16px;
  color: var(--warm-gray);
  white-space: nowrap;
  min-width: 90px;
  font-family: 'Noto Sans JP', sans-serif;
}
.news-list__cat {
  font-size: 16px;
  color: var(--brand);
  border: 1px solid currentColor;
  padding: 1px 8px;
  border-radius: 2px;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}
.news-list__title {
  font-size: 16px;
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
}
.news-list__title a { color: var(--dark); }
.news-bar__more {
  text-align: right;
  margin-top: 12px;
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--brand);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
   お悩みセクション
   ============================================================ */
.trouble-list { max-width: 600px; margin: 0 auto 36px; }
.trouble-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
}
.trouble-list__item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* 症状グリッド */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.symptom-card {
  background: #fff;
  border: 1px solid #d8d4cc;
  border-radius: 4px;
  padding: 18px 10px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}
.symptom-card:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 12px rgba(74,124,89,.12);
  opacity: 1;
}
.symptom-card__img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 10px;
}
.symptom-card__icon { font-size: 28px; margin-bottom: 8px; display: block; }
.symptom-card__name {
  font-size: 17px;
  color: var(--dark);
  letter-spacing: .06em;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}
.symptom-card__more {
  font-size: 16px;
  color: var(--brand);
  margin-top: 5px;
  letter-spacing: .06em;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}

/* ============================================================
   院内写真帯
   ============================================================ */
.photo-strip {
  display: flex;
  height: 160px;
  overflow: hidden;
}
.photo-strip__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--brand-dark);
}
.photo-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.photo-strip__item:hover .photo-strip__img { transform: scale(1.06); }
.photo-strip__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15,25,18,.58);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 6px 4px;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
}
.photo-strip__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 17px;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
   メニュー・料金
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.menu-card {
  padding: 28px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.menu-card:nth-child(even) { border-right: none; }
.menu-card:nth-last-child(-n+2) { border-bottom: none; }
.menu-card:nth-last-child(1):nth-child(odd) { border-right: none; border-bottom: none; }

.menu-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 16px;
}
.menu-card__img-placeholder {
  width: 100%;
  height: 100px;
  border-radius: 3px;
  margin-bottom: 16px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.menu-card__cat {
  font-size: 16px;
  letter-spacing: .15em;
  color: var(--brand);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 6px;
}
.menu-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .08em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-card__badge {
  font-size: 9px;
  color: var(--brand);
  border: 1px solid currentColor;
  padding: 1px 6px;
  border-radius: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.menu-card__desc {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 14px;
}
.menu-card__price {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--dark);
  font-weight: 300;
}
.menu-card__price-note {
  font-size: 17px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 4px;
}

.section-link {
  text-align: center;
  margin-top: 28px;
}
.section-link a {
  font-size: 17px;
  color: var(--brand);
  letter-spacing: .14em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
   初回オファー
   ============================================================ */
.offer-block {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fdf8f0 100%);
  border: 1px solid #d4b896;
  border-radius: 4px;
  padding: 36px 24px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.offer-block__label {
  font-size: 16px;
  letter-spacing: .22em;
  color: var(--gold);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 12px;
}
.offer-block__price {
  font-family: 'Noto Serif JP', serif;
  font-size: 40px;
  color: var(--dark);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1;
}
.offer-block__price sup { font-size: 20px; vertical-align: super; }
.offer-block__tax {
  font-size: 17px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 4px;
}
.offer-block__note {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 12px;
}
.offer-block__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  letter-spacing: .14em;
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
}
.offer-block__btn:hover { opacity: .85; color: #fff; }

/* ============================================================
   改善事例
   ============================================================ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-card {
  border: 1px solid #ddd9d0;
  border-radius: 4px;
  padding: 24px;
  background: #fff;
}
.case-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.case-card__tag {
  font-size: 16px;
  color: var(--brand);
  border: 1px solid currentColor;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: .06em;
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card__patient {
  font-size: 16px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
  letter-spacing: .05em;
}
.case-card__photos {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.case-card__photo-wrap { border-radius: 3px; overflow: hidden; }
.case-card__photo-wrap img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}
.case-card__photo-label {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 4px;
  letter-spacing: .08em;
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card__photo-wrap--before { border: 1px solid #e8a0a0; }
.case-card__photo-wrap--before .case-card__photo-label { background: #fdf0ef; color: #a04040; }
.case-card__photo-wrap--after  { border: 1px solid #90c8a0; }
.case-card__photo-wrap--after  .case-card__photo-label { background: #eef5f0; color: #2d7a3a; }
.case-card__arrow { text-align: center; font-size: 18px; color: #bbb; }
.case-card__ba {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 6px;
  align-items: center;
}
.case-card__box {
  border-radius: 0;
  padding: 10px 12px;
  font-size: 16px;
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}
.case-card__box-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  margin-bottom: 4px;
  opacity: .7;
}
.case-card__box--before { background: #fdf0ef; border-left: 2px solid #d08080; color: #4a2020; }
.case-card__box--after  { background: #eef5f0; border-left: 2px solid var(--brand); color: #1e3a28; }
.case-card__count {
  font-size: 17px;
  color: var(--warm-gray);
  margin-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question__q {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
  line-height: 1.7;
}
.faq-question__icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--brand);
  transition: transform .3s;
}
.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-question__icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-question__icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s, opacity .3s; }
.faq-item.is-open .faq-question__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: none;
  padding: 0 0 20px 34px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--warm-gray);
  line-height: 2;
}
.faq-answer__a {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--gold);
  margin-right: 12px;
  flex-shrink: 0;
}
.faq-answer-inner { display: flex; gap: 12px; align-items: flex-start; }
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   アクセス
   ============================================================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.access-info { background: #fff; border: 1px solid var(--border); border-radius: 3px; padding: 24px; }
.access-info__label {
  font-size: 16px;
  letter-spacing: .15em;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
}
.access-info__val {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 2;
  font-weight: 300;
}
.access-info__closed {
  font-size: 16px;
  color: #c0392b;
  margin-top: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}
.map-wrap {
  background: #e4ebe5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #c8d4ca;
}
.map-wrap iframe { display: block; width: 100%; height: 300px; }
.map-placeholder {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  gap: 8px;
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: #1c2820;
  color: #8a9e90;
  padding: 40px 0 28px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  color: #d0dbd4;
  font-size: 18px;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.footer-info {
  font-size: 17px;
  line-height: 2.2;
  letter-spacing: .06em;
}
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 16px;
  color: #8a9e90;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-nav a:hover { color: #d0dbd4; opacity: 1; }
.footer-copy {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #2e3e34;
  font-size: 17px;
  color: #5a6e62;
  letter-spacing: .1em;
  text-align: center;
}

/* ============================================================
   個別ページ共通
   ============================================================ */
.page-hero {
  padding: 56px 0;
  background: var(--brand-dark);
  text-align: center;
}
.page-hero__en {
  font-size: 17px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.6);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
}
.breadcrumb {
  padding: 12px 0;
  font-size: 16px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--warm-gray); }
.breadcrumb span { margin: 0 6px; }

/* 症状詳細 */
.symptom-detail-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
}
.symptom-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
}
.symptom-section__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--brand-light);
}
.symptom-section__body {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 2.1;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 投稿コンテンツ（ブロックエディタ） */
.entry-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  line-height: 2.1;
  color: var(--dark);
}
.entry-content h2 {
  font-size: 20px;
  border-left: 3px solid var(--brand);
  padding-left: 14px;
  margin: 40px 0 18px;
}
.entry-content h3 {
  font-size: 17px;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.entry-content p { margin-bottom: 20px; }
.entry-content img { border-radius: 4px; margin: 20px 0; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { list-style: disc; margin-bottom: 8px; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 768px) {
  .site-header__inner { padding: 12px 16px; }
  .header-tel { display: none; }
  .global-nav { display: none; }
  .global-nav.is-open { display: block; }
  .global-nav__list { flex-direction: column; padding: 0; }
  .global-nav__item a { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 14px 20px; font-size: 16px; }
  .menu-toggle { display: flex; }

  .hero { min-height: 320px; }
  .hero__content { padding: 40px 24px; }
  .hero__catch { font-size: 20px; }

  .section { padding: 48px 0; }
  .section-header__ja { font-size: 20px; }

  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:nth-child(even) { border-right: none; }
  .menu-card { border-right: none; }
  .case-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .photo-strip { height: 100px; }
}

@media (max-width: 480px) {
  .header-cta .btn-reserve--line { display: none; }
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badges { display: none; }
}

/* ============================================================
   症状ページ LP スタイル（v1.1追加）
   ============================================================ */

/* HERO バナー */
.symptom-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--brand-dark);
}
.symptom-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .8;
}
.symptom-hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
}
.symptom-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,14,.75) 0%, rgba(10,20,14,.2) 60%, transparent 100%);
}
.symptom-hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  width: 100%;
}
.symptom-hero__title {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* セクション共通H2 */
.symptom-section__h2 {
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: .1em;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}

/* お困りセクション */
.worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.worry-grid__img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.worry-list { list-style: none; }
.worry-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 1.7;
}
.worry-list__item:first-child { border-top: 1px solid var(--border); }
.worry-list__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--brand);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}
/* チェックマーク（デザインのみ・クリック不可） */
.worry-list__check::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg) translate(1px, -1px);
}

/* 2カラムセクション共通 */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col-section--reverse { }
.two-col-section--reverse .two-col-section__img { order: -1; }
.two-col-section__text {
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--warm-gray);
  line-height: 2.1;
}
.two-col-section__text p { margin-bottom: 16px; }
.two-col-section__text p:last-child { margin-bottom: 0; }
.two-col-section__img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

/* 当院の考え方 */
.think-block {
  margin-top: 24px;
  padding: 20px 20px 20px 16px;
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  border-radius: 0 4px 4px 0;
}
.think-block__label {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--brand);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 8px;
}

/* 自由記述欄 */
.free-text-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 2.2;
  color: var(--dark);
}
.free-text-block strong, .free-text-block b {
  font-size: 20px;
  color: var(--brand);
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  display: block;
  margin: 8px 0;
}

/* CTAメッセージ */
.symptom-cta-msg {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--brand);
  border-radius: 4px;
  text-align: center;
}
.symptom-cta-msg__text {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.8;
}

/* 施術の流れ */
.flow-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.flow-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 160px;
  max-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
}

/* 画像エリア */
.flow-card__img-wrap {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.flow-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-card__num {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--brand);
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.flow-card__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: .08em;
  line-height: 1.6;
}
.flow-card__text {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}
.flow-arrow {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--brand);
  padding: 0 4px;
  flex-shrink: 0;
  margin-top: 36px;
}

/* 院内案内ブロック */
.clinic-info-block { padding: 0; }
.clinic-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 10px;
}
.hours-table th, .hours-table td {
  border: 1px solid var(--border);
  padding: 8px 6px;
  text-align: center;
}
.hours-table th { background: var(--brand-light); color: var(--brand); font-weight: 500; }
.hours-note { font-size: 16px; color: var(--warm-gray); font-family: 'Noto Sans JP', sans-serif; line-height: 1.9; }
.hours-closed { font-size: 16px; color: #c0392b; margin-top: 4px; font-family: 'Noto Sans JP', sans-serif; }
.clinic-info__detail { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 20px; }
.clinic-info__item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  align-items: flex-start;
}
.clinic-info__item:last-child { border-bottom: none; }
.clinic-info__label {
  font-size: 17px;
  font-weight: 500;
  color: var(--brand);
  white-space: nowrap;
  letter-spacing: .08em;
  min-width: 56px;
  padding-top: 2px;
}

/* 予約ボタン群 */
.reserve-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 4px;
}
.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  transition: opacity .2s;
}
.reserve-btn:hover { opacity: .85; }
.reserve-btn--line { background: #06c755; color: #fff; }
.reserve-btn--web  { background: var(--brand); color: #fff; }
.reserve-btn--tel  { background: #fff; color: var(--dark); border: 1px solid var(--border); }
.reserve-btn__icon { font-size: 20px; }

/* 症状カテゴリー（一覧ページ用） */
.symptom-cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.symptom-cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .06em;
  border: 1px solid var(--border);
  color: var(--warm-gray);
  transition: all .2s;
  text-decoration: none;
}
.symptom-cat-tab:hover,
.symptom-cat-tab.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  opacity: 1;
}

/* レスポンシブ追加 */
@media (max-width: 768px) {
  .symptom-hero { min-height: 240px; }
  .symptom-hero__title { font-size: 22px; }
  .symptom-section__h2 { font-size: 18px; }
  .worry-grid { grid-template-columns: 1fr; gap: 24px; }
  .two-col-section { grid-template-columns: 1fr; gap: 24px; }
  .two-col-section--reverse .two-col-section__img { order: 0; }
  .flow-grid { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
  .clinic-info-grid { grid-template-columns: 1fr; }
  .reserve-buttons { grid-template-columns: 1fr; }
  .symptom-cta-msg__text { font-size: 17px; }
}

/* ============================================================
   LP トップページ専用スタイル（ゼロスポ仕様 v1.2）
   黒・白・木目ベース
   ============================================================ */

:root {
  --wood:       #8B6914;
  --wood-light: #f5ede0;
  --wood-mid:   #c9a96e;
  --black:      #111111;
  --off-black:  #1c1c1c;
  --off-white:  #f8f6f2;
  --text-light: rgba(255,255,255,.88);
  --text-muted-light: rgba(255,255,255,.6);
}

/* ── ファーストビュー ─────────────────────────────── */
.fv {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.fv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.fv__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
}
.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 100%);
}
.fv__inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 680px;
}
.fv__en {
  font-size: 16px;
  letter-spacing: .28em;
  color: var(--wood-mid);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 20px;
}
.fv__catch {
  font-size: 36px;
  font-weight: 300;
  color: #fff;
  line-height: 1.7;
  letter-spacing: .1em;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  margin-bottom: 20px;
}
.fv__sub {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 24px;
  letter-spacing: .06em;
}
.fv__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.fv__badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 17px;
  padding: 6px 14px;
  letter-spacing: .08em;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 2px;
}
.fv__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CTAボタン ────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 3px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.cta-btn:hover { opacity: .85; transform: translateY(-1px); }
.cta-btn--primary {
  background: var(--wood-mid);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,105,20,.35);
}
.cta-btn--line { background: #06c755; color: #fff; }
.cta-btn--lg { padding: 18px 40px; font-size: 16px; }

/* ── セクション背景 ───────────────────────────── */
.section--dark-bg {
  background: var(--black);
  color: #fff;
}
.section--wood {
  background: var(--wood-light);
}

/* ── LPセクションヘッダー ─────────────────────── */
.lp-section-header {
  text-align: center;
  margin-bottom: 52px;
}
.lp-section-header--light .lp-section-header__en { color: var(--wood-mid); }
.lp-section-header--light .lp-section-header__ja { color: #fff; }
.lp-section-header__en {
  font-size: 17px;
  letter-spacing: .28em;
  color: var(--wood);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
}
.lp-section-header__ja {
  font-size: 26px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: .1em;
  line-height: 1.7;
}
.lp-section-header__rule {
  width: 32px;
  height: 1px;
  background: var(--wood-mid);
  margin: 18px auto 0;
}
.lp-section-header__desc {
  margin-top: 20px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--warm-gray);
  line-height: 2;
}

/* ── 悩みチェックリスト ───────────────────────── */
.lp-check-list {
  max-width: 640px;
  margin: 0 auto 36px;
  list-style: none;
}
.lp-check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
}
.lp-check-list__item:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.lp-check-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--wood-mid);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}
.lp-check-list__icon::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--wood-mid);
  border-bottom: 2px solid var(--wood-mid);
  transform: rotate(-45deg) translate(1px,-1px);
}
.lp-worry__close {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 32px;
  letter-spacing: .08em;
}
.lp-cta-mini {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ピラティス教育カード ─────────────────────── */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.lp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wood-mid);
}
.lp-card__num {
  font-size: 28px;
  font-weight: 300;
  color: rgba(139,105,20,.2);
  letter-spacing: .04em;
  position: absolute;
  top: 12px; right: 16px;
}
.lp-card__icon { font-size: 28px; margin-bottom: 10px; display: block; }
.lp-card__title {
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: .06em;
  line-height: 1.6;
}
.lp-card__text {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ── 問題提起 ─────────────────────────────────── */
.lp-problem__body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black);
  line-height: 2.1;
}
.lp-problem__body p { margin-bottom: 20px; }
.lp-problem__em {
  font-size: 17px;
  color: var(--wood);
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.9;
  border-left: 3px solid var(--wood-mid);
  padding-left: 20px;
  margin-top: 28px !important;
}

/* ── 3ステップ ───────────────────────────────── */
.lp-steps {
  max-width: 760px;
  margin: 0 auto 40px;
  position: relative;
}
.lp-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.lp-step:first-child { border-top: 1px solid var(--border); }
.lp-step__num {
  font-size: 17px;
  font-weight: 400;
  color: var(--wood-mid);
  letter-spacing: .18em;
  white-space: nowrap;
  padding-top: 4px;
  min-width: 64px;
}
.lp-step__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: .08em;
  line-height: 1.6;
}
.lp-step__text {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}
.lp-solution__close {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: var(--black);
  line-height: 2;
  letter-spacing: .08em;
  margin-bottom: 36px;
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--wood-mid);
}

/* ── 選ばれる理由 ────────────────────────────── */
.lp-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-reason-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* 写真エリア */
.lp-reason-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}
.lp-reason-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.lp-reason-card:hover .lp-reason-card__img { transform: scale(1.04); }
.lp-reason-card__img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
/* テキストエリア */
.lp-reason-card__body {
  padding: 18px 18px 20px;
  flex: 1;
}
.lp-reason-card__num {
  font-size: 15px;
  font-weight: 400;
  color: var(--wood-mid);
  letter-spacing: .2em;
  margin-bottom: 8px;
  display: block;
}
.lp-reason-card__icon { display: none; } /* アイコン非表示 */
.lp-reason-card__title {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .06em;
  line-height: 1.6;
}
.lp-reason-card__text {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ── 比較表 ──────────────────────────────────── */
.lp-compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}
.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
}
.lp-compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-weight: 500;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--border);
}
.lp-compare-table th:first-child {
  background: #f0f0f0;
  color: var(--warm-gray);
}
.lp-compare-table__ours {
  background: var(--black) !important;
  color: #fff !important;
  border-bottom-color: rgba(255,255,255,.15) !important;
}
.lp-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.7;
}
.lp-compare-table td:first-child { color: var(--warm-gray); }
.lp-compare-table tr:last-child td { border-bottom: none; }
.lp-compare__close {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  line-height: 2;
  letter-spacing: .08em;
}

/* ── 対応症状メニュー ─────────────────────────── */
.lp-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 12px;
}
.lp-menu-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.lp-menu-block__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: .12em;
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.lp-menu-block__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lp-menu-block__list li {
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black);
  padding: 7px 0;
  border-bottom: 1px solid #f0ede8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-menu-block__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wood-mid);
  flex-shrink: 0;
}

/* ── 施術の流れ（LP版） ──────────────────────── */
.lp-flow__note {
  text-align: center;
  font-size: 17px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
  margin: 32px 0 36px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 4px;
}

/* ── 料金 ─────────────────────────────────────── */
.lp-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 36px 24px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.lp-price-card__label {
  font-size: 17px;
  letter-spacing: .2em;
  color: var(--wood-mid);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 12px;
}
.lp-price-card__price {
  font-size: 44px;
  color: #fff;
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1;
}
.lp-price-card__price sup { font-size: 22px; vertical-align: super; }
.lp-price-card__price span {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  font-family: 'Noto Sans JP', sans-serif;
  margin-left: 4px;
}
.lp-price-card__note {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
  margin-top: 14px;
}

/* ── アクセス表 ──────────────────────────────── */
.lp-access-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
}
.lp-access-table th {
  width: 80px;
  background: var(--off-white);
  padding: 10px 14px;
  text-align: left;
  color: var(--warm-gray);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  letter-spacing: .06em;
}
.lp-access-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  line-height: 1.7;
}

/* ── 最終CTA ─────────────────────────────────── */
.lp-final-cta {
  background: var(--black);
  padding: 80px 0;
}
.lp-final-cta__inner { text-align: center; }
.lp-final-cta__title {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.7;
  margin-bottom: 20px;
}
.lp-final-cta__text {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2.1;
  margin-bottom: 36px;
}

/* ── レスポンシブ ─────────────────────────────── */
@media (max-width: 768px) {
  .fv__catch { font-size: 24px; }
  .lp-section-header__ja { font-size: 20px; }
  .lp-cards { grid-template-columns: 1fr 1fr; }
  .lp-reasons__grid { grid-template-columns: 1fr 1fr; }
  .lp-menu-grid { grid-template-columns: 1fr; }
  .lp-menu-block__list { grid-template-columns: 1fr; }
  .lp-final-cta__title { font-size: 22px; }
  .fv { min-height: 100svh; }
}
@media (max-width: 480px) {
  .fv__catch { font-size: 20px; }
  .lp-cards { grid-template-columns: 1fr; }
  .lp-reasons__grid { grid-template-columns: 1fr; }
  .cta-btn { width: 100%; text-align: center; }
  .fv__cta { flex-direction: column; }
}

/* ============================================================
   FV 画像のみ表示モード（v1.3）
   ============================================================ */

/* 画像のみ表示モード */
.fv--image-only {
  position: relative;
  min-height: auto;        /* 高さは画像に従う */
  display: block;
  background: var(--black);
  overflow: hidden;
}

/* PC用画像：デフォルト表示 */
.fv__img--pc {
  display: block;
  width: 100%;
  height: auto;
  position: static;        /* フロー内に配置 */
  opacity: 1;
  object-fit: unset;
}

/* SP用画像：デフォルト非表示 */
.fv__img--sp {
  display: none;
  width: 100%;
  height: auto;
}

/* プレースホルダー（画像未設定時） */
.fv--image-only .fv__placeholder {
  position: static;
  min-height: 500px;
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2a26 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__placeholder-inner { text-align: center; }
.fv__placeholder-label {
  color: rgba(255,255,255,.5);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
  margin-bottom: 12px;
}
.fv__placeholder-size {
  color: var(--wood-mid);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2;
}

/* CTAボタンエリア（画像の直下） */
.fv__cta-overlay {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 24px;
  background: var(--black);
}

/* スマホ：SP用画像に切り替え */
@media (max-width: 768px) {
  .fv__img--pc {
    display: none;
  }
  .fv__img--sp {
    display: block;
  }
  /* SP用画像が未設定でPC用を流用する場合は常にPC用を表示 */
  .fv__img--pc:only-of-type {
    display: block;
  }
  .fv__cta-overlay {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 10px;
  }
  .fv__cta-overlay .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 施術の流れ スマホ対応追加（v1.4） */
@media (max-width: 768px) {
  .flow-grid { flex-direction: column; align-items: stretch; }
  .flow-card { max-width: 100%; flex: 1 1 100%; }
  .flow-arrow { transform: rotate(90deg); align-self: center; margin-top: 0; }
}

/* ============================================================
   SP固定フローティングバナー（v1.5）
   ============================================================ */
.sp-float {
  display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
  /* フローティングバナー本体 */
  .sp-float {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -2px 16px rgba(0,0,0,.18);
  }
  .sp-float__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    text-decoration: none;
    transition: opacity .2s;
  }
  .sp-float__btn:hover { opacity: .88; }
  .sp-float__btn--reserve {
    background: var(--brand);
    color: #fff;
  }
  .sp-float__btn--tel {
    background: #1c1c1c;
    color: #fff;
  }
  .sp-float__icon {
    font-size: 22px;
    line-height: 1;
  }
  .sp-float__label {
    font-size: 12px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  /* フローティングバナーの高さ分だけ本文を底上げ */
  body {
    padding-bottom: 68px;
  }

  /* ヘッダーSP対応 */
  .site-header__inner { padding: 12px 16px; }
  .header-info { display: none; } /* SP時は電話・住所を非表示 */
  .header-cta  { display: none; } /* SP時はヘッダーのボタンを非表示（フロートに移動） */
}

/* ============================================================
   改善事例カード v2（笑み整骨院スタイル）v1.7
   ============================================================ */

/* グリッドレイアウト */
.case-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード本体 */
.case-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.case-card-v2:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* ── 写真エリア（カード上部全面） ── */
.case-card-v2__img-area {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;  /* 横長の写真 */
  overflow: hidden;
  background: var(--brand-dark);
  flex-shrink: 0;
}
.case-card-v2__img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 顔を上に */
  display: block;
  transition: transform .4s ease;
}
.case-card-v2:hover .case-card-v2__img-full {
  transform: scale(1.04);
}
/* 写真なし時 */
.case-card-v2__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
}

/* 症状タグ（写真左下に重ねる） */
.case-card-v2__tag-wrap {
  position: absolute;
  bottom: 10px;
  left: 12px;
}
.case-card-v2__sym-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,.92);
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .06em;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s, color .2s;
}
.case-card-v2__sym-tag:hover {
  background: var(--brand);
  color: #fff;
  opacity: 1;
}

/* ── テキストエリア ── */
.case-card-v2__body {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* タイトル */
.case-card-v2__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .06em;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* プロフィール（年代・性別・職業） */
.case-card-v2__profile {
  font-size: 13px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  margin-bottom: 12px;
}

/* コメント */
.case-card-v2__comment {
  background: var(--cream);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 12px;
}
.case-card-v2__q-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  color: var(--wood-mid);
  line-height: 0;
  vertical-align: -3px;
}

/* ビフォーアフターテキスト */
.case-card-v2__ba-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.case-card-v2__ba-box {
  padding: 10px 12px;
  font-size: 13px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  border-radius: 4px;
}
.case-card-v2__ba-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
}
.case-card-v2__ba-box--before {
  background: #fdf0ef;
  border-left: 2px solid #d08080;
  color: #4a2020;
}
.case-card-v2__ba-box--before .case-card-v2__ba-label { color: #a06060; }
.case-card-v2__ba-box--after {
  background: #eef5f0;
  border-left: 2px solid var(--brand);
  color: #1e3a28;
}
.case-card-v2__ba-box--after .case-card-v2__ba-label { color: var(--brand); }

/* 施術情報 */
.case-card-v2__meta {
  font-size: 13px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* 免責表記 */
.case-card-v2__disclaimer {
  font-size: 11px;
  color: #aaa;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 8px;
  letter-spacing: .04em;
}

/* 絞り込みタブ */
.case-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.case-filter-tab {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .06em;
  border: 1px solid var(--border);
  color: var(--warm-gray);
  text-decoration: none;
  transition: all .2s;
}
.case-filter-tab:hover,
.case-filter-tab.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  opacity: 1;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .case-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .case-cards-grid { grid-template-columns: 1fr; }
  .case-card-v2__ba-text { grid-template-columns: 1fr; }
}

/* ============================================================
   症状ページ HERO：画像のみ表示モード（v1.7.1）
   ============================================================ */
.symptom-hero--image-only {
  display: block;
  width: 100%;
  min-height: unset;
  background: none;
}
.symptom-hero__img-full {
  display: block;
  width: 100%;
  height: auto;
  max-height: 1000px;
  object-fit: contain;   /* coverからcontainに変更→画像をそのまま全体表示 */
  object-position: center;
}
@media (max-width: 768px) {
  .symptom-hero__img-full {
    max-height: none;    /* SPはアップした画像の縦横比をそのまま表示 */
  }
}

/* ============================================================
   症状ページ：原因・考え方・CTAリニューアル（v1.8）
   ============================================================ */

/* 主な原因：リッチテキスト対応スタイル */
.causes-rich-text {
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2.1;
  color: var(--dark);
}
.causes-rich-text p { margin-bottom: 16px; }
.causes-rich-text strong, .causes-rich-text b {
  color: var(--brand);
  font-weight: 700;
}
/* ACFのビジュアルエディタで色付けした場合 */
.causes-rich-text span[style*="color"] { font-weight: 600; }
/* 見出しっぽい文字列 */
.causes-rich-text h3, .causes-rich-text h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--brand);
  margin: 20px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--brand);
}
/* リスト */
.causes-rich-text ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.causes-rich-text ul li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 15px;
}
.causes-rich-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* ── 院長アイコン＋吹き出し ── */
.doctor-speech {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}
.doctor-speech__icon {
  flex-shrink: 0;
  text-align: center;
  width: 220px;
}
.doctor-speech__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 4px solid var(--brand-light);
  margin: 0 auto 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.doctor-speech__photo--placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.doctor-speech__name {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: .06em;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 吹き出し本体 */
.doctor-speech__bubble {
  flex: 1;
  position: relative;
}
.doctor-speech__bubble::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 24px;
  border: 7px solid transparent;
  border-right-color: #f0f5f1;
}
.doctor-speech__bubble-inner {
  background: #f0f5f1;
  border: 1px solid #c8ddd0;
  border-radius: 0 12px 12px 12px;
  padding: 22px 24px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 2;
}

/* CTA版吹き出し（濃い背景） */
.symptom-cta-section { background: var(--cream); }
.doctor-speech--cta .doctor-speech__bubble::before {
  border-right-color: var(--brand-dark);
}
.doctor-speech__bubble--cta .doctor-speech__bubble-inner {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  border-radius: 0 12px 12px 12px;
  color: #fff;
}
.doctor-speech__cta-title {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.7;
  margin-bottom: 12px;
}
.doctor-speech__cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 2;
  margin-bottom: 20px;
}
.doctor-speech__cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 当院の考え方セクション */
.symptom-think-section { background: #fff; }

/* SP対応 */
@media (max-width: 768px) {
  .doctor-speech { flex-direction: column; gap: 0; }
  .doctor-speech__icon { width: 100%; display: flex; align-items: center; gap: 12px; }
  .doctor-speech__photo, .doctor-speech__photo--placeholder { margin: 0; }
  .doctor-speech__bubble::before { display: none; }
  .doctor-speech__bubble-inner { border-radius: 12px; }
  .doctor-speech__cta-btns { flex-direction: column; }
  .doctor-speech__cta-btns .cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   初めての方へ 専用テンプレートスタイル（v2.0）
   ============================================================ */

/* HERO */
.fv-page-hero--image { display: block; }
.fv-page-hero__img { width: 100%; height: auto; max-height: 500px; object-fit: cover; display: block; }

/* ── 院長あいさつ ── */
.fv-greeting__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.fv-greeting__photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  display: block;
}
.fv-greeting__name {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-top: 14px;
  letter-spacing: .08em;
}
.fv-greeting__title-text {
  font-size: 13px;
  color: var(--warm-gray);
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 4px;
  letter-spacing: .06em;
}
.fv-greeting__bubble {
  background: #f0f5f1;
  border: 1px solid #c8ddd0;
  border-radius: 0 12px 12px 12px;
  padding: 24px 28px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2.1;
  color: var(--dark);
  position: relative;
  margin-bottom: 20px;
}
.fv-greeting__bubble::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -14px;
  border: 8px solid transparent;
  border-right-color: #c8ddd0;
}
.fv-greeting__bubble::after {
  content: '';
  position: absolute;
  top: 26px;
  left: -11px;
  border: 7px solid transparent;
  border-right-color: #f0f5f1;
}
.fv-greeting__sign {
  font-size: 14px;
  font-weight: 400;
  color: var(--warm-gray);
  text-align: right;
  letter-spacing: .08em;
  line-height: 1.8;
}

/* ── 特徴カード ── */
.fv-features__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.fv-feature-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 32px 36px;
}
.fv-feature-card--reverse {
  grid-template-columns: 380px 1fr;
}
.fv-feature-card--reverse .fv-feature-card__text { order: 2; }
.fv-feature-card--reverse .fv-feature-card__img-col { order: 1; }

.fv-feature-card__num {
  font-size: 36px;
  font-weight: 300;
  color: color-mix(in srgb, var(--brand) 25%, #fff);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 8px;
}
.fv-feature-card__icon { font-size: 32px; margin-bottom: 10px; display: block; }
.fv-feature-card__title {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .08em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.fv-feature-card__desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}
.fv-feature-card__img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  max-height: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.fv-feature-card__img-col--empty {
  background: var(--brand-light);
  border-radius: 6px;
  min-height: 180px;
}

/* ── こんな方におすすめ チェックリスト ── */
.fv-check-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
}
.fv-check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 1.7;
}
.fv-check-list__item:first-child { border-top: 1px solid var(--border); }
.fv-check-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--brand);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}
.fv-check-list__icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg) translate(1px,-1px);
}

/* ── 院内写真帯 ── */
.fv-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.fv-gallery__item { overflow: hidden; aspect-ratio: 4/3; }
.fv-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.fv-gallery__item:hover .fv-gallery__img { transform: scale(1.05); }

/* ── よくある不安 Q&A ── */
.fv-anxiety__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.fv-anxiety-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.fv-anxiety-card__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--brand-dark);
}
.fv-anxiety-card__q-mark {
  font-size: 22px;
  font-weight: 400;
  color: var(--wood-mid);
  flex-shrink: 0;
  line-height: 1.4;
}
.fv-anxiety-card__q p {
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  line-height: 1.7;
  font-weight: 500;
}
.fv-anxiety-card__a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
}
.fv-anxiety-card__a-mark {
  font-size: 22px;
  font-weight: 400;
  color: var(--brand);
  flex-shrink: 0;
  line-height: 1.4;
}
.fv-anxiety-card__a p {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--warm-gray);
  line-height: 1.9;
}

/* ── 初回の流れ ── */
.fv-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.fv-step {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  position: relative;
  text-align: center;
}
.fv-step__icon { font-size: 36px; margin-bottom: 8px; display: block; }
.fv-step__num {
  font-size: 12px;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: .2em;
  margin-bottom: 8px;
  display: block;
}
.fv-step__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: .08em;
}
.fv-step__text {
  font-size: 14px;
  color: var(--warm-gray);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.9;
}
.fv-step__arrow {
  font-size: 24px;
  color: var(--brand);
  text-align: center;
  padding: 8px 0;
  display: block;
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .fv-greeting__inner { grid-template-columns: 1fr; gap: 24px; }
  .fv-greeting__photo { max-width: 240px; margin: 0 auto; }
  .fv-greeting__bubble::before,
  .fv-greeting__bubble::after { display: none; }
  .fv-feature-card,
  .fv-feature-card--reverse { grid-template-columns: 1fr; padding: 24px 20px; }
  .fv-feature-card--reverse .fv-feature-card__text { order: 1; }
  .fv-feature-card--reverse .fv-feature-card__img-col { order: 2; }
  .fv-anxiety__grid { grid-template-columns: 1fr; }
  .fv-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   トップページ wysiwyg チェックリスト表示（v2.1.3）
   ============================================================ */
.lp-worry-wysiwyg ul {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 36px;
}
.lp-worry-wysiwyg ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
}
.lp-worry-wysiwyg ul li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.lp-worry-wysiwyg ul li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--wood-mid);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  background: transparent;
  position: relative;
}
.lp-solution-wysiwyg {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  line-height: 2.1;
}
.lp-solution-wysiwyg p { margin-bottom: 16px; }
