/* ============================================
   13分でわかる家庭の防災・停電・断水マニュアル - スタイルシート
   ============================================ */
:root {
  --main: #e07000;        /* メインカラー（防災オレンジ） */
  --main-dark: #a85400;
  --main-light: #fdf1e2;
  --accent: #1f7a8c;      /* アクセント（ティールブルー） */
  --accent-dark: #17606e;
  --accent-light: #e3f2f5;
  --text: #3a352e;
  --text-light: #77705f;
  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --border: #e7ded1;
  --yellow: #ffd166;
  --danger: #c9403a;
  --max-width: 1080px;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(70, 50, 20, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); }
a:hover { opacity: .85; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { width: 42px; height: 42px; }
.site-logo .logo-text { font-weight: 700; font-size: 1.02rem; color: var(--text); line-height: 1.3; }
/* 「13分でわかる／家庭の防災マニュアル」の切れ目でだけ折り返す（語の途中で切れないように） */
.site-logo .logo-line { display: inline-block; }
.site-logo .logo-text small { display: block; font-size: .66rem; color: var(--main-dark); font-weight: 600; letter-spacing: .03em; }

/* グローバルナビ（PC） */
.global-nav ul { display: flex; list-style: none; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.global-nav a {
  display: block; padding: 7px 10px; text-decoration: none;
  color: var(--text); font-size: .84rem; font-weight: 600;
  border-radius: 8px; white-space: nowrap;
}
.global-nav a:hover { background: var(--main-light); color: var(--main-dark); opacity: 1; }
.global-nav a[aria-current="page"] { background: var(--main); color: #fff; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--text);
  margin: 5px auto; border-radius: 2px; transition: .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- パンくず ---------- */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  max-width: var(--max-width); margin: 0 auto; padding: 8px 20px;
  list-style: none; display: flex; flex-wrap: wrap; gap: 4px;
  font-size: .78rem; color: var(--text-light);
}
.breadcrumb li + li::before { content: "›"; margin: 0 6px; color: var(--text-light); }
.breadcrumb a { color: var(--accent-dark); text-decoration: none; }

/* ---------- ヒーロー ---------- */
.hero {
  background: linear-gradient(135deg, var(--main-light) 0%, var(--accent-light) 100%);
  padding: 40px 0 30px;
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: center;
}
.hero h1 { font-size: 1.9rem; line-height: 1.4; margin-bottom: 16px; }
.hero h1 .hero-num { color: var(--main-dark); font-size: 2.6rem; }
.hero .lead { font-size: 1rem; color: var(--text-light); margin-bottom: 20px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.hero-badge {
  background: #fff; border: 1.5px solid var(--main); color: var(--main-dark);
  font-size: .8rem; font-weight: 700; padding: 4px 14px; border-radius: 999px;
}

/* ---------- ページヒーロー（下層） ---------- */
.page-hero { background: linear-gradient(135deg, var(--main-light) 0%, var(--accent-light) 100%); padding: 28px 0; }
.page-hero-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: center;
}
.page-hero h1 { font-size: 1.65rem; line-height: 1.45; margin-bottom: 10px; }
.page-hero .lead { color: var(--text-light); font-size: .95rem; }
.page-hero img { max-height: 190px; margin: 0 auto; }

/* ---------- メイン ---------- */
.main-content { padding: 36px 0 60px; }
.article-body h2 {
  font-size: 1.45rem; margin: 48px 0 20px; padding: 12px 16px;
  background: var(--main-light); border-left: 6px solid var(--main);
  border-radius: 0 8px 8px 0; line-height: 1.5;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.15rem; margin: 32px 0 14px; padding-bottom: 8px;
  border-bottom: 2.5px solid var(--main); line-height: 1.5;
}
.article-body h4 { font-size: 1rem; margin: 24px 0 10px; color: var(--main-dark); }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 1.4em; }
.article-body li { margin-bottom: 6px; }

/* 目次 */
.toc {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px;
}
.toc-title { font-weight: 700; font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.toc-title::before { content: "📑"; }
.toc ol { margin: 0 0 0 1.3em; font-size: .92rem; }
.toc li { margin-bottom: 4px; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* テーブル */
.table-wrap { overflow-x: auto; margin: 0 0 20px; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 480px; }
caption { text-align: left; font-size: .82rem; color: var(--text-light); margin-bottom: 6px; }
th, td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
thead th { background: var(--main); color: #fff; font-weight: 700; }
tbody th { background: var(--main-light); font-weight: 600; width: 32%; }
tbody tr:nth-child(even) td { background: var(--bg-soft); }
td.num { text-align: right; white-space: nowrap; }

/* 警戒レベル表の色分け */
.level-1 { background: #eef4f8 !important; }
.level-2 { background: #fff9db !important; }
.level-3 { background: #ffe8cc !important; }
.level-4 { background: #ffd6d0 !important; }
.level-5 { background: #4a2020 !important; color: #fff; }

/* ボックス */
.point-box, .caution-box, .memo-box {
  border-radius: var(--radius); padding: 18px 20px 14px; margin: 0 0 20px;
  position: relative; border: 1.5px solid;
}
.point-box { background: var(--accent-light); border-color: var(--accent); }
.caution-box { background: #fdeae3; border-color: var(--danger); }
.memo-box { background: #fffaeb; border-color: var(--yellow); }
.box-label { font-weight: 700; font-size: .9rem; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.point-box .box-label { color: var(--accent-dark); }
.point-box .box-label::before { content: "✅"; }
.caution-box .box-label { color: var(--danger); }
.caution-box .box-label::before { content: "⚠️"; }
.memo-box .box-label { color: #b8860b; }
.memo-box .box-label::before { content: "💡"; }
.point-box p:last-child, .caution-box p:last-child, .memo-box p:last-child { margin-bottom: 4px; }

/* チェックリスト */
.checklist { list-style: none; margin: 0 0 20px !important; }
.checklist li {
  padding: 10px 14px 10px 40px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px;
  position: relative; font-size: .95rem;
}
.checklist li::before {
  content: "☐"; position: absolute; left: 13px; top: 9px;
  color: var(--main); font-size: 1.15rem; font-weight: 700;
}

/* ステップ */
.step-list { counter-reset: step; list-style: none; margin: 0 0 24px !important; }
.step-list > li {
  counter-increment: step; position: relative;
  padding: 16px 18px 12px 66px; margin-bottom: 14px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-list > li::before {
  content: "STEP " counter(step);
  position: absolute; left: 14px; top: 16px;
  background: var(--main); color: #fff; font-size: .62rem; font-weight: 700;
  padding: 3px 6px; border-radius: 6px; letter-spacing: .03em;
}
.step-list .step-title { font-weight: 700; font-size: 1.02rem; display: block; margin-bottom: 4px; }
.step-list p { font-size: .92rem; margin-bottom: 6px; color: var(--text-light); }

/* カードグリッド（トップの章一覧） */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0 8px;
}
.guide-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(70,50,20,.14); opacity: 1; }
.guide-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.guide-card .card-body { padding: 14px 16px 16px; flex: 1; }
.guide-card .card-num { font-size: .7rem; font-weight: 700; color: var(--accent-dark); letter-spacing: .08em; }
.guide-card h3 { font-size: 1.02rem; margin: 4px 0 6px; border: none; padding: 0; }
.guide-card p { font-size: .84rem; color: var(--text-light); margin: 0; line-height: 1.7; }

/* CTAバナー */
.cta-banner {
  background: linear-gradient(120deg, var(--main) 0%, #b85c00 100%);
  border-radius: var(--radius); padding: 28px 24px; margin: 40px 0;
  color: #fff; text-align: center;
}
.cta-banner p { margin-bottom: 14px; font-weight: 600; }
.cta-banner .btn { background: #fff; color: var(--main-dark); }

.btn {
  display: inline-block; padding: 12px 32px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 700; text-decoration: none;
  font-size: .95rem; box-shadow: var(--shadow); transition: transform .15s;
}
.btn:hover { transform: scale(1.04); opacity: 1; }

/* 前後ページナビ */
.page-nav { display: flex; justify-content: space-between; gap: 12px; margin: 48px 0 0; flex-wrap: wrap; }
.page-nav a {
  flex: 1; min-width: 220px; text-decoration: none;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; color: var(--text); background: #fff; box-shadow: var(--shadow);
}
.page-nav a small { display: block; color: var(--text-light); font-size: .72rem; }
.page-nav a span { font-weight: 700; font-size: .92rem; }
.page-nav .next { text-align: right; }

/* FAQアコーディオン */
details.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; background: #fff; box-shadow: var(--shadow);
  overflow: hidden;
}
details.faq-item summary {
  cursor: pointer; padding: 16px 18px 16px 48px; font-weight: 700;
  position: relative; list-style: none; font-size: .98rem; line-height: 1.6;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::before {
  content: "Q"; position: absolute; left: 14px; top: 15px;
  color: #fff; background: var(--main); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: .8rem;
}
details.faq-item[open] summary { background: var(--main-light); }
details.faq-item .faq-answer { padding: 14px 18px 14px 48px; position: relative; border-top: 1px dashed var(--border); }
details.faq-item .faq-answer::before {
  content: "A"; position: absolute; left: 14px; top: 15px;
  color: #fff; background: var(--accent); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: .8rem;
}
details.faq-item .faq-answer p { margin-bottom: 8px; font-size: .94rem; }

/* 記事内イラスト・写真 */
figure.photo { margin: 0 0 22px; }
figure.photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
figure.photo figcaption { font-size: .78rem; color: var(--text-light); margin-top: 8px; }

/* 関連リンク */
.related-links { background: var(--bg-soft); border-radius: var(--radius); padding: 20px 24px; margin: 32px 0; }
.related-links h2 { background: none; border: none; padding: 0; margin: 0 0 12px; font-size: 1.1rem; }
.related-links ul { list-style: none; margin: 0; }
.related-links li { padding: 6px 0 6px 22px; position: relative; border-bottom: 1px dashed var(--border); }
.related-links li::before { content: "▶"; position: absolute; left: 0; color: var(--main); font-size: .7rem; top: 12px; }
.related-links a { text-decoration: none; font-size: .93rem; }

/* ---------- フッター ---------- */
.site-footer { background: #33302b; color: #d9d2c5; margin-top: 40px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 36px 20px 20px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px;
}
.footer-inner h2 { font-size: 1rem; color: #fff; margin-bottom: 10px; }
.footer-inner p { font-size: .82rem; line-height: 1.8; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: #d9d2c5; text-decoration: none; font-size: .85rem; }
.footer-nav a:hover { color: #fff; }
.copyright {
  text-align: center; font-size: .75rem; padding: 14px 20px;
  border-top: 1px solid #4a443a; color: #b0a890;
}

/* トップに戻る */
#to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--main); color: #fff; font-size: 1.2rem; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#to-top.visible { opacity: .9; pointer-events: auto; }

/* ---------- 印刷（チェックリストページ用） ---------- */
@media print {
  .site-header, .breadcrumb, .page-hero img, .site-footer,
  #to-top, .page-nav, .related-links, .cta-banner, .no-print { display: none !important; }
  body { font-size: 12px; line-height: 1.6; }
  .article-body h2 { background: none; border-left: 3px solid #000; margin: 18px 0 8px; padding: 4px 8px; }
  .checklist li { padding: 4px 8px 4px 28px; margin-bottom: 3px; border: none; border-bottom: 1px solid #ccc; background: none; }
  .checklist li::before { top: 3px; color: #000; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .global-nav a { font-size: .78rem; padding: 6px 7px; }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .nav-toggle { display: block; }
  .global-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
    /* 項目が多く画面に収まらないため、メニューの中でスクロールできるようにする
       （高さはJavaScriptがヘッダーの実寸に合わせて上書きします） */
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .global-nav.open { display: block; }
  .global-nav ul { flex-direction: column; gap: 0; padding: 8px 12px 14px; }
  .global-nav a { padding: 12px 14px; font-size: .95rem; border-bottom: 1px dashed var(--border); border-radius: 0; }
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.45rem; }
  .hero h1 .hero-num { font-size: 2rem; }
  .page-hero h1 { font-size: 1.32rem; }
  .page-hero img { max-height: 150px; }
  .article-body h2 { font-size: 1.2rem; margin-top: 40px; }
  .article-body h3 { font-size: 1.05rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  tbody th { width: auto; }
}

/* ==== 2026-07-18 追加: 用語集・お問い合わせ・お知らせ ==== */

/* ============ 防災用語集（検索＋カテゴリタブ） ============ */
[hidden] { display: none !important; }

/* 検索ツール（JavaScriptが動くときだけ表示） */
.gloss-tool {
  display: none;
  position: sticky; top: var(--header-h, 62px); z-index: 30;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(6px);
  padding: 14px 0 10px;
  margin: 0 0 26px;
  border-bottom: 1px solid var(--border);
}
.gloss-tool.is-ready { display: block; }
.gloss-tool { scroll-margin-top: var(--header-h, 62px); }
.gloss-search { position: relative; display: flex; align-items: center; }
.gloss-search input {
  width: 100%;
  padding: 13px 46px 13px 46px;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 1rem; font-family: inherit; color: var(--text);
  background: var(--bg-soft);
  -webkit-appearance: none; appearance: none;
}
.gloss-search input::-webkit-search-cancel-button { display: none; }
.gloss-search input:focus {
  outline: none; background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,122,140,.14);
}
.gloss-search-icon {
  position: absolute; left: 17px; font-size: 1.05rem;
  opacity: .55; pointer-events: none; line-height: 1;
}
.gloss-clear {
  position: absolute; right: 11px;
  width: 30px; height: 30px; padding: 0;
  border: none; border-radius: 50%;
  background: #cfc6b8; color: #fff;
  font-size: 1.1rem; line-height: 1; cursor: pointer;
  font-family: inherit;
}
.gloss-clear:hover { background: var(--text-light); }

.gloss-tabs {
  display: flex; gap: 8px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 12px 2px 5px; margin: 0 -2px;
}
.gloss-tab {
  flex: 0 0 auto;
  border: 2px solid var(--border); background: #fff;
  border-radius: 999px; padding: 7px 16px;
  font-size: .9rem; font-weight: 700; font-family: inherit;
  color: var(--text); cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.gloss-tab:hover { border-color: var(--accent); }
.gloss-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.gloss-tab-num { font-size: .78rem; opacity: .8; margin-left: 4px; font-weight: 700; }

.gloss-status { font-size: .85rem; color: var(--text-light); margin: 4px 4px 0; }
.gloss-status strong { color: var(--accent-dark); }

/* よく引かれる用語 */
.gloss-picks {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin: 0 0 26px;
  font-size: .88rem;
}
.gloss-picks-label { color: var(--text-light); font-weight: 700; }
.gloss-pick {
  border: 1.5px dashed var(--border); background: var(--bg-soft);
  border-radius: 999px; padding: 5px 13px;
  font-size: .86rem; font-family: inherit; color: var(--accent-dark);
  cursor: pointer; font-weight: 700;
}
.gloss-pick:hover { background: var(--accent-light); border-color: var(--accent); border-style: solid; }

/* 用語カード */
.gloss-section { margin-bottom: 12px; }
.gloss-cards { display: grid; gap: 14px; margin-bottom: 34px; }
@media (min-width: 860px) { .gloss-cards { grid-template-columns: 1fr 1fr; } }

.gloss-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 15px 18px 16px;
  box-shadow: var(--shadow);
  /* 固定ヘッダー＋検索バーの下に隠れないようにする（高さはJSが実測して設定） */
  scroll-margin-top: var(--gloss-offset, 190px);
}
.gloss-card-head {
  display: flex; align-items: center; gap: 9px;
  flex-wrap: wrap; margin-bottom: 7px;
}
/* サイト共通の h3 装飾（オレンジの下線など）は用語カードでは打ち消す */
.article-body .gloss-term {
  font-size: 1.08rem; font-weight: 700; line-height: 1.5;
  color: var(--accent-dark);
  margin: 0; padding: 0; border: none;
}
.gloss-badge {
  font-size: .71rem; font-weight: 700;
  border-radius: 999px; padding: 2px 10px;
  white-space: nowrap; line-height: 1.7;
}
.badge-kishou { background: var(--accent-light); color: var(--accent-dark); }
.badge-jishin { background: var(--main-light); color: var(--main-dark); }
.badge-bichiku { background: #e8f4e6; color: #2f6b34; }
.badge-hinan  { background: #f0ecf8; color: #574585; }
.article-body .gloss-def { font-size: .95rem; line-height: 1.85; margin: 0; }

/* 検索でヒットした用語を一瞬光らせる */
.gloss-card.is-flash {
  border-color: var(--main); border-left-color: var(--main);
  box-shadow: 0 0 0 3px rgba(224,112,0,.2);
}

.gloss-empty {
  scroll-margin-top: var(--gloss-offset, 190px);
  background: var(--bg-soft); border: 1.5px dashed var(--border);
  border-radius: var(--radius); padding: 30px 20px;
  text-align: center; color: var(--text-light); margin-bottom: 30px;
}
.gloss-empty strong { color: var(--text); }

@media (max-width: 768px) {
  /* 「よく引かれる用語」はタブと同じく横スクロールにして縦の余白を節約 */
  .gloss-picks {
    flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 5px; margin-bottom: 20px;
  }
  .gloss-picks-label, .gloss-pick { flex: 0 0 auto; }
  .gloss-tool { padding: 10px 0 8px; margin-bottom: 20px; }
  .gloss-search input { padding: 11px 42px 11px 42px; font-size: .95rem; }
  .gloss-tab { padding: 6px 13px; font-size: .84rem; }
  .gloss-card { padding: 14px 15px 15px; }
  .article-body .gloss-term { font-size: 1.02rem; }
  .article-body .gloss-def { font-size: .92rem; }
}

/* お問い合わせフォーム */
.contact-form {
  background: #fff;
  border: 1px solid #e0e6ec;
  border-radius: 14px;
  padding: 26px 22px;
  margin: 22px 0;
}
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .95rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1.5px solid #c9d4da;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fbfcfd;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1f7a8c;
  background: #fff;
}
.contact-form .req-mark {
  background: #c9403a;
  color: #fff;
  font-size: .72rem;
  border-radius: 6px;
  padding: 1px 8px;
  margin-left: 6px;
  vertical-align: 2px;
}
.contact-form .hp-field { position: absolute; left: -9999px; top: -9999px; }
.contact-form .btn-submit,
.btn-submit {
  display: inline-block;
  background: #1f7a8c;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}
.contact-form .btn-submit:hover, .btn-submit:hover { background: #17606e; }
.contact-form .form-note { font-size: .85rem; color: #6b7580; margin-top: 10px; }

/* お知らせ・コラム一覧 */
.news-list { margin: 22px 0; }
.news-item {
  background: #fff;
  border: 1px solid #e0e6ec;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.news-item > a {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration: none;
}
.news-item time {
  color: #6b7580;
  font-size: .9rem;
  white-space: nowrap;
}
.news-cat {
  display: inline-block;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 12px;
  white-space: nowrap;
}
.news-cat-info { background: #dff0f7; color: #17606e; }
.news-cat-column { background: #e3f4ea; color: #2c6e31; }
.news-title {
  font-weight: 700;
  color: #1f2933;
  flex: 1 1 100%;
  font-size: 1.05rem;
  line-height: 1.5;
}
.news-item > a:hover .news-title { color: #1f7a8c; text-decoration: underline; }
.news-excerpt {
  color: #6b7580;
  font-size: .88rem;
  margin: 8px 0 0;
  line-height: 1.7;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7580;
  font-size: .92rem;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.news-updated { font-size: .85rem; }

@media (min-width: 700px) {
  .news-item > a { flex-wrap: nowrap; }
  .news-title { flex: 1; }
}
