/* ========================================
   公開トップページ
======================================== */


/* ========================================
   Home
======================================== */

.front_home {
    min-height: 100%;
}


/* ========================================
   Section
======================================== */

.front_home_section {
    margin-bottom: 42px;
}

.front_home_section:last-child {
    margin-bottom: 0;
}

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

    gap: 18px;

    margin-bottom: 18px;
    padding-bottom: 12px;

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

.front_home_section_title {
    margin: 0;

    color: #222;

    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
}

.front_home_section_more {
    flex-shrink: 0;

    color: #2457a6;

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

    white-space: nowrap;

    text-decoration: none;
}

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


/* ========================================
   Site introduction
======================================== */

.front_home_intro_body {
    padding: 20px 22px;

    background: #f7f8f9;

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

    color: #444;

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

.front_home_intro_body p {
    margin: 0;
}

.front_home_intro_body p + p {
    margin-top: 10px;
}


/* ========================================
   Scene cards
======================================== */

.front_home_scene_grid {
    display: grid;

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

    gap: 14px;
}

.front_home_scene_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 120px;
    padding: 18px;

    background: #fff;

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

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

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

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

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

.front_home_scene_name {
    color: #222;

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

.front_home_scene_link {
    margin-top: 18px;

    color: #5f6368;

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

.front_home_scene_link span {
    margin-left: 4px;
}


/* ========================================
   Recommend
======================================== */

.front_home_recommend {
    padding-top: 2px;
}

.front_home_video_grid {
    display: grid;

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

    gap: 16px;
}

.front_home_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_home_video_card:hover {
    border-color: #aeb4ba;

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

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

.front_home_video_card_link {
    display: block;

    height: 100%;
}


/* ========================================
   Recommend image
======================================== */

.front_home_video_image_area {
    position: relative;

    aspect-ratio: 800 / 573;

    overflow: hidden;

    background: #f3f4f5;
}

.front_home_video_image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.front_home_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_home_video_no_image[hidden] {
    display: none;
}


/* ========================================
   Recommend body
======================================== */

.front_home_video_body {
    padding: 11px 11px 12px;
}

.front_home_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_home_video_actress {
    display: -webkit-box;

    overflow: hidden;

    margin-top: 8px;

    color: #777;

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

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

.front_home_recommend_count {
    margin-top: 12px;

    color: #8a8d91;

    font-size: 11px;

    text-align: right;
}


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

.front_home_empty {
    padding: 18px;

    background: #f7f8f9;

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

    color: #777;

    font-size: 13px;

    text-align: center;
}


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

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

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


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

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

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


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

    .front_home_section {
        margin-bottom: 34px;
    }

    .front_home_section_header {
        margin-bottom: 16px;
    }

    .front_home_section_title {
        font-size: 21px;
    }

    .front_home_intro_body {
        padding: 17px 18px;

        font-size: 13px;
    }

    .front_home_scene_card {
        min-height: 110px;
        padding: 16px;
    }

    .front_home_scene_name {
        font-size: 17px;
    }

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

        gap: 14px;
    }
}


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

    .front_home_section_header {
        align-items: flex-end;

        gap: 10px;
    }

    .front_home_section_title {
        font-size: 19px;
    }

    .front_home_section_more {
        font-size: 12px;
    }

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

    .front_home_scene_card {
        min-height: auto;
    }

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

        gap: 12px;
    }
}


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

    .front_home_section {
        margin-bottom: 30px;
    }

    .front_home_section_header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .front_home_section_title {
        font-size: 18px;
    }

    .front_home_intro_body {
        padding: 15px;

        line-height: 1.8;
    }

    .front_home_scene_card {
        padding: 14px;
    }

    .front_home_scene_name {
        font-size: 16px;
    }

    .front_home_video_grid {
        gap: 10px;
    }

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

    .front_home_video_title {
        font-size: 12px;
    }

    .front_home_video_actress {
        font-size: 10px;
    }

    .front_home_recommend_count {
        text-align: left;
    }
}
