@charset "UTF-8";

/* 動画トップスライダー */
.bl_videoSlider {
    margin-bottom: 20px;
}

.bl_videoSlider_swiper {
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
}

.bl_videoSlider>.swiper-pagination {
    position: unset;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bl_videoSlider>.swiper-pagination>.swiper-pagination-bullet {
    max-width: 50px;
    width: 100%;
    height: 5px;
    border-radius: unset;
    background: #fff;
}

.bl_videoSlider>.swiper-pagination>.swiper-pagination-bullet-active {
    background: #e61e82;
    opacity: 1;
}

.bl_videoSlider_link {
    display: block;
    overflow: hidden;
}

.bl_videoSlider_link img {
    width: 100%;
    height: auto;
    display: block;
}

/* AIマッチング */
.bl_videoAi_match {
    background-image: linear-gradient(0deg, #2e3c79, #40133b);
    border: 1px solid rgba(220, 220, 220, 0.5);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}

.bl_videoAi_match_img {
    margin-bottom: 15px;
    display: block;
    width: 100%;
    overflow: hidden;
}

.bl_videoAi_match_img img {
    width: 100%;
    height: auto;
    display: block;
}

.bl_videoAi_match_textareaWrap {
    margin-bottom: 10px;
}

.bl_videoAi_match_textarea {
    font-size: 17px;
    width: 100%;
    border-radius: 5px;
    padding: 10px 10px;
    background: #fff;
    box-shadow: 0px 0px 35px 0px rgba(154, 161, 171, 0.15);
    color: #000;
    border: 1px solid #404040;
    line-height: 1.2;
    min-height: 120px;
}

.bl_videoAi_match_btn {
    display: block;
    width: 164px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.bl_videoAi_match_btn img {
    width: 100%;
    height: auto;
    display: block;
}

/* タイトルor出演者から検索 */
.bl_videoTopSearch {
    margin-bottom: 60px;
}

.bl_videoTopSearch_inputWrap {
    margin-bottom: 20px;
}

/* キーワードから選ぶ */
.bl_videoKeyword_btn_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 50px;
}

.bl_videoKeyword_btn_item {
    text-align: center;
    border-radius: 8px;
}

.bl_videoKeyword_btn_item_link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 5px;
    border: 1px solid #404040;
    border-radius: 8px;
    font-size: 12px;
    overflow: hidden;
}

/* 新着動画 */
.bl_videoRecently {
    margin-bottom: 50px;
}

.bl_videoRecently_itemImg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.is_loading_placeholder {
    background-color: #2a2a2a;
}

.bl_videoRecently_itemImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比を崩さずに枠いっぱいに広げる */
}

#newVideos {
    min-height: 70vh;
}

@media screen and (max-width: 500px) {
    .bl_videoSlider>.swiper-pagination {
        width: 80%;
    }

    .bl_videoAi_match_img {
        margin-bottom: 10px;
    }

    .bl_videoAi_match_textarea {
        font-size: 17px;
        padding: 3%;
    }

    .bl_videoAi_match {
        margin-bottom: min(50px, 15rem);
    }

    .bl_videoTopSearch {
        margin-bottom: min(50px, 15rem);
    }

    .bl_videoKeyword_btn_list {
        margin-bottom: min(50px, 15rem);
    }
}