@charset "utf-8";

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

/********** 記事見出し **********/
#main .single-heading {
	position: relative;
	min-height: 147px;
	margin: 0 0 30px;
	padding: 0 0 0 120px;
	line-height: 1.2;
	background: url(../images/single/icon-heading.png) no-repeat 0 0;
	background-size: 100px auto;
}
#main .single-heading .single-heading-box {
	position: relative;
	padding: 12px 20px;
	border-radius: 10px;
	background: #cfcbc3;
}
#main .single-heading .single-heading-box::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: -13px;
	top: 20px;
	border-right: 13px solid #cfcbc3;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}
#main .single-heading  .datetime {
	padding: 0 0 8px;
	font-size: 18px;
}
#main .single-heading  h2 {
	line-height: 1.25;
	font-weight: 500;
	font-size: 30px;
}

/********** 前後の記事へのリンク **********/
#main .previous-next-post{
	display: flex;
	justify-content: space-between;
	
	width: 100%;
}
#main .previous-next-post div{
	width: 48%;
}
#main .previous-next-post > div:nth-of-type(2) {
	text-align: right;
}
#main .previous-next-post > div a {
	display: block;
}
#main .previous-next-post > div:nth-of-type(1) a {
	padding: 0 0 0 20px;
	background: url(../images/single/btn-arr-left.svg) no-repeat 0 4px;
	background-size: 10px 16px;
}
#main .previous-next-post > div:nth-of-type(2) a {
	padding: 0 20px 0 0;
	background: url(../images/single/btn-arr-right.svg) no-repeat 100% 4px;
	background-size: 10px 16px;
}

