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

body {
  color: #262F34;
  font-weight: 500;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
}

*:where(:not(iframe, canvas, img, svg, video, sub, sup):not(svg *)) {
  all: unset;
  display: revert;
}

* {
  margin: 0;
  padding: 0;
}

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

/* Remove list styles (bullets/numbers) */
ol,
ul {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a img,
a span {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

a:hover img,
a:hover span {
  opacity: .75;
}

button {
  cursor: pointer;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

@media print, screen and (min-width: 769px) {
  [data-mq='sp'] {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  [data-mq='pc'] {
    display: none !important;
  }

  html{
    height: -webkit-fill-available;
  }

  body{
    min-height: calc(100vh - 60px);
    min-height: -webkit-fill-available;
    min-height: calc(calc(var(--vh, 1vh) * 100) - 60px);
  }
}