@charset "utf8";
/* galleryページ専用のcss */

/* fv */
.fv {
  position: relative;
  width: 100%;
  margin: calc(82vw / 19.2) 0 0;
}
@media screen and (max-width: 767px) {
  .fv {
    margin: calc(40vw / 3.6) 0 0;
  }
}
.fv__title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(64vw / 19.2);
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .fv__title {
    top: 40%;
    font-size: calc(34vw / 3.6);
  }
}
.gallery {
  padding: calc(70vw / 19.2) 0 calc(400vw / 19.2);
  background-color: #F0FAFF;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding: calc(15vw / 3.6) 0 calc(200vw / 3.6);
  }
}
.gallery__inner {
  position: relative;
  width: calc(700vw / 19.2);
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gallery__inner {
    width: calc(330vw / 3.6);
  }
}

/* swiper */
.gallery-wrapper {
  align-items: center;
}
.gallery-slider {
  width: 100%;
  height: auto;
  margin-bottom: calc(32vw / 19.2);
}
@media screen and (max-width: 767px) {
  .gallery-slider {
    margin-bottom: calc(16vw / 3.6);
  }
}
.gallery-slider img {
  width: 100%;
}
.gallery__inner .swiper-button-prev,
.gallery__inner .swiper-button-next {
  position: absolute;
  top: 57%;
  width: calc(20vw / 19.2);
  height: calc(60vw / 19.2);
  background: #898989;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .gallery__inner .swiper-button-prev,
  .gallery__inner .swiper-button-next {
    top: 57%;
    width: calc(20vw / 3.6);
    height: calc(30vw / 3.6);
  }
}
.gallery__inner .swiper-button-prev {
  left: 0;
  border-radius: 0 calc(16vw / 19.2) calc(16vw / 19.2) 0;
}
@media screen and (max-width: 767px) {
  .gallery__inner .swiper-button-prev {
    border-radius: 0 calc(6vw / 3.6) calc(6vw / 3.6) 0;
  }
}
.gallery__inner .swiper-button-next {
  right: 0;
  border-radius: calc(16vw / 19.2) 0 0 calc(16vw / 19.2);
}
@media screen and (max-width: 767px) {
  .gallery__inner .swiper-button-next {
    border-radius: calc(6vw / 3.6) 0 0 calc(6vw / 3.6);
  }
}
.gallery__inner .swiper-button-prev::after {
  position: absolute;
  left: calc(6vw / 19.2);
  top: calc(22vw / 19.2);
  font-family: swiper-icons;
  content: 'prev';
  font-size: calc(10vw / 19.2);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .gallery__inner .swiper-button-prev::after {
    left: calc(6vw / 3.6);
    top: calc(11vw / 3.6);
    font-size: calc(8vw / 3.6);
  }
}
.gallery__inner .swiper-button-next::after {
  position: absolute;
  right: calc(6vw / 19.2);
  top: calc(22vw / 19.2);
  font-family: swiper-icons;
  content: 'next';
  font-size: calc(10vw / 19.2);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .gallery__inner .swiper-button-next::after {
    right: calc(6vw / 3.6);
    top: calc(11vw / 3.6);
    font-size: calc(8vw / 3.6);
  }
}
.thumbs-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: calc(32vw / 19.2) calc(32vw / 19.2);
  width: calc(1220vw / 19.2);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .thumbs-wrap {
    width: calc(330vw / 3.6);
    gap: calc(16vw / 3.6) calc(16vw / 3.6);
  }
}
.thumbs {
  width: calc(385vw / 19.2);
}
@media screen and (max-width: 767px) {
  .thumbs {
    width: calc(99.33vw / 3.6);
  }
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}