@charset "UTF-8";

/* ============================
   Single
=============================== */
#post{
	padding-bottom: 100px !important;
}
#post .container-entry .mv {
	margin-top: -70px;
	position: relative;
	z-index: 2;
}
@media (max-width: 575px) {
	#post .container{
		max-width: none;
		padding: 0;
	}
	#post .container-entry .mv {
		margin-top: -90px;
		padding-left: 8.5%;
	}
	#post .container-entry .mv,
	#post .detail {
	}
	#post .detail{
		padding-right: 8.5%;
	}
}


/*================================
	Page Header
================================*/
#post .detail{
	margin-top: 50px;
}
#post .container-entry .mv + .detail {
	margin-top: 30px;
}
#post .detail .content {
	margin: 0;
	display: flex;
	display: -webkit-flex;
	-webkit-align-items: center;
	align-items: center;
}
#post .detail .date {
	margin: 0 40px 0 0;
	margin-right: 40px;
	font-family: var(--font1);
	line-height: 1;
	letter-spacing: .05em;
}
#post .detail .cats{
	margin: 0;
}
#post .detail .cats span{
	margin-bottom: 0;
}
#post h1.post-ttl {
	font-size: 1.7em;
}

@media (max-width: 575px) {
	#post .detail,
	#post .entry-body h2,
	#post .entry-body .note,
	#post .entry-body .link{
		padding-left: 8.5%;
		padding-right: 8.5%;
	}
	#post h1.post-ttl {
		font-size: 1.5em;
	}
}



/*================================
	記事本文
================================*/
#post .entry-body {
	margin-top: 40px;
}
#post .entry-body > *{
	margin: 0;
}
#post .entry-body h2,
#post .entry-body .photo,
#post .entry-body .link{
	margin-top: 50px;
}
#post .entry-body .note{
	margin-top: 30px;
}
#post .entry-body .photo.line{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#post .entry-body .photo.line figure{
	width: calc(50% - 10px);
}
#post .entry-body .photo + .photo.line{
	margin-top: 20px;
}
#post .entry-body .link a{
	font-size: 1em;
}
#post .entry-body .note p + p{
	margin-top: 30px;
}

@media (max-width: 575px) {
	#post .entry-body .photo.line figure{
		width: calc(50% - 5px);
	}
	#post .entry-body .photo + .photo.line{
		margin-top: 10px;
	}
}

@media (max-width: 575px) {
	#post .entry-body .photo{
		padding: 0 5%;
	}
}



/*================================
	Page Navi
================================*/
#post .container-entry .pagenav {
	margin-top: 80px;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#post .container-entry .pagenav li{
	width: 30%;
	margin: 0;padding: 0;
	list-style: none;
}
#post .container-entry .pagenav li a{
	display: block;
	font-family: var(--font1);
	position: relative;
}
#post .container-entry .pagenav li:not(.back) a{
	line-height: 30px;
}
#post .container-entry .pagenav li:not(.back) a::before,
#post .container-entry .pagenav li:not(.back) a::after{
	content: "";
	display: block;
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	transform:translateY(-50%);
}
#post .container-entry .pagenav li:not(.back) a::before{
	width: 30px;
	height: 30px;
	background: #333;
	border-radius: 50%;
}
#post .container-entry .pagenav li:not(.back) a::after{
	width:7px;height:7px;
	top:50%;
	-webkit-transform:translateY(-50%) rotate(45deg) ;
	-moz-transform:translateY(-50%) rotate(45deg) ;
	transform:translateY(-50%) rotate(45deg) ;
}
#post .container-entry .pagenav li.prev a{
	padding-left: 40px;
}
#post .container-entry .pagenav li.prev a::before{
	left: 0;
}
#post .container-entry .pagenav li.prev a::after{
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
	left: 13px;
}
#post .container-entry .pagenav li.next a{
	padding-right: 40px;
	text-align: right;
}
#post .container-entry .pagenav li.next a::before{
	right: 0;
}
#post .container-entry .pagenav li.next a::after{
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	right: 13px;
}
#post .container-entry .pagenav li.back a{
	max-width: 250px;
	margin: 0 auto;
	padding-bottom: 15px;
	text-align: center;
	border-bottom: 1px solid  #313131;
	line-height: 1;
}
#post .container-entry .pagenav li.back a::after{
	content: "";
	display: block;
	width: 7px;height: 7px;
	border-radius: 50%;
	background: #313131;
	position: absolute;
	right: 0;bottom: -4px;
}

@media (max-width: 575px) {
	#post .container-entry .pagenav{
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 90%;
		margin-left: auto;margin-right: auto;
	}
	#post .container-entry .pagenav li.prev{
		-webkit-order:1;
		order:1;
	}
	#post .container-entry .pagenav li.next{
		-webkit-order:2;
		order:2;
	}
	#post .container-entry .pagenav li.back{
		-webkit-order:3;
		order:3;
		width: 100%;
		margin-top: 40px;
	}
	#post .container-entry .pagenav li.back a{
		max-width: 200px;
		margin: 0 auto;
	}
}




