/* =========================
   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 {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
}

/* リストの点を消す */
ul,
ol {
  list-style: none;
}

/* 画像の扱いを安定 */
img,
picture {
  max-width: 100%;
  display: block;
}

/* フォーム系を継承しやすく */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* ボタンのデフォルト見た目を消す */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* textareaの暴走防止 */
textarea {
  resize: vertical;
}

/* Safari対策 */
button,
input,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}