/* CSS Document */

#main .inner {
	position: relative;
}
#main .inner::before {
	content: '';
	width: 70px;
	height: 70px;
	border-radius: 100%;
	background: #045D94;
	position: absolute;
	top: 10px;
	left: -60px;
	z-index: 9;
}
#news {
	background: #EAF6FC;
  border-radius: 15px 15px 0 0;
  padding: 60px 60px 40px;
  margin: 100px 0 50px;
	min-height: 580px;
  box-sizing: border-box;
	position: relative;
	overflow-x: clip;
}
#news::after {
	content: url("../module/img/wave.svg");
	width: 1920px;
	line-height: 0;
	position: absolute;
	top: 100%;
	left: -50px;
}
#news ul.newsList {
	font-size: 90%;
	line-height: 1.4;
	letter-spacing: 0;
	margin: 10px 0 0;
}
#news ul.newsList li {
	border-bottom: 1px solid #333;
	padding: 14px 5px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
  gap: 20px;
	transition: all .4s;
}
#news ul.newsList li:hover {
	background: #fff;
}
#news ul.newsList.single li:hover {
	background: unset;
}
#news ul.newsList li span {
	display: flex;
	align-items: baseline;
}
#news ul.newsList li time {
	font-family: 'Noto Sans JP';
	font-size: 85%;
	flex-shrink: 0;
	width: 75px;
}
#news ul.newsList li em {
	font-family: 'Noto Sans JP';
	font-size: 80%;
	color: #E06E4F;
	flex-shrink: 0;
	width: 35px;
}
#news ul.newsList li strong {
	font-size: 105%;
	font-weight: 500;
	line-height: 1.2;
}
#news ul.newsList li a {
	flex-shrink: 0;
	font-size: 90%;
	line-height: 1;
	text-decoration: none;
	background: #fff;
	padding: 3px 20px 5px;
	border-radius: 20px;
	position: relative;
	transition: all .2s;
}
#news ul.newsList li a::after {
	content: '';
	border-left: 7px solid #6EC2ED;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
#news ul.newsList li:hover a {
	flex-shrink: 0;
	color: #fff;
	background: #6EC2ED;
}
#news ul.newsList li:hover a::after {
	border-left-color: #fff;
}


.archive .pagination {
	margin: 70px 0 0;
	display: flex;
  justify-content: center;
	align-items: baseline;
	gap: 5px;
}
.archive .pagination .page-numbers {
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 80%;
	text-decoration: none;
	color: #00629C;
	border: 1px solid #00629C;
	border-radius: 100%;
	display: flex;
  align-items: center;
  justify-content: center;
	width: 20px;
  height: 20px;
}
.archive .pagination .next.page-numbers,
.archive .pagination .prev.page-numbers {
	border: none;
}
.archive .pagination .next.page-numbers::before,
.archive .pagination .prev.page-numbers::before {
	content: '';
  border-left: 7px solid #00629C;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.archive .pagination .prev.page-numbers::before {
	transform: scale(-1, 1);
}
.archive .pagination .page-numbers.current {
	color: #fff;
	background: #00629C;
}
.archive .pagination a.page-numbers:hover {
	color: #006837;
}





#news .newsBox {
	font-size: 95%;
	line-height: 1.8;
	padding: 10px 5px;
}
#news .newsBox p {
	margin: 0 0 1em;
}

.single .pagination {
	margin: 70px 0 0;
}
.single .pagination ul {
	display: flex;
  justify-content: center;
	align-items: baseline;
	position: relative;
}
.single .pagination ul {
	display: flex;
  justify-content: center;
	align-items: baseline;
	gap: 40px;
	position: relative;
}
.single .pagination ul::after {
	content: '';
	border-left: 2px solid #00629C;
	height: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}
.single .pagination ul li {
	line-height: 1.2;
	width: 40%;
}
.single .pagination ul li a {
	font-weight: 500;
	text-decoration: underline;
	color: #00629C;
	display: flex;
	justify-content: left;
	align-items: baseline;
	gap: 10px;
}
.single .pagination ul li p {
	font-size: 90%;
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 10px 0;
}
.single .pagination ul li p time {
	font-family: 'Noto Sans JP';
  font-size: 85%;
}
.single .pagination ul li p strong {
	font-weight: 500;
	letter-spacing: 0;
}
.single .pagination ul li.prev a::before,
.single .pagination ul li.next a::before {
	content: '';
	border-left: 7px solid #00629C;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.single .pagination ul li.next a {
	flex-direction: row-reverse;
}
.single .pagination ul li.prev a::before {
	transform: scale(-1, 1);
}
.single .pagination ul li.prev p {
	margin-left: 17px;
}






@media screen and (max-width: 480px) {
	
	#main .inner::before {
		width: 60px;
		height: 60px;
		top: 60px;
		left: -50px;
	}
	
	#news {
		padding: 20px 20px 40px;
		margin: 10px 0 0;
		min-height: unset;
	}
	#news ul.newsList li {
		padding: 10px 0;
		flex-wrap: wrap;
		gap: 5px;
		text-align: right;
    display: block;
	}
	#news ul.newsList li:hover {
		background: unset;
	}
	#news ul.newsList li span {
		text-align: left;
		display: flex;
		align-items: baseline;
		flex-wrap: wrap;
	}
	#news ul.newsList li strong {
		width: 100%;
		margin: 2px 0 0;
	}
	#news ul.newsList li a {
		display: inline-block;
	}
	#news::after {
		width: 1000px;
		left: -20px;
	}
	
	#news .newsBox {
		font-size: 100%;
		padding: 10px 0;
	}
	
	.single .pagination {
		margin: 60px 0 0;
	}
	.single .pagination ul {
		gap: 20px;
	}
	.single .pagination ul::after {
		height: 90%;
	}
	.single .pagination ul li {
		width: 50%;
	}
	.single .pagination ul li a {
		gap: 5px;
	}
	.single .pagination ul li p {
		flex-direction: column;
		gap: 2px;
	}
	.single .pagination ul li.prev p {
		margin-left: 10px;
	}
	
}






/*-----------------------------
	WP 基本設定
-----------------------------*/
.single .newsBox p { margin: 1em 0;}
/*.single p::after {
	content: '.';
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	clear: both;
	visibility: hidden;
}*/
.single .newsBox h1 { font-size: 135%; font-weight: 600; margin: .5em 0;}
.single .newsBox h2 { font-size: 130%; font-weight: 600; margin: .5em 0;}
.single .newsBox h3 { font-size: 125%; font-weight: 600; margin: .5em 0;}
.single .newsBox h4 { font-size: 120%; font-weight: 600; margin: .5em 0;}
.single .newsBox h5 { font-size: 115%; font-weight: 600; margin: .5em 0;}
.single .newsBox h6 { font-size: 110%; font-weight: 600; margin: .5em 0;}
.single .newsBox pre { margin: .5em 0;}
.single .newsBox ul { line-height: 1.6em; list-style: disc outside; padding-left: 1.8em; margin: .5em 0;}
.single .newsBox ul li { padding: 0 0 .5em;}
.single .newsBox ol { line-height: 1.6em; list-style: decimal outside; padding-left: 2.1em; margin: .5em 0;}
.single .newsBox ol li { padding: 0 0 .5em;}
.single .newsBox blockquote { font-size: 90%; background: #fafafa; padding: .1em 1em; margin: 1em 0;}
.single .newsBox a { text-decoration: underline;}
.single .newsBox img.alignleft { float: left; margin: .5em 1em .5em 0;}
.single .newsBox img.aligncenter { display: block; margin: auto;}
.single .newsBox img.alignright { float: right; margin: .5em 0 .5em 1em;}


@media screen and (max-width: 480px) {
	
	.single .newsBox h1 { font-size: 125%;}
	.single .newsBox h2 { font-size: 120%;}
	.single .newsBox h3 { font-size: 115%;}
	.single .newsBox h4 { font-size: 110%;}
	.single .newsBox h5 { font-size: 105%;}
	.single .newsBox h6 { font-size: 100%;}
	
	
}
	




