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

/* ボックスサイズを border-box に統一 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* マージンとパディングをリセット */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* リストのスタイルをリセット */
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* 画像に余白が出ないように */
img {

}

/* ボタンなどフォーム要素の見た目を素直に */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

/* テーブルのセル間余白をなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* HTML5セクションタグに表示ブロックを明示 */
article, aside, footer, header, nav, section, main {
  display: block;
}

/* bodyの初期設定（必要に応じて） */
body {
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  font-family: sans-serif;
}

