.page-container-top {
    width: 100%;
    height: 60vh;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 -50px 10000px 150px #0000009c;
    background-position: center;
    /* background-attachment: fixed; */
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 20px 50px 80px;
    user-select: none;
    transition: .3s ease-in-out;
}

.page-container-top-title {
    color: #fff;
    font-size: 36px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-container-top-text01 {
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 24px;
    text-transform: uppercase;
}

.page-container-top-text02 {
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.page-container-top-right-container {
    background-color: red;
    position: absolute;
    right: 60px;
    top: 80px;
    width: 50%;
    height: calc(95vh - 80px);
}

.page-container-top-right-container-itm {
    background-color: green;
    width: 33.33%;
    height: 300px;
    margin: 0 10px 10px 0;
}

@media(max-width: 771px) {
    .page-container-top {
        justify-content: flex-end;
        align-items: center;
        padding: 0 10px 100px 10px;
        text-align: center;
        box-shadow: inset 0 -300px 1000px 10px #0000009c;
        line-height: 53px;
    }

    .page-container-top-title {
        font-size: 45px;
    }
    
    .page-container-top-text01 {
        font-size: 18px;
        text-align: center;
    }
}