:root {
  --ink: #28261f;
  --green: #a8174a;
  --lime: #c7d301;
  --paper: #fbfcfc;
  --muted: #58645f;
  --line: #dfe8e4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: var(--green); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px max(24px, 7vw);
}
.topbar a { color: var(--ink); font-weight: 800; text-decoration: none; }
.topbar span { color: var(--green); }
main { width: min(860px, calc(100% - 40px)); margin: 64px auto 90px; }
.eyebrow { color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 8px 0 18px; font-size: clamp(2.4rem, 7vw, 4.6rem); letter-spacing: -.055em; line-height: 1.02; }
h2 { margin-top: 48px; font-size: 1.55rem; line-height: 1.25; }
h3 { margin-top: 30px; font-size: 1.08rem; }
p, li { color: var(--muted); }
strong { color: var(--ink); }
.intro { max-width: 720px; font-size: 1.08rem; }
.notice { margin: 30px 0; padding: 22px; border-left: 5px solid var(--lime); border-radius: 4px 14px 14px 4px; background: #f7f8df; }
.notice p { margin: 0; }
.contact { padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.contact p { margin: 3px 0; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-size: .86rem; }
footer { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; padding: 30px 20px; background: #28261f; color: #fff; }
footer a { color: #fff; }
@media (max-width: 620px) {
  main { margin-top: 42px; }
  table, tbody, tr, td { display: block; }
  thead { display: none; }
  td { border-top: 0; }
  tr:first-child td:first-child { border-top: 1px solid var(--line); }
}
