/* =======================================
   reset.css
   ブラウザ差をなくしてきれいに整える
======================================= */

/* 全要素の余白をリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リストマーク（・や数字）を消す */
ul, ol {
  list-style: none;
}

/* リンクの下線と色をリセット */
a {
  text-decoration: none;
  color: inherit; /* 親要素の色を引き継ぐ */
}

/* 画像の隙間を消す（インライン要素のズレ防止） */
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキスト要素の標準化 */
body {
  line-height: 1.5;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #333; /* ベースの文字色（仮） */
  background-color: #fff;
}