@charset "UTF-8";

#HomeNoti {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8)
}

#HomeNoti .panel {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 100%;
    max-height: 100%;
    width: 1400px;
    height: calc(100% - 174px);
    background-color: #FCF3D3;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

#HomeNoti .close {
    position: absolute;
    top: -31px;
    right: -31px;
    display: inline-block;
    cursor: pointer;
    width: 62px;
    height: 62px;
    z-index: 3
}

#HomeNoti .close img {
    width: 62px;
    height: 62px;
}

#HomeNoti .header {
    display: inline-block;
    width: 400px;
    height: 70px;
    line-height: 64px;
    font-size: 30px;
    color: #000;
}

#HomeNoti .header .title {
    font-weight: bold;
    position: relative;
}

#HomeNoti .header .title::before {
    display: inline;
    content: "・";
    padding-right: 4px;
}

#HomeNoti .header .title::after {
    content: "・";
    padding-left: 4px;
}

#HomeNoti .articles {
    flex-grow: 1;
    overflow: auto;
    margin-bottom: 20px
}

#HomeNoti .article {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    padding: 0 100px;
    overflow: auto
}

#HomeNoti .article>* {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

#HomeNoti .article+.article {
    margin-top: 12px
}

#HomeNoti .article p {
    margin: 4px 0px;
}

@media screen and (max-width: 699px)and (min-width: 0) {
    #HomeNoti .panel .header {
        height: 50px;
        line-height: 44px;
        font-size: 20px
    }

    #HomeNoti .panel .article {
        padding: 0 32px
    }
}

@media screen and (max-width: 999px)and (min-width: 700px) {
    #HomeNoti .panel .article {
        padding: 0 50px
    }
}

@media screen and (max-width: 1449px)and (min-width: 0) {
    #HomeNoti .panel {
        width: calc(100% - 64px)
    }
}