@charset "utf-8";

/* --------------------------------------------------------------------------------
	single
-------------------------------------------------------------------------------- */

#main .entry {
	margin: 0 0 30px;
	line-height: 1.85;
	border-bottom: dotted 1px #a0a0a0;
}



/* カテゴリー名
-------------------------------------------------------------------------------- */
#main .entry .common .cat-name-box{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content:right;
	margin-bottom: 35px;
}
#main .entry .common .cat-name-box .cat-name a{
	display: block;
	min-width: 200px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background:#646464;
	border-radius: 10px;
	padding: 2px 10px;
}



/* 見出し
-------------------------------------------------------------------------------- */
#main .entry .common h1.t-content {
	margin: 0 0 18px;
	padding: 0 0 0 10px;
	border-left: solid 4px #065cc6;
	font-size: 28px;
	line-height: 1.4;
}



/* 公開日・更新日・readtime
-------------------------------------------------------------------------------- */
#main .entry .common .post-header{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	
	width: 100%;
	padding: 0 0 30px;
	text-align: right;
	font-size: 14px;
	color: #000;
}
#main .entry .common .post-header .datetime {
	display: flex;
	flex-wrap: wrap;
}
#main .entry .common .post-header .datetime .datetime-release {
	padding: 0 20px 0 0;
}
#main .entry .common .post-header .datetime .datetime-modified {
	padding: 0 20px 0 0;
}
#main .entry .common .post-header .datetime .datetime-read {	
}



/* 説明文
-------------------------------------------------------------------------------- */
#main .entry .entry-body h2{
	font-size: 16px;	
}



/* 目次
-------------------------------------------------------------------------------- */
/*アンカー位置の調整*/
#main .entry .entry-body .ez-toc-section{
	display: block;
	padding-top: 100px;
	margin-top: -100px;
}

#main .entry .entry-body #ez-toc-container {
	background: #e8f0f8;
	border: none;
	padding: 30px 25px;
	margin-bottom: 50px;
}
#main .entry .entry-body #ez-toc-container .ez-toc-title{
	font-size: 18px;
	margin-bottom: 10px;
}
#main .entry .entry-body #ez-toc-container ul li a{
	font-size: 18px;
	margin-bottom: 10px;
}



/* 記事
------------------------------------------------------------------------------- */
#main .entry .entry-body h1{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	
	padding: 10px 0;
	margin-bottom: 25px;
	background-image: linear-gradient(90deg, #065cc6 0 5%, #82ace2 5%);
	background-repeat: no-repeat;
	background-size: 100% 3px;
	background-position: bottom;
}



/* ページャー
------------------------------------------------------------------------------- */
#main .previous-next-post{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
	width: 100%;
	margin: 0 0 50px 0;	
}
#main .previous-next-post div{
	width: 47%;
	font-size: 14px;
	line-height: 1.6;
}
#main .previous-next-post div:nth-child(2){
	display: flex;
	justify-content: flex-end;
}



/* 関連記事
------------------------------------------------------------------------------- */
#main .common .related-posts h3{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
}
#main .common .related-posts h3::before{
	content: "◆";
	color: #065cc6;
}
#main .common .related-posts ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#main .common .related-posts ul li{
	width: 400px;
}
/*画像*/
#main .common .related-posts img{
	width: 400px;
	height: 225px;
	object-fit: cover;
	margin-bottom: 10px;
}
/*公開日・更新日*/
#main .common .related-posts .datetime {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
#main .common .related-posts .datetime .datetime-release {
	padding: 0 20px 0 0;
	line-height: 1.4;
}
#main .common .related-posts .datetime .datetime-modified {
	padding: 0 20px 0 0;
	line-height: 1.4;
}
/*記事名*/
#main .common .related-posts .title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
}










