/* お知らせ
=========================================================================
=========================================================================*/
/* お知らせインデックス
=========================================================================*/
#news_index {
	overflow: hidden;
	position: relative;
	margin: 0 auto 0;
	padding: 0;
	width: 860px;
}

@media (max-width:910px) {
	#news_index {
		padding: 0 25px;
		width: 100%;
	}
}

#news_index h1 {
	position: relative;
	margin: 65px auto 80px;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
}

#news_index ul {
	font-size: 1.6rem;
	margin-bottom: 100px;
}

#news_index ul li {
	margin-bottom: 42px;
}

#news_index ul li:last-child {
	margin-bottom: 0;
}

#news_index ul li a {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
}

#news_index ul li a:hover {
	text-decoration: underline;
}

#news_index ul li a p {
	white-space: nowrap
}

#news_index ul li a h2 {
	padding-left: calc(80 / 860 *100%);
	width: calc(710 / 860 *100%);
}

/* ページャー
------------------------------------------------------- */
.pagination {
	margin: 0 auto 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 1.6rem;
	line-height: 39px;
	text-align: center;
}

.pagination .page-numbers {
	margin: 0 5px;
}

.pagination .current {
	display: block;
	width: 39px;
	height: 39px;
	text-decoration: none;
	border: 1px solid #CCCCCC;
	background-color: #EDEDED;
}

.pagination a,
.pagination a:visited {
	display: block;
	width: 39px;
	height: 39px;
	text-decoration: none;
	border: 1px solid #CCCCCC;
	transition: all 1s;
}

.pagination a.prev,
.pagination a.next {
	width: 97px;
}

.pagination a:hover {
	background-color: #EDEDED;
}

/* お知らせ投稿記事
=========================================================================*/
#news {
	overflow: hidden;
	position: relative;
	margin: 0 auto 0;
	padding: 0;
	width: 860px;
}

@media (max-width:910px) {
	#news {
		padding: 0 25px;
		width: 100%;
	}
}

#news h1.title {
	position: relative;
	margin: 65px auto 60px;
	font-size: 3.0rem;
	font-weight: bold;
}

#news h1.title span {
	display: block;
	margin-bottom: 28px;
	font-size: 1.6rem;
	font-weight: normal;
}

#news .post_container {
	margin-bottom: 20px;
}

/* ブロックエディター ----- */
/* 段落 */
#news .post_container p {
	margin-bottom: 60px;
}

/* 整形済みテキスト */
#news .post_container pre {
	margin-bottom: 60px;
	white-space: pre-wrap;
}

/* 投稿画像  */
#news .post_container figure.wp-block-image {
	margin-bottom: 60px;
}

/* 見出し */
#news .post_container h1,
#news .post_container h2,
#news .post_container h3,
#news .post_container h4,
#news .post_container h5,
#news .post_container h6 {
	margin-bottom: .5em;
	font-weight: bold;
}

#news .post_container h1 {
	font-size: 2rem;
}

#news .post_container h2 {
	font-size: 2rem;
}

#news .post_container h3 {
	font-size: 1.8rem;
}

#news .post_container h4 {
	font-size: 1.7rem;
}

#news .post_container h5 {
	font-size: 1.6rem;
}

#news .post_container h6 {
	font-size: 1.6rem;
}

/* リスト */
#news .post_container ul {
	list-style: disc;
	margin-bottom: 60px;
	padding-left: 1.5em;
}

#news .post_container ol {
	list-style: decimal;
	margin-bottom: 60px;
	padding-left: 1.5em;
}

/* Youtube */
#news .post_container figure.wp-block-embed {
	margin-bottom: 60px;
}

#news .post_container .wp-block-embed__wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

#news .post_container .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* キャプション */
#news .post_container figcaption {
	font-size: 1.2rem;
	text-align: center;
}

/* ページャー
------------------------------------------------------- */
.post_pager {
	margin: 0 auto 60px;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.4rem;
	text-align: center;
}

.post_pager div {
	overflow: hidden;
	text-align: left;
	min-width: 10%;
}

.post_pager div:nth-child(2) {
	border-bottom: 1px solid #CCCCCC;
}

.post_pager div a {
	position: relative;
	display: block;
	height: 100%;
	text-decoration: none;
}

.post_pager div:nth-child(1) a {
	padding-left: 1.5em;
}

.post_pager div:nth-child(1) a::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid #7B7B7B;
	border-left: 1px solid #7B7B7B;
	transform: rotate(45deg);
}

.post_pager div:nth-child(3) a {
	padding-right: 1.5em;
}

.post_pager div:nth-child(3) a::before {
	content: "";
	position: absolute;
	right: 3px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-top: 1px solid #7B7B7B;
	border-right: 1px solid #7B7B7B;
	transform: rotate(45deg);
}


/*  スマホ（740px以下）
=========================================================================
=========================================================================*/
@media (max-width:740px) {

	/* お知らせインデックス
	=========================================================================*/
	#news_index {
		padding: 44px 25px 0;
	}

	#news_index h1 {
		margin: 65px auto 40px;
		font-size: 2.0rem;
	}

	#news_index ul {
		font-size: 1.4rem;
		margin-bottom: 50px;
	}

	#news_index ul li {
		margin-bottom: 20px;
	}

	#news_index ul li a h2 {
		padding-left: calc(80 / 860 *100%);
		width: calc(710 / 860 *100%);
	}

	/* ページャー
	------------------------------------------------------- */
	.pagination {
		margin: 0 auto 84px;
		font-size: 1.1rem;
		line-height: 31px;
	}

	.pagination .page-numbers {
		margin: 0 4px;
	}

	.pagination .current {
		width: 31px;
		height: 31px;
	}

	.pagination a,
	.pagination a:visited {
		width: 31px;
		height: 31px;
	}

	.pagination a.prev,
	.pagination a.next {
		width: 49px;
	}

	/* お知らせ投稿記事
	=========================================================================*/
	#news {
		padding: 44px 25px 0;
	}

	#news h1.title {
		margin: 30px auto 30px;
		font-size: 2.0rem;
	}

	#news h1.title span {
		margin-bottom: 14px;
		font-size: 1.4rem;
	}

	#news .post_container {
		margin-bottom: 20px;
	}

	/* ブロックエディター ----- */
	/* 段落 */
	#news .post_container p {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}

	/* 整形済みテキスト */
	#news .post_container pre {
		margin-bottom: 40px;
	}

	/* 投稿画像  */
	#news .post_container figure.wp-block-image {
		margin-bottom: 40px;
	}

	/* 見出し */
	#news .post_container h1,
	#news .post_container h2,
	#news .post_container h3,
	#news .post_container h4,
	#news .post_container h5,
	#news .post_container h6 {
		margin-bottom: .5em;
		font-weight: bold;
	}

	#news .post_container h1 {
		font-size: 1.8rem;
	}

	#news .post_container h2 {
		font-size: 1.7rem;
	}

	#news .post_container h3 {
		font-size: 1.6rem;
	}

	#news .post_container h4 {
		font-size: 1.5rem;
	}

	#news .post_container h5 {
		font-size: 1.4rem;
	}

	#news .post_container h6 {
		font-size: 1.4rem;
	}

	/* リスト */
	#news .post_container ul {
		margin-bottom: 40px;
		font-size: 1.5rem;
	}

	#news .post_container ol {
		margin-bottom: 40px;
		font-size: 1.5rem;
	}

	/* Youtube */
	#news .post_container figure.wp-block-embed {
		margin-bottom: 40px;
	}

	/* キャプション */
	#news .post_container figcaption {
		font-size: 1.2rem;
		text-align: center;
	}

	/* ページャー
	------------------------------------------------------- */
	.post_pager {
		padding: 0;
		font-size: 1.1rem;
	}

	.post_pager div {
		overflow: hidden;
		text-align: left;
	}

	.post_pager div:nth-child(1) a {
		padding-left: 1em;
	}

	.post_pager div:nth-child(1) a::before {
		width: 6px;
		height: 6px;
	}

	.post_pager div:nth-child(3) a {
		padding-right: 1em;
	}

	.post_pager div:nth-child(3) a::before {
		width: 6px;
		height: 6px;
	}

}

/*  スマホ（480px以下）
=========================================================================
=========================================================================*/
@media (max-width:480px) {}
