/* WordPress Block - Background Slider */
.wp-block-brewlab-background-slider {
    position: relative;
    overflow: hidden;
    min-height: var(--brewlab-bg-slider-min-height, 100vh);
    /* 画面いっぱいの高さ */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .wp-block-brewlab-background-slider {
        min-height: var(--brewlab-bg-slider-min-height-sp, 100vh);
    }
}

.brewlab-bg-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}



.brewlab-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    /* ゆっくりフェード */
    z-index: 0;
}

.brewlab-bg-slide.is-active {
    opacity: 1;
}

.brewlab-bg-slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}