/* =====================================================
   ブログ用スタイル (css/blog.css) — LIMITED戸田公園
   ※ css/style.css と併用する（ヘッダー・フッター・CTAは本体を流用）
   ===================================================== */

.blog-page { background: var(--cream); padding: 40px 0 56px; min-height: 60vh; }
.blog-inner { max-width: 760px; margin: 0 auto; padding: 0 16px; }

/* パンくず */
.breadcrumb { font-size: 12px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
/* 現在ページ名は塊で折り返す（末尾1〜2文字の孤立行防止） */
.breadcrumb .bc-here { display: inline-block; max-width: 100%; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- 記事一覧 ---------- */
.blog-page .sec-heading { margin-bottom: 10px; }
.blog-lead { text-align: center; font-size: 13.5px; color: var(--gray); margin-bottom: 30px; line-height: 1.7; }
.post-list { display: grid; gap: 16px; }
.post-card {
  display: block;
  background: var(--white);
  border-left: 4px solid var(--gold-bright);
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.13); transform: translateY(-2px); }
.post-date {
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: .08em;
}
.post-card h2 { font-size: 17.5px; font-weight: 800; line-height: 1.55; margin: 4px 0 8px; }
.post-excerpt { font-size: 13.5px; color: var(--gray); line-height: 1.75; }
.post-more { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--gold); }

/* ---------- 記事ページ ---------- */
.article-header { margin-bottom: 22px; }
.article-title { font-size: clamp(21px, 3vw, 27px); font-weight: 800; line-height: 1.55; margin: 4px 0 10px; }
.article-meta { font-size: 12.5px; color: var(--gray); }
.article-meta .post-date { margin-right: 12px; }
.article-body {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.article-body p { font-size: 15px; line-height: 1.9; margin-bottom: 1.5em; }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
  border-left: 4px solid var(--gold-bright);
  padding-left: 12px;
  margin: 36px 0 14px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 16.5px; font-weight: 700; margin: 26px 0 10px; }
.article-body ul { padding-left: 1.4em; margin-bottom: 1.5em; }
.article-body ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.article-body li { font-size: 15px; line-height: 1.85; margin-bottom: .3em; }
.article-body strong { font-weight: 800; }
.article-body .gold { color: var(--gold); font-weight: 700; }

/* 記事内リンク */
.article-body a { color: var(--gold); font-weight: 700; }

/* 目次 */
.toc { background: var(--cream); border: 1px solid var(--gold-bright); border-radius: 10px; padding: 16px 20px; margin-bottom: 1.8em; }
.toc-title { font-size: 13.5px; font-weight: 800; color: var(--gold); letter-spacing: .08em; margin-bottom: 6px; }
.toc ol { padding-left: 1.5em; margin-bottom: 0; }
.toc li { font-size: 13.5px; line-height: 1.95; margin-bottom: 0; }
.toc a { color: var(--text); font-weight: 500; text-decoration: none; }
.toc a:hover { color: var(--gold); }

/* 注意・受診目安ボックス */
.note-box {
  background: var(--cream);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 1.6em;
}
.note-box p:last-child { margin-bottom: 0; }
.note-box li { font-size: 14.5px; }

/* 比較表（列が多いのでコンテナ内だけ横スクロールさせ、ページ全体のはみ出しは出さない） */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: .6em; }
.cmp-table { border-collapse: collapse; min-width: 580px; width: 100%; }
.cmp-table th, .cmp-table td {
  border: 1px solid #e6e1d5;
  padding: 9px 10px;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}
.cmp-table tr:first-child th { background: var(--cream); text-align: center; font-weight: 800; font-size: 12.5px; }
.cmp-table tr th:first-child { background: var(--cream); font-weight: 800; white-space: nowrap; width: 6.5em; }
.table-note { font-size: 12px; color: var(--gray); margin-bottom: 1.6em !important; }

/* 記事内FAQ（Q/Aの装飾は本体style.cssの.faq-q/.faq-aを流用） */
.article-body .faq-q { margin: 22px 0 0 !important; }
.article-body .faq-a { margin-bottom: 1.4em !important; }

/* 監修表記 */
.article-author {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* 記事下CTA（黒箱＋赤ボタン） */
.article-cta {
  background: var(--ink);
  border-radius: 12px;
  padding: 30px 20px 26px;
  margin-top: 28px;
  text-align: center;
  color: var(--white);
}
.article-cta .cta-title { font-size: 18px; font-weight: 800; line-height: 1.6; margin-bottom: 4px; }
/* 「今だけ0円」「電話番号」は塊で折り返す（320pxで「円」等の孤立行防止） */
.article-cta .cta-title .gold { color: var(--gold-bright); white-space: nowrap; }
.article-cta .cta-sub { font-size: 13px; color: #ccc; margin-bottom: 4px; }
.article-cta .cta-buttons { margin: 18px 0 0; gap: 14px; }
.article-cta .btn-cta.primary { font-size: 18px; min-height: 64px; width: min(340px, 92%); }
.article-cta .cta-tel-line { margin-top: 14px; font-size: 13px; color: #ccc; }
/* 2店舗の電話番号（東口・西口）は1件ずつ塊で折り返す */
.article-cta .cta-tel-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.article-cta .cta-tel-list span { font-size: 13px; color: #ccc; }
.article-cta .cta-tel-list a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.article-cta .cta-tel-list .shop-tag {
  display: inline-block;
  color: #ccc;
  font-size: 12px;
  margin-right: 6px;
}

.back-to-list {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
.back-to-list:hover { text-decoration: underline; }

/* ---------- SP ---------- */
@media (max-width: 760px) {
  .blog-page { padding: 32px 0 44px; }
  .breadcrumb { margin-bottom: 18px; }
  .blog-lead { margin-bottom: 22px; }
  .post-card { padding: 17px 16px; }
  .post-card h2 { font-size: 16px; }
  .article-body { padding: 24px 16px; }
  .article-body p, .article-body li { font-size: 14.5px; line-height: 1.85; }
  .article-body h2 { font-size: 17.5px; margin: 30px 0 12px; }
  .article-body h3 { font-size: 15.5px; }
  .article-cta { padding: 24px 14px 22px; }
  .article-cta .cta-title { font-size: 16.5px; }
}
@media (max-width: 350px) {
  .article-title { font-size: 18px; }
  .post-card h2 { font-size: 15px; }
  .article-cta .btn-cta.primary { font-size: 16px; min-height: 58px; }
}
