@charset "UTF-8";

.bl_game {
    margin-top: 120px;
}

.bl_game_head {
    display: block;
    margin-bottom: 60px;
    font-size: 32px;
    display: inline-block;
    padding: 5px 5px;
}

@media screen and (max-width: 768px) {
    .bl_game {
        margin-top: 80px;
    }

    .bl_game_head {
        font-size: min(7.8rem, 29px);
        margin-bottom: min(20rem, 60px);
    }

    .game_result_list_item:not(:last-child) {
        margin-bottom: 40px;
    }

    .game_result_list_item_title {
        background-color: #000;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
        padding: 15px;
    }

    .game_result_list_item_table {
        display: flex;
        flex-wrap: wrap;
    }

    .game_result_list_item_team {
        width: calc(100% / 3);
        padding: 15px 15px 0;
        border: 1px solid #e0e0e0;
        border-top-width: 0;
    }

    .game_result_list_item_team:nth-child(2),
    .game_result_list_item_team:nth-child(5) {
        border-width: 0 0 1px;
    }

    .game_result_list_item_team_point {
        font-size: 15px;
        padding: 15px;
    }

    .game_result_list_item_link {
        font-size: 15px;
        font-weight: bold;
        padding: 15px;
        border: 1px solid #e0e0e0;
        border-top-width: 0;
    }
}