@charset "utf-8";
/* ===== Reset CSS ===== */

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

/* 画像のリサイズ調整 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* リンクのデフォルト装飾を消す */
a {
  text-decoration: none;
  color: inherit;
}

/* 見出しと本文の余白・サイズリセット */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  margin: 0;
}

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

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

/* ボタンのブラウザ依存スタイル削除 */
button {
  border: none;
  background: none;
  cursor: pointer;
}

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

/* bodyの背景と文字色を基本設定 */
body {
  line-height: 1.5;
  background: #fff;
  color: #000;
}
