section#reasons.reasons-2025 {
    background-color: var(--main-color-l1);
    border-radius: var(--sec-br);
    padding: var(--sec-padding1);

    ul.wrap_cards {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: var(--common-gap1);
        row-gap: 70px;

        li {
            background: #fff;
            padding: 60px;
            filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
            border-radius: var(--common-br1);
            position: relative;
            will-change: filter;

            &::before {
                position: absolute;
                top: -75px;
                left: 40px;
                font-size: 90px;
                font-weight: 600;
                color: var(--main-color-1);
                letter-spacing: -0.5px;
            }

            &:nth-child(1)::before {
                content: "01";
            }

            &:nth-child(2)::before {
                content: "02";
            }

            &:nth-child(3)::before {
                content: "03";
            }

            &:nth-child(4)::before {
                content: "04";
            }

            &:nth-child(5)::before {
                content: "05";
            }

            &:nth-child(6)::before {
                content: "06";
            }

            &:nth-child(7)::before {
                content: "07";
            }

            &:nth-child(8)::before {
                content: "08";
            }

            &:nth-child(9)::before {
                content: "09";
            }

            &:nth-child(10)::before {
                content: "10";
            }

            &:nth-child(11)::before {
                content: "11";
            }

            &:nth-child(12)::before {
                content: "12";
            }

            &:nth-child(13)::before {
                content: "13";
            }

            &:nth-child(14)::before {
                content: "14";
            }

            &:nth-child(15)::before {
                content: "15";
            }

            &:nth-child(16)::before {
                content: "16";
            }

            &:nth-child(17)::before {
                content: "17";
            }

            &:nth-child(18)::before {
                content: "18";
            }

            &:nth-child(19)::before {
                content: "19";
            }

            &:nth-child(20)::before {
                content: "20";
            }

            h2 {
                margin: 0 auto 30px;
                text-align: center;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .wrap_img {
                width: 100%;
                height: 345px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    margin: 0 auto;
                    width: 90%;
                    display: block;
                    max-width: 425px;
                    height: auto;
                }
            }

            p {
                margin: 20px 0 0;

                a {
                    font-weight: bold;
                    text-decoration: underline;
                }
            }
        }
    }
}

@media screen and (max-width:1399px) {
    section#reasons.reasons-2025 {
        & ul.wrap_cards {
            li {
                padding: 60px 50px;

                &::before {
                    top: -65px;
                    left: 42px;
                    font-size: 76px;
                }

                & .wrap_img {
                    height: 300px;

                    img {
                        max-width: 400px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:1199px) {
    section#reasons.reasons-2025 {
        & ul.wrap_cards {
            & li {
                &::before {
                    top: -56px;
                    left: 42px;
                    font-size: 65px;
                }

                & .wrap_img {
                    height: 275px;

                    img {
                        max-width: 365px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 959px) {
    section#reasons.reasons-2025 {
        & ul.wrap_cards {
            row-gap: 65px;

            li {
                padding: 50px 35px;

                h2 {
                    text-align: initial;
                }

                & .wrap_img {
                    height: 225px;

                    img {
                        width: 95%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:767px) {
    section#reasons.reasons-2025 {
        ul.wrap_cards {
            grid-template-columns: 1fr;
            row-gap: 60px;

            li {
                padding: 50px;

                h2 {
                    height: initial;
                }

                & .wrap_img {
                    height: 250px;

                    img {
                        width: 90%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:480px) {
    section#reasons.reasons-2025 {
        & ul.wrap_cards {
            row-gap: 55px;

            & li {
                padding: 50px 40px;

                &::before {
                    top: -48px;
                    left: 45px;
                    font-size: 58px;
                }

                & .wrap_img {
                    height: clamp(175px, 47.5vw, 215px);

                    img {
                        width: 95%;
                    }
                }
            }
        }
    }
}
