.a10-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20rem;
}

.article10 .a2-logo {
    width: 23%;
    padding: 0;
}

.a10-text {
    font-size: 18rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.a10-notice {
    color: #fff;
    padding: 10rem 20rem;
    font-size: 20rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10rem;
    text-align: center;
    background-color: #000;
    margin-top: 50rem;
}



/*==================================================*/
@media (max-width: 991px) {
    .a10-logo-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .article10 .a2-logo {
        width: 100%;
    }

    .a10-notice {
        flex-direction: column;
    }
}


@media (max-width: 550px) {

}