/* リセットと文字組み */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-ja);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: .02em;
  font-feature-settings: "palt" 1;
  word-break: normal;
  line-break: strict;
}

h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

button { cursor: pointer; }

strong { font-weight: 700; }

::selection { background: var(--c-accent-bg); }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

[hidden] { display: none !important; }
