@charset "UTF-8";
/*=======================================
news
=======================================*/
.pagetitle_wrap {
    background:url(../img/news_img/pagetitle.jpg) center center no-repeat;
    background-size: cover;
}
/*------------------------------------------------------------Content*/
/*NewsBox*/
.newsbox {
    display: flow-root;
    text-align: left;

    [class^="phbox_"] {
        margin-bottom: 24px;
    }
    .news_text_area {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .newstitle {
        border-left:4px solid var(--maincolor);
        line-height: 1.4;
        padding: 0.4em 0 0.4em 1em;
        margin-bottom: 1em;
        font-weight: 700;
        & > span {
            display: block;
            font-family: var(--font-en);
            color: var(--subcolor);
            font-size: var(--font-m);
        }
    }

    @media (width >= 768px) {
        .newstitle {
            & > span {
                display: inline-block;
                margin-right: 1.4em;
            }
        }
    }
}
