.fvContainer {
  position: relative;
  width: 100%;
  background: var(--color-base);
}
.fvInner {
  position: relative;
  width: 100%;
  padding-bottom: 70px;
}
.fvSlider {
  overflow: hidden;
  width: 100%;
  height: min(53.9375vw, 863px);
}
.fvSlider__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: fvSliderLoop 65s linear infinite;
  will-change: transform;
}
.fvSlider__group {
  display: flex;
  width: min(210vw, 3360px);
  height: 100%;
  flex: 0 0 min(210vw, 3360px);
}
.fvSlider__item {
  overflow: hidden;
  width: 20%;
  height: 100%;
  flex: 0 0 20%;
  background: var(--color-white);
}
.fvSlider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__scroll {
  position: absolute;
  bottom: 70px;
  left: 50%;
  padding-bottom: 44px;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 0.2rem;
}
.fv__scroll::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 65px;
  inset: auto 0 -50%;
  margin: auto;
  background: #4d4d4d;
}

@keyframes fvSliderLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 640px) {
  .fvInner {
    padding-bottom: 13vw;
  }
  .fvSlider {
    width: 100%;
    height: 171.875vw;
  }
  .fvSlider__group {
    width: 668.75vw;
    flex-basis: 668.75vw;
  }
}/*# sourceMappingURL=top-pre.css.map */