@charset "UTF-8";
/* ==========================================================================
   GALLERY メインスライダー（Swiper：メイン＋サムネイル）
   ========================================================================== */
.galleryMain {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .galleryMain {
    padding: 40px 0 48px;
  }
}

.galleryMain_ttl {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.96px;
  color: #5d512d;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .galleryMain_ttl {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.galleryMain_stage {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .galleryMain_stage {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .galleryMain_stage {
    gap: 0;
    margin-bottom: 16px;
    position: relative;
  }
}

.galleryMain_arrow {
  flex-shrink: 0;
  width: 32px;
  height: 144px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.galleryMain_arrow img {
  display: block;
  width: 100%;
  height: 100%;
}
.galleryMain_arrow.-prev img {
  transform: scaleX(-1);
}
.galleryMain_arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .galleryMain_arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 72px;
  }
  .galleryMain_arrow.-prev {
    left: 8px;
  }
  .galleryMain_arrow.-next {
    right: 8px;
  }
  .galleryMain_arrow img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
  }
}

.galleryMain_swiper {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1200/788;
  overflow: hidden;
  position: relative;
}
.galleryMain_swiper .swiper-slide {
  position: relative;
}
.galleryMain_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.galleryMain_swiper .swiper-slide .galleryMain_caption {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 24px;
  width: auto;
  max-height: 42px;
}
@media screen and (max-width: 1300px) {
  .galleryMain_swiper .swiper-slide .galleryMain_caption {
    left: 10px;
    bottom: 16px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .galleryMain_swiper .swiper-slide .galleryMain_caption {
    left: 12px;
    bottom: 12px;
    height: 14px;
  }
}

.galleryMain_thumbs {
  width: 100%;
  max-width: 1200px;
}
.galleryMain_thumbs .swiper-slide {
  position: relative;
  aspect-ratio: 294/184;
  overflow: hidden;
  cursor: pointer;
}
.galleryMain_thumbs .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galleryMain_thumbs .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(35, 24, 21, 0.73);
  mix-blend-mode: multiply;
}

.galleryMain_thumbs .swiper-slide .galleryMain_thumbCaption {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .galleryMain_thumbs .swiper-slide .galleryMain_thumbCaption {
    transform: scale(1.5);
  }
}