.section-development {}

.section-development .box {
    /* height: 100%; */
}

.section-development .heading-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--tateru-default-padding) / 2);
}



.section-development h1,
.section-development h3,
.section-development h4 {
    color: var(--tateru-color-primary);
    line-height: 1;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}

.section-development .heading-area h1 {
    margin-bottom: 0;

    /* text-box-edge: ex alphabetic; */
}


.section-development .box.image {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 2/1;
    margin-bottom: calc(var(--tateru-default-padding) / 2);
}

.section-development .box.image .logo {
    height: 38px;
}

.section-development .box.text {
    background: var(--tateru-color-secondary);
    padding: calc(var(--tateru-default-padding) / 2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-development .box.text p {
    margin: 0;
    border-left: 1px solid #C2CCB8;
    padding-left: 30px;
}

.section-development .box.text .h3-style {
    font-size: 21px;
    max-width: 250px;
    margin-bottom: calc(var(--tateru-default-padding) / 2);
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
}


.section-development .stat {
    font-size: 60px;
    color: var(--tateru-color-primary);
    font-family: var(--tateru-heading-font);
    font-weight: 400;
    line-height: 1;
}

.section-development .title {
    padding-right: calc(var(--tateru-default-padding) / 2);
}

.section-development .title span {
    font-size: 21px;
    line-height: 23px;
    color: var(--tateru-color-primary);
    margin-bottom: 0;
}

.section-development .title span em {
    font-family: var(--tateru-heading-font);
    font-weight: 400;
}

.section-development .stat-rows {
    display: flex;
    flex-direction: column;
    row-gap: calc(var(--tateru-default-padding) / 2);
}

.section-development .stat-row {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--tateru-default-padding) / 2); */

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.section-development .stat-row > * {
    display: flex;
    align-items: center;
}

.section-development .stat-row:first-child {
    padding-top: calc(var(--tateru-default-padding) / 2);
}

.section-development .stat-row:not(:first-child) {
    padding-top: calc(var(--tateru-default-padding) / 2);
    border-top: 1px solid #D5D5D5;
}

.section-development .stat-row:last-child {
    padding-bottom: calc(var(--tateru-default-padding) / 2);
    border-bottom: 1px solid #D5D5D5;
}

.section-development h4 {
    font-size: 26px;
    font-family: var(--tateru-primary-font);
    margin-bottom: calc(var(--tateru-default-padding) / 2);
}

.section-development .first-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-development .button-col {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 600px) {
    .section-development .stat-row {
        flex-direction: column;
    }

    .section-development .stat-row > * {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-development .stat-row .title {
        padding-right: 0;
        /* margin-bottom: calc(var(--tateru-default-padding) / 2); */
    }

    .section-development .stat {
        font-size: 40px;
        margin-bottom: calc(var(--tateru-default-padding) / 2);
    }

    /* .section-development .button-col {
        justify-content: center;
        margin-top: calc(var(--tateru-default-padding) / 2);
    } */
}