@charset "utf-8";
/* ===================================================================

 file name  :blog.css
 style info :ブログ

=================================================================== */

/* =============================

	overwrite

=============================== */

/* =================================== */
#nav .nav-block {
	border-top: 1px solid #737378;
	border-left: 1px solid #737378;
	border-right: 1px solid #737378;
	font-size: 1.3rem;
	margin-bottom: 30px;
}
#nav .nav-block a{
	position: relative;
	display: block;
	text-decoration: none;
	color: #737378;
	text-align: center;
	padding:0.8em 0.3em;
}
#nav .nav-block h3 {
	border-bottom: 1px solid #737378;
}
#nav .nav-block h3 a {
	font-size: 1.2rem;
}
#nav .nav-block h3 a::after{
	content: '';
	position: absolute;
	right: 16px;
	top: calc(50% - 6px);
	width: 8px;
	height: 8px;
	border-right: 1px solid #737378;
	border-bottom: 1px solid #737378;
	transform: rotate(45deg);
	transition: transform ease .3s;
}
#nav .nav-block.open h3 a::after{
	top: calc(50% - 3px);
	transform: rotate(-135deg);
}
#nav .nav-block .panel{
	display: none;
	border-bottom: 1px solid #737378;
}
#nav .nav-block ul {
	display: flex;
	flex-wrap:wrap;
	overflow: hidden;
	margin-bottom: -1px;
}
#nav .nav-block ul li {
	border-bottom: 1px solid #737378;
	width: 50%;
}
#nav .nav-block ul li.current-cat a,
#nav .nav-block ul li a.current,
#nav .nav-block ul li.current a{background: #737378; color:#fff;}
#nav .nav-block#category ul li:first-child{
	width:100%
}
#nav .nav-block#category ul li:nth-of-type(even){
	border-right: 1px solid #737378;
}
#nav .nav-block#archive ul li:nth-of-type(odd){
	border-right: 1px solid #737378;
}
@media screen and (min-width: 768px){
	#nav .nav-block {
		font-size: 1.5rem;
		margin-bottom: 40px;
	}
	#nav .nav-block h3 a {
		font-size: 1.6rem;
		cursor: default;
	}
	#nav .nav-block h3 a::after{
		content: none;
	}
	#nav .nav-block .panel{
		display: block !important;
	}
	#nav .nav-block ul li,
	#nav .nav-block#category ul li:first-child{
		width: 20%;
	}
	#nav .nav-block ul li{
		border-right: 1px solid #737378 !important;
	}
	#nav .nav-block ul li:nth-of-type(5n){
		border-right: none !important;
	}
	#nav .nav-block ul li a:hover{background:#737378; color: #fff;;}

}




/*
.article-list
一覧
---------------------------*/
#main .article-list article {
	border: 1px solid #737378;
	margin-bottom: 15px;
}
#main .article-list article a {
	display: block;
	padding: 26px;
	color: #333;
	text-decoration: none;
}
#main .article-list article a .img{
	margin-bottom: 20px;
}
#main .article-list article a .img figure{
	width: 100%;
	position: relative;
	padding-bottom: 66.66%;
	overflow: hidden;
}
#main .article-list article a .img figure img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
#main .article-list article a .info {
	display: inline-block;
	padding: 0.4em;
	background: #737378;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	position: relative;
}
#main .article-list article a .info .time {
	width: 6em;
	border-right: 1px solid #fff;
}
#main .article-list article a .info .cat {
	margin-top: -1.3em;
	padding-left: 6.5em;
}
#main .article-list article a .info .cat li {
	display: inline-block;
}
#main .article-list article a .info .cat li:not(:last-child)::after{
	content:'、';
	display: inline;
}
#main .article-list article a h2 {
	margin: 1em 0;
	font-weight: 700;
	font-size: 1.4rem;
}
#main .article-list article a .excerpt {
	color: #888;
}

@media screen and (min-width: 768px){
	#main .article-list article {
		margin-bottom: 40px;
	}
	#main .article-list article a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 40px;
	}
	#main .article-list article a .img{
		width: 40%;
		margin-bottom: 0;
	}
	#main .article-list article a img{
		transition: transform ease .3s;
	}
	#main .article-list article a:hover img{
		transform: scale(1.1);
	}
	#main .article-list article a .notes{
		width: 55%;
		transition: opacity ease .3s;
	}
	#main .article-list article a:hover .notes{
		opacity: 0.8;
	}
	#main .article-list article a .info {
		font-size: 1.4rem;
	}
	#main .article-list article a h2 {
		font-size: 2rem;
	}
	#main .article-list article a .excerpt {
		font-size: 1.4rem;
		color: #888;
	}
}

/*
#main .article-list .pager
---------------------------*/
#main .article-list .pager{
	margin: 30px 0;
	position: relative;
}
#main .article-list .pager p.paged{
	padding: 1em 0;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: #737378;
}
#main .article-list .pager p a{
	position: relative;
	display: block;
	width: 38px;
	height: 38px;
	background: #e4a59b;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	border-radius: 50%;
}
#main .article-list .pager p a::before{
	content: '';
	position: absolute;
	left: calc(50% - 6px);
	top: calc(50% - 4px);
	width: 8px;
	height: 8px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg);
}
#main .article-list .pager p.prev,
#main .article-list .pager p.next{
	position: absolute;
	top: calc(50% - 19px);
}
#main .article-list .pager p.prev{ left: 0;}
#main .article-list .pager p.next{ right: 0;}
#main .article-list .pager p.prev a::before{
	left: calc(50% - 3px);
	transform: rotate(135deg);
}
@media screen and (min-width: 768px){
	#main .article-list .pager{
		margin: 60px 0;
	}
	#main .article-list .pager p.paged{
		font-size: 1.6rem;
	}
	#main .article-list .pager p a{
		width: 50px;
		height: 50px;
	}
	#main .article-list .pager p a:hover{background:#d88578;}
	#main .article-list .pager p a::before{
		left: calc(50% - 7px);
		top: calc(50% - 5px);
		width: 10px;
		height: 10px;
	}
	#main .article-list .pager p.prev,
	#main .article-list .pager p.next{
		top: calc(50% - 25px);
	}
	#main .article-list .pager p.prev a::before{
		left: calc(50% - 4px);
	}
}


/*
.article-main
詳細
---------------------------*/
.article-main {
	padding-top: 45px;
}
.article-main article header .info {
	margin-bottom: 1em;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.article-main article header .info .time {
	width: 7em;
	margin-right: 16px;
	display: inline-block;
	padding: 0.4em 0;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	background: #737378;
	color: #fff;
	text-align: center;
}
.article-main article header .info .cat {
	width: calc(100% - 7em - 16px);
}
.article-main article header .info .cat li {
	display: inline-block;
	margin-right: 10px;
	border: 1px solid #737378;
	font-size: 1.2rem;
	color: #737378;
	padding: 0.2em 0.8em;
	margin-bottom: 0.3em;
	border-radius: 50px;
}
.article-main article header h1 {
	font-size: 1.4rem;
	font-weight: 700;
	border-bottom: 1px solid #333333;
	padding-bottom: 0.8em;
	margin-bottom: 1em;
}
@media screen and (min-width: 768px){
	.article-main {
		padding-top: 60px;
	}
	.article-main article header .info .time {
		margin-right: 20px;
		font-size: 1.4rem;
	}
	.article-main article header .info .cat {
		width: calc(100% - 7em - 20px);
	}
	.article-main article header .info .cat li {
		margin-right: 14px;
		font-size: 1.4rem;
	}
	.article-main article header h1 {
		font-size: 2rem;
	}
}


/* entry-content */
.article-main article .entry-content {
	margin-bottom: 40px;
}
@media screen and (min-width: 768px){
	.article-main article .entry-content {
		margin-bottom: 100px;
	}
}

.article-main .social-links ul {
	display: flex;
	justify-content: flex-start;
}
.article-main .social-links ul li {
	width: 44px;
	margin-right: 10px;
}
@media screen and (min-width: 768px){
	.article-main .social-links ul li {
		width: 54px;
		margin-right: 20px;
	}
	.article-main .social-links ul li a:hover{opacity: 0.6;}
}
/*
.article-main .pager
---------------------------*/
.article-main .pager{
	margin: 30px 0;
	position: relative;
}
.article-main .pager a{
	text-decoration: none;
}
.article-main .pager .back{
	margin: 14px 0;
	text-align: center;
}
.article-main .pager .back a{
	position: relative;
	padding: 1.2em 2em 1.2em calc(2em + 30px);
	display: inline-block;
	background: #1b1b1b;
	color: #fff;
	border-radius: 2px;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
}
.article-main .pager .back a::before{
	content: '';
	background: url(../images/common/ico_post.svg) no-repeat left center / contain;
	width: 21px;
	height: 18px;
	position: absolute;
	left: 24px;
	top: calc(50% - 9px);
}
.article-main .pager .next{
	text-align: right;
}
.article-main .pager .prev a,
.article-main .pager .next a{
	max-width: 300px;
	padding-left: 18px;
	display: inline-block;
	color: #1b1b1b;
	font-size: 1.1rem;
}
.article-main .pager .next a{
	padding-left: 0;
	padding-right: 18px;
}
.article-main .pager .prev a .en,
.article-main .pager .next a .en{
	position: relative;
	display: inline-block;
	padding-bottom: 0.5em;
	font-weight: 700;
}
.article-main .pager .prev a .en::before,
.article-main .pager .prev a .en::after,
.article-main .pager .next a .en::before,
.article-main .pager .next a .en::after{
	content: '';
	width: calc(100% + 18px);
	height: 1px;
	background: #1b1b1b;
	position: absolute;
	right: 0;
	bottom: 0;
}
.article-main .pager .prev a .en::after,
.article-main .pager .next a .en::after{
	transform: rotate(-45deg);
	transform-origin: left bottom;
	width: 12px;
	left: -18px;
	right: auto;
}
.article-main .pager .next a .en::before{
	left: 0;
	right: auto;
}
.article-main .pager .next a .en::after{
	transform: rotate(45deg);
	transform-origin: right bottom;
	right: -18px;
	left: auto;
}
.article-main .pager .prev a .ja,
.article-main .pager .next a .ja{
	padding-top: 1em;
	display: block;
}
@media screen and (min-width: 768px){
	.article-main .pager{
		margin: 60px 0;
	}
	.article-main .pager .back{
		margin: 20px 0;
	}
	.article-main .pager .back a{
		font-size: 1.6rem;
	}
	.article-main .pager .back a:hover{
		opacity: 0.6;
	}
	.article-main .pager .prev a,
	.article-main .pager .next a{
		padding-left: 22px;
		font-size: 1.4rem;
	}
	.article-main .pager .next a{
		padding-left: 0;
		padding-right: 22px;
	}
	.article-main .pager .prev a .en::before,
	.article-main .pager .prev a .en::after,
	.article-main .pager .next a .en::before,
	.article-main .pager .next a .en::after{
		width: calc(100% + 22px);
	}
	.article-main .pager .prev a .en::after,
	.article-main .pager .next a .en::after{
		width: 14px;
		left: -22px;
	}
	.article-main .pager .next a .en::after{
		left: auto;
		right: -22px;
	}
	.article-main .pager .prev a .en::before{
		transform-origin: left bottom;
		transition: transform ease .3s;
	}
	.article-main .pager .next a .en::before{
		transform-origin: right bottom;
		transition: transform ease .3s;
	}
	.article-main .pager .prev a:hover .en::before,
	.article-main .pager .next a:hover .en::before{
		transform: scaleX(2);
	}

}