/* reset.css */

/* 余白リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 画像の扱いを統一 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* リストのスタイルを消す */
ul, ol {
  list-style: none;
}

/* リンクの下線を消す（必要なら後で追加） */
a {
  text-decoration: none;
  color: inherit;
}

/* デフォルトフォント */s
body {
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif, "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #f8f8f8;
  color: #333;
}
