.m-msg-toon-new {
    z-index: 999999999;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px 10px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    animation: ws-msg-in 0.4s;
    background-color: red;
    color: #fff;
}

.m-msg-toon-new.out {
    animation: ws-msg-out 1s;
}

.m-msg-toon-new-avatar {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 50px;
    height: 70px;
    object-fit: cover;
}

.m-msg-toon-new-title {
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
    cursor: pointer;
}

.m-msg-toon-new-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("./icon-ws-close.svg") no-repeat center / 20px 20px;
    cursor: pointer;
}

@keyframes ws-msg-in {
    from {
        transform: translate(-50%, 100px);
    }

    to {
        transform: translate(-50%, 0);
    }
}

@keyframes ws-msg-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media screen and (max-width: 980px) {
    .m-msg-toon-new {
        width: 92vw;
        font-size: 14px;
        line-height: 1;
    }
}

.m-notice-wrap {
    position: fixed;
    z-index: 1000;
    top: 20%;
    left: 50%;
    width: 460px;
    height: 516px;
    margin-left: -230px;
    background: url("./image/m-notice-bg.png") no-repeat center top / cover;
    animation: scale-show 0.4s;
}

.m-notice-info {
    margin-top: 238px;
    padding: 0 64px;
    font-size: 14px;
    color: #807e90;
    line-height: 1.5;
    height: 220px;
    overflow: auto;
}

.m-notice-check {
    display: flex;
    align-items: center;
    position: absolute;
    height: 40px;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
}

.m-notice-check label {
    margin-left: 5px;
}

.m-notice-close {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: url("./image/icon-close.svg") no-repeat center / 30px;
}

@media screen and (max-width: 980px) {
    .m-notice-wrap {
        width: 90vw;
        margin-left: -45vw;
        background-size: contain;
    }

    .m-notice-info {
        margin-top: 52vw;
        padding: 0 13vw;
        height: 40vw;
    }

    .m-notice-close {
        right: -10px;
    }

    .m-notice-check {
        bottom: unset;
        top: 96vw;
    }
}