/* ================================
 Tesora治療院テーマ メインデザインCSS
=============================== */

/* カラーバリエーション */
:root {
  --color-white: #ffffff;
  --color-brown: #7b5e3b;
  --color-gold: #c9a646;
  --color-bg: #f9f8f6;
  --color-text: #333333;
  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ベース設定 */
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  line-height: 1.8;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 55vh;                /* ★ 縦幅を小さくした */
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 薄めの黒オーバーレイで文字を読みやすく */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
}

/* カードを廃止 → シンプルな中央寄せ */
.hero-content-simple {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* ロゴ */
.hero-logo {
  width: 500px;
  margin-bottom: 16px;
}

/* h1（キャッチコピー） */
.hero-content-simple h1.hero-catch {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* h2（医院名） */
.hero-content-simple h2.hero-catch {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 28px;
}


/* 予約ボタン */
.hero-btn {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* スマホ最適化 */
@media(max-width: 768px) {
  .hero {
    height: 3cqh;
    min-height: 200px;
  }
  .hero-logo {
    width: 170px;
  }
  .hero-content-simple h1.hero-catch {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .hero-content-simple h2.hero-catch {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }
}


/* ================================
  症状一覧カード
=============================== */
.symptom-list {
  background-color: var(--color-bg);
  padding: 4rem 1rem;
  text-align: center;
}

.symptom-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.symptom-card {
  background: var(--color-white);
  width: 300px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.symptom-card:hover {
  transform: translateY(-5px);
}

.symptom-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.symptom-card h3 {
  font-size: 1.2rem;
  color: var(--color-brown);
  margin: 1rem;
}

.symptom-card p {
  margin: 0 1rem 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.btn-secondary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  margin-top: 2rem;
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--color-brown);
}

/* ================================
  CTAセクション
=============================== */
.cta {
  background: var(--color-brown);
  color: var(--color-white);
  text-align: center;
  padding: 3rem 1rem;
}

.cta .btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  margin-top: 1rem;
  border-radius: 30px !important; /* ← これが決め手 */
  padding: 12px 32px;
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}


.cta .btn-primary:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

.cta p {
  text-align: center !important;
}


/* ================================
  フッター
=============================== */
.site-footer{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 60px;
}

.site-footer .footer-inner{
  max-width: 1100px;           /* container相当 */
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}

/* 左：院情報 */
.footer-info h3{
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brown);
  letter-spacing: .02em;
}

.footer-info p{
  margin: 0 0 10px;
  color: #555;
  line-height: 1.8;
  font-size: .95rem;
}

/* 右：フッターメニュー */
.footer-nav .footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-nav .footer-list li{
  margin: 0;
}

.footer-nav .footer-list a{
  color: var(--color-brown);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: .2s;
}

/* ゴールドのアクセント（矢印っぽく） */
.footer-nav .footer-list a::before{
  content: "";
  width: 10px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
  border-radius: 2px;
  opacity: .9;
}

.footer-nav .footer-list a:hover{
  color: var(--color-gold);
}

/* コピーライト */
.footer-copy{
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 16px 20px;
  text-align: center;
}

.footer-copy p{
  margin: 0;
  color: #777;
  font-size: .85rem;
}

/* =========================
  Responsive
========================= */
@media (max-width: 768px){
  .site-footer .footer-inner{
    grid-template-columns: 1fr;
    padding: 34px 16px 18px;
    gap: 20px;
  }

  .footer-nav .footer-list{
    grid-template-columns: 1fr;
  }
}


/* ================================
  TOPブログ
=============================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.blog-card {
  width: 320px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h2, .blog-card h3 {
  color: var(--color-brown);
  padding: 1rem;
  font-size: 1.1rem;
}

.blog-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* ▼ スマホ（1列表示） */
@media (max-width: 768px) {
  .blog-list {
    flex-direction: column;          /* ★ 縦並びにする */
    align-items: center;             /* 中央整列 */
  }

  .blog-card {
    width: 100% !important;          /* ★ 全幅に広げる */
    max-width: 500px;                /* 読みやすい幅に制限 */
  }

  .blog-card img {
    height: 200px;                   /* スマホに合わせて少し縦伸ばし */
    object-fit: cover;
  }
}


/* ================================
 Tesora治療院テーマ 固定ページ用デザイン
-----------------------------------
この部分は「スタッフ紹介」「アクセス」「料金案内」
など固定ページ共通のスタイル設定です。
=============================== */

/* ▼ 固定ページの見出し（共通ヘッダー部分） */
.page-header {
  background: var(--color-brown); /* 上部背景にブラウンカラー */
  color: var(--color-white); /* 文字色は白 */
  text-align: center;
  padding: 3rem 1rem; /* 上下余白を広めに */
}

/* ▼ スタッフ紹介カードを包むエリア */
.staff-cards {
  display: flex;
  flex-wrap: wrap; /* 画面幅が狭くなったら折り返し */
  gap: 2rem; /* 各カードの間にスペース */
  justify-content: center;
  margin-top: 2rem;
}

/* ▼ 各スタッフカード（写真＋名前＋コメント） */
.staff-card {
  width: 250px;
  background: var(--color-white);
  border-radius: 12px; /* 角を丸く */
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 1.5rem;
  transition: 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px); /* ホバー時にふわっと浮く */
}

.staff-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* 縦横比を崩さずにトリミング */
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* ▼ 料金表のスタイル */
.price-table {
  width: 100%;
  max-width: 600px; /* 横幅の最大値を制限 */
  margin: 2rem auto; /* 中央寄せ */
  border-collapse: collapse; /* 枠線を一体化 */
}

.price-table th,
.price-table td {
  border-bottom: 1px solid #ddd; /* 行の区切り線 */
  padding: 0.8rem;
}

.price-table th {
  text-align: left;
  color: var(--color-brown);
  font-weight: 600;
}

/* ▼ Googleマップ埋め込み用 */
.map-frame iframe {
  width: 100%;
  height: 350px;
  border: 0;
  margin-top: 1.5rem;
  border-radius: 10px; /* 角を少し丸く */
  box-shadow: var(--shadow-soft);
}

/* ================================
 レスポンシブ対応（スマホ用）
=============================== */
@media (max-width: 768px) {

  /* ▼ スタッフカードを1列表示に変更 */
  .staff-cards {
    flex-direction: column;
    align-items: center;
  }

  .staff-card {
    width: 90%; /* 画面幅に合わせて広げる */
  }

  /* ▼ 料金表を少し小さめに */
  .price-table {
    font-size: 0.95rem;
  }

  /* ▼ ページヘッダーの文字サイズ調整 */
  .page-header h1 {
    font-size: 1.6rem;
  }

  .symptom-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== TOP強化：HERO（背景画像+白帯） ===== */
.hero--image { position: relative; overflow: hidden; }
.hero__bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: brightness(0.9);
}
.hero__inner{
  position:relative; z-index:1;
  background: rgba(255,255,255,.85); /* 白帯 */
  display:inline-block; padding:2rem 2.2rem; border-radius:14px;
  box-shadow: var(--shadow-soft);
}
.hero--image .container{ padding:6rem 1rem; }

/* ===============================
   TOPページ アラテックバナー（レスポンシブ）
=============================== */
/* ===== アラテックバナー ===== */
.top-banner {
  padding: 20px 0;      /* 上下余白を最小限に */
}

.top-banner .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* =========================
  TOPバナー 共通
========================= */
.top-banner img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* =========================
  PC（大）1024px〜
========================= */
@media (min-width: 1024px){
  .top-banner img{
    max-width: 900px;   /* ← PCでは横を絞る */
    max-height: 180px;  /* ← 高さも控えめ */
  }

  .top-banner{
    padding: 12px 0;
  }
}

/* =========================
  タブレット（768〜1023px）
========================= */
@media (min-width: 768px) and (max-width: 1023px){
  .top-banner img{
    max-width: 720px;   /* ← タブレットは少し大きめ */
    max-height: 200px;
  }

  .top-banner{
    padding: 14px 0;
  }
}

/* =========================
  スマホ（〜767px）
========================= */
@media (max-width: 767px){
  .top-banner img{
    max-width: 100%;
    max-height: 240px;  /* ← スマホは読みやすさ優先 */
  }

  .top-banner{
    padding: 16px 0;
  }
}


/* バナーの次のセクションだけ上を詰める */
.top-banner + section {
  padding-top: 2px !important;
}

/* さらにスマホはもっと詰める */
@media (max-width: 768px){
  .top-banner + section {
    padding-top: 1px !important;
  }
}


/* ========== 施術メニュー 4カード ========== */

.menu-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.menu-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card__body {
  padding: 1.2rem 1.2rem 1.6rem;
  text-align: left;
}

.menu-card__body h3 {
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-bottom: 0.6rem;
}

.menu-card__body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ボタン */
.menu-card__btn {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .3s;
}

.menu-card__btn:hover {
  background: #c39b40;
}

/* ===== スマホ対応 ===== */
@media (max-width: 900px) {
  .menu-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-cards__grid {
    grid-template-columns: 1fr;
  }
}


/* ===== セクション見出し ===== */
.sec-ttl{ text-align:center; font-size:1.6rem; color:var(--color-brown); margin:0 0 1.2rem; }
.sec-ttl::after{ content:""; display:block; width:68px; height:3px; background:var(--color-gold); margin:.6rem auto 0; border-radius:2px; }

/* ===== セクション見出し ===== */
.sec-ttl {
  text-align:center;
  font-size:1.6rem;
  color:var(--color-brown);
  margin:0 0 1.2rem;
}
.sec-ttl::after {
  content:"";
  display:block;
  width:68px;
  height:3px;
  background:var(--color-gold);
  margin:.6rem auto 0;
  border-radius:2px;
}

/* ====== 症状カード（アイコンタイプ） ====== */
.symptom-cards.icon-style {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* カード本体 */
.icon-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* アイコン丸背景 */
.icon-card .icon-wrap {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  background: #f7efe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* アイコン画像 */
.icon-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* タイトル */
.icon-card h3 {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

/* ▼ 丸い背景（固定サイズ） */
.icon-card .icon-wrap {
  width: 40px;
  height: 40px;
  background: #f7efe3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* ▼ アイコン（画像）が丸の中に収まるように調整 */
.icon-card .icon-wrap img {
  width: 60%;      /* ← アイコンの大きさを調整 */
  height: auto;    /* 比率維持 */
  object-fit: contain; /* 切り抜かず、中で収める */
  display: block;
}


/* ====== レスポンシブ ====== */
@media (max-width: 1024px) {
  .symptom-cards.icon-style {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .symptom-cards.icon-style {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .symptom-cards.icon-style {
    grid-template-columns: 1fr;
  }
}

/* ===== 院内紹介カード（1カラムレイアウト） ===== */
.clinic-intro {
  padding: 80px 0;
}

/* ★ 1カラム（縦一列）に変更 ★ */
.clinic-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* カード本体：横並び（写真 → テキスト） */
.clinic-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  gap: 24px;
}

/* 写真（左側） */
.clinic-card__img {
  flex: 0 0 280px;
  height: auto !important; 
  border-radius: 12px;
  overflow: hidden;
}

.clinic-card__img img {
  width: 100%;
  height: auto;
  object-fit: contain;      /* ズームさせず比率を維持 */
}

/* テキスト部分（右側） */
.clinic-card__body {
  flex: 1;
}

.clinic-card__title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-title);
  margin-bottom: 8px;
}

.clinic-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

/* ===== スマホ対応（写真→テキストの縦並び） ===== */
@media (max-width: 768px) {
  .clinic-card {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .clinic-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .clinic-card__body {
    text-align: left;
    width: 100%;
  }
  .clinic-card {
    gap: 12px; /* デフォルトが大きい場合 */
  }
}



/* ===== ブログ ===== */
.blog-section{ 
  background:#fafaf8; 
  padding:3rem 0; }

.blog-list{ 
  display:grid; 
  gap:2rem; 
  grid-template-columns:repeat(3,1fr); }

.blog-card{
   background:#fff; 
   border-radius:12px; 
   overflow:hidden; 
   box-shadow:var(--shadow-soft); }

.blog-card img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
}
.blog-card__body{ 
  padding:1rem 1.2rem; }

.blog-date{ 
  font-size:.85rem; 
  color:#777; 
  display:block; 
  margin-bottom:.2rem; }

/* ===== アクセス ===== */
.access{ padding:3rem 0; }
.access__grid{ display:grid; gap:2rem; grid-template-columns: 1.2fr .8fr; align-items:start; }
.access__map iframe{ width:100%; height:360px; border:0; border-radius:12px; box-shadow:var(--shadow-soft); }
.access__info{ background:#fff; border-radius:12px; padding:1.4rem; box-shadow:var(--shadow-soft); }

/* ===== レスポンシブ ===== */
@media (max-width: 1024px){
  .blog-list{ grid-template-columns:1fr; }
  .features__grid{ grid-template-columns:repeat(2,1fr); }
  .access__grid{ grid-template-columns:1fr; }
}
@media (max-width: 768px) {

  /* 全ての1カラムグリッドの子要素を中央揃えに */
  .intro-cards__grid,
  .usp__grid,
  .blog-list {
    display: grid;
    justify-items: center;  /* ← これで中央揃え */
  }

  /* カード幅を整える（スマホで左右に余白） */
  .intro-card,
  .usp__item,
  .blog-card {
    width: 100%;
    max-width: 480px; /* 好みで調整：400〜500pxが綺麗 */
  }
}

/* ================================
  セクションの余白と中央寄せの調整
=============================== */

/* ▼ すべてのセクションを中央寄せ */
section {
  text-align: center; /* セクション内のテキスト・要素を中央に */
}

/* ▼ セクション間の余白を広げてゆったり見せる */
section {
  padding: 4rem 0; /* 上下の余白をしっかり取る */
}

/* ▼ セクション見出しの余白も少し拡大 */
.sec-ttl {
  margin-bottom: 2rem; /* 見出し下にゆとり */
}

/* ▼ コンテンツブロック間の間隔 */
.intro-cards__grid,
.usp__grid,
.features__grid,
.symptom-cards,
.blog-list {
  margin-top: 2.5rem;
}

/* ▼ CTA（予約誘導部分）は強調のためさらに余白広め */
.cta {
  padding: 5rem 0;
}

/* ▼ 各セクションのcontainerを中央揃え（念のため） */
.container {
  margin: 0 auto;
  text-align: center;
}

/* ▼ テキストブロック内の段落も中央揃えに */
.container p {
  text-align: left;
  line-height: 1.8;
}

/* ▼ ボタンやリンクを中央に配置 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  margin: 1.5rem auto 0;
}

/* ▼ 画像付きカードを中央寄せ（横並びを保ちつつ中央に） */
.intro-cards__grid,
.usp__grid,
.features__grid,
.symptom-cards {
  justify-content: center;
}

/* ================= 初めての方へページ ================= */
/* ヒーロー：少し淡くして文字を読みやすく */
.hero--image .hero__inner { text-align:center; }
.hero--image .container { padding: 5rem 1rem; }

/* Flow（番号つき） */
.flow { padding: 4rem 0; text-align:center; }
.flow__list {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px; margin: 2rem auto 0;
}
.flow__item {
  background:#fff; border-radius:12px; padding:1.2rem 1rem;
  box-shadow: var(--shadow-soft);
}
.flow__num {
  width: 36px; height: 36px; line-height:36px;
  margin: 0 auto .6rem; border-radius:50%;
  background: var(--color-gold); color:#fff; font-weight:700;
}

/* FAQ（details） */
.faq__list { max-width: 840px; margin: 2rem auto 0; text-align:left; }
.faq__item { background:#fff; border-radius:12px; box-shadow:var(--shadow-soft); margin-bottom:.8rem; }
.faq__item summary {
  cursor:pointer; padding:1rem 1.2rem; list-style:none; position:relative; font-weight:600;
}
.faq__item summary::-webkit-details-marker { display:none; }
.faq__item summary::after {
  content:'＋'; position:absolute; right:1rem; top:1rem; color:var(--color-brown);
}
.faq__item[open] summary::after { content:'－'; }
.faq__a { padding: 0 1.2rem 1rem; color:#555; }

/* 安心ポイントと流れのグリッドのレスポンシブ */
@media (max-width: 1024px){
  .flow__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .flow__list { grid-template-columns: 1fr; }
  .faq__list { text-align: left; }
}

/* ================================
   ブログ一覧ページ
================================ */

/* =========================
   ブログ一覧（お知らせ・コラム）
   ========================= */

/* PC 基本レイアウト */
.blog-archive {
  padding: 60px 0 80px;
}

.blog-archive .archive-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.blog-archive .archive-lead {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* カードのグリッド */
.blog-archive .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* カード本体 */
.blog-archive .blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.blog-archive .blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* サムネイル */
.blog-archive .blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* ここをズームさせたくないなら contain に変えてOK */
}

/* 本文部分 */
.blog-archive .blog-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.blog-archive .blog-date {
  font-size: 0.85rem;
  color: #a28b6e;
}

.blog-archive .blog-card__body h3 {
  font-size: 1rem;
  color: var(--color-brown);
  margin: 0;
}

.blog-archive .blog-card__body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
  flex: 1; /* テキスト部分を伸ばして高さ揃え */
}

.blog-archive .blog-more {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 600;
}

/* ホバー */
.blog-archive .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ページネーション余白 */
.blog-archive .pagination {
  margin-top: 2.5rem;
  text-align: center;
}

/* ===== ブログ一覧 レスポンシブ ===== */

/* タブレット：2列 */
@media (max-width: 1024px) {
  .blog-archive .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ：1列＆中央寄せ */
@media (max-width: 768px) {

  .blog-archive {
    padding: 40px 0 60px;
  }

  .blog-archive .archive-title {
    font-size: 1.5rem;
  }

  .blog-archive .archive-lead {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .blog-archive .blog-list {
    grid-template-columns: 1fr;
    justify-items: center; /* カードを中央寄せ */
  }

  .blog-archive .blog-card {
    width: 100%;
    max-width: 520px; /* スマホで左右に少し余白 */
  }

  .blog-archive .blog-card img {
    height: 200px;
  }
}


/* ================================
   パンくずリスト
================================ */
.breadcrumb {
  font-size: .9rem;
  margin: 1rem auto 1.5rem;
  color: #666;
}
.breadcrumb a {
  color: var(--color-brown);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}


/* ================================
   ヘッダー
================================ */

/* 全体のヘッダー */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* 3カラム（ロゴ・メニュー・ボタン） */
.header-inner {
  height: 20px; /* スリムで上品な高さ */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 36px;
}

/* ▼ ヘッダー全体 */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* ▼ ヘッダー内部 3カラム（ロゴ / メニュー / 予約） */
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* =============================
   ナビ（PC/スマホ共通）
============================= */

/* ▼ メニュー（中央） */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ▼ メニューのリスト */
.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* ▼ メニューの1項目 */
.nav-list > li {
  position: relative;          /* サブメニュー用 */
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* ▼ メニューリンク */
.nav-list a {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-brown);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

/* ▼ ホバー下線 */
.nav-list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: .3s;
}
.nav-list > li > a:hover::after { width: 100%; }

/* ▼ 現在ページ */
.current-menu-item > a,
.current-menu-ancestor > a {
  color: var(--color-gold);
}

/* =============================
   PC：サブメニュー（ドロップダウン）
============================= */
.nav-list .sub-menu{
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  z-index: 9999;
}

/* 親にホバーで表示 */
.nav-list > li:hover > .sub-menu{
  display: block;
}

/* サブメニュー項目 */
.nav-list .sub-menu li{ margin: 0; }
.nav-list .sub-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .95rem;
  color: var(--color-brown);
}
.nav-list .sub-menu a:hover{
  background: #faf7f3;
}

/* 親とサブの間の“隙間”をなくす */
.nav-list li.menu-item-has-children .sub-menu{
  top: 100%;
  margin-top: 0;   /* 隙間作らない */
}

.nav-list li.menu-item-has-children{
  position: relative;
}

.nav-list li.menu-item-has-children::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -10px;   /* サブメニューまでの距離 */
  height: 10px;    /* “橋”の高さ */
}

.nav-list li.menu-item-has-children .sub-menu{
  top: calc(100% + 6px);
}


/* サブメニューの「▼」印（親に子がいる時） */
.nav-list > li.menu-item-has-children > a::before{
  content: "▾";
  font-size: .8rem;
  margin-right: 6px;
  opacity: .8;
}

/* ===== メインナビの「・」を完全に消す ===== */
.main-nav ul,
.main-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}



/* =============================
   予約ボタン
============================= */
.reserve-btn {
  background: var(--color-gold);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

/* =============================
   スマホ：ハンバーガー
============================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-brown);
  transition: .25s;
}

/* スマホ時：メニュー/予約ボタンは隠してハンバーガー出す */
@media (max-width: 1000px) {
  .header-btn { display: none; }
  .nav-toggle { display: flex; }
}

/* スマホ時：ナビ本体は基本非表示（開いたら表示） */
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .main-nav.active { display: block; }
}

/* スマホ時：縦並び＋サブメニューは“必ず表示” */
@media (max-width: 1000px) {

  .main-nav.active{
    width: 100%;
    background: #fff;
    padding: 18px 0;
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  .main-nav .nav-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .main-nav .nav-list > li{
    width: 100%;
    padding: 0 16px;
    display: block;
  }

  .main-nav .nav-list > li > a{
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: #faf7f3;
    border: 1px solid rgba(123,94,59,.18);
    font-weight: 700;
  }

  /* PCのホバー下線は消す */
  .main-nav .nav-list > li > a::after{ display:none; }

  /* ▼▼ ここが重要：サブメニューは常に表示 ▼▼ */
  .main-nav .sub-menu{
    display: block !important;
    position: static;
    transform: none;
    min-width: auto;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0;
    margin: 0;
  }

  .main-nav .sub-menu li{
    padding-left: 14px; /* インデント */
  }

  .main-nav .sub-menu a{
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    font-weight: 600;
    font-size: .95rem;
  }

  .main-nav .sub-menu a:hover{
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
  }

  /* スマホは▾不要なら消す */
  .nav-list > li.menu-item-has-children > a::before{
    content: "";
    margin: 0;
  }
}

/* ハンバーガーの×（見た目用） */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(9px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-9px);
}

/* PCではメニュー表示＆ハンバーガー非表示 */
@media (min-width: 1001px) {
  .main-nav { display: flex !important; }
  .header-btn { display: block !important; }
  .nav-toggle { display: none !important; }
}

/* =========================
   メニューの先頭「・」を完全に消す（PC/サブメニュー含む）
   ========================= */
.main-nav .nav-list,
.main-nav .nav-list li,
.main-nav .nav-list ul,
.main-nav .nav-list ul li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* marker（liの黒点）を殺す */
.main-nav .nav-list li::marker,
.main-nav .nav-list ul li::marker {
  content: "" !important;
}

/* 「・」を疑似要素で出してる場合も殺す（ここが重要） */
.main-nav .nav-list li::before,
.main-nav .nav-list ul li::before {
  content: none !important;
  display: none !important;
}


/* =========================================
  ブログ記事ページ（single.php）
  Tesora治療院テーマ
========================================= */

/* ▼ コンテナ */
.single-container {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ▼ パンくず（任意で少し整える） */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: #9b7d59;
}

/* ▼ タイトル */
.single-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-brown);
  line-height: 1.4;
}

/* ▼ 日付・カテゴリ */
.single-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #9b7d59;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

/* ▼ アイキャッチ */
.single-eyecatch img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 40px;
}

/* ▼ 本文 */
.single-content {
  text-align: left;
  line-height: 1.9;
  font-size: 1.05rem;
  color: #4a3b2f;
}

.single-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--color-brown);
}

.single-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--color-brown);
}

/* ▼ 本文内の画像 */
.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ▼ 前後記事リンク */
.single-nav {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.single-nav a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
}

.single-nav a:hover {
  text-decoration: underline;
}


/* =========================================
  目次（TOC）
========================================= */

.toc-box {
  background: #faf6f2;
  border: 1px solid #e5d4bf;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 40px;
}

.toc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.toc-list {
  margin: 0;
  padding-left: 18px;
  color: #6b4f2d;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: var(--color-brown);
  text-decoration: none;
}

.toc-list a:hover {
  text-decoration: underline;
}

/* =========================================
  SNSシェアボタン
========================================= */

.share-box {
  margin: 60px 0 40px;
  padding: 20px;
  background: #faf6f2;
  border-radius: 8px;
  border: 1px solid #e5d4bf;
  text-align: center;
}

.share-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.share-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

/* ▼ SNS別カラー */
.share-btn.x {
  background: #000;
}

.share-btn.line {
  background: #06c755;
}

.share-btn.fb {
  background: #1877f2;
}

/* =========================================
  関連記事（カード型）
========================================= */

.related-posts {
  margin: 60px 0 80px;
}

.related-posts .related-title {
  font-size: 1.4rem;
  color: var(--color-brown);
  margin-bottom: 20px;
  font-weight: 600;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.related-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.related-card img {
  width: 100%;
  height: auto;
}

.related-body {
  padding: 14px;
}

.related-date {
  color: #9b7d59;
  font-size: 0.8rem;
}

.related-title-text {
  font-size: 1rem;
  color: var(--color-brown);
  margin-top: 6px;
  line-height: 1.4;
}

/* =========================================
  スマホ対応
========================================= */

@media (max-width: 768px) {
  .single-title {
    font-size: 1.6rem;
  }
  .single-content h2 {
    font-size: 1.4rem;
  }
}

/* =========================================
  お知らせ記事（single-news.php）
========================================= */

.news-single-container {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ▼ セクションラベル */
.news-label {
  color: var(--color-gold);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ▼ タイトル */
.news-title {
  font-size: 1.8rem;
  color: var(--color-brown);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* ▼ 日付 */
.news-date {
  text-align: center;
  color: #9b7d59;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ▼ 本文 */
.news-content {
  color: #4a3b2f;
  line-height: 1.8;
  font-size: 1.05rem;
}

.news-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* ▼ 前後記事 */
.news-nav {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 30px;
}

.news-nav a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
}

/* ▼ 一覧に戻る */
.news-back {
  text-align: center;
  margin-top: 10px;
}

.news-back a {
  background: var(--color-gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.news-back a:hover {
  opacity: 0.9;
}

/* ============================
   アクセスページ 共通
============================ */

.access-page {
  padding-bottom: 60px;
}

/* ▼ タイトル */
.access-title-area {
  text-align: center;
  margin: 50px 0 40px;
}
.access-title {
  font-size: 2rem;
  color: var(--color-brown);
  margin-bottom: 6px;
}
.access-sub {
  color: #8d7a63;
  font-size: 0.95rem;
}

/* ▼ マップ */
.access-map iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  height: 380px;
}
@media (max-width: 768px) {
  .access-map iframe {
    height: 260px;
  }
}

/* ▼ 基本情報（1カラムに変更） */
.access-info {
  max-width: 760px;
  margin: 50px auto;
  padding: 0 20px;
}

.access-info-right img {
  max-width: 100%;
  border-radius: 8px;
}

.access-info h2 {
  color: var(--color-brown);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.access-table dt {
  font-weight: bold;
  margin-bottom: 4px;
  color: var(--color-brown);
}
.access-table dd {
  margin: 0 0 16px;
  color: #4a3b2f;
}

.access-table a {
  color: var(--color-gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .access-info {
    flex-direction: column;
    align-items: center;
  }
  .access-info-right {
    margin-top: 30px;
    width: 100%;
  }
}


/* ▼ 詳細アクセス */
.access-detail {
  margin-top: 70px;
}

.access-detail h2 {
  color: var(--color-brown);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.access-detail h3 {
  color: var(--color-gold);
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.access-detail p {
  color: #4a3b2f;
  line-height: 1.8;
}


/* ============================
   駐車場案内セクション
============================ */

.access-parking {
  margin-top: 80px;
}

.access-parking h2 {
  color: var(--color-brown);
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.parking-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.parking-text {
  flex: 1;
  color: #4a3b2f;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center !important;
}

.parking-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

@media(max-width: 768px) {
  .parking-wrap {
    flex-direction: column;
  }
  .parking-image {
    margin-top: 20px;
  }
}

/* ▼ CTA */
.access-cta {
  text-align: center;
  margin-top: 60px;
}
.access-btn {
  padding: 12px 28px;
  font-size: 1rem;
}

/* ============================
   基本情報の写真レイアウト修正
============================ */

.photo-block {
  margin: 25px auto 0;
  max-width: 720px;
  text-align: center;
}

.photo-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: block;   /* ← inline-block は不要 */
}


/* ======================================
   アクセスページの Google マップ（小さめ）
====================================== */

.access-map {
  max-width: 680px;     /* 地図の横幅を少し狭くする */
  margin: 0 auto 40px;  /* 真ん中寄せ＋下だけ余白 */
}

.access-map iframe {
  width: 100%;
  height: 260px;        /* ← 小さめに調整（元380px） */
  border-radius: 8px;
}

@media (max-width: 768px) {
  .access-map {
    max-width: 100%;
  }
  .access-map iframe {
    height: 200px;      /* スマホ用の高さ */
  }
}

/* ======================================
   駐車場案内：説明文の下に写真を配置（縦並び）
====================================== */

.parking-wrap {
  display: block; /* 横並びを解除して縦並びに */
}

.parking-text {
  margin-bottom: 20px; /* 説明文の下に余白 */
  color: #4a3b2f;
  line-height: 1.8;
}


/* ======================================
   料金ページ
====================================== */

.price-page {
  padding: 50px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.price-title {
  text-align: center;
  color: var(--color-brown);
  font-size: 2rem;
  margin-bottom: 15px;
}

.price-lead {
  text-align: center;
  color: #5c4a36;
  margin-bottom: 40px;
  line-height: 1.8;
}

.price-section {
  margin-bottom: 50px;
}

.price-heading {
  font-size: 1.4rem;
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #e5e0d8;
}

.price-table th {
  text-align: left;
  color: var(--color-brown);
  font-weight: 600;
}

.price-table td {
  text-align: right;
  color: #4a3b2f;
  font-weight: 500;
}

/* =====================================
   ▼ スタッフ紹介（縦レイアウト + 囲い付き）
===================================== */

/* スタッフ全体の余白 */
.staff-box.vertical {
  max-width: 850px;
  margin: 0 auto 70px;
  padding: 40px 30px;
  background: #fff;
  border: 1px solid rgba(212, 185, 120, 0.4); /* ゴールドの薄い枠 */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center; /* タイトルなど中央 */
}

/* 写真 */
.staff-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100%;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 名前（中央揃え） */
.staff-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 5px;
  text-align: center;
}

/* 役職（中央揃え） */
.staff-role {
  font-size: 1rem;
  color: #866b50;
  margin-bottom: 20px;
  text-align: center;
}

/* テキストは読みやすく左寄せ */
.staff-info {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.staff-text {
  line-height: 1.75;
  margin-bottom: 20px;
  color: #4a3b2f;
}

/* 小見出し */
.staff-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-brown);
  margin: 25px 0 12px;
}

/* 箇条書き */
.staff-detail li {
  margin-bottom: 7px;
  line-height: 1.75;
}

.staff-title{
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-brown);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

/* ゴールドの下線 */
.staff-title::after{
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin: 12px auto 0;
}

.staff-lead{
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}


/* ▼ 症状ページタイトル */ 
.symptom-title { 
  text-align: center; 
  font-size: 32px; 
  color: #7B5E3B; 
  margin-bottom: 40px; 
} 

/* ▼ こんなお悩み */ 
.symptom-trouble { 
  background: #fff; 
  padding: 30px; 
  border-radius: 10px; 
  margin-bottom: 40px; 
  box-shadow: 0 0 12px rgba(0,0,0,0.06); 
} 
.symptom-trouble ul li { 
  font-size: 18px; 
  margin-bottom: 10px; 
} 

/* ▼ 目次 */ 
.symptom-toc { 
  background: #fff; 
  padding: 30px 25px; 
  border-radius: 10px; 
  margin-bottom: 50px; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
  box-shadow: 0 0 12px rgba(0,0,0,0.06); 
} 
.toc-title { 
  text-align: center; 
  font-size: 26px; 
  color: #7B5E3B; 
  margin-bottom: 20px; 
} 
.toc-list li { 
  margin-bottom: 10px; 
  font-size: 18px; 
} 
.toc-list a { 
  color: #7B5E3B; 
  text-decoration: none; 
} 
.toc-list a:hover { 
  color: #b8925c; 
} 

/* ▼ セクション全体 */ 
.symptom-section { 
  padding: 50px 0;
  background: #ffffff; 
  margin-bottom: 35px; 
  border-radius: 12px; 
} 

/* ▼ セクションタイトル */ 
.symptom-section .section-title { 
  font-size: 26px; 
  margin-bottom: 20px; 
  color: #7B5E3B; 
  text-align: center; 
  font-weight: 600; 
} 

/* ▼ セクション本文 */ 
.section-body { 
  max-width: 820px; 
  margin: 0 auto; 
  padding: 0 20px;
  text-align: left; 
  line-height: 1.9; 
  font-size: 17px; 
  color: #444; 
} 

.section-body p { 
  margin-bottom: 1.4em; 
} 
.section-body ul, 
.section-body ol { 
  margin-left: 1.5em; 
  margin-bottom: 1.4em; 
} 
.section-body li { 
  margin-bottom: 6px; 
  line-height: 1.8; 
} 

/* ▼ Q&A */ 
.symptom-qa .section-title { 
  text-align: center; 
  font-size: 26px; 
  color: #7B5E3B; 
  margin-bottom: 30px; 
} 

.qa-list { 
  max-width: 850px; 
  margin: 0 auto; 
} 
.qa-item { 
  background: #fff; 
  padding: 20px 25px; 
  border-radius: 10px; 
  margin-bottom: 20px; 
  border: 1px solid #eee; 
} 
.qa-question { 
  font-size: 20px; 
  font-weight: bold; 
  margin-bottom: 10px; 
  color: #7B5E3B; 
} 
.qa-answer { 
  font-size: 16px; 
  line-height: 1.8; 
} 

/* ▼ 関連ブログ */ 
.symptom-related { 
  margin-top: 60px; 
} 
.symptom-related .section-title { 
  text-align: center; 
  font-size: 26px; 
  color: #7B5E3B; 
  margin-bottom: 25px; 
} 
.related-posts { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); 
  gap: 20px; 
} 
.related-card { 
  background: #fff; 
  border-radius: 10px; 
  padding: 15px; 
  text-align: center; 
  box-shadow: 0 0 10px rgba(0,0,0,0.05); 
} 
.related-card h3 { 
  font-size: 18px; 
  margin-top: 10px; 
  color: #333; 
} 

/* ▼ ヒーロー画像 */ 
.symptom-hero { 
  position: relative; 
  width: 100%; 
  height: 320px; 
  overflow: hidden; 
  margin-bottom: 40px;
} 
.symptom-hero img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
} 

/* ▼ スマホ調整 */ 
@media (max-width: 768px) { 
  .symptom-section { 
    padding: 35px 0; 
  } 
  .symptom-section .section-title { 
    font-size: 22px; 
  } 
  .section-body { 
    font-size: 16px; 
    padding: 0 15px; 
  } 
}

/* カードの共通スタイル（PC） */
.symptom-card {
    max-width: 840px;
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* PC時：悩みは左・目次は中央に揃う */
.symptom-wrapper .container {
    max-width: 1040px;
    width: 90%;
    margin: 0 auto;
}

/* ▼ リストの余白を綺麗にする（PC・SP共通） */
.trouble-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    padding-left: 0.4em;
}

/* ▼ 目次の番号と文字の感覚を整える */
.toc-list {
    padding-left: 1.2em;
}

.toc-list li {
    margin: 8px 0;
}

/* ----------------------------------
  セクションタイトル共通（色・中央揃え）
---------------------------------- */
.section-title {
    text-align: center !important;
    color: #7B5E3B !important; /* 他ページと統一のブラウン */
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 16px;
}


/* =========================================
   🍎 スマホ対応（幅 768px 以下）
========================================= */
@media (max-width: 768px) {

    .symptom-card {
        margin: 24px auto;
        padding: 20px 22px;
        max-width: 100%; /* 画面幅いっぱい */
    }

    /* タイトル中央寄せ維持 */
    .symptom-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 24px;
    }

    /* リスト文字サイズを少し調整 */
    .trouble-list li,
    .toc-list li {
        font-size: 15px;
    }
}

/* =========================================
   🍎 超スマホ（幅 480px 以下）
========================================= */
@media (max-width: 480px) {

    .symptom-card {
        padding: 18px 18px;
        border-radius: 10px;
    }

    .trouble-list li,
    .toc-list li {
        font-size: 14px;
    }
}

/* ========== ハンバーガー ========== */
.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: 0.3s;
}

/* スマホで表示 */
@media (max-width: 1000px) {
  .main-nav, .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ========== メニュー開く時のアニメ ========== */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================
   ▼ 右からスライドするメニュー
   ============================= */

.mobile-menu{
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 380px;

  height: 100dvh;            /* ★100%じゃなくdvhが安定 */
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 9999;
  box-shadow: -4px 0 10px rgba(0,0,0,0.15);
  pointer-events: none;
}

.mobile-menu.active{
  transform: translateX(0);
  pointer-events: auto;
}

/* overlay */
.mobile-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;      /* ★これ追加 */
  transition: .3s;
  z-index: 9998;
}

.mobile-overlay.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;      /* ★これ追加 */
}

/* 中身スクロール */
.mobile-inner{
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 60px 20px 20px;
  box-sizing: border-box;
}


.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;                  /* 左寄せの方が綺麗 */
}

.mobile-nav-list li a {
  font-size: 1.2rem;
  color: var(--color-brown);
  text-decoration: none;
  font-weight: 600;
}

/* 予約ボタン */
.mobile-reserve-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color-gold);
  color: #fff;
  border-radius: 30px;
  margin-top: 30px;
  font-weight: 600;
}

/* 閉じるボタン（×） */
.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-brown);
  cursor: pointer;
}

.mobile-menu.is-open {
  transform: translateX(0);
  pointer-events: auto; /* ← 触れるようにする */
}

/* 背景スクロール禁止 */
body.is-fixed {
  overflow: hidden;
}



/* ================================
  症状一覧ページ
=============================== */
.archive-symptom .page-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-brown);
  margin-bottom: 2rem;
}

/* カードのグリッド */
.archive-symptom .symptom-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* カード本体 */
.archive-symptom .symptom-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: .2s;
}

.archive-symptom .symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* アイコンを丸背景で囲む（TOPと同じ） */
.archive-symptom .symptom-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: #faf5ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-symptom .symptom-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* タイトル */
.archive-symptom .symptom-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .archive-symptom .symptom-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .archive-symptom .symptom-cards {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   TOP「最新ブログ」専用レイアウト
   ============================== */

/* PC〜タブレット共通：横並びカード */
.blog-section .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.blog-section .blog-card {
  width: 320px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.3s;
}

.blog-section .blog-card:hover {
  transform: translateY(-5px);
}

.blog-section .blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-section .blog-card__body {
  padding: 0.8rem 1rem 1rem;
}

.blog-section .blog-card__body h3 {
  color: var(--color-brown);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.blog-section .blog-card__body p {
  font-size: 0.9rem;
  color: #555;
}

/* ==============================
   スマホ（768px以下）は縦1列
   ============================== */
@media (max-width: 768px) {

  /* ▼ 縦並びに固定 */
  .blog-section .blog-list {
    flex-direction: column !important;   /* 横 → 縦 */
    flex-wrap: nowrap !important;       /* 折り返さない */
    align-items: center;                /* 真ん中揃え */
  }

  /* ▼ カードの幅を100％にして1列表示 */
  .blog-section .blog-card {
    width: 100% !important;
    max-width: 520px;
  }

  .blog-section .blog-card img {
    height: 200px;
  }
}

/* =========================
  施術メニュー（PHP固定ページ用）
========================= */
.menu-hero{
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
  background: transparent; /* ← ここ変更 */
}

.menu-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.menu-hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(0,0,0,.12) 0%,
      rgba(0,0,0,.8) 55%,
      rgba(0,0,0,.45) 100%
    );
}

.menu-hero .container{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.menu-hero__inner{
  max-width: 760px;
  text-align: center;
}
.menu-hero__kicker{
  color: rgba(255,255,255,.88);
  position: absolute;
  top: 24px;
  left: 24px;

  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);

  letter-spacing: .05em;
  text-shadow: 0 4px 10px rgba(0,0,0,.35);
}
.menu-hero__title{
  color: rgba(255,255,255,.88);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.menu-hero__lead{
  color:#fff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 8px;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.menu-hero__desc{
  color: rgba(255,255,255,.88);
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.9;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.menu-body{ padding: 56px 0; }

.menu-card{
  background:#fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  margin: 0 0 22px;
}
.menu-lead{ line-height:1.85; margin: 10px 0 0; }

/* チェックリスト */
.menu-check{
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 6px;
  max-width: 720px;     /* ← バランス最高ゾーン */
  margin: 18px auto 0;  /* 中央寄せ */
  padding-left: 0;
  text-align: left;
}

.menu-check li {
  position: relative;
  padding-left: 32px;
  line-height: 1.9;
}

.menu-check li::before {
  content: "▶";
  position: absolute;
  left: 6px;
  top: 0.15em;
  font-size: 0.85rem;
  color: var(--color-gold);
  opacity: 0.85;
}


/* ステップ */
/* ステップ */
.menu-steps{ display: grid; gap: 16px; margin-top: 18px; }

.menu-step{
  border: 1px solid #efe6d9;
  border-radius: 12px;
  padding: 18px 20px;          /* ← 上下も付けて統一 */
  background: #fffdf9;
}

.menu-step h3{
  margin: 0 0 10px;
  color: var(--color-brown);
  font-size: 1.1rem;
}

.menu-step p{
  max-width: 680px;            /* ← 読みやすさ優先なら 680 */
  margin: 10px auto 0;
  line-height: 1.9;
  text-align: left;
}

/* 箇条書き（menu-dot 側で制御する） */
.menu-dot{ margin: 10px auto 0; max-width: 680px; padding-left: 1.1em; }
.menu-dot li{ margin: 6px 0; line-height: 1.8; }


.menu-step li::marker {
  content: none;
}

.menu-card .menu-dot {
  max-width: 600px;   /* 他とバランス取る */
  margin: 16px auto;  /* 中央寄せ */
  padding-left: 0;
}

.menu-card .menu-dot li {
  padding-left: 22px; /* マーカー分だけ */
}


/* 料金表 */
/* セクションのカード（すでにあるなら上書き） */
.menu-card{
  background:#fff;
  border-radius:14px;
  box-shadow: var(--shadow-soft);
  padding: 26px 22px;
}

/* タイトル */
.menu-card .section-title{
  text-align:center;
  color: var(--color-brown);
  margin: 0 0 18px;
}

/* 料金行：左（内容） / 右（金額）を固定 */
.menu-price__row{
  display:grid;
  grid-template-columns: 1fr auto; /* ←レスポンシブでも崩れない */
  gap: 12px 18px;
  align-items:center;
  padding: 16px 0;
}

/* 行の区切り線（2行目以降） */
.menu-price__row + .menu-price__row{
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* 左：メニュー名＋説明 */
.menu-price__name strong{
  display:block;
  font-weight: 800;
  color: var(--color-brown);
  line-height: 1.5;
  margin-bottom: 6px;
}

.menu-price__name span{
  display:block;
  color:#666;
  font-size: .95rem;
  line-height: 1.8;
}

/* 右：金額（折り返ししない＆右寄せ） */
.menu-price__val{
  justify-self:end;
  white-space: nowrap;
  font-weight: 800;
  color: var(--color-brown);
  font-size: 1rem;
}

/* 注意書き */
.menu-note{
  margin-top: 16px;
  color:#666;
  font-size: .92rem;
  line-height: 1.9;
}

.menu-note p{
  margin: 6px 0;
}

.note-important {
  color: #c0392b;
  font-weight: 700;
  padding-left: 0.6em;
  border-left: 3px solid rgba(192,57,43,0.4);
}


/* 料金表：バランス調整（左は左揃え、右は右揃え） */
.menu-price__row{
  align-items: flex-start; /* 文章量が違っても上で揃う */
}

.menu-price__name{
  text-align: left !important;  /* ←これが一番効く */
}

.menu-price__val{
  text-align: right;
  justify-self: end;
}

/* タイトルは中央のままでOK */
.menu-card .section-title{
  text-align: center;
}

/* =========================
  スマホ：見た目は同じで“縮めるだけ”
========================= */
@media (max-width: 768px){
  .menu-card{
    padding: 20px 16px;
  }

  .menu-price__row{
    padding: 14px 0;
    gap: 10px 12px;
  }

  .menu-price__name span{
    font-size: .9rem;
  }

  .menu-price__val{
    font-size: .98rem;
  }
}

/* Responsive */
@media (max-width: 768px){
  .menu-hero{ padding: 60px 0 54px; }
  .menu-hero__title{ font-size: 1.85rem; }
  .menu-card{ padding: 20px; }
  .menu-price__row{ flex-direction: column; }
  .menu-price__val{ text-align: left; }
  .menu-hero__inner{  max-width: 100%;}
  .menu-hero__lead{  font-size: 1.05rem;}
  
}

/* =========================
   施術メニュー Heroのボタン色を統一（強制）
========================= */
.menu-hero a.btn-primary,
.menu-hero .btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold) !important;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  transition: .25s;
}

.menu-hero a.btn-primary:hover,
.menu-hero .btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(0.95);
}

/* =========================
  メニュー詳細ページ共通
========================= */
.menu-wrap{ padding: 56px 0 90px; background: var(--color-bg, #faf7f3); }
.menu-card{
  background:#fff;
  border-radius:14px;
  box-shadow: var(--shadow-soft);
  padding: 28px 22px;
  margin: 0 0 22px;
}
.section-title{
  text-align:center;
  color: var(--color-brown);
  margin: 0 0 16px;
  font-size: 1.45rem;
  font-weight: 800;
}
.section-title .section-sub{
  display:block;
  font-size: .95rem;
  font-weight: 600;
  color:#8b8b8b;
  margin-top: 6px;
}

/* 見出しH3 */
.menu-h3{
  margin: 18px 0 10px;
  color: var(--color-brown);
  font-size: 1.1rem;
  font-weight: 800;
}

/* 箇条書き */
.menu-check,
.menu-dot{
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}
.menu-check li,
.menu-dot li{
  position: relative;
  padding-left: 28px;
  line-height: 1.9;
  margin: 8px 0;
  color:#333;
}

.menu-dot li strong {
  color: var(--color-brown);
  font-weight: 800;
}

/* ステップ */
.menu-step{
  margin: 14px 0 0;
  padding-left: 1.2em;
}
.menu-step li{
  margin: 8px 0;
  line-height: 1.9;
}

/* ボックス */
.menu-box{
  background: #faf7f3;
  border: 1px solid rgba(123, 94, 59, .15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 14px;
}
.menu-box__ttl{
  font-size: 1.25rem;        /* 少し大きく */
  font-weight: 800;          /* しっかり太く */
  color: var(--color-brown);
  margin-bottom: 8px;
  line-height: 1.35;
  position: relative;
  padding-bottom: 6px;
  letter-spacing: 0.02em;
}

/* ===== ステップ：画像付き ===== */
/* 画像は下に来る＆中央寄せ */
.menu-step__media{
  width: min(520px, 100%);
  margin: 14px auto 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  text-align: center;
}

/* PC〜タブレット */
.menu-step__media img{
  width: 100%;
  max-height: 360px;     /* 高さは「上限」にする */
  height: auto;          /* ← ズームしない */
  object-fit: contain;   /* ← 切らない */
  display: block;
  border-radius: 10px;
}

/* スマホだけ今まで通り */
@media (max-width: 768px){
  .menu-step__media img{
    object-fit: cover;   /* スマホはトリミングOK */
  }
}



/* 下に短いゴールドライン */
.menu-box__ttl::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;          /* ← 下線の長さを固定 */
  height: 2px;          /* ← 太さを完全固定 */
  background: var(--color-gold);
  border-radius: 2px;
}

.menu-small{ font-size: .92rem; color:#666; margin-top: 6px; }

/* CTA（カード内） */
.menu-cta{
  text-align:center;
  margin-top: 18px;
}

/* =========================
  ヒーロー（中央＋左上キッカー）
========================= */
.menu-hero{
  position: relative;
  padding: 70px 0 62px;
  overflow: hidden;
  background: #1b1b1b;
}
.menu-hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
}
.menu-hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(circle at 45% 45%, rgba(0,0,0,.18) 0%, rgba(0,0,0,.38) 5%, rgba(0,0,0,.50) 100%);
}
.menu-hero .container{ position: relative; z-index: 2; }

/* 左上キッカー */
.menu-hero__kicker{
  position: absolute;
  top: 18px;
  left: 20px;
  margin: 0;
  color: rgba(255,255,255,.90);
  font-size: .92rem;
  letter-spacing: .02em;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.menu-hero__inner{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 0 12px;
}
.menu-hero__title{
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.menu-hero__lead{
  font-size: 1.1rem;
  font-weight: 800;
  margin: 12px 0 10px;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.menu-hero__desc{
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.menu-hero__cta{ margin-top: 18px; }

/* =========================
  料金表（バランス良く＆崩れない）
========================= */
.menu-price__row{
  display:grid;
  grid-template-columns: 1fr 110px;
  gap: 12px 18px;
  align-items: flex-start;
  padding: 14px 0;
}
.menu-price__row + .menu-price__row{
  border-top: 1px solid rgba(0,0,0,0.08);
}
.menu-price__name{ text-align:left; }
.menu-price__name strong{
  display:block;
  font-weight: 800;
  color: var(--color-brown);
  line-height: 1.5;
  margin-bottom: 6px;
}
.menu-price__name span{
  display:block;
  color:#666;
  font-size: .9rem;
  line-height: 1.8;
}
.menu-price__val{
  justify-self:end;
  text-align:right;
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-brown);
  font-size: 1rem;
}
.menu-note{
  margin-top: 16px;
  color:#666;
  font-size: .92rem;
  line-height: 1.9;
}
.menu-note p{ margin: 6px 0; }

/* カード内の読み物幅を統一 */
.menu-card .menu-price,
.menu-card .menu-note{
  max-width: 760px;   /* 他セクションと同じ幅に */
  margin: 0 auto;     /* 中央寄せ */
}


/* =========================
  レスポンシブ
========================= */
@media (max-width: 768px){
  .menu-hero{ padding: 56px 0 52px; }
  .menu-hero__kicker{
    position: static;
    padding: 0 12px;
    margin: 0 0 10px;
    text-align: left;
  }
  .menu-hero__title{ font-size: 2.05rem; }
  .menu-hero__lead{ font-size: 1.02rem; }
  .menu-hero__desc{ font-size: .98rem; }

  .menu-card{ padding: 22px 16px; }
  .section-title{ font-size: 1.35rem; }

  .menu-price__row{
    grid-template-columns: 1fr 84px;
    gap: 10px 12px;
    padding: 14px 0;
  }
  .menu-price__name span{ font-size: .9rem; }
}

/* メニュー詳細ページ：文章の見た目を統一（おすすめ） */
.menu-card p{
  margin: 10px 0;
  line-height: 1.9;
  color:#333;
  max-width: 680px;
  margin: 10px auto;
  line-height: 1.9;
  text-align: left;
}

/* =========================
  比較表（アラテック用）
========================= */
.menu-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 12px;
}
.menu-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px; /* スマホは横スクロール */
  background: #fff;
}
.menu-table th,
.menu-table td{
  border: 1px solid rgba(0,0,0,0.08);
  padding: 12px 12px;
  vertical-align: top;
  font-size: .95rem;
  line-height: 1.7;
}
.menu-table thead th{
  background: #faf7f3;
  color: var(--color-brown);
  font-weight: 800;
}
.menu-table tbody th{
  background: #fcfbf9;
  color: var(--color-brown);
  font-weight: 800;
  width: 140px;
}

/* 横スクロールの器 */
.menu-table-wrap{
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* 右端フェード（スクロール誘導） */
.menu-table-wrap::after{
  content:"";
  position:absolute;
  top:0; right:0;
  width:64px;
  height:100%;
  pointer-events:none;
  opacity:1;
  transition: opacity .2s ease;
  background: linear-gradient(to left, rgba(250,247,243,1), rgba(250,247,243,0));
}

/* いま置いてる「※表は横にスクロールできます」も同時に制御 */
.menu-scroll-hint{
  font-size: .85rem;
  color: #777;
  margin: 0 0 10px;
  transition: opacity .2s ease;
}

/* ✅ スクロールしたら消す */
.menu-table-wrap.is-scrolled::after{
  opacity:0;
}
.menu-table-wrap.is-scrolled .menu-scroll-hint{
  opacity:0;
}


/* =================================================
   PCヘッダーメインメニューの「・」（::before）を消す
   ================================================= */

/* 念のため marker も list-style も無効化 */
.main-nav .nav-list,
.main-nav .nav-list > li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.main-nav .nav-list > li::marker { content: "" !important; }

/* ★ここが本命：トップ階層 li の ::before を無効化 */
.main-nav .nav-list > li::before {
  content: none !important;
  display: none !important;
}

/* ★liじゃなく a 側に付いてる場合もあるので a::before も無効化 */
.main-nav .nav-list > li > a::before {
  content: none !important;
  display: none !important;
}

/* =========================
  FAQ アコーディオン（details/summary）
========================= */
.faq-acc{
  display: grid;
  gap: 12px;
}

.faq-acc__item{
  border: 1px solid rgba(123, 94, 59, .18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* summary のデフォルト三角を消す */
.faq-acc__item summary{
  list-style: none;
}
.faq-acc__item summary::-webkit-details-marker{
  display: none;
}

.faq-acc__q{
  cursor: pointer;
  padding: 14px 46px 14px 16px;
  font-weight: 800;
  color: var(--color-brown);
  position: relative;
  line-height: 1.6;
  background: #faf7f3;
}

/* 右側の矢印 */
.faq-acc__q::after{
  content: "＋";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-brown);
  background: rgba(196, 159, 74, .18);
  border: 1px solid rgba(196, 159, 74, .35);
  font-weight: 900;
}

/* 開いたとき */
.faq-acc__item[open] .faq-acc__q{
  background: #fff;
}
.faq-acc__item[open] .faq-acc__q::after{
  content: "－";
}

/* 回答 */
.faq-acc__a{
  padding: 14px 16px 16px;
  color: #333;
  line-height: 1.9;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* スマホ微調整 */
@media (max-width: 768px){
  .faq-acc__q{
    padding: 13px 44px 13px 14px;
    font-size: 0.98rem;
  }
  .faq-acc__a{
    padding: 12px 14px 14px;
    font-size: 0.95rem;
  }
}

/* =========================
  施術メニュー：本文はすべて左揃えに統一
========================= */
.menu-wrap,
.menu-wrap p,
.menu-wrap ul,
.menu-wrap ol,
.menu-wrap li,
.menu-wrap .menu-box,
.menu-wrap .menu-price,
.menu-wrap .menu-note,
.menu-wrap .faq-acc,
.menu-wrap .faq-acc__a {
  text-align: left;
}

/* =========================
  アラテックメニュー：安全性・注意/お客様の声
========================= */

/* 安全性・注意セクション */
.menu-card--alert{
  background: #fdf4ec; /* やさしい注意色 */
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 30px rgba(196,159,74,.18);
  position: relative;
}

/* 左上ラベル */
.menu-card--alert::before{
  content: "必読";
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--color-gold);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

/* タイトルも少し強めに */
.menu-card--alert .section-title{
  color: #8a5a00;
}
.menu-card--alert{
  overflow: visible; /* ← これでラベルが切れない */
}

.voice-list{
  list-style: none;
  padding-left: 0;
  max-width: 760px;   /* 他と揃える */
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.voice-list li{
  display: grid;
  grid-template-columns: 10.5em 1fr; /* ←左列を固定幅にして揃える */
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.voice-list li:last-child{ border-bottom: none; }

.voice-list strong{
  color: var(--color-brown);
  font-weight: 800;
  white-space: nowrap;
}

.voice-list span{
  color: #333;
  line-height: 1.8;
}

.voice-list .result{
  color:#333;
  font-weight:600;
}

.voice-list .meta{
  color:#777;
  font-size:.9rem;
  margin-left:4px;
}
.voice-note{
  margin-top: 18px;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.7;
  text-align: center;
}

.voice-list li {
  position: relative;
  padding: 14px 0;
}

.voice-link {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 10px;
  font-size: 0.85rem;
  color: var(--color-brown);
  border: 1px solid rgba(123, 94, 59, 0.4);
  border-radius: 20px;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}

.voice-link:hover {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}


/* スマホは1列に落とす（崩れない） */
@media (max-width: 768px){
  .voice-list li{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .voice-list strong{
    white-space: normal;
  }
}

/* ===== Before / After ===== */
.ba-box{
  margin-top: 18px;
  padding: 16px 14px 12px;
  background: #faf7f3;
  border: 1px solid rgba(123, 94, 59, .15);
  border-radius: 14px;
}

.ba-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.ba-item{
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  flex: 1 1 50%;
}

.ba-item img{
  width: 100%;
  aspect-ratio: 1 / 1; 
  display: block;
  border-radius: 10px;
  background: #f5f5f5; 
  height: auto;
}

.ba-cap{
  text-align: center;
  padding: 8px 10px 10px;
  font-weight: 800;
  color: var(--color-brown);
  font-size: .98rem;
}

.ba-arrow{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-gold);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.ba-note{
  margin: 10px 0 0;
  text-align: center;
  font-size: .86rem;
  color: #c33; /* 注意書きを赤に */
  font-weight: 700;
}

.ba-wrap{
  display: flex;
  gap: 12px;
}

.ba-label{
  font-size: 0.85rem;
  margin-top: 6px;
}


/* スマホ：縦並び */
@media (max-width: 768px){
  .ba-wrap{
    gap: 8px;
  }
}

/* ===== Before/After セクション ===== */
.menu-ba .menu-lead{
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.9;
}

.menu-attention{
  color: #b23a2f;        /* 注意書き赤 */
  font-weight: 700;
}

/* 2組を縦に並べる（カード内で事例が2つ） */
.ba-grid{
  display: grid;
  gap: 18px;
}

.ba-item{
  border: 1px solid rgba(123, 94, 59, .15);
  border-radius: 12px;
  background: #fffdf9;
  padding: 16px;
}

.ba-title{
  margin: 0 0 12px;
  text-align: left;
}

/* Before/After 2枚の並び（スマホでも横並び） */
.ba-pair{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.ba-figure{
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f2eee7;
}

/* ラベル */
.ba-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  background: rgba(27,27,27,.65);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* 画像：ズームしすぎない、でも高さは確保 */
.ba-figure img{
  width: 100%;
  height: 240px;        /* ← 高さほしいならここを上げる */
  object-fit: cover;    /* トリミングOKなら */
  display: block;
}

/* キャプション */
.ba-caption{
  margin: 10px 0 0;
  color: #666;
  font-size: .95rem;
  line-height: 1.8;
}

/* タブレット〜スマホ */
@media (max-width: 768px){
  .ba-item{ padding: 14px; }
  .ba-figure img{ height: 190px; } /* スマホでちょうど良い高さ */
}

/* フッターのメニューの●を消す */
.footer-nav ul,
.footer-nav ul li,
.footer-nav ul.sub-menu {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* 親見出し（URLが #）をクリック不可＆見た目も見出しっぽく */
.nav-list a[href="#"]{
  pointer-events: none;
  cursor: default;
}

/* ついでにホバー色が変わらないように（任意） */
.nav-list a[href="#"]:hover{
  color: inherit;
}

/* お悩みリスト：中央に「本文幅」を作る（強制） */
.menu-card ul.menu-check{
  display: grid;
  gap: 6px;
  max-width: 720px;
  width: 100%;
  margin: 18px auto 0 !important; /* ← ここで強制的に中央へ */
  padding-left: 0;
  text-align: left;
  justify-items: start; /* gridの中身を左寄せ */
}

/* 各行（矢印分の余白） */
.menu-card ul.menu-check li{
  padding-left: 32px !important;
}

/* マーカー位置（左に寄りすぎ防止） */
.menu-card ul.menu-check li::before{
  left: 6px !important;
}

.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9999;
}

.sticky-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* 透明リンク */
.sticky-link {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: block;
}

/* 左：電話 */
.sticky-link.left {
  left: 0;
}

/* 右：LINE */
.sticky-link.right {
  right: 0;
}

@media screen and (min-width: 768px) {
  .sticky-banner {
    display: none;
  }
}

/* =========================
   スマホ：スクロールでヘッダーを隠して、ハンバーガーだけ残す
========================= */
@media (max-width: 768px){

  /* ヘッダー（バー）をスクロールで隠す */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 9990;
    transition: transform .25s ease;
    will-change: transform;
  }
  .site-header.is-hidden{
    transform: translateY(-110%);
  }

  /* 既存のヘッダー内ハンバーガーは「最初は表示」なのでそのままでOK
     ※もし既存がposition: fixed等ならここは調整する */

  /* スクロール後に出す固定ハンバーガー */
.floating-hamburger{
  position: fixed;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 10050;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.floating-hamburger.is-show{
  display: flex;
}

.floating-hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brown, #4a3b2f);
  border-radius: 2px;
  border: 0;              /* 念のため */
  box-shadow: none;       /* 念のため */
  transform: none;        /* 念のため */
}

}

@media (min-width: 769px){
  .floating-hamburger{
    display: none !important;
  }
}

.floating-hamburger span{
  transition: transform .25s ease, opacity .25s ease;
}

.floating-hamburger.is-open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.floating-hamburger.is-open span:nth-child(2){
  opacity: 0;
}
.floating-hamburger.is-open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}
