@charset "utf-8";
/* ==== 初期化・リセットCSS（モダン版） ==== */

/* 1. box-sizing を全要素に適用 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. マージン・パディングの初期化 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* 3. HTML5セクショニング要素の表示をブロック化 */
main, nav, section, article, aside, header, footer {
  display: block;
}

/* 4. リストのマーカー非表示（必要なら） */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 5. 画像の余白防止と最大幅 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. テーブルのセル間スペース除去 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 7. フォームの基本リセット */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  /* appearance: none; */
  padding: 0;
  margin: 0;
}

/* 8. ボタンなどにカーソルポインタ */
button {
  cursor: pointer;
}

/* 9. body の基本設定 */
body {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 10. aタグの装飾初期化 */
a {
  color: inherit;
  text-decoration: none;
}
