/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*, ::before, ::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    border: 0;
    font: inherit;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
  }

  header, footer, nav, section, article, main, aside, figure, figcaption {
    display: block;
  }

  ol, ul {
    list-style: none;
    list-style-type: none;
  }

  img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
  }

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

  button,
  input,
  optgroup,
  select,
  textarea {
    -webkit-appearance: none;
    appearance: none; /* ブラウザ別の設定デフォルトを無効 */
    background: transparent; /* 背景色を無色 */
    border: none; /* 枠線を消す */
    outline: none; /* クリックした際に枠線を消す */
    box-shadow: none; /* 影を消す */
    padding: 0;
  }
