@charset "UTF-8";
/* 1. すべての要素のデフォルトマージン・パディングをリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* 3. aタグのデフォルトのスタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* 4. 画像の表示を統一 */
img {
  height: auto;
  display: block;
}

/* 5. ボタンのデフォルトスタイルをリセット */
button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* 6. 表のスタイルをリセット */
table {
  border-collapse: collapse;
  width: 100%;
}

/* 7. 見出しの余白をリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

/* 8. フォーム要素のデフォルトスタイル調整 */
/* input,
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} */

/* 9. HTMLとBodyの初期設定 */
html {
  scroll-behavior: smooth;
}
