/** @format */
.gallery-main {
  margin-bottom: 18.75rem;
}
.gallery-main .cont {
  display: flex;
  position: relative;
  margin: 0px auto;
  padding-bottom: 50px;
  overflow: hidden;
}
.gallery-main .cont > div {
  display: flex;
  scrollbar-width: none;
  gap: 50px;
  white-space: nowrap;
  overflow-x: scroll;
}
.gallery-list-wrap {
  position: relative;
  padding: 0 50px;
  font-size: 1.5vw;
  overflow: hidden;
}
.gallery-list {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.gallery-main .title {
  font-size: 43px;
  font-family: "neurimboGothicRegular";
  width: fit-content;
  margin-top: 10px;
}
.gallery-list .gallery-list__main {
  border-radius: 30px;
  overflow: hidden;
  max-width: 930px;
  max-height: 690px;
  aspect-ratio: 1 / 0.9;
}
.gallery-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 0 0 48%;
}
.sub-gallery {
  flex: 0 1 52%;
}
.sub-gallery > ul {
  display: flex;
  gap: 30px;
  align-items: end;
}
.sub-gallery > ul li {
  flex: 0 1 33%;
}
.sub-gallery .gallery-item > div {
  max-width: 280px;
  max-height: 280px;
}
.sub-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  aspect-ratio: 1 / 1;
}
.sub-gallery span {
  padding: 0px 0px 15px 20px;
  display: block;
  font-size: 14px;
}

.swiper-container {
  position: relative;
  overflow: hidden;
}
.swiper-navigation {
  position: fixed;
  width: 170px;
  height: 75px;
  background: #0000001a;
  border: 1px solid #1e1b19;
  z-index: 1;
  backdrop-filter: blur(10px);
  border-radius: 60px;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%);
}
.gallery-main .swiper-button-next,
.gallery-main .swiper-button-prev {
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  backdrop-filter: opacity(0.5);
}
.gallery-main .swiper-button-next:after,
.gallery-main .swiper-button-prev:after {
  font-size: 24px;
  background-image: url(/assets/images/ico_swiper_arrow.svg);
  background-repeat: no-repeat;
  content: "";
  width: 24px;
  height: 24px;
  background-position: center;
}
.gallery-main .swiper-button-prev:after {
  transform: rotate(180deg);
}
.gallery-main .swiper-button-next::before {
  font-size: 24px;
}
