/* points */
dl.points,
dl.points>dt,
dl.points>dd,
dl.points>dd>ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
dl.points{
    width: 100%;
    background-color: #FCFEFE;
    padding: calc(100% / 32 * 1);
    margin-top: calc(100% / 32 * 1);
    border-radius: 10px;
}
dl.points>dt{
    color: #35A3B9;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
dl.points>dt::before{
    content: "";
    display: block;
    width: 35px;
    height: 33px;
    background-image: url(../images/ranking/points-capsule.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}
dl.points>dd>ul{
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}
dl.points>dd>ul>li{
    width: 100%;
    color: #404040;
    border: 2px solid #35A3B9;
    border-radius: 10px;
    padding: calc(100% / 30 * 0.5);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}
dl.points>dd>ul>li>span:nth-of-type(1){
    color: #35A3B9;
    font-weight: bold;
    word-break: keep-all;
    padding-right: calc(100% / 30 * 0.5);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
dl.points>dd>ul>li:nth-of-type(1)>span:nth-of-type(1)::after{
    content: "①";
}
dl.points>dd>ul>li:nth-of-type(2)>span:nth-of-type(1)::after{
    content: "②";
}
dl.points>dd>ul>li:nth-of-type(3)>span:nth-of-type(1)::after{
    content: "③";
}
dl.points>dd>ul>li>span:nth-of-type(2){
    border-left: 1px solid #35A3B9;
    padding-left: calc(100% / 30 * 0.5);
}


/* -----------------------------------------↑ Mobile base ↑-----------------------------------------------*/
/* -----------------------------------------↓   desktop   ↓-----------------------------------------------*/

@media screen and (min-width: 768px) {
    dl.points{
        padding: 5px 10px 10px;
        margin-top: 15px;
    }
    dl.points>dt{
        font-size: 1.8rem;
    }
    dl.points>dt::before{
        width: 40px;
        height: 40px;
    }
    dl.points>dd>ul{
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    dl.points>dd>ul>li{
        width: calc(98% /3);
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
        font-size: 1.6rem;
        padding: 10px 3px;
    }
    dl.points>dd>ul>li>span:nth-of-type(1){
        display: initial;
        padding-right:unset;
    }
    dl.points>dd>ul>li>span:nth-of-type(2){
        border-left: unset;
        padding-left: unset;
    }
}
/* points */