.shl-shirei-carousel-wrap {
    position: relative;
}

.shl-shirei-swiper {
    width: 100%;
    min-width: 0;
    position: relative;

    overflow: hidden;
}

.shl-shirei-card {
    display: block;
    position: relative;

    text-decoration: none;
}

.shl-shirei-thumb {
    position: relative;

    overflow: hidden;
    border-radius: 24px;

    aspect-ratio: 3 / 4;

    background: #111;
}

.shl-shirei-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .45s ease;
}

.shl-shirei-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 188, 212, .55);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;

    transition: opacity .35s ease;
}

.shl-shirei-card:hover .shl-shirei-overlay {
    opacity: 1;
}

.shl-shirei-card:hover img {
    transform: scale(1.05);
}

.shl-shirei-play {
    width: 140px;
    height: 140px;

    border-radius: 999px;
    border: 6px solid white;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;
}

.shl-play-icon {
    width: 0;
    height: 0;

    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 38px solid white;

    margin-left: 8px;
}

.shl-shirei-watch {
    font-size: 42px;
    line-height: 1;

    font-weight: 700;
    color: white;

    text-align: center;
}

.shl-shirei-info {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 5;

    pointer-events: none;
}

.shl-shirei-title {
    margin: 0;

    color: white;

    font-size: 42px;
    line-height: 1.1;

    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.shl-shirei-next {
    position: absolute;

    right: -60px;
    top: 50%;

    transform: translateY(-50%);

    width: 54px;
    height: 54px;

    border-radius: 999px;

    background: #252834;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 20;

    transition: all .35s ease;
}

.shl-shirei-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.shl-shirei-next svg {
    width: 12px;
    height: 12px;
}

.shl-shirei-swiper .swiper-wrapper {
    align-items: stretch;
}

.shl-shirei-swiper .swiper-slide {
    height: auto;
}


/* =========================
VIDEO POPUP
========================= */

#shl-video-popup {
    position: fixed;
    inset: 0;

    z-index: 999999;

    visibility: hidden;
    opacity: 0;

    transition: all .3s ease;
}

#shl-video-popup.opened {
    visibility: visible;
    opacity: 1;
}

.shl-video-popup-bg {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.88);

    backdrop-filter: blur(4px);
}

.shl-video-popup-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 1100px;
    max-width: calc(100% - 40px);

    aspect-ratio: 16 / 9;
}

.shl-video-player {
    width: 100%;
    height: 100%;
}

.shl-video-player iframe {
    width: 100%;
    height: 100%;

    border: 0;
    border-radius: 12px;
}

.shl-video-popup-close {
    position: absolute;

    top: -54px;
    right: 0;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 999px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;
}

.shl-video-popup-close svg {
    width: 18px;
    height: 18px;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width: 1366px) {

    .shl-shirei-play {
        width: 110px;
        height: 110px;
    }

    .shl-play-icon {
        border-top-width: 18px;
        border-bottom-width: 18px;
        border-left-width: 30px;
    }

    .shl-shirei-watch {
        font-size: 30px;
    }

    .shl-shirei-title {
        font-size: 30px;
    }

}

@media(max-width: 767px) {

    .shl-shirei-play {
        width: 80px;
        height: 80px;

        border-width: 4px;

        margin-bottom: 18px;
    }

    .shl-play-icon {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 22px;

        margin-left: 4px;
    }

    .shl-shirei-watch {
        font-size: 22px;
    }

    .shl-shirei-info {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .shl-shirei-title {
        font-size: 24px;
    }

    .shl-shirei-next {
        right: 10px;

        width: 44px;
        height: 44px;
    }

    .shl-video-popup-content {
        max-width: calc(100% - 20px);
    }

}