.firstview {
    padding-top: 80px;
    border-bottom: 5px solid #D90429
}

.firstview .inner {
    max-width: 1340px;
    padding: 3.5em 0
}

.firstview .inner .title {
    text-align: center;
    width: 100%
}

.firstview .inner .title h1 {
    font-size: 2em;
    margin-bottom: .3em
}

h2 {
    font-size: 1.5em
}

@media screen and (max-width: 600px) {
    .firstview {
        padding-top: 68px
    }

    .firstview .inner {
        padding: 2.5em 0
    }

    .firstview .inner .title h1 {
        font-size: 2em
    }
}

#news-article .inner {
    max-width: 800px
}

#news-article .inner .title-block {
    padding-bottom: 1em;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2.2em
}

#news-article .inner .title-block>.fb {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 1em
}

#news-article .inner .title-block>.fb .cate {
    border-radius: 3px;
    background: #D90429;
    padding: .3em 2em;
    font-size: 13px;
    color: #fff;
    font-weight: bold
}

#news-article .inner .title-block>.fb .date {
    margin-right: 1.2em;
    font-weight: bold;
    font-size: 16px
}

#news-article h2 {
    font-size: 1.8em;
    text-align: left;
    margin-bottom: .5em
}

#news-article .text-block {
    text-align: left;
    line-height: 1.74
}

#news-article .news-h3 {
    margin: 2em 0 .6em;
    font-size: 1.3em;
    padding: .5em .8em;
    background: #f8d4db;
    border-left: 6px solid #D90429
}

#news ul li {
    margin-bottom: 1.5em
}

#news ul li>.fb {
    background: #fff;
    padding: 1em;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5em;
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

#news ul li>.fb:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

#news ul li>.fb:last-child {
    margin-bottom: 0 !important
}

#news ul li>.fb::after {
    content: "\f054" !important;
    margin-left: .3em;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands';
    display: inline-block;
    position: absolute;
    right: 1em;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%)
}

#news ul li>.fb .left {
    margin-right: 1.2em;
    width: 260px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

#news ul li>.fb .right {
    padding-top: .3em;
    text-align: left;
    width: calc(100% - 320px)
}

#news ul li>.fb .cate {
    background: #D90429;
    color: #fff;
    padding: .5em;
    font-size: 14px;
    border-radius: 3px;
    margin-right: 1em
}

#news ul li>.fb .date {
    font-size: 15px;
    color: #A2A2A2
}

.now {
    margin-top: 0 !important
}

@media screen and (max-width: 768px) {
    #news ul li {
        max-width: 520px;
        margin: 0 auto 2em
    }

    #news ul li>.fb {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 1.3em
    }

    #news ul li>.fb::after {
        display: none
    }

    #news ul li>.fb .left {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: .5em;
        margin-right: 0
    }

    #news ul li>.fb .right {
        width: 100%
    }
}

@media screen and (max-width: 600px) {
    #news {
        padding-top: 3em !important;
        margin-top: 0 !important
    }

    #news-article .inner .title-block>.fb {
        margin-bottom: .6em
    }

    #news-article .inner .title-block>.fb .date {
        font-size: 14px
    }

    #news-article .inner .title-block>.fb .cate {
        font-size: 12px
    }

    #news-article {
        padding-bottom: 5em
    }
}

/**画像モーダル用**/
.img-modal {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.img-modal.active {
    display: block;
}

.img-modal .box {
    max-width: 1200px;
    position: fixed;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-modal .box img {
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    display: block;
    border-radius: 10px;
    margin: auto;
}