/* reset.css */

/* すべての要素の余白・パディングをリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* 画像の下に余計な隙間が出ないように */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* リンクの下線や色をリセット */
a {
  color: inherit;
  text-decoration: none;
}

/* テーブルのボーダーや間隔をリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}