/*
support----------------*/
#support_01 .sub_box {
    text-align: center;
}

#support_02 .sub_box {
    text-align: center;
}

#support_02 .sub_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: fit-content;
}

#support_02 .sub_box ul li {
    margin: 0;
}

@media screen and (max-width: 768px) {
    #support_02 .sub_box ul {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

#support_03 .sub_box {
    text-align: center;
}

#support_03 .sub_box .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
