/* ==========================================================
   foundation.css — リセット / デザイントークン / ベース / タイポ
   KOGA DOJO renewal
   ========================================================== */

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- デザイントークン ---------- */
:root {
  /* 色 */
  --color-bg: #161616;
  --color-bg-deep: #0e0e0e;
  --color-surface: #1f1f1f;
  --color-ink: #f2f0ec;
  --color-ink-mute: #9a9a96;
  --color-accent: #e95900;
  --color-accent-deep: #c04800;
  --color-black: #0a0a0a;

  /* タイポ */
  --font-display: "Anton", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;  /* 18px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 2rem;     /* 32px */
  --text-3xl: 2.75rem;  /* 44px */

  /* 余白 */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --space-7: 10rem;

  /* その他 */
  --radius-sm: 4px;
  --radius-pill: 999px;
  --duration: 0.5s;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* コンテナ */
  --container: 1120px;
  --container-wide: 1400px;
}

/* ---------- ベース ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* ---------- 見出しベース ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.4;
}

/* 巨大英字ディスプレイ見出し(参考デザインの主役要素) */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* セレクション */
::selection {
  background: var(--color-accent);
  color: #fff;
}
