/* ============================================
   common/css/reset.css
   全ツール・全ページ共通の最小限のブラウザ差異リセット。
   ============================================ */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
