@charset "utf-8";

.main-gallery-swiper {
    width: 100%;
    position: relative;
    user-select: none;
}

.main-gallery-swiper .swiper-slide {
    position: relative;
    aspect-ratio: 1/0.75;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.main-gallery-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.main-gallery-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-gallery-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) url('./img/plus_w.svg') center center/8rem no-repeat;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

.main-gallery-swiper .swiper-slide:hover::before {
    visibility: visible;
    opacity: 1;
}

.main-gallery-swiper .swiper-slide:hover::before {
    visibility: visible;
    opacity: 1;
}

.main-gallery-swiper .swiper-slide.swiper-slide-active,
.main-gallery-swiper .swiper-slide.swiper-slide-next,
.main-gallery-swiper .swiper-slide.swiper-slide-next+.swiper-slide {
    opacity: 1;
}

.main-gallery-swiper .swiper-pagination {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.main-gallery-swiper .swiper-pagination.swiper-pagination-lock {
    display: none;
}

.main-gallery-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: #ddd;
    opacity: 1;
    transition: all .3s ease;
}

.main-gallery-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #666;
}

@media screen and (max-width:1440px) {}

@media screen and (max-width:960px) {
    .main-gallery-swiper .swiper-slide {
        opacity: 1;
    }
}

@media screen and (max-width:786px) {

    .main-gallery-swiper .swiper-pagination {
        gap: 0.5rem;
    }

    .main-gallery-swiper .swiper-pagination .swiper-pagination-bullet {
        width: 0.6rem;
        height: 0.6rem;
    }
}