/* personal.html / personal-sheet.html 専用（CSP: style-src 'self' のためインライン <style> は使えない） */
:root {
  --bg: #f6f7f5; --surface: #fff; --line: #e3e6e1;
  --ink: #17201b; --ink-2: #4b554f; --ink-3: #6b746e;
  --accent: #1f6b4a; --accent-tint: #e6f2ec;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-size: 14px; line-height: 1.8;
       font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; }
.wrap { max-width: 760px; margin: 0 auto; padding: 36px 24px 64px; }
.gnav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk", sans-serif;
         font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: inherit; text-decoration: none; }
.brand img { width: 24px; height: 24px; border-radius: 6px; }
.btn-start { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 20px;
             background: var(--accent); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700;
             text-decoration: none; }
.btn-start:hover { background: #164f37; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; }
h1 { font-size: 26px; margin: 0 0 10px; letter-spacing: -0.01em; line-height: 1.5; }
h2 { font-size: 17px; margin: 40px 0 8px; }
.lede { color: var(--ink-2); margin: 0 0 16px; }
.sec { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; margin: 14px 0; }
.sec h2 { margin: 0 0 8px; }
.sec p, .sec li { color: var(--ink-2); margin: 4px 0; }
ul { margin: 4px 0; padding-left: 20px; }
.cta { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 22px; margin-top: 8px;
       background: var(--accent); color: #fff; border: 0; border-radius: 8px; font: inherit; font-size: 14px;
       font-weight: 700; text-decoration: none; cursor: pointer; }
.cta:hover { background: #164f37; }
.cta.ghost { background: var(--surface); color: var(--accent); border: 1px solid var(--accent); }
.note { font-size: 12.5px; color: var(--ink-3); }
.foot { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); }
.foot a { color: inherit; }

/* ---- personal-sheet.html（A4 一枚・印刷用） ---- */
.sheet { max-width: 700px; margin: 0 auto; background: #fff; padding: 28px 32px; border: 1px solid var(--line); border-radius: 12px; font-size: 13px; line-height: 1.6; }
.sheet h1 { font-size: 18px; margin: 0 0 10px; }
.sheet h2 { font-size: 14px; margin: 14px 0 6px; border-left: 3px solid var(--accent); padding-left: 8px; }
.sheet p, .sheet li { margin: 3px 0; color: var(--ink); }
.sheet table { border-collapse: collapse; width: 100%; margin: 6px 0; }
.sheet th, .sheet td { border: 1px solid #c9d2cc; padding: 4px 8px; text-align: left; font-weight: 400; font-size: 12px; }
.sheet th { background: #f3f6f4; width: 34%; }
.sheet .blank { display: inline-block; min-width: 160px; border-bottom: 1px solid #8a958d; height: 1em; vertical-align: bottom; }
.sheet .sign td { height: 34px; }
.sheet .small { font-size: 11px; color: var(--ink-3); }
.printbar { max-width: 700px; margin: 0 auto 12px; display: flex; justify-content: flex-end; }
@media print {
  @page { size: A4; margin: 12mm; }
  body { background: #fff; font-size: 10.5pt; }
  .wrap { padding: 0; max-width: none; }
  .noprint, .printbar, .gnav { display: none !important; }
  .sheet { border: 0; border-radius: 0; padding: 0; max-width: none; font-size: 10pt; }
  .sheet h1 { font-size: 14pt; }
  .sheet h2 { font-size: 11pt; margin: 8pt 0 3pt; }
  .sheet th, .sheet td { font-size: 9.5pt; padding: 3pt 6pt; }
}
