@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translate(0, 5%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes translateleft {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes translateup {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes translatedown {
  0% {
    transform: translate(0, -70%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
div.hero-area h1 {
  opacity: 0;
  animation: fade 3s 0.4s ease forwards;
}
div.hero-area div.hero-img {
  opacity: 0;
  animation: fade 3s 0.8s ease forwards;
}
div.hero-area header {
  opacity: 0;
  animation: translatedown 1s 1.4s ease forwards;
}

.fix-btn {
  transform: translate(0, 100%);
  animation: translateup 0.8s 1.4s ease forwards;
}
@media screen and (min-width: 768px) {
  .fix-btn {
    transform: translate(100%, 0);
    animation: translateleft 1s 1.4s ease forwards;
  }
}

.sec-just h2,
.sec-just p,
.sec-just .link-wrap,
.sec-just .just-bg,
.sec-concept .slide-group,
.sec-plan .wh-area,
.sec-catalog h3,
.sec-catalog p,
.sec-catalog .catalog-img,
.sec-catalog .link-wrap {
  opacity: 0;
}
.sec-just h2.animation,
.sec-just p.animation,
.sec-just .link-wrap.animation,
.sec-just .just-bg.animation,
.sec-concept .slide-group.animation,
.sec-plan .wh-area.animation,
.sec-catalog h3.animation,
.sec-catalog p.animation,
.sec-catalog .catalog-img.animation,
.sec-catalog .link-wrap.animation {
  animation: fadeup 1.4s 0s ease forwards;
}

.sec-plan .img-box div.img-box-img {
  opacity: 0;
}
.sec-plan .img-box.animation div.img-box-img:nth-of-type(1) {
  animation: fadeup 1.4s 0s ease forwards;
}
.sec-plan .img-box.animation div.img-box-img:nth-of-type(2) {
  animation: fadeup 1.4s 0.25s ease forwards;
}
.sec-plan .img-box.animation div.img-box-img:nth-of-type(3) {
  animation: fadeup 1.4s 0.5s ease forwards;
}

section.sec-concept h2 span,
section.sec-plan h2 span {
  opacity: 0;
}
section.sec-concept h2.animation span:nth-of-type(1),
section.sec-plan h2.animation span:nth-of-type(1) {
  animation: fade 2s 0.1s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(2),
section.sec-plan h2.animation span:nth-of-type(2) {
  animation: fade 1.4s 0.1s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(3),
section.sec-plan h2.animation span:nth-of-type(3) {
  animation: fade 1.4s 0.2s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(4),
section.sec-plan h2.animation span:nth-of-type(4) {
  animation: fade 1.4s 0.2s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(5),
section.sec-plan h2.animation span:nth-of-type(5) {
  animation: fade 1.4s 0.3s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(6),
section.sec-plan h2.animation span:nth-of-type(6) {
  animation: fade 1.4s 0.1s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(7),
section.sec-plan h2.animation span:nth-of-type(7) {
  animation: fade 1.4s 0s ease forwards;
}
section.sec-concept h2.animation span:nth-of-type(8),
section.sec-plan h2.animation span:nth-of-type(8) {
  animation: fade 1.4s 0.2s ease forwards;
}/*# sourceMappingURL=animation.css.map */