/* =========================================================
   reset.css
   グローバルリセット（* / html / body / img / a / button）
   ========================================================= */

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body{
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--hand);
    font-size: 16px;
    line-height: 1.95;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; cursor: pointer; }

