/* モダンCSSリセット */

/* ボックスサイズング規則を全要素に適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージンを削除 */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* リストのスタイルを削除 */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* ルート要素のデフォルトを設定 */
html:focus-within {
  scroll-behavior: smooth;
}

/* 本文のデフォルトを設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* a要素のテキスト装飾を削除 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* 画像の扱いを簡単に */
img,
picture {
  max-width: 100%;
  display: block;
}

/* フォームの継承を正しく */
input,
button,
textarea,
select {
  font: inherit;
}

/* 非表示の要素を隠す */
[hidden] {
  display: none;
}
