/* =========================
   Reset CSS
   ========================= */

/* box-sizing を全要素に適用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルトマージン削除 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* body 基本設定 */
body {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* リスト装飾削除 */
ul,
ol {
  list-style: none;
}

/* リンク初期化 */
a {
  color: inherit;
  text-decoration: none;
}

/* 画像・メディア要素 */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* フォーム要素リセット */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* buttonのデフォルト挙動 */
button {
  cursor: pointer;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* address */
address {
  font-style: normal;
}
