@media screen and (max-width: 834px) {
	/* 834px以下に適用されるCSS（タブレット用） */


    .notice_article {
        width: 85vw;
    }

    .notice_title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    
}
@media screen and (max-width: 600px) {
	/* 600px以下に適用されるCSS（スマホ用） */

    .notice_article {
        width: 90vw;
    }


}
