
/* パンくず */
.breadcrumb{
	min-width: 1020px;
	padding:0 0 10px;
}

.breadcrumb ul{
	width:1000px;
	margin:0 auto;
	position:relative;
}

.breadcrumb ul li{
	display:inline-block;
}

.breadcrumb ul li:after{
	display:inline-block;
	content:"＞";
	transform:scale(.6, 1);
}

.breadcrumb ul li:last-child:after{
	display:none;
}

/* 投稿一覧 */
.archive_list{
	overflow:hidden;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:flex-start;
	margin-top:-30px;
}

.archive_list .archive_item{
	width:49%;
	margin:30px 0 0;
	padding:0 0 20px;
	border-bottom:1px solid #ccc;
}

.archive_list .archive_item_info{
	overflow:hidden;
}

.archive_list .archive_item_date{
	width:60px;
	float:left;
	background:url("../images/post/icon_clock.svg") no-repeat left center;
	background-size:contain;
	padding: 0 0 0 30px;
}

.archive_list .archive_item_category ul{
	padding:0 0 0 110px
}

.archive_list .archive_item_category ul li{
	display:inline-block;
}

.archive_list .archive_item_category ul li a{
	display:inline-block;
	background:#f3f3f3;
	padding:0 10px;
}

.archive_list .archive_item_title{
	padding:10px 0;
	font-weight:bold;
	font-size:120%;
}

/* 投稿詳細 */
.single .post_item_info{
	overflow:hidden;
}

.single .post_item_date{
	width:60px;
	float:left;
	background:url("../images/post/icon_clock.svg") no-repeat left center;
	background-size:contain;
	padding: 0 0 0 30px;
}

.single .post_item_category ul{
	padding:0 0 0 110px
}

.single .post_item_category ul li{
	display:inline-block;
}

.single .post_item_category ul li a{
	display:inline-block;
	background:#f3f3f3;
	padding:0 10px;
}

.single .post_item_title{
	padding:10px 0 30px;
	margin:0 0 30px;
	font-weight:bold;
	font-size:200%;
	border-bottom:1px solid #ccc;
}

.post_item_content p{
	margin-bottom:1.5em;
}

.post_item_content hr{
	margin-top:1.5em;
	margin-bottom:1.5em;
}

.post_item_content ul{
	list-style-type: disc;
	margin-bottom:1.5em;
	margin-left:1.5em;
}

.post_item_content ol{
	margin-bottom:1.5em;
	margin-left:1.5em;
}

.post_item_content img.aligncenter{
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.post_item_content img.alignright{
	float:right;
}

.related{
	background:#f3f3f3;
}

.related_none{
	text-align:center;
}

@media screen and (max-width: 767px){
	/* パンくず */
	.breadcrumb{
		min-width: initial;
	}
	
	.breadcrumb ul{
		width:auto;
		margin:0 10px;
	}


	.archive_list .archive_item{
		width:100%;
		margin:30px 0 0;
		padding:0 0 20px;
		border-bottom:1px solid #ccc;
	}

}


