/* ------------------------------------
   Reset / Base
------------------------------------ */

/* 全要素の余白リセットとbox-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTMLとBodyの初期設定 */
html, body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 画像・メディア要素 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* リスト */
ul, ol {
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* ボタン・フォーム要素 */
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* hタグのサイズ・太さをリセット */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
