@charset "utf-8";
/* CSS Document */
.lightbox_wrap {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.4);
    z-index: 9999;
}
.notice-lightbox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: fit-content;
    z-index: 9998;
    box-sizing: border-box;
    border: 3px solid #eb6e9a;
    border-radius: 12px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
}
.notice-lightbox .notice-article{
    width: 100%;
    height: 100%;
}
.notice-lightbox .notice-article p{
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    color: #222;
}
.notice-lightbox .notice-article p a{
    color: #eb6e9a;
    text-decoration: underline;
}
.notice-lightbox .notice-article p a:hover{
    color: #e22b6b;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .notice-lightbox {
        width: 90%;
        height: auto;
    }
}