/* -----------------------
  cv
----------------------- */
.cv {
  background: url(../img/cv_bg.png?v1) no-repeat center top / 100% auto, #E07AA0;
  padding-top: min(18.13vw, 174px);
}

.cv .btn-box {
  width: min(86.46vw, 830px);
  margin: 0 auto;
  position: relative;
}
.cv .btn-box .btn {
  display: block;
  position: absolute;
  top: 0;
  left: max(-2.08vw, -20px);
  transform: translateX(0);
}

.cv .btn-box .btnicon {
  display: block;
  position: absolute;
  top: 0;
  left: max(-1.73vw, -20px);
  width: min(17.4vw, 167px);
  z-index: 5;
  transform: translateX(0);
}

.cv-price {
  background: url(../img/price_bg.png) no-repeat center bottom / 100% auto;
}
.cv-price .slider .slick-arrow {
  position: absolute;
  width: min(11.04vw, 106px);
  height: min(11.04vw, 106px);
  top: 45.8%;
  z-index: 4;
}
.cv-price .slider .prev {
  left: 2.7%;
}
.cv-price .slider .next {
  right: 2.7%;
}

.shine {
  position: absolute;
  width: min(78.04vw, 730px);
  height: min(23.54vw, 226px);
  overflow: hidden;
  top: min(3.53vw, 30px);
  left: min(5.5vw, 54px);
  z-index: 2;
  pointer-events: none;
  border-radius: min(3.13vw, 30px);
  box-shadow: 14px 14px 20px 1px rgba(0, 0, 0, 0.1);
  mix-blend-mode: overlay;
}
.shine::before {
  content: "";
  width: 200%;
  height: 200%;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 55%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 55%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 1) 55%,
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=0);
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 1;
  animation: shine 1.8s linear infinite;
}
@keyframes shine {
  from,
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(45deg);
    transform: translate3d(-100%, 0, 0) rotate(45deg);
    opacity: 0;
  }

  20% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-45deg);
    transform: translate3d(-100%, 0, 0) rotate(-45deg);
    opacity: 1;
  }

  70% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(-45deg);
    transform: translate3d(100%, 0, 0) rotate(-45deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(-45deg);
    transform: translate3d(100%, 0, 0) rotate(-45deg);
    opacity: 0;
  }

  to,
  100% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-45deg);
    transform: translate3d(-100%, 0, 0) rotate(-45deg);
    opacity: 0;
  }
}

.cv-01 {
  padding-bottom: min(9.1vw, 71px);
}
