section#reasons.reasons-2025 {
    background-color: #fff;
    border-radius: var(--sec-br) var(--sec-br) 0 0;
    padding: var(--sec-padding1);
    margin-top: 0;

    ul.wrap_reasons {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 70px;
        margin: 0;
        padding: 0
    }

    .reason_header {
        text-align: center;
        margin-bottom: 35px;

        .number {
            display: inline-block;
            margin: 0 0 16px;
            background: var(--main-color-1);
            color: #fff;
            border-radius: 999px;
            font-size: 19px;
            font-weight: 400;
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: max(2.5vw, 20px);
            padding-right: max(2.5vw, 20px)
        }

        h3 {
            margin: 0
        }
    }

    ul.wrap_items {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 24px;
        row-gap: 16px;
        margin: 0;
        padding: 0;

        li {
            display: flex;
            flex-direction: column;
            align-items: center;

            .wrap_img {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto 12px;


                img {
                    display: block;
                    width: 100%;
                    height: auto;
                    border-radius: 24px;
                }
            }

            p.note {
                width: 100%;
                margin: 8px 0 0;
                font-size: 12px;
                line-height: 1.5;
                color: #757575;
                text-align: right
            }

            p.common-p-2 {
                width: 100%;
                margin: 0;
                text-align: center;
                text-wrap: balance;
                font-size: 16px;
            }
        }
    }
}

@media screen and (max-width:1199px) {
    section#reasons.reasons-2025 {
        ul.wrap_reasons {
            row-gap: 60px
        }

        .reason_header {
            .number {
                font-size: 18px
            }
        }

        ul.wrap_items {
            row-gap: 30px
        }
    }
}

@media screen and (max-width:959px) {
    section#reasons.reasons-2025 {
        ul.wrap_reasons {
            row-gap: 50px
        }

        .reason_header {
            margin-bottom: 30px;

            .number {
                margin-bottom: 15px
            }
        }

        ul.wrap_items {
            grid-template-columns: 1fr;
            row-gap: 40px;
            max-width: 600px;
            margin: 0 auto;

            li {
                .wrap_img {
                    margin-bottom: 0
                }
            }
        }
    }
}

@media screen and (max-width:767px) {
    section#reasons.reasons-2025 {
        ul.wrap_reasons {
            row-gap: 40px
        }

        .reason_header {
            .number {
                font-size: 17px
            }
        }

    }
}

@media screen and (max-width:480px) {
    section#reasons.reasons-2025 {
        .reason_header {
            .number {
                font-size: 16px
            }
        }

        ul.wrap_items {
            p.note {
                font-size: 11px
            }
        }
    }
}

section#banner_autopilot {
    margin: 0 auto 120px;
    padding: 0 20px;
}

@media screen and (max-width:959px) {
    section#banner_autopilot {
        margin: 0 auto 80px
    }
}

@media screen and (max-width:767px) {
    section#banner_autopilot {
        margin: 0 auto 60px
    }
}

@media screen and (max-width:480px) {
    section#banner_autopilot {
        padding: 0 10px
    }
}