@charset "UTF-8";
/* ----- 全体 ----- */
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

/* メインスライダー */
.mainSwiper {
  width: 100%;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: inherit;
}
@media screen and (min-width: 768px) {
  .mainSwiper {
    height: 100%;
  }
}
.mainSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

.mainSwiper .swiper-slide img {
  height: calc(100% - 2vw);
  width: calc(100% - 2vw);
  padding: 0 1vw 1vw 1vw;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

/* 矢印（黒） */
.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 5vw;
  height: 5vw;
}
@media screen and (min-width: 768px) {
  .swiper-button-next svg,
  .swiper-button-prev svg {
    width: 30px;
    height: 30px;
  }
}

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

/* ドット（slick風中央） */
.swiper-pagination {
  bottom: -7vw !important;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: -24px !important;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #000;
  opacity: 0.3;
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.2s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.1);
}

/* 横棒プログレスバー */
.autoplay-progress-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 81%;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .autoplay-progress-bar {
    width: 48%;
    height: 4px;
  }
}
@media screen and (min-width: 1280px) {
  .autoplay-progress-bar {
    width: 31.5%;
  }
}

.autoplay-progress-fill {
  width: 0%;
  height: 100%;
  background: #4a4f4e;
  transition: width linear;
}/*# sourceMappingURL=slider.css.map */