:root {
  --txt: #ffffff;
  --ink: #F0EBE0;
  --ink-2: rgba(240, 235, 224, 0.74);
  --ink-mute: rgba(240, 235, 224, 0.5);
  --paper: #1C2A16;
  --paper-2: #26351f;
  --bg: #121b0f;
  --bg-2: #22331b;
  --card: #ffffff;
  --card-2: #f5f3ee;
  --hot: #C9904A;
  --gold: #C9904A;
  --rule: rgba(240, 235, 224, 0.22);
  --rule-2: rgba(240, 235, 224, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "M PLUS 1p", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.85;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--hot);
  color: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}
