.number-title-area {
    height: 254px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.number-title {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 65px;
    color: #CF1646;
}

.number-sub-title {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.2em;
    color: #E87E9A;
    margin: 0px;
}

.count-company-area {
    width: 1400px;
    height: 630px;
    padding: 100px 0px 100px 0px;
    background: #EDF3F5;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.count-company-area-box {
    margin: 0 auto;
    background: #EDF3F5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.count-company-card {
    position: relative;
    height: 295px;
    background: #FFFFFF;
    opacity: 0.97;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 60px;
    padding: 50px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.count-company-card-title {
    position: relative;
    z-index: 20;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #333333;
}

.count-company-card-count {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 120px;
    line-height: 1.1;
    background: linear-gradient(180deg, #1EDBA2 0%, #1E9EDB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-company-card-count-unit {
    width: 36px;
    height: 99px;

    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 274%;
    color: #7A7A7A;
}

.count-company-card-sub {
    height: 19px;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #CCCCCC;
    margin-top: -15px;
}

.count-company-card-logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media screen and (max-width: 768px) {
    .number-title-area {
        height: 230px;
        display: flex;
        padding: 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .number-title {
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 48px;
        line-height: 65px;
        color: #CF1646;
        margin: 0px;
    }

    .count-company-area {
        width: auto;
        height: auto;
        margin: 0 auto;
        padding: 16px 0px 16px 0px;

        /* Background/Primary */
        background: #EDF3F5;

        display: flex;
        flex-wrap: wrap;
    }

    .count-company-area-box {
        width: 343px;
        height: 539px;
        margin: 0 auto;

        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .count-company-card {
        width: 161px;
        height: auto;
        background: #FFFFFF;
        opacity: 0.97;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 24px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .count-company-card-title {
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 27.24px;
        color: #333333;
        margin-left: 0px;
    }

    .count-company-card-count {
        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 60px;
        background: linear-gradient(180deg, #1EDBA2 0%, #1E9EDB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .count-company-card-count-unit {
        /* 名 */

        width: 36px;
        height: 99px;

        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 274%;
        color: #7A7A7A;
    }

    .count-company-card-sub {

        font-family: 'Noto Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 19px;
        color: #CCCCCC;
    }

    .count-company-card-logo {
        height: 36px;
        position: absolute;
        margin-top: 8px;
        margin-right: -4px;
    }
}