@charset "UTF-8";

.lp_wrap .sales {
  margin-top: -21.4%;
}
.lp_wrap .sales .circle {
  position: absolute;
  top: 15%;
  left: 17.5%;
  width: 27.2%;
  animation: 10s sales_circle linear infinite;
}
@keyframes sales_circle {
  to {
    transform: rotateZ(-359deg);
  }
}
.lp_wrap .sales .deco li {
  position: absolute;
}
.lp_wrap .sales .deco li:nth-child(1) {
  top: 39%;
  left: 3.4%;
  width: 16.8%;
  animation: 2s sales_deco ease-in-out alternate infinite;
}
.lp_wrap .sales .deco li:nth-child(2) {
  top: 14%;
  left: 80%;
  width: 23.733%;
  animation: 2s sales_deco -3s ease-in-out alternate infinite;
}
@keyframes sales_deco {
  from {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(10%);
  }
}
.lp_wrap .sales .head {
  position: absolute;
  top: 44%;
  left: 9.4667%;
  width: 81.067%;
  transition: 0.6s;
  transform: translateY(20%);
  opacity: 0;
}
.lp_wrap .sales .head.move {
  transform: translateY(0%);
  opacity: 1;
}