/* ========================================
   公開側 女優別作品一覧
======================================== */


/* ========================================
   Actress show
======================================== */

.front_actress_show {
    min-height: 100%;
}


/* ========================================
   Breadcrumb
======================================== */

.front_actress_show_breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 22px;

    color: #777;

    font-size: 12px;
    line-height: 1.6;
}

.front_actress_show_breadcrumb_link {
    color: #2457a6;

    text-decoration: none;
}

.front_actress_show_breadcrumb_link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.front_actress_show_breadcrumb_separator {
    color: #aaa;
}

.front_actress_show_breadcrumb_current {
    color: #666;
}


/* ========================================
   Header
======================================== */

.front_actress_show_header {
    margin-bottom: 22px;
    padding-bottom: 14px;

    border-bottom: 2px solid #2f3337;
}

.front_actress_show_header_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 18px;
}

.front_actress_show_title {
    margin: 0;

    color: #222;

    font-size: 26px;
    font-weight: 800;
    line-height: 1.45;
}

.front_actress_show_kana {
    margin-top: 5px;

    color: #8a8f94;

    font-size: 12px;
    line-height: 1.5;
}

.front_actress_show_back_link {
    flex-shrink: 0;

    margin-top: 4px;

    color: #2457a6;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;
}

.front_actress_show_back_link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.front_actress_show_summary {
    margin-top: 8px;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}


/* ========================================
   Video grid
======================================== */

.front_actress_show_video_grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 16px;
}


/* ========================================
   Video card
======================================== */

.front_actress_show_video_card {
    min-width: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e1e4e8;
    border-radius: 8px;

    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.05s ease;
}

.front_actress_show_video_card:hover {
    border-color: #aeb4ba;

    box-shadow:
        0 4px 14px
        rgba(0, 0, 0, 0.07);
}

.front_actress_show_video_card:active {
    transform: translateY(1px);
}

.front_actress_show_video_card_link {
    display: block;

    height: 100%;

    color: inherit;

    text-decoration: none;
}


/* ========================================
   Video image
======================================== */

.front_actress_show_video_image_area {
    position: relative;

    aspect-ratio: 800 / 573;

    overflow: hidden;

    background: #f3f4f5;
}

.front_actress_show_video_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.front_actress_show_video_no_image {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #a1a5aa;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.front_actress_show_video_no_image[hidden] {
    display: none;
}


/* ========================================
   Video body
======================================== */

.front_actress_show_video_body {
    padding: 11px 11px 13px;
}

.front_actress_show_video_title {
    display: -webkit-box;

    overflow: hidden;

    margin: 0;

    color: #2a2c2f;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.front_actress_show_video_scene {
    display: -webkit-box;

    overflow: hidden;

    margin-top: 9px;

    color: #5c6268;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.front_actress_show_video_release {
    margin-top: 8px;

    color: #999;

    font-size: 10px;
    line-height: 1.5;
}


/* ========================================
   Pagination
======================================== */

.front_actress_show_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 34px;
}

.front_actress_show_page_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    padding: 0 11px;

    background: #fff;

    border: 1px solid #d9dde1;
    border-radius: 6px;

    color: #333;

    font-size: 12px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
}

a.front_actress_show_page_link:hover {
    background: #f5f6f7;

    border-color: #adb3b9;
}

.front_actress_show_page_link.is_current {
    background: #2f3337;

    border-color: #2f3337;

    color: #fff;
}

.front_actress_show_page_link.is_disabled {
    background: #f7f8f9;

    border-color: #e7e9ec;

    color: #b0b4b8;

    cursor: default;
}

.front_actress_show_page_prev,
.front_actress_show_page_next {
    min-width: 78px;
}

.front_actress_show_page_ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 24px;
    height: 38px;

    color: #888;

    font-size: 13px;
}


/* ========================================
   Empty
======================================== */

.front_actress_show_empty {
    padding: 34px 24px;

    background: #f7f8f9;

    border: 1px solid #e2e5e9;
    border-radius: 8px;

    text-align: center;
}

.front_actress_show_empty_title {
    color: #555;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.front_actress_show_empty_link {
    display: inline-block;

    margin-top: 16px;

    color: #2457a6;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.front_actress_show_empty_link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ========================================
   Responsive
======================================== */

@media screen and (max-width: 1180px) {

    .front_actress_show_video_grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}


@media screen and (max-width: 980px) {

    .front_actress_show_video_grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


@media screen and (max-width: 800px) {

    .front_actress_show_header_inner {
        flex-direction: column;

        gap: 10px;
    }

    .front_actress_show_back_link {
        margin-top: 0;
    }

    .front_actress_show_title {
        font-size: 23px;
    }

    .front_actress_show_video_grid {
        gap: 14px;
    }
}


@media screen and (max-width: 620px) {

    .front_actress_show_breadcrumb {
        margin-bottom: 18px;
    }

    .front_actress_show_header {
        margin-bottom: 18px;
    }

    .front_actress_show_title {
        font-size: 20px;
    }

    .front_actress_show_video_grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .front_actress_show_pagination {
        gap: 6px;

        margin-top: 28px;
    }

    .front_actress_show_page_link {
        min-width: 34px;
        height: 36px;

        padding: 0 9px;

        font-size: 11px;
    }

    .front_actress_show_page_prev,
    .front_actress_show_page_next {
        min-width: 68px;
    }

    .front_actress_show_page_ellipsis {
        height: 36px;
    }
}


@media screen and (max-width: 420px) {

    .front_actress_show_title {
        font-size: 18px;
    }

    .front_actress_show_summary {
        font-size: 12px;
    }

    .front_actress_show_video_grid {
        gap: 10px;
    }

    .front_actress_show_video_body {
        padding: 9px 9px 10px;
    }

    .front_actress_show_video_title {
        font-size: 12px;
    }

    .front_actress_show_video_scene {
        font-size: 10px;
    }

    .front_actress_show_video_release {
        font-size: 9px;
    }

    .front_actress_show_pagination {
        justify-content: flex-start;
    }

    .front_actress_show_empty {
        padding: 28px 18px;
    }
}
