
.section-numbers-grid {
    padding: 100px 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
}

.numbers-intro {
    margin: 0 auto 80px;
    padding: 0 20px;
}

.numbers-title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.numbers-title .en {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 0.1em;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.numbers-title .ja {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--midnight-color);
    margin-top: 5px;
}

.numbers-lead {
    font-size: 1rem;
    line-height: 2;
    color: #666;
}


.numbers-block {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.numbers-block:last-child {
    margin-bottom: 0;
}

.block-heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 6px solid #ccc;
    line-height: 1.2;
}

.block-heading.company-color { border-left-color: #2c3e50; color: #2c3e50; }
.block-heading.human-color   { border-left-color: #009e96; color: #009e96; }
.block-heading.product-color { border-left-color: #00489e; color: #00489e; }


.uniform-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


.uni-card {
    background: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}


.uni-card.company { border-top-color: #2c3e50; }
.uni-card.company .uni-data { color: #2c3e50; }


.uni-card.human { border-top-color: #009e96; }
.uni-card.human .uni-data { color: #009e96; }


.uni-card.product { border-top-color: #00489e; }
.uni-card.product .uni-data { color: #00489e; }



.card-inner {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    border:1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uni-label {
    font-size: 0.8rem;
    font-weight: bold;
    color: #999;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.uni-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
    height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uni-data {
    line-height: 1;
    margin-bottom: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.uni-data .num {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.uni-data .unit {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 5px;
    color: #333;
}

.uni-desc {
    margin-top: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
    width: 100%;
}


@media (max-width: 900px) {
    
    .section-numbers-grid {
        padding: 60px 0;
    }

    .uniform-grid-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .uni-card {
        aspect-ratio: auto;
        min-height: auto;
    }
    
    .card-inner {
        padding: 40px 20px;
        height: auto;
    }
    
    .uni-data .num {
        font-size: 3.5rem;
    }
    
    .uni-desc {
        margin-top: 25px;
    }
    
    .block-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}