.counts {
    padding-top: 55px;
    padding-bottom: 50px;
    text-align: center;
}
.counts__list {
    grid: none/repeat(5, 1fr);
}
.counts__value {
    font-size: 48px;
    line-height: 32px;
    color: #de1705;
    margin-bottom: 12px;
}
.counts__desc {
    font-size: 15px;
}
.counts__desc sup {
    font-size: 10px;
}
@media screen and (max-width: 1220px) {
    .counts__list {
        display: flex;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: -20px;
        justify-content: center;
    }
    .counts__item {
        width: calc(100% / 3 - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .counts {
        padding-top: 35px;
        padding-bottom: 30px;
    }
    .counts__list {
        justify-content: flex-start;
    }
    .counts__item {
        width: calc(100% / 2 - 20px);
        text-align: left;
    }
    .counts__value {
        font-size: 30px;
        line-height: 20px;
        white-space: nowrap;
    }
}