/* オーバーレイ */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 15000;
}
.zoom-overlay.active {
        opacity: 1;
    }
/* ズームアニメーション用のクローン */
.zoom-clone {
    position: fixed;
    margin: 0;
    transition: transform 0.2s ease-out;
    will-change: transform;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translate(0, 0) scale(1);
    transform-origin: center center;
    z-index: 15001;
}
.photo-browser-init-hide {
    opacity: 0 !important;
    pointer-events: none !important;
}
.photo-browser-thumbs-slide {
    cursor: pointer;
}
.photo-browser-thumbs-slide:active {
        cursor: grabbing;
    }
.photo-browser-thumbs-slide:not(.swiper-slide-active, :hover) {
        opacity: 0.3;
        filter: grayscale(100%);
    }

/*# sourceMappingURL=bundle.css.map */