@charset "utf-8";

/*----- reset -----*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* 3. 高さは%ベースを使用 */
html, body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}
a:visited {
  color: #333;          /* ← 同じ色にする */
}
/*  6. メディア要素のデフォルトを改善 */
img, picture, video, canvas, svg {
  display: block;
  width: 100%;
  height: auto;
}
/* 7. フォームのfontに関するデフォルトを削除 */
button, input, select, textarea {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
/* 8. テキストのオーバーフローを回避 */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
ol, ul, li, a {
  display: block;
}
ol, ul {
  list-style: none;
}
/* 9. ルートのスタックコンテキストを作成 */
#root, #__next {
  isolation: isolate;
}
/* 10. その他追加 */
input {
  -webkit-appearance: none; /* iPhoneの影・丸みを消す */
  border-radius: 0;        /* 角丸を消す */
  border: none;            /* 必要であれば枠線も消す */
}