.support__body {
    footer {
        margin-top: 0;
    }

    a.a_btn_support.btn-common.btn-admin {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #5c4aa5;
        text-align: center;
        color: #fff;
        width: clamp(295px, 72.5vw, 325px);
        padding-right: 20px;
        padding-left: 20px;
        padding-top: clamp(14px, 2vw, 16px);
        padding-bottom: clamp(14px, 2vw, 16px);
        border-radius: 99px;
        font-size: 14px;
        transition: background-color .3s;
        position: relative;
        font-weight: 400;
        margin: 0 auto;

        & .allow-box {
            &::after {
                color: #5c4aa5;
            }
        }
    }
}

section#section-support {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    overflow: hidden;
    background: var(--main-color-l1);
    padding: 120px 0;
    display: flex;
    justify-content: center;
    margin-top: 40px;

    .container-section-support {
        max-width: 120rem;
        margin: 0 30px;

        .wrap_loop {
            display: grid;
            grid-template-columns: 5fr 3fr;
            column-gap: 50px;
            margin-bottom: 40px;
            background: #fff;
            padding: 60px;
            border-radius: var(--common-br1);
            filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));

            .wrap_text {
                span.label {
                    background: var(--main-color-l4);
                    display: inline-block;
                    padding: 10px 20px;
                    border-radius: 99px;
                    font-size: 15px;
                    font-weight: 600;
                }

                span.label.label2 {
                    background-color: var(--main-color-l2);
                    margin-left: 10px;
                }

                h2 {
                    margin: 20px 0;
                }

                p {
                    font-size: 16px;
                    margin-bottom: 40px;
                    line-height: 1.75;

                    a {
                        text-decoration: underline;
                        color: var(--main-color-1);

                        &:hover {
                            color: var(--main-color-d1);
                        }
                    }
                }

                a.btn-common.a_detail {
                    max-width: 350px;
                    font-size: 15.5px;
                    padding-top: clamp(15px, 1.5vw, 17px);
                    padding-bottom: clamp(15px, 1.5vw, 17px);
                    margin: 0 auto;
                }
            }

            .wrap_img {
                display: flex;
                align-items: center;
            }
        }

    }
}

@media screen and (max-width:1399px) {
    section#section-support {
        padding: 100px 0;
    }
}

@media screen and (max-width:1199px) {
    section#section-support {
        & .container-section-support {
            & .wrap_loop {

                & .wrap_text {
                    span.label {
                        padding: 8px 20px;
                        font-size: 14px;
                    }

                    p {
                        font-size: 15px;
                        margin-bottom: 30px;
                        line-height: 1.65;
                    }

                    a.btn-common.a_detail {
                        max-width: 325px;
                        font-size: 15px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:959px) {
    .sec-header p.text-center {
        width: 90%;
        justify-content: center;
        display: flex;
        margin: 0 auto;
        max-width: 575px;
        word-break: auto-phrase;
    }

    section#section-support {
        padding: 80px 30px;

        & .container-section-support {
            margin: 0;

            .wrap_loop {
                column-gap: 30px;
                padding: 40px;

                & .wrap_text {
                    span.label {
                        padding: 6px 20px;
                        font-size: 12px;
                    }

                    a.btn-common.a_detail {
                        max-width: 300px;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:767px) {
    section#section-support {
        padding: 60px 20px;
        margin-top: 20px;

        .container-section-support {
            max-width: 120rem;

            .wrap_loop {
                grid-template-columns: initial;
                padding: 40px 40px 60px;
                row-gap: 15px;

                & .wrap_text {
                    order: 2;

                    .wrap_label {
                        display: grid;
                        grid-template-columns: 1fr;
                        row-gap: 10px;

                        span.label {
                            padding: 6px 10px;
                            font-size: 13px;
                            text-align: center;
                        }

                        span.label.label2 {
                            margin-left: 0;
                        }
                    }
                }

                & .wrap_img {
                    order: 1;
                    justify-content: center;

                    img {
                        max-width: 300px;
                        width: 75%;
                    }
                }
            }
        }
    }
}

@media screen and (max-width:480px) {
    section#section-support {
        padding: 40px 20px;

        .container-section-support {
            max-width: 120rem;

            & .wrap_loop {
                padding: 40px 30px 50px;

                & .wrap_text {
                    a.btn-common.a_detail {
                        max-width: initial;
                        width: initial;
                    }
                }

                & .wrap_img {
                    img {
                        width: 70%;
                    }
                }
            }
        }
    }
}