.news-open {
    color: #000;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width:fit-content;
}

@media screen and (min-width:769px) {
    #news_area .news_contents dl {
        display:flex;
    }
}

.modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.5);}
.modal-content {
    background: #fff;
    padding: 3em 2em;
    max-width: 600px;
    width: 80%;
    border-radius: 6px;
    position: relative;
    box-sizing: border-box;
}
.modal-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    width: fit-content;
    margin: 0 auto 12px;
}
.modal-content p#modal-body {
    font-size: 16px;
    color: #000;
}
.modal button.close {
    position:absolute;
    top:.3em;
    right:.5em;
    font-size:1.5em;
    border:none;
    background:none;
    cursor:pointer;
    width: fit-content;
}
.modal[hidden]{
    display:none;
}

#news-load-more {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    border: 1px solid #A9ABAD;
    border-radius: 5px;
    display: block;
    background: #FFF;
    clear: both;
    margin: 10px 0;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    font-weight:bold;
}