.member-image {
    background-image: url(../asset/rimg/2.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: flex;
    aspect-ratio: 982 / 476;
    flex-direction: column;
    justify-content: start;
    font-size: 48px;
    animation: slide_left 2s ease-out forwards;
    transform: translateX(-200%);
    opacity: 0;
}

.member-image .member-line-1 {
    background-color: var(--gullys-main-gray);
    padding: 8px;
    clip-path: polygon(0% 0%, 100% 0%, 20% 100%, 0% 100%);
    color: var(--gullys-main-blue);
    text-align: left;
}

.member-image .member-line-2 {
    background-color: var(--gullys-main-orange);
    padding: 8px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 80% 100%);
    color: var(--gullys-main-blue);
    text-align: right;
    animation: slide_right 2s ease-out forwards 1s;
    transform: translateX(200%);
    opacity: 0;
}

.member-maps {
    margin-top: 64px;
    margin-bottom: 64px;
}

.member-maps iframe {
    width: 100%;
}

.content-new-member {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media (max-width: 1600px) {
    .member-image {
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .member-image {
        font-size: 24px;
    }

    .content-new-member {
        flex-direction: column;
    }
}