@charset "UTF-8";

.lp_wrap .nayami .circle {
  position: absolute;
  top: 51.5%;
  left: 14.734%;
  width: 70.533%;
  animation: 12s cycle1 linear infinite;
}
@keyframes cycle1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}