:root{--max:980px;--fg:#111;--muted:#666;--line:#e5e7eb;--bg:#fff;--card:#f8fafc;}
*{box-sizing:border-box;}
body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;color:var(--fg);background:var(--bg);line-height:1.7;}
a{color:inherit;}
.header{border-bottom:1px solid var(--line);background:#fff;position:sticky;top:0;z-index:10;}
.header .inner{max-width:var(--max);margin:0 auto;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;}
.brand{font-weight:700;letter-spacing:.02em;}
.nav a{color:var(--muted);text-decoration:none;margin-left:12px;}
.nav a:hover{text-decoration:underline;}
.main{max-width:var(--max);margin:0 auto;padding:24px 16px 56px;}
.h1{font-size:26px;margin:0 0 16px;}
.list{display:flex;flex-direction:column;gap:12px;}
.item{border:1px solid var(--line);border-radius:12px;padding:14px 14px;background:#fff;}
.meta{color:var(--muted);font-size:13px;margin-bottom:6px;}
.item h2{margin:0 0 8px;font-size:18px;}
.item .excerpt{color:#222;}
.pager{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:20px;}
button{border:1px solid var(--line);background:#fff;border-radius:10px;padding:8px 12px;cursor:pointer;}
button:disabled{opacity:.4;cursor:not-allowed;}
.footer{border-top:1px solid var(--line);color:var(--muted);}
.footer .inner{max-width:var(--max);margin:0 auto;padding:16px;}
.article{border:1px solid var(--line);border-radius:14px;padding:18px;background:#fff;}
.article h1{margin:0 0 6px;font-size:24px;}
.article .meta{margin-bottom:16px;}
.article img{max-width:100%;height:auto;}
.article a{color:#0b6;text-decoration:underline;}
.breadcrumb{color:var(--muted);font-size:13px;margin:0 0 10px;}
.breadcrumb a{color:var(--muted);text-decoration:none;}
.breadcrumb a:hover{text-decoration:underline;}
.notice{background:var(--card);border:1px dashed var(--line);padding:12px;border-radius:12px;color:var(--muted);margin:12px 0 18px;}
code{background:#f3f4f6;padding:2px 6px;border-radius:8px;}

/* =======================================================
   Common Utility (news pages)
   - align-right / dl / row
   ======================================================= */

/* 右寄せ（本文中の署名・日付など） */
.align-right{ text-align:right; }

/* 定義リストを「2列の表」っぽく整列 */
.dl{
  margin:16px 0;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

/* 1行（dt / dd） */
.dl .row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:10px 14px;
  align-items:start;
  padding:10px 0;
  border-top:1px dashed var(--line);
}

.dl .row:first-child{
  border-top:0;
  padding-top:0;
}

.dl .row:last-child{
  padding-bottom:0;
}

/* 見出し側（項目名） */
.dl dt{
  margin:0;
  font-weight:700;
  color:var(--fg);
  line-height:1.6;
}

/* 値側 */
.dl dd{
  margin:0;
  color:var(--fg);
  line-height:1.7;
}

/* スマホ：縦積みにして読みやすく */
@media (max-width:640px){
  .dl .row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .dl dt{
    color:var(--muted);
    font-weight:700;
    font-size:.95em;
  }
}
