
/*==================================================================================
WP 投稿記事
==================================================================================*/

/* WP投稿記事内のタグ装飾 -----------------------------------------------------------*/
/* mainにid="post_page */
article h3,
article h4,
article h5,
article h6,
article strong,
article b {
	margin: 0!important;
	padding: 0!important;
	background: none!important;
	border: none!important;
	color: #00314f!important;
	font-weight: bold!important;
	line-height: 1.6!important;
}
article h3,
article h4 {
	font-size: 24px!important;
	margin-bottom: 1em!important;
}
article h5 {
	font-size: 20px!important;
	margin-bottom: 1em!important;
}
article h6 {
	font-size: 18px!important;
	margin-bottom: 1em!important;
}
article h3::before, article h3::after,
article h4::before, article h4::after,
article h5::before, article h5::after,
article h6::before, article h6::after,
article h1 span::before, article h1 span::after,
article h2 span::before, article h2 span::after,
article h3 span::before, article h3 span::after,
article h4 span::before, article h4 span::after,
article h5 span::before, article h5 span::after,
article h6 span::before, article h6 span::after {
	display: none!important;
}
article h3 span,
article h4 span,
article h5 span,
article h6 span {
	margin: 0!important;
	padding: 0!important;
	border: none!important;
	font-size: 1em!important;
	font-weight: bold!important;
}
article a {
	color: #006cb8;
	text-decoration: underline;
}
article a.category {
	text-decoration: none;
}
article img {
	width: auto!important;
	height: auto!important;
	margin: auto;
}
article .alignnone {
	margin: 0;
}
article .alignleft {
	margin: 0 auto 0 0;
}
article .alignright {
	margin: 0 0 0 auto;
}
article .wp-caption-text {
	margin-top: 5px;
	color: #777;
	font-size: 14px;
	text-align: center;
}

/* 前後の記事 */
ul.article_other li {
	width: 45%;
	position: relative;
}
ul.article_other li.prev {
	padding-left: 1.1em;
}
ul.article_other li.next {
	padding-right: 1.1em;
	text-align: right;
}
ul.article_other li.prev::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-bottom: 3px #006cb8 solid;
	border-left: 3px #006cb8 solid;
	position: absolute;
	bottom: 20%;
	left: 0;
	transform: rotate(45deg);
}
ul.article_other li.next::before {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 3px #006cb8 solid;
	border-right: 3px #006cb8 solid;
	position: absolute;
	bottom: 20%;
	right: 0;
	transform: rotate(45deg);
}
ul.article_other li a {
	display: inline-block;
}

@media screen and (max-width: 960px) {
	article h3,
	article h4,
	article h5,
	article h6,
	article strong,
	article b {
		line-height: 1.4!important;
	}
	article h3,
	article h4 {
		font-size: 18px!important;
	}
	article h5 {
		font-size: 16px!important;
	}
	article h6 {
		font-size: 12px!important;
	}
	
	/* 前後の記事 */
	ul.article_other li.prev {
		padding-left: .6em;
	}
	ul.article_other li.next {
		padding-right: .6em;
		text-align: right;
	}
	ul.article_other li.prev::before,
	ul.article_other li.next::before {
		width: 3px;
		height: 3px;
		border-width: 2px;
	}

}

@media screen and (max-width: 460px) {
	/* 前後の記事 */
	ul.article_other li {
		width: 100%;
	}
	ul.article_other li.prev {
		margin-bottom: 10px;
	}
	ul.article_other li.prev::before,
	ul.article_other li.next::before {
		bottom: 30%;
	}
}


