@charset "utf-8";
/* =======================================
   共通：Swiper ボタン（Font Awesome アイコン）
======================================= */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 22px !important;
  color: #000;
}

.swiper-button-next::after {
  content: "\f054"; /* → */
}

.swiper-button-prev::after {
  content: "\f053"; /* ← */
}

/* =======================================
   共通：矢印配置
======================================= */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  color: #444;
}

/* =======================================
   画像 hover 拡大（枠内でズーム）
======================================= */
.imgWrap {
  overflow: hidden;
}

.imgWrap img {
  width: 100%;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.imgWrap:hover img {
  transform: scale(1.05);
}

/* a タグ内画像も拡大 */
.swiper-slide a {
  display: block;
  overflow: hidden;
  position: relative;
}

.swiper-slide a img {
  width: 100%;
  transition: transform 0.4s ease;
}

.swiper-slide a:hover img {
  transform: scale(1.08);
}

/* =======================================
   PC 基本
======================================= */
.swiper {
  width: 100%;
  margin: auto;
}

.swiper-slide {
  text-align: center;
}

/* ドット（PCのみ使用） */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* =======================================
   SP スクロールバー
======================================= */
.swiper-scrollbar {
  height: 4px;
  background: #eee;
}

.swiper-scrollbar-drag {
  background: #333;
}

/* =======================================
   PC（768px以上）
======================================= */
@media (min-width: 769px) {
  /* 全体幅調整 */
  .swiperCont {
    width: calc(100% - 12%);
    margin: auto;
  }

  /* SP用インジケータを非表示 */
  .swiper-pagination, .swiper-scrollbar{
    display: none !important;
  }

  /* 矢印をスライドの外側へ出す */
  .swiper-button-prev {
    left:-6% !important;
  }

  .swiper-button-next {
    right: -6% !important;
  }
}

/* =======================================
   SP（768px以下）
======================================= */
@media (max-width: 768px) {
  /* スライド幅調整（1.5表示） */
  .swiper-slide {
    width: auto;
  }

  /* 矢印 & ドットは非表示、スクロールバーのみ */
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none !important;
  }
}


