/* ========================================
   CSSリセット
   ブラウザのデフォルトスタイルをリセットします
   基本的に編集不要
   ======================================== */

/* すべての要素のマージン・パディングをリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5の新しい要素をブロック要素として表示 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

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

/* リンクの下線を削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の下の余白を削除 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ボタンのデフォルトスタイルをリセット */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* フォーム要素のフォントを継承 */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* テーブルの境界線を統一 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
