/* reset.css */

/* すべての要素のマージン・パディングをリセット */
* {
  margin: 0;
  padding: 0;
}

/* HTML5要素の表示をブロック化 */
article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

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

/* 引用符をリセット */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

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

/* フォーム系要素のフォント継承 */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* リンクのデフォルト装飾を除去 */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の表示をブロックにして余白を消す */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
