/* ===============================
   Minimal Modern CSS Reset
   =============================== */

/* 全要素のマージン・パディング・ボックスサイズをリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body の標準フォントと背景色 */
body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  background-color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* 文字を滑らかに */
  -moz-osx-font-smoothing: grayscale;
}

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

/* a のデフォルト装飾を消す */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像や動画の最大幅制御 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* フォーム要素のデフォルト装飾を消す */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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