/* ===== News detail (03_News詳細: Figma未作成のため一覧・トップのデザイン言語から新規作成) ===== */
.article-wrap { padding-bottom: 110px; }
/* パンくずの位置は他ページ(lp-head / news-hero / wp-hero)と統一 */
.article-wrap .breadcrumb {
  padding: var(--ph-bc-top) 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--c-text);
  letter-spacing: .04em;
  gap: 14px;
}
.article-wrap .breadcrumb a, .article-wrap .breadcrumb .cur { color: var(--c-text); }
.article-wrap .breadcrumb .sep { color: var(--c-text); font-family: var(--ff-en); }
.article {
  max-width: 860px;
  margin: 54px auto 0;
}
.article__meta { display: flex; align-items: center; gap: 14px; }
.article__title { margin-top: 18px; font-size: 40px; font-weight: 700; line-height: 1.6; color: #101112; }
.article__hero { margin-top: 36px; border-radius: var(--r-md); overflow: hidden; }
.article__hero .ph { aspect-ratio: 960 / 640; }
.article__body { margin-top: 44px; font-size: 15px; line-height: 2.15; color: #33383c; }
.article__body p + p { margin-top: 1.6em; }
.article__body h2 {
  margin: 2.4em 0 1em;
  padding-left: 18px;
  border-left: 4px solid var(--c-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  color: #101112;
}
.article__body ul { margin: 1.4em 0; padding-left: 4px; display: grid; gap: 10px; }
.article__body ul li { position: relative; padding-left: 22px; }
.article__body ul li::before {
  content: "";
  position: absolute; left: 0; top: .75em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--c-primary);
}
.article__note {
  margin-top: 2.4em;
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  padding: 26px 30px;
  font-size: 13px;
  color: #5c6166;
}
.article__note strong { display: block; color: #33383c; margin-bottom: 6px; }
.article__share { margin-top: 48px; display: flex; align-items: center; gap: 14px; }
.article__share .lbl { font-family: var(--ff-en); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--c-muted); }
.share-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--c-border-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-en); font-weight: 800; font-size: 15px; color: var(--c-text-2);
}
.share-btn:hover { border-color: var(--c-primary); color: var(--c-primary); opacity: 1; }
.article-nav {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 22px 0;
}
.article-nav a { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--c-text-2); min-width: 0; }
.article-nav a .t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-nav .next { justify-content: flex-end; text-align: right; }
.article-nav .all {
  font-size: 13px; font-weight: 700; color: var(--c-primary);
  border: 1px solid var(--c-primary); border-radius: 999px;
  padding: 10px 26px; white-space: nowrap;
}
.article-nav .all:hover { background: var(--c-primary); color: #fff; opacity: 1; }
.related { background: var(--c-bg-warm); padding: 90px 0 110px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) {
  .article__title { font-size: 27px; }
  .article { margin-top: 34px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav .next { justify-content: flex-start; text-align: left; }
}
