/* =========================
   Variables / Base
========================= */
:root{
  --yellow:#f2c94c;
  --blue:#2e3192;
  --black:#111;
  --card:#d9d9d9;
  --bg:#ffffff;
  --text:#111;
  --muted:#666;
  --radius:22px;
  --header-h: 64px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color:var(--text);
  background:var(--bg);
}

img{ max-width:100%; display:block; }

.wrap{
  width: min(1100px, 92vw);
  margin:0 auto;
}

.section{ padding:18px 0 26px; }
