@charset "UTF-8";

/*
#key-visual:before{
	background-image: url(../images/news-key-visual.jpg);
}
*/
.kv-bg{
	background-image: url(../images/news-key-visual.jpg);
}


.post-head{
	margin-bottom: 6rem;
	border-bottom: 1px solid #222222;
	justify-content: flex-start;
}
.date{
	font-size: 1.6rem;
	--spacing: .2em;
	margin-right: 3rem;
}
.cat{
	width: 10.7rem;
	height: 2.5rem;
	border: 1px solid #222222;
	display: flex;
	justify-content: center;
	align-items: center;
	--spacing: 0.2em;
}
.post-title{
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 2.0rem 0 .8rem;
	width: 100%;
}
.editor{
	border-bottom: 1px solid #222222;
	margin-bottom: 3rem;
	padding-bottom: 6rem;
}
.editor p{
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.60222;

}
.editor img{
	vertical-align: bottom;
	max-width: 100.5rem;
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-bottom:6rem;
}
.editor h3{
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.5;
	padding-bottom: .8rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #222222;
}
.editor h4{
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 3rem;
	padding-left: 3rem;
	position: relative;
}
.editor h4:after{
	content: "";
	display: block;
	width: 2rem;
	height: 1px;
	background: #222222;
	position: absolute;
	left: 0;
	top: 1.5rem;
}
.editor h5{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.post-foot{
	position: relative;
	font-size: 1.6rem;
	font-weight: 700;
	display: flex;
	justify-content: center;

}
.post-foot .prev{
	position: absolute;
	right: 0;
	top: 0;
	padding-right: 3.4rem;
}
.post-foot .next{
	position: absolute;
	left: 0;
	top: 0;
	padding-left: 3.4rem;
}
.post-foot .prev:after{
	content: "";
	display: block;
	width: 2rem;
	height: 100%;
	background: url(../images/post-detail-arrow.svg) no-repeat;
	background-position: right center;
	background-size: 100% auto;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: scale(-1,1);
	transition: .3s all ease;
}
.post-foot .prev:hover:after{
	transform: translateX(1rem) scale(-1,1);
}
.post-foot .next:after{
	content: "";
	display: block;
	width: 2rem;
	height: 100%;
	background: url(../images/post-detail-arrow.svg) no-repeat;
	background-position: right center;
	background-size: 100% auto;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .3s all ease;
}
.post-foot .next:hover:after{
	transform: translateX(-1rem);
}
.go-archives{
	margin: 0 auto;
	display: block;
}

@media screen and (min-width: 769px){
	main{
		padding-bottom: 18rem;
	}
}

@media screen and (max-width: 768px){
	.post-head{
		margin-bottom: 3rem;
	}
	.date{
		font-size: 1.6rem;
		margin-top: .2rem;
	}
	.cat{
		font-size: 1.3rem;
		width: 10rem;
		height: 2.2rem;
		padding-top: .1rem;
		margin-right: 0;
	}
	.post-title{
		font-size: 1.8rem;
	}

	.editor p{
		font-size: 1.4rem;
	}
	.editor img{
		margin-bottom: 3rem;
		max-width: 100%;
	}
	.editor h3{
		font-size: 1.8rem;
		padding-bottom: .8rem;
		margin-bottom: 3.6rem;
	}
	.editor h4{
		font-size: 1.6rem;
		margin-bottom: 2.4rem;
		padding-left: 2.4rem;
	}
	.editor h4:after{
		width: 2rem;
		top: 1.2rem;
	}
	.editor h5{
		font-size: 1.4rem;
		margin-bottom: 1.2rem;
	}

	.post-foot{
		font-size: 1.4rem;

	}
	.post-foot .prev{
		padding-right: 2.6rem;
	}
	.post-foot .next{
		padding-left: 2.6rem;
	}
	.post-foot .prev:after{
		width: 1.5rem;
	}

	.post-foot .next:after{
		width: 1.5rem;
	}
	.post-foot .next:hover:after{
		transform: translateX(-.5rem);
	}
	.post-foot .prev:hover:after{
		transform: translateX(-.5rem) scale(-1,1);
	}







}