/* ===============================================
   Reset CSS & Base Styles
   =============================================== */

/* 1. box-sizingの定義（直感的なサイズ計算にする） */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. デフォルトのマージン・パディングを削除 */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; /* リストスタイルも削除 */
}

/* 3. bodyの基本設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: sans-serif; /* プロジェクトに合わせて変更してください */
  color: #333;             /* プロジェクトに合わせて変更してください */
}

/* 4. 画像を親要素に合わせて伸縮させ、下部の隙間を消す */
img, picture {
  max-width: 100%;
  display: block;
}

/* 5. フォーム要素のフォント継承 */
input, button, textarea, select {
  font: inherit;
}

/* 6. メディアクエリ無効時の対策（必要であれば） */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}