@charset "utf-8";
/* ========== Design Tokens ========== */ :root {
  --bg: #0D0D0D;
  --bg2: #121212;
  --fg: #E6E6E6;
  --muted: rgba(230, 230, 230, .72);
  --line: rgba(230, 230, 230, .14);
  --gold: #C6A75E;
  --serif-en: "Cinzel", serif;
  --serif-jp: "Noto Serif JP", serif;
  --container: 1120px;
}
/* ========== Base Reset ========== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif-jp);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
button, input, textarea {
  font: inherit;
  color: inherit;
}
.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}