/* ================================
 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.28);
}

/* カードを廃止 → シンプルな中央寄せ */
.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: 40vh;
    min-height: 300px;
  }
  .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: var(--color-brown);
  color: var(--color-white);
  padding: 3rem 1rem 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-nav {
  flex: 1 1 200px;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}

/* ================================
  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 {
  margin: 2rem 0;
}

.top-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}

.top-banner a {
  display: block;
  width: 100%;
}

.top-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ▼ スマホ（横幅が狭い時） */
@media (max-width: 768px) {
  .top-banner {
    margin: 1.2rem 0;
  }

  .top-banner img {
    border-radius: 8px;
  }
}

/* ▼ 超小さい端末向け */
@media (max-width: 480px) {
  .top-banner img {
    border-radius: 6px;
  }
}


/* ========== 施術メニュー 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: 200px;
  }

  .clinic-card__body {
    text-align: left;
    width: 100%;
  }
}



/* ===== ブログ ===== */
.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: 70px; /* スリムで上品な高さ */
  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;
}

/* ▼ メニュー（中央） */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ▼ メニューのリスト（折り返し禁止） */
.nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* ▼ メニューの1項目 */
.nav-list li {
  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: 4px 0;
  position: relative;
}

/* ▼ ホバー（ゴールドの下線） */
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: .3s;
}

.nav-list a:hover::after {
  width: 100%;
}

/* ▼ 現在ページ */
.current-menu-item > a {
  color: var(--color-gold);
}

/* ▼ 予約ボタン */
.reserve-btn {
  background: var(--color-gold);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ▼ 予約ボタンホバー */
.reserve-btn:hover {
  background: var(--color-brown);
}


/* =========================================
  ブログ記事ページ（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;
}

.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;
}

/* ============================
   基本情報の写真レイアウト修正
============================ */

.access-photo {
  margin-top: 25px;
  text-align: center;
}

.access-photo img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ======================================
   アクセスページの 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;
}

.parking-image {
  text-align: center; /* 写真を中央寄せ */
}

.parking-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: inline-block;
}

/* ======================================
   料金ページ
====================================== */

.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;
}



/* ▼ 症状ページタイトル */ 
.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%;                        /* ★ 3/4 幅 */
  max-width: 380px;                  /* 大きすぎないように上限 */
  height: 100%;
  background: #ffffff;
  transform: translateX(100%);       /* 画面外に隠す */
  transition: transform .35s ease;
  z-index: 9999;
  box-shadow: -4px 0 10px rgba(0,0,0,0.15);
  padding-top: 60px;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateX(0);          /* ★ 右からスライドしてくる */
  pointer-events: auto;
}

/* 背景の薄暗いオーバーレイ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* メニュー内容 */
.mobile-inner {
  padding: 20px;
}

.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;
}


/* ================================
  症状一覧ページ
=============================== */
.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;
  }
}
