@charset "UTF-8";
/*====================================
ニュース共通
=====================================*/
/*記事一覧エリア*/

/*記事1つ*/
/* .news_item+.news_item {
	margin-top: 1em;
} */

/*記事のメタ情報*/
.news_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: fit-content;
}


/*カテゴリー*/
.category_area {
	height: 100%;
	/* z-index: 1; */
}
/*記事タイトル*/
.news_text {
    font-weight: bold;
	padding-right: 2rem;
}

/*記事へのリンク*/
.news_permalink {
	text-decoration:none;
}
.news_item + .news_item{
	border-top: solid 1px #c3c3c3;

}
/* 記事リンクはリスト全体をリンク領域にする */
a.color-link_txt .news_permalink::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
li.news_item {
    line-height: 2.5rem;
}
li.news_item::after{
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    padding: 0 0.25rem 0 0rem;
    right: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
a.color-link_txt.news_permalink::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
}
	/*====================================
	ニュース共通	769px以上
	=====================================*/
	@media screen and (min-width: 769px) {
		.news_item {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-ms-flex-wrap: nowrap;
			flex-wrap: nowrap;
			gap: 1rem;
			padding: 1rem 0rem 1rem 0;
		}
		/*日付*/
		/* .date_area {
			width: 12em;
		} */
		/*カテゴリ*/
		/* .category_area {
			width: 7rem;
		} */
		.cat {
			text-align: center;
		}
		.cat+.cat {
			margin-left: 0.25rem;
		}
		/*記事タイトル*/
		/* .news_text {
			padding-left: 1.875rem;
		} */
		/*もっと見る*/
		.news_more {
			margin-top: 2rem;
		}
	}
	/*====================================
	ニュース共通 768px以下
	=====================================*/
	@media screen and (max-width: 768px) {
		/* .front-page_news {
			z-index: 1;
		} */
		
		
		.news_meta {
			flex-wrap: wrap;
		}
		/*日付*/
		.date_area {
			margin-right: 0.5em;
		}
		/*カテゴリ*/
		.cat+.cat {
			margin-left: 0.5em;
		}
		/*記事タイトル*/
		/* .news_meta+.news_text {
			margin-top: 0.5em;
		}
		.news_text {
			padding-left: 0.875rem;
		} */
		/*もっと見る*/
		.news_more {
			margin-top: 1.5rem;
		}
	}
	/*====================================
	ニュース共通 560px以下
	=====================================*/
	@media screen and (max-width: 560px) {

	}



/*====================================
教育委員会からのお知らせ
=====================================*/
.news_content.edu_news_content{
    border: none;
    padding: 2rem;
    border-radius: 20px;
}
	/*====================================
	560px以下
	=====================================*/
	@media screen and (max-width: 560px) {
		.news_content.edu_news_content {
			padding: 1.5rem 1rem 2rem 1rem;
		}
	}

/*====================================
注目情報
=====================================*/
.pickup_area {
	margin: 0 0 2rem 0;
}
.pickup_ttl {
	display: inline-block;
	font-weight: bold;
	font-size: 1.5rem;
}
.pickup_ttl:before {
	font-family: "Font Awesome 5 Free";
    content: "\f08d";
    font-weight: 900;
    padding-right: 1rem;
    display: inline-block;
}
.pickup_ttl+.pickup_item {
	margin-top: 0.5rem;
}
.pickup_item {
	width: 100%;
	padding: 1rem;
}
.pickup_item+.pickup_item {
	border-top: 1px dotted #ccc;
}
/*記事タイトル 文頭に右向きの▲矢印*/
.pickup_item:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: 900;
	margin-right: 0.5em;
}
	/*====================================
	注目情報 768px以下
	=====================================*/
	@media screen and (max-width: 768px) {
		.pickup_ttl {
			font-size: 1.25rem;
		}
	}