/* =========================
  Reset CSS (Minimal)
========================= */

/* box-sizingを統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルト余白をリセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

/* 画像のはみ出し防止 & 余白対策 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* フォーム系はフォントを継承 */
input,
button,
textarea,
select {
  font: inherit;
}

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

/* リンクの見た目を統一 */
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* テーブルの崩れ防止（保険） */
table {
  border-collapse: collapse;
  border-spacing: 0;
}