@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333333;
  font-family: "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 0.1rem;
}
* {
  box-sizing: border-box;
}
img{
  max-width: 100%;
  vertical-align: bottom;
}
.fade{
  opacity: 0;
  transition: .8s;
  transform: translateY(40px);
}
.fade.active{
  opacity: 1;
  transform: translateY(0);
}
.fadeIn{
  opacity: 0;
  transition: .8s;
}
.fadeIn.active{
  opacity: 1;
}