.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
  background-image: none;
}

.navigation-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
  height: auto;
  width: fit-content;
  padding: 24px 30px;

  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 10;
}

.swiper-pagination {
  position: relative;
  display: flex;
  gap: 16px;
  width: fit-content;
}

.swiper-pagination-bullet {
  border: none;
  opacity: 1;
  transition: 0.3s;
  width: 25px;
  height: 25px;
  color: #52576a;
  text-align: center;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  cursor: pointer;
  background-color: transparent;
  margin-bottom: -15px;
}

.swiper-pagination-bullet-active {
  border: none;
  background-color: transparent;
  color: white;
  position: relative;
}

.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.swiper-play-pause {
  background-color: transparent;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: none;
}

.swiper-play-pause .pause-icon,
.swiper-play-pause .play-icon {
  width: 100%;
  display: block;
}

.swiper-fade .swiper-slide {
  transition-timing-function: ease-out !important;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.uniform-left-slider .swiper-slide,
.uniform-top-slider-pc .swiper-slide,
.uniform-top-slider-sp .swiper-slide,
.uniform-bottom-slider .swiper-slide,
.uniform-big-slider .swiper-slide {
  transition: opacity 3.5s ease-out !important;
}

.swiper-slide img {
  transition: opacity 3.5s ease-out, filter 3.5s ease-out !important;
}

.swiper-slide-active img {
  filter: brightness(1);
}

.swiper-slide:not(.swiper-slide-active) img {
  filter: brightness(0.8);
}

@media screen and (max-width: 767px) {
  .navigation-container {
    padding: 12px 16px;
  }

  .swiper-pagination {
    gap: 12px;
  }

  .swiper-pagination-bullet {
    font-size: 14px;
    width: 16px;
    height: 21px;
  }

  .swiper-play-pause {
    width: 32px;
    height: 32px;
  }
}
