/* ===========================
   リセットCSS
   =========================== */

/* 全要素のボックスサイズを統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディングをリセット */
body, h1, h2, h3, h4, h5, h6, p, blockquote,
figure, dl, dt, dd, ul, ol, li, pre, fieldset, legend, textarea,
button, input, select {
  margin: 0;
  padding: 0;
}

/* リストのスタイルをリセット */
ul, ol {
  list-style: none;
}

/* 画像・動画・canvasなどの縦幅オーバーフロー防止 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* テーブルの境界線リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム要素の初期スタイルリセット */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  background: none;
  border: none;
  outline: none;
}