/* ========================================
   公開側 女優一覧・検索
======================================== */


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

.front_actress {
    min-height: 100%;
}


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

.front_actress_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_breadcrumb_link {
    color: #2457a6;

    text-decoration: none;
}

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

.front_actress_breadcrumb_separator {
    color: #aaa;
}

.front_actress_breadcrumb_current {
    color: #666;
}


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

.front_actress_header {
    margin-bottom: 20px;
    padding-bottom: 14px;

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

.front_actress_title {
    margin: 0;

    color: #222;

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

.front_actress_description {
    margin-top: 7px;

    color: #777;

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


/* ========================================
   Search
======================================== */

.front_actress_search {
    margin-bottom: 26px;
    padding: 20px;

    background: #f7f8f9;

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

.front_actress_search_form {
    margin: 0;
}

.front_actress_search_row {
    display: grid;

    grid-template-columns:
        92px minmax(0, 1fr);

    align-items: center;

    gap: 14px;
}

.front_actress_search_label {
    color: #333;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.front_actress_search_controls {
    display: flex;
    align-items: center;

    gap: 8px;
}

.front_actress_search_input {
    width: min(100%, 480px);
    height: 42px;

    padding: 0 13px;

    background: #fff;

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

    color: #333;

    font-size: 14px;
    line-height: 1;
}

.front_actress_search_input::placeholder {
    color: #a2a6aa;
}

.front_actress_search_input:focus {
    outline: 2px solid
        rgba(36, 87, 166, 0.18);
    outline-offset: 1px;

    border-color: #7b9bc9;
}

.front_actress_search_button {
    flex-shrink: 0;

    height: 42px;

    padding: 0 20px;

    background: #2f3337;

    border: 1px solid #2f3337;
    border-radius: 6px;

    color: #fff;

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

    cursor: pointer;
}

.front_actress_search_button:hover {
    background: #1f2225;

    border-color: #1f2225;
}


/* ========================================
   Kana search
======================================== */

.front_actress_kana {
    display: grid;

    grid-template-columns:
        92px minmax(0, 1fr);

    align-items: flex-start;

    gap: 14px;

    margin-top: 18px;
    padding-top: 18px;

    border-top: 1px solid #e0e3e6;
}

.front_actress_kana_label {
    padding-top: 7px;

    color: #333;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

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

    gap: 7px;
}

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

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

    padding: 0 11px;

    background: #fff;

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

    color: #444;

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

    text-decoration: none;

    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.front_actress_kana_link:hover {
    background: #eef2f7;

    border-color: #b8c4d2;

    color: #2457a6;
}

.front_actress_kana_link.is_current {
    background: #2f3337;

    border-color: #2f3337;

    color: #fff;
}


/* ========================================
   Search reset
======================================== */

.front_actress_search_reset {
    margin-top: 14px;

    text-align: right;
}

.front_actress_search_reset_link {
    color: #666;

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

    text-decoration: none;
}

.front_actress_search_reset_link:hover {
    color: #2457a6;

    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ========================================
   Result header
======================================== */

.front_actress_result_header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 12px;
}

.front_actress_result_title {
    color: #2a2c2f;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.front_actress_result_count {
    color: #777;

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


/* ========================================
   Actress list
======================================== */

.front_actress_list {
    display: grid;

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

    gap: 10px;
}

.front_actress_item {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        22px;

    align-items: center;

    gap: 12px;

    min-width: 0;

    padding: 14px 15px;

    background: #fff;

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

    color: inherit;

    text-decoration: none;

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

.front_actress_item:hover {
    background: #fafbfc;

    border-color: #b8bec5;

    box-shadow:
        0 3px 10px
        rgba(0, 0, 0, 0.05);
}

.front_actress_item_main {
    min-width: 0;
}

.front_actress_item_name {
    overflow: hidden;

    color: #2a2c2f;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.front_actress_item_kana {
    overflow: hidden;

    margin-top: 3px;

    color: #969a9e;

    font-size: 10px;
    line-height: 1.4;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.front_actress_item_count {
    color: #777;

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

    white-space: nowrap;
}

.front_actress_item_arrow {
    color: #999;

    font-size: 17px;
    font-weight: 400;

    text-align: right;

    transition:
        color 0.15s ease,
        transform 0.15s ease;
}

.front_actress_item:hover
.front_actress_item_arrow {
    color: #2457a6;

    transform: translateX(2px);
}


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

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

    gap: 7px;

    margin-top: 34px;
}

.front_actress_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_page_link:hover {
    background: #f5f6f7;

    border-color: #adb3b9;
}

.front_actress_page_link.is_current {
    background: #2f3337;

    border-color: #2f3337;

    color: #fff;
}

.front_actress_page_link.is_disabled {
    background: #f7f8f9;

    border-color: #e7e9ec;

    color: #b0b4b8;

    cursor: default;
}

.front_actress_page_prev,
.front_actress_page_next {
    min-width: 78px;
}

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

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

    color: #888;

    font-size: 13px;
}


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

.front_actress_empty {
    padding: 34px 24px;

    background: #f7f8f9;

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

    text-align: center;
}

.front_actress_empty_title {
    color: #444;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
}

.front_actress_empty_message {
    margin-top: 7px;

    color: #777;

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

.front_actress_empty_link {
    display: inline-block;

    margin-top: 16px;

    color: #2457a6;

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

    text-decoration: none;
}

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


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

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

    .front_actress_list {
        grid-template-columns:
            1fr;
    }
}


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

    .front_actress_title {
        font-size: 23px;
    }

    .front_actress_search {
        padding: 16px;
    }

    .front_actress_search_row,
    .front_actress_kana {
        grid-template-columns:
            1fr;

        gap: 8px;
    }

    .front_actress_kana_label {
        padding-top: 0;
    }

    .front_actress_search_controls {
        align-items: stretch;
    }

    .front_actress_search_input {
        width: 100%;
    }
}


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

    .front_actress_breadcrumb {
        margin-bottom: 18px;
    }

    .front_actress_header {
        margin-bottom: 16px;
    }

    .front_actress_title {
        font-size: 20px;
    }

    .front_actress_description {
        font-size: 12px;
    }

    .front_actress_search {
        margin-bottom: 22px;
        padding: 14px;
    }

    .front_actress_search_controls {
        flex-direction: column;
    }

    .front_actress_search_button {
        width: 100%;
    }

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

        padding: 0 10px;

        font-size: 11px;
    }

    .front_actress_search_reset {
        text-align: left;
    }

    .front_actress_result_title {
        font-size: 16px;
    }

    .front_actress_item {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            18px;

        gap: 9px;

        padding: 12px;
    }

    .front_actress_item_name {
        font-size: 13px;
    }

    .front_actress_item_count {
        font-size: 10px;
    }

    .front_actress_pagination {
        gap: 6px;

        margin-top: 28px;
    }

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

        padding: 0 9px;

        font-size: 11px;
    }

    .front_actress_page_prev,
    .front_actress_page_next {
        min-width: 68px;
    }

    .front_actress_page_ellipsis {
        height: 36px;
    }
}


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

    .front_actress_title {
        font-size: 18px;
    }

    .front_actress_search_label,
    .front_actress_kana_label {
        font-size: 12px;
    }

    .front_actress_result_header {
        align-items: flex-end;
    }

    .front_actress_item {
        grid-template-columns:
            minmax(0, 1fr)
            auto;
    }

    .front_actress_item_arrow {
        display: none;
    }

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