@charset "UTF-8";


#key-visual:after{
	background-image: url(../images/blog-key-visual.jpg);
}

#contents .inner{
	position: relative;
	align-items: flex-start;
}
#side-bar{
	width: calc(34.5rem - 7.2rem);
	padding: 3.6rem;
	border-radius: 1.8rem;
	background: #fff;
	position: sticky;
	top: 10rem;
	right: 0;
}
#side-bar h3{
	font-size: 2rem;
	margin-bottom: .6rem;
}
#side-bar li{
	padding: 1.8rem 0;
	border-bottom: .2rem dotted #ccc;
}
#side-bar ul{
	margin-bottom: 3.6rem;
}
select{
	background: url(../images/arrow05-b.svg) no-repeat;
	background-size: 1.2rem auto;
	background-position: right 1.8rem center;
	color: #333;
	font-family: "Zen Maru Gothic", YuGothic, 游ゴシック, メイリオ, Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 1.4rem;
	border: 1px solid #ccc;
	border-radius: .45rem;
	width: 100%;
	height: 4rem;
	display: flex;
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
	margin-top: 2.4rem;
	padding: 0 1.8rem;
}
main{
	width: 79.5rem;
	padding-top: 0;
	padding-bottom: 0;
	background: none;
}

article{
	width: 100%;
	margin-bottom: 4.8rem;
	padding: 3.6rem;
	border-radius: 3.6rem;
	background: #fff;
}
#post-title{
	font-size: 2.4rem;
	line-height: 1.75;
	border-bottom: .2rem solid #ccc;
	margin-bottom: 3.6rem;
	padding-bottom: 2.4rem;
}
.post-txt h1{
	font-size: 2.4rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .2rem dotted #ccc;
	margin: 3.6rem 0 2.4rem;
	padding-bottom: .3em;
}
.post-txt h2{
	font-size: 2.2rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .2rem dotted #ccc;
	margin: 3.6rem 0 2.4rem;
	padding-bottom: .3em;
}
.post-txt h3{
	font-size: 2rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .1rem solid #ccc;
	margin: 2.4rem 0 2.4rem;
	padding-bottom: .3em;
}
.post-txt h4{
	font-size: 1.8rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .2rem dotted #ccc;
	margin: 2.4rem 0 1.8rem;
	padding-bottom: .3em;
}
.post-txt h5{
	font-size: 1.8rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .1rem solid #ccc;
	margin: 1.8rem 0 1.8rem;
	padding-bottom: .3em;
}
.post-txt h6{
	font-size: 1.7rem;
	line-height: 1.75;
	font-weight: 700;
	border-bottom: .1rem solid #ccc;
	margin: 1.8rem 0 1.8rem;
	padding-bottom: .3em;
}
.post-txt p{
	margin-bottom: 1.5em;
}
.post-txt img{
	max-width: 100%;
	height: auto;
}


.date{
	display: block;
	margin: 1.5rem 0 1rem;
	font-size: 1.4rem;
	opacity: .6;
}
.cats{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: .5rem;
	font-size: 1.3rem;
}
.cats a,
.cats li{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1em;
	height: 1.6em;
	border-radius: .8em;
	background: #fff;
	border: .1rem solid #333;
	margin-bottom: .75em;
	margin-right: .75em;
}
.pager02{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.pager02 a{
	height: 4rem;
	border-radius: 2rem;
	padding: 0 2em;
	background: #fff;
	border: 1px solid #333;
	margin: 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s all ease;
}
.prev{
	position: absolute;
	left: 0;
	top: 0;
}
.next{
	position: absolute;
	right: 0;
	top: 0;
}
.prev a:before{
	content: "";
	display: block;
	width: .5rem;
	height: .5rem;
	border-left: 2px solid #333;
	border-top: 2px solid #333;
	transform: rotate(-45deg);
	margin-right: .5rem;
}
.next a:after{
	content: "";
	display: block;
	width: .5rem;
	height: .5rem;
	border-right: 2px solid #333;
	border-top: 2px solid #333;
	transform: rotate(45deg);
	margin-left: .5rem;
}
.archives-link{
	margin: 0 auto;
}

@media screen and (max-width: 768px){
	#contents{
		padding-left: 2rem;
		padding-right: 2rem;
	}

	#contents .inner{
		padding-top: 8.2rem;
	}
	#side-bar{
		width: 100%;
		padding: 2.4rem 1.8rem;
		border-radius: .9rem;
		background: #fff;
		position: relative;
		top: auto;
		right: auto;
		margin-top: 4.8rem;
	}

	#side-bar li{
		padding: 1.8rem 0;
		border-bottom: .3rem dotted #ccc;
	}

	main{
		width: 100%;
	}

	.date{
		margin: 0 0 1rem;
		font-size: 1.4rem;;
	}
	.cats{
		font-size: 1.2rem;
	}

	.pager02{
		margin-top: 3.6rem;
	}

.pager02 a{
	height: 3.6rem;
	border-radius: 1.82rem;
	padding: 0 1.5rem;
	margin: 0 1rem;
	font-size: 1.4rem;
}
.prev a:before{
	content: "";
	display: block;
	width: .5rem;
	height: .5rem;
	border-left: 2px solid #333;
	border-top: 2px solid #333;
	transform: rotate(-45deg);
	margin-right: .5rem;
}
.next a:after{
	content: "";
	display: block;
	width: .5rem;
	height: .5rem;
	border-right: 2px solid #333;
	border-top: 2px solid #333;
	transform: rotate(45deg);
	margin-left: .5rem;
}


	article{
		margin-bottom: 3.6rem;
		padding: 2.4rem 1.8rem;
		border-radius: 1.8rem;
	}


	#post-title{
		font-size: 2rem;
		border-bottom: .3rem solid #ccc;
		margin-bottom: 2.4rem;
		padding-bottom: 1.8rem;
	}
	.post-txt h1{
		font-size: 2rem;
		border-bottom: .3rem dotted #ccc;
		margin: 2.4rem 0 1.8rem;
	}
	.post-txt h2{
		font-size: 2rem;
		line-height: 1.75;
		font-weight: 700;
		border-bottom: .2rem dotted #ccc;
		margin: 1.8rem 0 1.8rem;
		padding-bottom: .3em;
	}
	.post-txt h3{
		font-size: 1.8rem;
		line-height: 1.75;
		font-weight: 700;
		border-bottom: .1rem solid #ccc;
		margin: 1.8rem 0 1.6rem;
		padding-bottom: .3em;
	}
	.post-txt h4{
		font-size: 1.7rem;
		line-height: 1.75;
		font-weight: 700;
		border-bottom: .2rem dotted #ccc;
		margin: 1.6rem 0 1.4rem;
		padding-bottom: .3em;
	}
	.post-txt h5{
		font-size: 1.7rem;
		line-height: 1.75;
		font-weight: 700;
		border-bottom: .1rem solid #ccc;
		margin: 1.4rem 0 1.4rem;
		padding-bottom: .3em;
	}
	.post-txt h6{
		font-size: 1.6rem;
		line-height: 1.75;
		font-weight: 700;
		border-bottom: .1rem solid #ccc;
		margin: 1.4rem 0 1.4rem;
		padding-bottom: .3em;
	}
}