@charset "UTF-8";
/* コンテンツ */

.news_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5em;
}
.news_date {
    width: 10em;
    font-family: "B612 Mono", monospace;
    font-weight: 400;
    font-style: normal;
    color: #aaa;
    flex-shrink: 0;
}
.news_doc {
    flex-grow: 1
}
.news_doc h3 {
    font-size: 1.24em;
    line-height: 1.4;
    border-bottom: 1px solid #f08b00;
    padding-bottom: 0.5em;
}
.news_tx {
    margin-top: 2em;
    line-height: 1.7;
}
.news_img {
    margin-top: 2em;
}
.news_img img {
    max-width: 100%;
    max-height: 1080px;
}
@media screen and (max-width: 960px) {

.news_img img {
    max-width: 100%;
    max-height: 68vw;
}
}


@media screen and (max-width: 520px) {
.news_box {
    flex-wrap: wrap;
    margin-bottom: 5em;
}
.news_date {
    width: 100%;
    margin-bottom: 0.5em;
}
.news_doc {
    width: 100%;
}
.news_img img {
    max-width: 100%;
    max-height: 86vw;
}
}

