/* -------- Normalize 基本 -------- */

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  height: 0;
  overflow: visible;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}


/* ボックスモデルを border-box に統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 見出し・段落・リストなどのマージンリセット */
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

/* リストのリセット */
ul, ol {
  margin: 0;
  padding: 0;
}

/* ボタンやフォーム要素のリセット */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* テキストリンクのリセット */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

/* テーブルのセル間スペースをなくす */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
