@charset "utf-8";

/* 外側のラッパー */
.girls_movie_wrapper {
    background: #f7f7f7;
}

/* コンテンツ大枠 */
.girls_movie_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 30px;
    background: #f7f7f7;
}

/* 店舗名 */
.store_zone {
    width: 100%;
    background-color: #a01b1f;
    color: #FFFFFF;
    padding-bottom: 6px;
}

.store_zone .shop-name {
    padding-top: 6px;
    padding-left: 10px;
}

.shop-name .name,
.text_box.notranslate .girls-display-number {
    font-size: large;
}

/* 動画リスト */
.movie_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 動画アイテム */
.movie_item {
    width: calc(25% - 15px);
    background: transparent;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.movie_item:hover {
    transform: translateY(-4px);
}

/* サムネイル */
.movie_thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
    overflow: hidden;
}

.movie_thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie_thumbnail video.video_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    background: #000;
}

.movie_thumbnail .no_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
}

@media screen and (max-width: 767px) {
    .girls_movie_wrapper {
        padding: 20px;
    }

    .girls_movie_container {
        margin: 0px;
        padding: 20px 15px;
        background: #fff;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .movie_item {
        width: 100%;
        background: transparent;
    }
}