/* ------------------------------
   Reset
------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,li,
figure,blockquote {
  margin: 0;
  padding: 0;
}

ul,ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ------------------------------
   Base
------------------------------ */

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

body {
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.7;
  color: #222;
}