/* CSS Document */


/*-----------------------------
	基本設定
-----------------------------*/
#detail p { margin: 1em 0;}
#detail h1 { font-size: 160%; font-weight: 600; margin: .5em 0;}
#detail h2 { font-size: 150%; font-weight: 600; margin: .5em 0;}
#detail h3 { font-size: 140%; font-weight: 600; margin: .5em 0;}
#detail h4 { font-size: 140%; font-weight: 600; margin: .5em 0;}
#detail h5 { font-size: 130%; font-weight: 600; margin: .5em 0;}
#detail h6 { font-size: 110%; font-weight: 600; margin: .5em 0;}
#detail pre { margin: .5em 0;}
#detail ul { line-height: 1.6em; list-style: disc outside; padding-left: 1.8em; margin: .5em 0;}
#detail ul li { padding: 0 0 .5em;}
#detail ol { line-height: 1.6em; list-style: decimal outside; padding-left: 2.1em; margin: .5em 0;}
#detail ol li { padding: 0 0 .5em;}
#detail blockquote { font-size: 90%; background: #fafafa; padding: .1em 1em; margin: 1em 0;}
#detail a { text-decoration: underline;}
#detail img.alignleft { float: left; margin: .5em 1em .5em 0;}
#detail img.aligncenter { display: block; margin: auto;}
#detail img.alignright { float: right; margin: .5em 0 .5em 1em;}

#detail .more {
	margin: 80px 0 0;
	display: flex;
  justify-content: center;
}
#detail .more a {
	line-height: 1.4em;
	text-decoration: none;
	padding: 5px 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
}
#detail .more a:hover {
	background: #fafafa;
}


.pagination {
	font-weight: 500;
	margin: 80px 0 0;
	display: flex;
  justify-content: center;
	gap: 10px;
}
.pagination .page-numbers {
	display: flex;
  align-items: center;
  justify-content: center;
	width: 24px;
	height: 24px;
}
.pagination .next.page-numbers,
.pagination .prev.page-numbers {
	width: auto;
	padding: 0 5px;
}
.pagination .page-numbers.current {
	color: #fff;
	background: #1b745b;
	border-radius: 100%;
}
.pagination a.page-numbers:hover {
	color: #006837;
}



.wp-pagenavi {
	text-align: center;
	margin: 40px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.wp-pagenavi .pages { /* 現在/総ページ数 */
	display: none;
}
.wp-pagenavi .page { /* ページ番号 */
	font-weight: 500;
	text-decoration: none;
	color: #1d4293;
	background: #fff;
	border: solid 1px #1d4293;
	border-radius: 100%;
	height: 34px;
	width: 34px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi .current { /* 現在 */
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	background: #1d4293;
	border: solid 1px #1d4293;
	border-radius: 100%;
	height: 34px;
	width: 34px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi .previouspostslink, 
.wp-pagenavi .nextpostslink { /* 前次ページ */
	height: 34px;
	width: 34px;
}




@media screen and (max-width: 480px) {
	
	/*-----------------------------
		基本設定
	-----------------------------*/
	#detail h1 { font-size: 125%;}
	#detail h2 { font-size: 120%;}
	#detail h3 { font-size: 115%;}
	#detail h4 { font-size: 110%;}
	#detail h5 { font-size: 105%;}
	#detail h6 { font-size: 100%;}
	
	#detail .more {
		margin: 60px 0 0;
	}
	
	.pagination {
		margin: 40px 0 0;
		gap: 5px;
	}

	
	
	
	
}




