@charset "utf-8";
.hero_section_inner {
  opacity: 0;
  transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.start .hero_section_inner {
  opacity: 1;
}
.hero_catch1, .hero_catch2 {
  transform: scale(1.4);
  opacity: 0;
  transition: opacity 0.6s linear, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll {
  opacity: 0;
  transition: opacity 0.6s linear;
  transition-delay: 1.5s;
}
.hero_catch1 {
  transition-delay: 0.5s;
}
.hero_catch2 {
  transition-delay: 0.9s;
}
.scroll {
  opacity: 0;
  transition: opacity 0.8s linear;
  transition-delay: 1.2s;
}
.start .scroll {
  opacity: 1;
}
.start .hero_catch1, .start .hero_catch2 {
  transform: scale(1);
  opacity: 1;
}
.fadeInObj {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.fadeInDownObj {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s linear, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.fadeInLeftObj {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s linear, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.fadeInNml {
  opacity: 0;
  transition: opacity 0.4s linear;
  will-change: opacity;
}
.fadeInActive {
  opacity: 1;
  transform: scale(1);
}
.fadeInNmlActive {
  opacity: 1;
}
.fadeInDownActive {
  opacity: 1;
  transform: translateY(0);
}
.fadeInLeftActive {
  opacity: 1;
  transform: translateX(0);
}