#news {
    position: relative;

}

#news article.news {
    font-family: 'Noto Serif JP', serif;
    position: relative;
    color: #212128;
    padding: 4%;
    margin-bottom: 60px;
}

#news article.news .date {
    background: #2f2f3e;
    color: #e6e6e6;
    padding: 5px 2%;
    display: inline-block;
}

#news article.news .title {
    padding: 20px 2%;
    display: block;
    border-bottom: 1px solid #3b3b49;
    font-size: 26px;
    text-align: center;
}

#news article.news .detail {
    font-family: 'Noto Sans JP', sans-serif;
    padding: 20px 2%;
    display: block;
    border-bottom: 1px solid #3b3b49;
}

#news article.news .flexc {
    gap: 40px;
}

#news article.news .detail .flexa {
    margin-bottom: 20px;
}

#news article.news .detail .flexa .w50 {
    width: 48%;
}

#news article.news .spw50 {
    width: 48%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    #news article.news .date {
        background: #2f2f3e;
        color: #e6e6e6;
        padding: 5px 2%;
        display: inline-block;
        font-size: 12px;
    }

    #news article.news .title {
        padding: 10px 2%;
        display: block;
        border-bottom: 1px solid #3b3b49;
        font-size: 13px;
        text-align: center;
        font-weight: bold;
    }

    #news article.news .detail {
        font-family: 'Noto Sans JP', sans-serif;
        padding: 20px 2%;
        display: block;
        border-bottom: 1px solid #3b3b49;
        font-size: 13px;
    }

    #news article.news .flexc {
        gap: 40px;
        flex-wrap: wrap;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
    }
}