/* ------------------------------
   Standard Reset CSS
   (Minimal + Modern)
------------------------------ */

/* 基本リセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 要素のディスプレイ補正 */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* リスト */
ol, ul {
  list-style: none;
}

/* 引用符 */
blockquote, q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 全体のボックスサイズ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 画像の最大幅 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}
