@charset "UTF-8";

.lp_wrap .graph .arrow {
  position: absolute;
  top: 19.4%;
  left: 18%;
  width: 73.568%;
}
.lp_wrap .graph .arrow.trigger img {
  transition: 0.8s;
  transform: scale(0);
  opacity: 0;
  transform-origin: 0% 100%;
}
.lp_wrap .graph .arrow.trigger.move img {
  transform: scale(1);
  opacity: 1;
}
.lp_wrap .graph .wt_icon {
  position: absolute;
  top: 11.9%;
  left: 18%;
  width: 39.063%;
  transition: 0.6s 0.4s;
  transform: scale(0);
  opacity: 0;
}
.lp_wrap .graph .arrow.trigger.move ~ .wt_icon {
  transform: scale(1);
  opacity: 1;
}
.lp_wrap .graph .deco {
  position: absolute;
  top: 62.7%;
  left: 76.4%;
  width: 19.661%;
  animation: 1s graph_deco ease-in-out alternate infinite;
}
@keyframes graph_deco {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}