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

    [class^="phbox_"] {
        margin-bottom: 24px;
        :is(img){
            border-radius: var(--inner-radius);
        }
    }
    .news_text_area {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .newstitle {
        border-left:6px solid var(--maincolor);
        line-height: 1.6;
        padding: 0.4em 0 0.4em 1em;
        margin-bottom: 1em;
        font-size: var(--font-l);
        font-weight: 900;

        & > span {
            display: block;
            font-weight: 700;
            color: var(--maincolor);
            font-size: var(--font-base);
        }
    }

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