﻿/* reset.css */
/* 全要素のマージン・パディングを初期化 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5の要素も扱いやすくする */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 画像の表示癖を調整 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

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

/* リンクの下線などを初期化（後でbase.cssで調整） */
a {
  text-decoration: none;
  color: inherit;
}

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

/* テーブル要素も整える */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
