/* ------------------------------------
   reset.css（2025 minimal reset）
   ------------------------------------ */

/* すべての要素の余白と枠をリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5要素をブロック表示に */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* リストのマーカーを消す */
ul,
ol {
  list-style: none;
}

/* 画像を親幅に合わせる */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* aタグの下線と色をリセット */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム系の初期値を整える */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* ボタンのクリックカーソル */
button {
  cursor: pointer;
}

/* 親とフォント継承 */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
