/* ================================
   Reset CSS
================================ */

/* box-sizing を全要素に */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 余白リセット */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr {
  margin: 0;
  padding: 0;
}

/* リストの点を消す */
ol,
ul {
  list-style: none;
}

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

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

/* button の余計な装飾を消す */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* aタグの下線リセット（色は後で指定） */
a {
  text-decoration: none;
  color: inherit;
}

/* address の斜体を戻す */
address {
  font-style: normal;
}

/* table リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
