/***************************
 *
 * モジュール 記事用
 *
 **************************/


/* single-header */
.single-header {
	position: relative;
	padding-bottom: 40px;
}
.single-header .single-header-tag {
	position: absolute;
	left: 0;
	top: 0;
	width: 70px;
	height: 70px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;	
}
.single-header .single-header-tag a {
	font-size: 14px;
}
.single-header .single-header-tag a:hover {
	color: white;
	text-decoration: none;
}
.single-header .single-header-time {
	font-size: 16px;
	color: black;
	margin-bottom: 5px;
	display: block;
	padding-left: 85px;	
}
.single-header .single-header-title {
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 15px;
	padding-left: 85px;
	min-height: 50px;	
}
.single-header .single-header-author {
	line-height: 40px;
	margin-bottom: 15px;
}
.single-header .single-header-author .single-header-author-pic {
	/*width: 40px;*/
	float: left;
	margin-right: 15px;
}
.single-header .single-header-author .single-header-author-name {
	font-size: 15px;	
}
.single-header .single-header-text {
	font-size: 16px;
	line-height: 1.56em;
}

/* share */
.share {
	
}
.share ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;		
}
.share ul li {
	width: 33%;
}
.share ul li a {
	font-size: 9px;
	color: white;
	line-height: 40px;
	display: block;
	vertical-align: middle;
}
.share ul li a:hover {
	background: #aaa;
	text-decoration: none;
}
.share ul li a span {
	text-indent: -9999em;
	display: none;
}
.share ul .share-facebook a {
	background: #225b98;
}
.share ul .share-facebook a:before {
	background: url(../img/ic-facebook.png) 5px center no-repeat;
	background-size: 11px 20px;
	display: inline-block;
	content: "Facebook";
	padding-left: 20px;
	vertical-align: middle;
	margin: 0 5px;
	position: relative;
	top: -1px;
	font-size: 12px;
	line-height: 40px;
}
.share ul .share-twitter a {
	background: #05aeed;
}
.share ul .share-twitter a:before {
	background: url(../img/ic-twitter.png) 5px center no-repeat;
	background-size: 18px 15px;
	display: inline-block;
	content: "Twitter";
	padding-left: 25px;
	vertical-align: middle;
	margin: 0 5px;
	position: relative;
	top: -1px;
	font-size: 12px;
	line-height: 40px;
}
.share ul .share-hatena a {
	background: #046fbb;
}
.share ul .share-hatena a:before {
	background: url(../img/ic-hatena.png) 5px center no-repeat;
	background-size: 18px 15px;
	display: inline-block;
	content: "Hatena";
	padding-left: 25px;
	vertical-align: middle;
	margin: 0 5px;
	position: relative;
	top: -1px;
	font-size: 12px;
	line-height: 40px;
}
.share ul .share-line a {
	background: #00b900;
}
.share ul .share-line a:before {
	background: url(../img/ic-line.png) 5px center no-repeat;
	background-size: 22px 21px;
	display: inline-block;
	content: "Line";
	padding-left: 35px;
	vertical-align: middle;
	margin: 0 5px;
	position: relative;
	top: -1px;
	font-size: 12px;
	line-height: 40px;
}
/*
POST
*/
.post {
	line-height: 1.565em;
	font-size: 16px;
	padding-bottom: 30px;
}
.post p {
	font-size: 16px;
	margin-bottom: 40px;	
}
.post strong {
	font-weight: bold;
	font-size: 1.1em;
}
.post h2 {
	background: url(../img/bg-h2.png) 0 0 no-repeat;
	background-size: 37px 29px;
	font-size: 20px;
	padding-left: 50px;
	line-height: 1.2em;
	border-bottom: 1px solid #222222;
	padding-bottom: 15px;
	margin: 70px 0 40px;
}

.post figure {
	margin: 40px auto 35px;
}
.post figure iframe {
	margin: 20px auto 0;
	width: 100%;
}
.post figure figcaption {
	font-size: 13px;
	padding-top: 10px;
}

.post .box-gray {
	background: #fafafa;
	margin: 20px 0 20px;
	padding: 35px 90px 35px;
	padding-right: 15px;
	position: relative;
}
.post .box-gray .box-gray-title {
	margin-bottom: 20px;
	font-size: 20px;
}
.post .box-gray .box-gray-title img {
	width: 54px;
	position: absolute;
	left: 20px;
	top: 20px;
}
.post .box-gray p:last-child {
	margin-bottom: 0;
}
.post .box-gray a {
	color: #6098c2;
	text-decoration: underline;
	position: relative;
	padding-left: 15px;
}
.post .box-gray a:before {
	content: "\f105";
	font-family: fontawesome;
	position: absolute;
	left: 0;
	top: -5px;
}
.post .box-gray a:hover {
	text-decoration: none;
}

.post + .prev-next {
	margin-bottom: 50px;
}

/* post bottom */
.post-bottom {
	margin-top: 50px;
}
.post-bottom .post-bottom-title {
	text-align: center;
	font-size: 20px;
	color: #222222;
	line-height: 42px;
	border-top: 1px solid #222;
	border-bottom: 1px solid #222;
	margin-bottom: 20px;
}
.post-bottom .list-tag {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	
}
.post-bottom .list-tag > li {

}

.post-bottom-author-pic {
	float: left;
	width: 70px;
	margin-right: 15px;
	margin-top: 10px;
}
.post-bottom-author-name {

	line-height: 80px;
	font-size: 15px;
	color: #000000;
}

/* add 2021.02 */
.post img#a_image1, .post img#a_image2, .post img#a_image3{
	max-width: 100%;
	max-height: 500px;
}
