/* ========================================
   Modern Reset CSS / 2025 Recommended
   - Box-sizing: border-box
   - Margin & padding reset
   - Body base styles
   - Media elements responsive
======================================== */

/* 1. ボックスサイズを統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. デフォルト余白リセット */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dt, dd,
ul, ol, li,
figure, fieldset, legend {
  margin: 0;
  padding: 0;
}

/* 3. リスト・テーブルの設定 */
ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 4. メディア要素のレスポンシブ対応 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素の基本設定 */
button, input, select, textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

/* 6. Body 基本設定 */
body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
}

/* 7. 見出し・テキストの共通設定 */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}
