html {
  font-size: 62.5%;
  line-height: 1.6;
  scroll-padding-top: 60px;
  font-family: "Noto Serif JP", system-ui;
  font-weight: 400;
  font-style: normal;
}
html i {
  margin: 0 10px 0 0;
  font-size: 1.4rem;
}

* a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
* a:hover {
  opacity: 0.6;
}

body {
  font-size: 1.6rem;
}

#is-load.body {
  animation: loadBlur 2s ease-in-out 0s forwards;
}
@keyframes loadBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Header ====================================================*/
.header {
  display: none;
}
.header__ttl {
  text-indent: -9999px;
}

/* Footer ====================================================*/
.footer {
  background-color: #084a5e;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  bottom: 0;
}
.footer .copyRight {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}