@charset "euc-jp";
.site-notification {
    position: fixed;
    top: 18px;
    left: 12px;
    box-sizing: border-box;
    width: calc(100% - 24px);
    padding: 12px;
    border: 2px solid #E77895;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 5px 15px 0 rgb(190 33 74 / 20%);
    z-index: 110;
    line-height: 1.4;
}
.site-notification.is_hidden {
    display: none;
}
.site-notification.is_slide-in {
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.site-notification.is_slide-out {
    animation: slideOut 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
    0% {
        transform: translateY(-180px);
        opacity: 0;
        display: block;
    }
    100% {
        transform: translateY(0);
    }
    40%,100% {
        opacity: 1;
    }
}
@keyframes slideOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-180px);
    }
    40%,100% {
        opacity: 0;
        display: none;
    }
}

.site-notification-close {
    position: absolute;
    top: -17px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #e97996;
    border-radius: 20px;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 1px 1px 3px 0 rgb(190 33 74 / 20%);
}
.site-notification-close__icon::before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.site-notification-close__icon::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}
.site-notification-close__icon::before, .site-notification-close__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 18px;
    background: #fff;
    border-radius: 5px;
}
.site-notification-title {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #EE8AA4;
    height: 40px;
    margin-bottom: 12px;
    padding-left: 52px;
    line-height: 40px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.site-notification-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url(https://assets.angel-live.com/common/images/site_notifications.png) no-repeat;
    background-size: cover;
}
.site-notification-text {
    font-size: 14px;
    color: #333333;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}