/* AgentDesk 共通デザイントークン
   NOVEL営業資料と同系統: ディープネイビー × 温かいオフホワイト × マットゴールド */
:root {
  --navy-950: #0a1220;
  --navy-900: #0e1a2c;
  --navy-800: #142438;
  --navy-700: #1a2942;
  --navy-600: #23334f;
  --ink: #1d2836;
  --ink-soft: #46566b;
  --paper: #f7f4ee;
  --paper-2: #efeadf;
  --white: #ffffff;
  --gold: #c9a34f;
  --gold-soft: #e3c98b;
  --gold-dim: #8a7134;
  --teal: #2f9e8f;
  --red: #c25e5e;
  --amber: #d99a3d;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(29, 40, 54, 0.12);
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold-soft); color: var(--navy-900); }
