
@charset "UTF-8";

.lp_contents .zoom_wrap {
  display: block;
  overflow: hidden;
  background: #fff;
  width: 350px;
  height: 230px;
  position: absolute;
  top: 170px;
  right: 50px;
}
.lp_contents .zoom_wrap img {
  max-width: 100%;
}
.lp_contents .zoom_wrap .zoom_img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin:center center;
  opacity: 0;
}
.lp_contents .zoom_wrap .zoom_00 {
  z-index: 0;
  transform-origin: 50% 30%;
  opacity: 1;
  transform: scale(1);
}
.lp_contents .zoom_wrap .zoom_01 {
  animation: zoom_animation01 14s ease-in-out infinite 1s;
  z-index: 0;
  transform-origin: 50% 30%;
}
.lp_contents .zoom_wrap .zoom_02 {
  animation: zoom_animation02 14s ease-in-out infinite 1s;
  z-index: 5;
}
.lp_contents .zoom_wrap .zoom_03 {
  animation: zoom_animation03 14s ease-in-out infinite 1s;
  z-index: 10;
}
.lp_contents .zoom_wrap .zoom_04 {
  animation: zoom_animation04 14s ease-in-out infinite 1s;
  z-index: 15;
}
.lp_contents .zoom_wrap .zoom_end {
  animation: zoom_animation_end 14s ease-in-out infinite 1s;
  z-index: 20;
}
@keyframes zoom_animation01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  25%{
    opacity: 1;
    transform: scale(1.7);
  }
  90%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
@keyframes zoom_animation02 {
  0%,
  20% {
    opacity: 0;
    transform: scale(1);
  }
  24% {
    opacity: 1;
  }
  45%{
    opacity: 1;
    transform: scale(1.7);
  }
  90%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
@keyframes zoom_animation03 {
  0%,
  40% {
    opacity: 0;
    transform: scale(1);
  }
  44% {
    opacity: 1;
  }
  65%{
    opacity: 1;
    transform: scale(1.7);
  }
  90%,
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
@keyframes zoom_animation04 {
  0%,
  60% {
    opacity: 0;
    transform: scale(1);
  }
  64% {
    opacity: 1;
  }
  85%,
  95%{
    opacity: 1;
    transform: scale(1.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}
@keyframes zoom_animation_end {
  0%,
  80% {
    opacity: 0;
  }
  86%,
  96%{
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}