.pg-gameresult {
    padding-top: 200px;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', '游ゴシック', 'Meiryo', 'メイリオ', 'MS PGothic', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    width: 100vw;
}
.pg-gameresult .content_top_left {
    width: min(1300px, 90vw);
    margin: 0 auto 100px;
}
.pg-gameresult .gameresult_h2 {
    margin: 80px 0;
    font-size: 90px;
    text-align: left;
    font-family: 'Radley', serif;
}
.pg-gameresult .gameresult_h3 {
    background-color: #EA0015;
    color: #FFF;
    font-weight: bold;
    padding: 0.5em 1em;
    margin: 40px 0 20px;
}
.pg-gameresult .gameresult_h4 {
    border-bottom: 2px solid #EA0015;
    font-size: 20px;
    font-weight: bold;
    padding: .5em 0;
    margin: 20px 0;
}

.pg-gameresult .mainContTblA {
    font-size: 14px;
}
.pg-gameresult .mainContTblA th, .pg-gameresult .mainContTblA td {
    padding: 5px;
    border: solid 1px #000;
}
.pg-gameresult .mainContTblA th {
    text-align: center;
    font-weight: bold;
    color: #FFF;
    background: #777;
}
.pg-gameresult .mainContTblA .home {
    background-color: #EA0015;
    color: #FFF;
    font-weight: bold;
}
.gameresult_weleague {
    margin: 50px 0;
}

.pg-gameresult .ranktable table {
    width: min(800px, 90vw);
    margin: 30px auto;
    text-align: center;
}
.pg-gameresult .ranktable table tr:first-child {
    background-color: #777;
    color: #FFF;
    font-weight: bold;
}

.pg-gameresult .ranktable table tr:nth-child(even) {
    background-color: #EEE;
}
.pg-gameresult .ranktable table .isReds {
    color: #EA0015;
    font-weight: bold;
}
.pg-gameresult .ranktable table th, .pg-gameresult .ranktable table td {
    padding: 5px;
}
.pg-gameresult .ranktable table .ranktable_team {
    text-align: left;
}

.pg-gameresult .gameresult_oldlist {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 700px;
    margin: 0 auto;
}
.pg-gameresult .gameresult_oldlist li {
    width: 330px;
    border: solid 2px #EA0015;
    border-radius: 4px;
}
.pg-gameresult .gameresult_oldlist li a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 1em;
    font-weight: bold;
    position: relative;
}
.pg-gameresult .gameresult_oldlist li a::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 7px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    transform: skewX(45deg);
    position: relative;
    right: 20px;
    top: 24px;
    position: absolute;
}

.pg-gameresult .gameresult_oldlist .now {
    background-color: #EA0015;
    color: #FFF;
    display: block;
    position: relative;
    font-weight: bold;
    padding: 1em;
    box-sizing: border-box;
}
.pg-gameresult .gameresult_oldlist .now a::before {
    border-bottom-color: #FFF;
    border-right-color: #FFF;
}

.pg-gameresult .gameresult_list {
    margin: 50px 0;
}
.pg-gameresult .gameresult_h5.other {
    background-color: #eee;
    padding: 0.5em 1em;
    font-weight: bold;
}
.pg-gameresult .gameresult_h5.home {
    background-color: #EA0015;
    color: #FFF;
    font-weight: bold;
    padding: 0.5em 1em;
}
.pg-gameresult .gameresult_h5.away {
    background-color: #FFF;
    color: #000;
    font-weight: bold;
    padding: 0.5em 1em;
    border: solid 1px #aaa;
}

.pg-gameresult .gameresult_list-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.pg-gameresult .gameresult_dateWrap {
    width: 70%;
}
.pg-gameresult .gameresult_date {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    margin: 20px 0;
    font-weight: bold;
}
.pg-gameresult .gameresult_team-name {
    font-size: 40px;
    font-weight: bold;
}
.pg-gameresult .gameresult_resultWrap {
    width: 20%;
    text-align: center;
}
.pg-gameresult .gameresult_result {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
}
.pg-gameresult .gameresult_record {
    padding: 1em;
    display: block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    box-sizing: border-box;
    border: 2px solid red;
    border-radius: 10px;
    margin-top: 10px;
}


@media screen and (max-width:767px) {
    .pg-gameresult {
        padding-top: 100px;
    }
    .pg-gameresult .gameresult_h2 {
        margin: 0;
        font-size: 50px;
    }

    .pg-gameresult .leafletArea {
        margin: 50px 0;
    }
    .pg-gameresult .ranktable table {
        font-size: 13px;
    }
    .pg-gameresult .gameresult_oldlist {
        flex-direction: column;
        width: 100%;
    }
    .pg-gameresult .gameresult_oldlist li {
        width: auto;
    }

    .pg-gameresult .gameresult_list-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .pg-gameresult .gameresult_dateWrap {
        width: 100%;
    }
    .pg-gameresult .gameresult_resultWrap {
        width: 100%;
        text-align: left;
    }
    .pg-gameresult .gameresult_date {
        font-size: 30px;
    }
    .pg-gameresult .gameresult_record {
        text-align: center;
    }
}
