/* =========================================================
   vitom | 防災特集（disaster-page）CSS
   - Bootstrapと共存 / ヘッダー等には影響しないスコープ設計
   - 余分な上書きは排除、役割ごとに整理
   =======================================================*/

/* ------------------------------
   基本設定（トークン）
--------------------------------*/
.disaster-page {
    --brand-deep: #0f2b3a;
    --brand-accent: #002130;
    --ink: #222;
    --ink-weak: #4d4d4d;
    --ink-mute: #637280;
    --bg-soft: #f6f9fb;
    --bg-qa-q: #fffdf6;   /* Q（質問側）のふきだし */
    --bd-soft: #e6edf2;
    --bd-qa-q: #fde7a8;
    --ok: #087443;
  
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    color: var(--ink);
  }
  
  /* 中央寄せと左右の余白（Bootstrapと両立） */
  .disaster-page .container,
  .disaster-page .container-md {
    max-width: 880px;
    margin-inline: auto;
    padding-inline: 16px;
  }
  
  /* ベース要素（本文のみ） */
  .disaster-page p {
    letter-spacing: .2px;
    line-height: 1.9;
    color: var(--ink-weak);
    margin: 0 0 1rem;
  }
  .disaster-page img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
  }
  
  /* ------------------------------
     ヒーロー
  --------------------------------*/
  .disaster-hero {
    padding: 56px 0 32px;
    text-align: center;
  }
  .disaster-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: var(--brand-accent);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .disaster-hero h1 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: .06em;
    margin: 0 0 8px;
    color: var(--brand-deep);
  }
  .disaster-hero__sub { font-size: 16px; color: #666; margin-bottom: 10px; }
  .disaster-hero__meta { font-size: 13px; color: #87929a; }
  .disaster-page .underline {
    background-color: var(--brand-accent);
    width: 60px; height: 3px; margin: 18px auto 28px;
  }
  
  /* ------------------------------
     見出し
  --------------------------------*/
  .disaster-page h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--brand-deep);
    margin: 48px 0 14px;
  }
  .disaster-page h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--brand-deep);
    margin: 36px 0 12px;
  }
  .disaster-page h5 {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    letter-spacing: .06em;
    margin: 40px 0 12px;
  }
  .disaster-page h6 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    letter-spacing: .06em;
    margin: 0 0 28px;
  }
  
  /* ------------------------------
     リード
  --------------------------------*/
  .disaster-page .lede {
    font-size: 16px;
    color: #333;
    background: var(--bg-soft);
    border-left: 4px solid var(--brand-accent);
    padding: 18px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
  }
  
  /* ------------------------------
     図版（写真）
  --------------------------------*/
  .disaster-page .figure { margin: 18px 0 24px; }
  .disaster-page .figure--wide { margin: 24px -8px 28px; }
  @media (min-width: 768px){
    .disaster-page .figure--wide { margin: 28px 0 32px; }
  }
  .disaster-page .figure img {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(15,43,58,.06);
  }
  .disaster-page .figcap {
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 8px;
  }
  .disaster-page .title-photo { margin: 8px 0 12px; }
  
  /* ------------------------------
     ステータスカード
  --------------------------------*/
  .disaster-page .stat-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
    margin: 18px 0 8px;
  }
  @media (max-width: 576px){
    .disaster-page .stat-grid { grid-template-columns: 1fr; }
  }
  .disaster-page .stat-card {
    border: 1px solid var(--bd-soft);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
  }
  .disaster-page .stat-card__value {
    font-size: 28px; font-weight: 700; color: var(--brand-deep); line-height: 1;
  }
  .disaster-page .stat-card__label {
    font-size: 13px; color: var(--ink-mute); margin-top: 6px;
  }
  
  /* ------------------------------
     インタビュー（Q/A）
  --------------------------------*/
.disaster-page .qa { margin: 22px 0; }

.disaster-page .qa__row,
.disaster-page .qa__q,
.disaster-page .qa__a{
  display: flex !important;      /* gridを確実に打ち消す */
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0;
  /* grid系の痕跡をリセット（保険） */
  grid-template-columns: unset !important;
}

.disaster-page .qa__role{
    flex: 0 0 70px;                /* 幅固定。60–90pxで調整可 */
    font-weight: 700;
    color: var(--brand-deep);
    letter-spacing: .08em;
    font-size: 14px;
    line-height: 1.6;
    white-space: nowrap;           /* 折返し防止 */
    padding-top: .2em;             /* ベースライン合わせ微調整 */
}

.disaster-page .qa__bubble {
    flex: 1 1 auto;
    background: var(--bg-soft);
    border: 1px solid var(--bd-soft);
    border-radius: 12px;
    padding: 14px 16px;
}

.disaster-page .qa__row--q .qa__bubble,
.disaster-page .qa__q .qa__bubble{
  background: var(--bg-qa-q);
  border-color: var(--bd-qa-q);
}

  
  /* ------------------------------
     ポーチ（カードグリッド）
  --------------------------------*/
  .disaster-page .pouch-grid {
    display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 576px){
    .disaster-page .pouch-grid { grid-template-columns: 1fr; }
  }
  .disaster-page .pouch-item {
    border: 1px solid #e7eef3;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
  }
  .disaster-page .pouch-item__title { font-weight: 700; color: var(--brand-deep); }
  .disaster-page .pouch-item__desc  { font-size: 14px; color: #56636e; margin: 4px 0 0; }
  
  /* ------------------------------
     チェックリスト
  --------------------------------*/
  .disaster-page .checklist {
    list-style: none; padding: 0; margin: 12px 0 0;
  }
  .disaster-page .checklist li {
    position: relative; padding-left: 26px; margin: 8px 0; line-height: 1.8;
  }
  .disaster-page .checklist li::before {
    content: "✓";
    position: absolute; left: 0; top: .25em;
    color: var(--ok); font-weight: 700; font-size: 1rem;
  }
  
  /* ------------------------------
     CTA
  --------------------------------*/
  .disaster-page .cta {
    background: var(--brand-deep);
    color: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    margin: 30px 0 20px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr auto;
    align-items: center;
    box-shadow: 0 6px 20px rgba(15,43,58,.08);
  }
  .disaster-page .cta__title { font-weight: 700; margin: 0; font-size: 16px; letter-spacing: .02em; color: #fff; }
  .disaster-page .cta .btn {
    background: #fff; color: var(--brand-deep);
    border: none; font-weight: 700;
    padding: .6rem 1rem; border-radius: 9999px;
  }
  .disaster-page .cta .btn:hover { opacity: .9; }
  @media (max-width: 576px){
    .disaster-page .cta { grid-template-columns: 1fr; text-align: center; padding: 16px; }
    .disaster-page .cta .btn { width: 100%; }
  }
  
  /* ------------------------------
     プロフィール
  --------------------------------*/
  .disaster-page .profiles {
    display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-top: 24px;
  }
  @media (max-width: 768px){
    .disaster-page .profiles { grid-template-columns: 1fr; }
  }
  .disaster-page .profile {
    display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: start;
    border: 1px solid var(--bd-soft); border-radius: 12px; padding: 14px; background: #fff;
  }
  .disaster-page .profile__name { margin: 0; font-weight: 700; color: var(--brand-deep); }
  .disaster-page .profile__role { font-size: 13px; color: var(--ink-mute); margin-bottom: 4px; }
  .disaster-page .profile__text { font-size: 14px; color: var(--ink-weak); }
  
  /* ------------------------------
     注記・参考／外部リンク
  --------------------------------*/
  .disaster-page .note { font-size: 13px; color: var(--ink-mute); }
  .disaster-page .ref a { word-break: break-all; }
  
  /* ------------------------------
     YouTube 埋め込み（Bootstrap ratio利用時の角丸）
  --------------------------------*/
  .disaster-page .ratio { border-radius: 12px; overflow: hidden; }
  
  /* ------------------------------
     余計な継承・外部干渉への保険（軽微）
  --------------------------------*/
  .s-contents main.disaster-page { display: block; min-width: 0; flex: 1 1 auto; }
  