.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding-left: 60px;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.5s ease-in-out;
}
.dialog .dialog-box {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}
.dialog .dialog-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.dialog .btn-close-dialog {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    transform: translateX(-50%);
    background-color: rgb(80, 80, 80);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}
.dialog .btn-close-dialog:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #fff;
    clip-path: polygon(6px 0, 6px 6px, 0 6px, 0 9px, 6px 9px, 6px 15px, 9px 15px, 9px 9px, 15px 9px, 15px 6px, 9px 6px, 9px 0);
    transform: rotate(45deg);
    transition: transform 0.15s ease;
}
.dialog .btn-close-dialog:hover:after {
    transform: rotate(135deg);
}

.dialog-box .logo_background-img {
    position: absolute;
    width: 1094px;
    right: -60px;
    bottom: -35px;
}
.dialog-box .logo_background-img img {
    width: 100%;
}

.dialog .dialog-inner {
    position: relative;
    height: 100%;
    text-align: center;
    overflow: auto;
    padding-bottom: 300px;
}
.dialog-inner .content {
    position: relative;
    width: max-content;
    margin: 0 auto;
    opacity: 0;
}
.dialog-inner .logo-text {
    font-family: 'BaiJamjureeMedium';
    font-weight: bold;
    font-size: 106px;
    color: #0A0A4B;
    text-align: left;
    margin: 100px 0 30px;
}
.dialog-inner p {
    font-size: 24px;
    line-height: 2;
    letter-spacing: 1.25px;
    color: #0A0A4B;
}
.dialog-inner p.last-one {
    font-weight: bold;
    margin-top: 40px;
}

/* open-animate */
.page {
    transition: transform 0.5s ease-in-out;
}
/*body.open-dialog::-webkit-scrollbar {*/
/*    opacity: 0;*/
/*}*/
body.open-dialog {
    overflow: hidden;
}
body.open-dialog:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
body.open-dialog .page {
    transform: translate3d(-20%, 0, 0);
}
body.open-dialog .dialog {
    transform: translate3d(0, 0, 0);
}
body.open-dialog .dialog-inner .content {
    opacity: 1;
    transition: opacity 1.2s cubic-bezier(0.32, 0, 0.67, 0);
}
