/* for notice layer */
#notice-outermost-layer {
    display : none;
    justify-content : center;
    align-items : center;
    position : fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.32);
}
#notice-layer {
    box-sizing: border-box;
    display: flex;
    z-index: 99999;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    padding: 24px;
    opacity: 1;
    max-height: 100%;
    overflow: auto;
}
#notice-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#notice-container div.title-section {
    display: flex;
    justify-content: space-between;
}
#notice-container div.title-section div.title-left {
    display: inline-block;
    text-decoration: underline;
    font-size: 19px;
    font-weight: 600;
    padding-top: 15px;
}
#notice-container div.title-section div.title-right {
    display: inline-block;
}
#notice-container div.title-section div.title-right button {
    border-color: rgb(255, 255, 255);
    border-style: none;
    border-radius: 4px;
    background: none;
    font-weight: 700;
    line-height: 36px;
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}
#notice-container div.title-section div.title-right button:hover {
    background-color: #EAEAEA;
    transition: 0.1s;
}
#notice-container ul {
    padding-top: 20px;
    padding-left: 20px;
}
#notice-container ul li {
    font-size: 17px;
    margin-bottom: 4px;
    padding-left: 12px;
}
