/* ============================================================
   reset.css
   ・ブラウザ差分の吸収のみを担当
   ・デザイン・フォント・色は base.css 以降に委譲
============================================================ */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
img,
section,
footer,
header,
nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* リスト */
ul {
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像 */
img {
  max-width: 100%;
  display: block;
}
