/* ============================================================
   PICK UP スライダー スタイル
   ============================================================ */

/* ---------- セクション ---------- */
.pickup-section {
  width: 100%;
  padding: 56px 0 80px;
}

.pickup-section__heading {
  font-family: "Oswald", "Noto Sans JP", serif, sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #00366e;
  width: 1000px;
  margin: 0 auto 6px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pickup-section__dot {
  font-size: 10px;
}

/* ---------- Swiper ---------- */
.pickup-swiper {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.pickup-outer {
  position: relative;
  width: 100vw;
}

/* ---------- スライド ---------- */
.pickup-slide {
  width: 1000px;
  overflow: hidden;
}

.pickup-slide__link {
  display: block;
  transition: opacity 0.3s;
}
.pickup-slide__link:hover {
  opacity: 0.9;
}

.pickup-slide__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- アクティブでないスライドを少し暗く ---------- */
.swiper-slide:not(.swiper-slide-active) .pickup-slide__img {
  filter: brightness(0.75);
  transition: filter 0.4s;
}
.swiper-slide.swiper-slide-active .pickup-slide__img {
  filter: brightness(1);
  transition: filter 0.4s;
}

/* ---------- ナビゲーションボタン ---------- */
.swiper-buttons {
  width: 1068px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

.pickup-swiper__prev,
.pickup-swiper__next {
  position: static;
  width: 68px !important;
  height: 68px !important;
  background: #00366e !important;
  border: solid 1px #fff;
  border-radius: 50% !important;
  margin-top: 0 !important;
}

/* デフォルトアイコンを非表示 */
.pickup-swiper__prev::after,
.pickup-swiper__next::after {
  display: none !important;
}

/* 三角矢印 */
.pickup-swiper__prev::before,
.pickup-swiper__next::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.pickup-swiper__prev::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 13px solid #fff;
  margin-right: 4px;
}

.pickup-swiper__next::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #fff;
  margin-left: 4px;
}

/* ---------- ページネーション ---------- */
.pickup-swiper__pagination {
  position: relative !important;
  margin-top: 24px;
  bottom: auto !important;
}

.pickup-swiper__pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #d1d5db;
  border-radius: 100px;
  opacity: 1;
  transition: all 0.3s;
  display: inline-block;
  margin: 0 8px !important;
}

.pickup-swiper__pagination .swiper-pagination-bullet-active {
  background: #00366e;
  width: 44px;
}

@media (max-width: 1200px) {
  /* ---------- セクション ---------- */
  .pickup-section__heading {
    width: 100%;
    padding: 0 40px;
  }

  /* ---------- スライド ---------- */
  .pickup-slide {
    width: calc(100vw - 160px);
  }

  /* ---------- ナビゲーションボタン ---------- */
  .swiper-buttons {
    width: 90%;
  }

  .pickup-swiper__prev,
  .pickup-swiper__next {
    position: static;
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 896px) {
  .pickup-section {
    padding: 40px 0;
  }
}

@media (max-width: 640px) {
  .pickup-section {
    padding: 28px 0 40px;
  }
  /* ---------- セクション ---------- */
  .pickup-section__heading {
    padding: 0 2rem;
    font-size: 18px;
  }

  .pickup-section__dot {
    font-size: 8px;
  }

  /* ---------- スライド ---------- */
  .pickup-slide {
    width: calc(100vw - 70px);
  }

  /* ---------- ナビゲーションボタン ---------- */
  .swiper-buttons {
    width: 96%;
  }

  .pickup-swiper__prev,
  .pickup-swiper__next {
    position: static;
    width: 40px !important;
    height: 40px !important;
  }

  .pickup-swiper__prev::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #fff;
  }

  .pickup-swiper__next::before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #fff;
  }

  /* ---------- ページネーション ---------- */
  .pickup-swiper__pagination {
    margin-top: 16px;
  }

  .pickup-swiper__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
  }

  .pickup-swiper__pagination .swiper-pagination-bullet-active {
    width: 32px;
  }
}
