/* project: top hero swiper */
.p-top-hero {
  margin-bottom: 24px;
  width: 100%;
  overflow-x: hidden;
}

.p-top-hero__swiper {
  overflow: visible;
}

.p-top-hero__swiper .swiper-slide {
  opacity: 1;
  width: 100%;
}

@media (width >= 960px) {
  .p-top-hero__swiper .swiper-slide {
    width: 60%;
  }
}

@media (width >= 768px) {
  .p-top-hero__swiper .swiper-slide {
    width: auto;
  }

  .p-top-hero__swiper .swiper-slide .u-img {
    margin: 0 auto;
    width: 640px;
    max-width: 100%;
  }
}

.p-top-hero__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.p-top-hero__tabs .swiper-pagination-bullet {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: #ccc;
  width: 8px;
  height: 8px;
  font-size: 0;
}

.swiper-button-next,
.swiper-button-prev {
  border: none;
  border-radius: 9999px;
  background: #999;
  width: 18px;
  height: 18px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ddd;
  font-size: 10px;
}

@media (width >= 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-button-next {
    left: 50%;
    margin-left: 330px;
  }

  .swiper-button-prev {
    left: 50%;
    margin-left: -350px;
  }
}
