@charset "UTF-8";

.lp_wrap .check .old {
  position: absolute;
  top: 38.6%;
  left: 4.5%;
  width: 90.533%;
}
.lp_wrap .check .old .before-after-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.lp_wrap .check .old .before-image, .after-image {
  display: block;
  width: 100%;
  height: auto;
}
.lp_wrap .check .old .after-image {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.lp_wrap .check .old .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--border-width);
  background: var(--border-color);
  cursor: ew-resize;
  z-index: 10;
}
.lp_wrap .check .old .slider-handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 30px;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: auto;
}
.lp_wrap .check .old .slider-handle::after {
  content: var(--slide-text);
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--slide-bg-color);
  color: var(--slide-text-color);
  transform: translate(-50%, -50%);
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  font-weight: bold;
  pointer-events: auto;
  animation: slideText 0.5s ease-in-out infinite;
}
.lp_wrap .check .old .slider-handle.active::after {
  opacity: 0;
}
.lp_wrap .check .old .slider-handle.used::after {
  animation: none;
}
@keyframes slideText {
  0%, 100% { transform: translate(-50%, -50%) translateX(-2px); }
  50% { transform: translate(-50%, -50%) translateX(2px); }
}
.lp_wrap .check .fk li {
  position: absolute;
}
.lp_wrap .check .fk li:nth-child(1) {
  top: 26.4%;
  left: 8.6%;
  width: 35.867%;
}
.lp_wrap .check .fk li:nth-child(2) {
  top: 28.8%;
  left: 55%;
  width: 34.8%;
}
.lp_wrap .check .swipe {
  position: absolute;
  top: 87.6%;
  left: 39.6%;
  width: 18.4%;
}
.lp_wrap .check .swipe.trigger.move {
  animation: 2s check_swipe both 3;
}
@keyframes check_swipe {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}