html {
  font-size: 62.5%;
}

body {
  margin: 0;
}

.wrap_recomend {
  width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap_recomend {
    width: 100%;
  }
}

.carousel {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.carousel.slick-slider {
  display: block;
}
.carousel-item {
  width: 260px;
  margin: 0 clamp(10px, 5vw, 68px);
  box-sizing: border-box;
}
.carousel-item > img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .carousel-item img {
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .carousel {
    overflow: hidden;
  }
}
.carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3%;
  height: 100%;
  background-color: white;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .carousel::before {
    content: none;
  }
}
.carousel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 3%;
  height: 100%;
  background-color: white;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .carousel-item {
    margin: 0 11vw;
  }
  .carousel::after {
    content: none;
  }
}/*# sourceMappingURL=custom-carousel.css.map */