/* Swiper カスタムナビゲーションボタン */
.custom-swiper-button-prev,
.custom-swiper-button-next {
  position: absolute;
  top: 60%;
  background-color: #ffff4a;
  color: #01a3d9;
  padding: 12px;
  border-radius: 50%;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 1 !important; /* Swiperのデフォルト値を上書き */
  overflow: 1;
}

.custom-swiper-button-prev::after,
.custom-swiper-button-next::after {
  font-size: 14px;
}

/* 左ボタン */
.custom-swiper-button-prev {
  left: 3%;
}

/* 右ボタン */
.custom-swiper-button-next {
  right: 3%;
}

/* ホバーエフェクト */
.custom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
  background-color: #cdcd3a;
  opacity: 0.6;
  transform: scale(1.1);
}

/* Swiperデフォルトの非表示設定を上書き */
.swiper-button-disabled {
  opacity: 0.5 !important;
}
