.bvc-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bvc-fg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100vh;
    min-height: 100%;
    object-fit: cover;
}

.bvc-bg {
    display: none;
}

@media (min-width: 769px) {
    .bvc-wrap {
        background: #000;
    }

    .bvc-fg {
        height: auto;
        min-height: 100%;
        min-width: var(--bvc-pc-width, 724px);
    }
}

@media (max-width: 768px) {
    .bvc-fg {
        left: 0;
        transform: none;
        width: 100vw;
        height: 100vh;
    }
}

.bvc-poster {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: -2;
}
