/* Reset CSS */

/* 全ての要素の余白・パディングをリセット */
html, body {
  margin: 0 !important;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5 要素をブロック化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}

/* body の基本設定 */
body {
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #000;
}

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

/* 見出しのスタイルをリセット */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* 引用のスタイルをリセット */
blockquote, q {
  quotes: none;
}

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

/* フォーム要素のリセット */
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
