.header{
    background-color: var(--gaWhite);
}
.header__wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header__title{
    order: 2;
}
.header__lang-list{
    margin-left: auto;
    order: 1;
}
@media screen and (min-width: 600px) {
    .header{
        background-color: var(--gaWhite);
        flex-direction: row;
        justify-content: center;
    }
    .header__title{
        order: 1;
    }
    .header__wrapper{
        width: 100%;
        height: 47rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .header__link{
        display: block;
    }
    .header__title{
        order: 1;
    }
    .header__lang-list{
        position: absolute;
        right: 0;
        left: auto;
        order: 2;
        margin-bottom: 0;
    }
}
/* News END */
.post__head{
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--gaGray);
}
.post__head-flex{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.post__head-title{
    display: block;
    width: 100%;
    font: var(--font-h1);
    color: var(--gaBlack);
    padding: 6rem;
}
.post__head-date{
    display: block;
    width: fit-content;
    font: var(--font-date);
    color: var(--gaGray);
    margin-right: 8rem;
}
.post__content{
    color: var(--gaBlack);
    font: var(--font-std);
    padding: 20rem 0;
    border-bottom: 1rem solid var(--gaGray);
    width: 100%;
}
.post__slide-img-wrap {
    width: 100%;
    height: 208px;
    background-color: var(--gaBlack);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20rem;
}
.post__slide-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.common__button--back{
    margin-top: 84rem;
}
.common__button--back::after{
    transform: rotate(-45deg);
}
@media screen and (min-width: 600px) {
    .post__head-title{
        padding: 10rem 6rem;
    }
    .contents{
        max-width: 800rem;
    }
    .common__button--back{
        margin-top: 104rem;
    }
    .common__button--back::after{
        transform: rotate(-45deg);
    }
    .post__head-date{
        margin-right: 12rem;
    }
    .post__slide-img-wrap {
        height: 405rem;
    }
}