﻿@charset "utf-8";

.lp_wrap .point2 .head {
  position: absolute;
  top: 15.4%;
  left: 7.4%;
  width: 7.6%;
  transition: 1.4s;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 1) 55%, rgba(0, 0, 0, 1) 100%);
  mask-size: 100% 250%;
  mask-position: 0% 100%;
}
.lp_wrap .point2 .head.move {
  mask-position: 0% 0%;
}
.lp_wrap .point2 .slide {
  position: absolute;
  top: 67.5%;
  left: 0%;
  width: 371.2%;
  display: flex;
}
.lp_wrap .point2 .slide div {
  animation: 13s point2_slide linear infinite;
}
@keyframes point2_slide {
  to {
    transform: translateX(-100%);
  }
}