@charset "UTF-8";

/* blog ---------------------------------------*/
.blog { 
	padding: 0 20px 120px;
}

.blog-list { 
	max-width: 960px;
	margin: 0 auto;
}

.blog-list > li { 
	padding: 31px 0;
	border-bottom: 1px solid #eee;
}

.blog-list > li:first-of-type { 
	padding-top: 0;
}

.blog-list > li a {
	display: block;
}

.blog-list-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 11px;
}

.blog-list-date { 
	font-size: 16px;
	letter-spacing: 0.04em;
}

.blog-list-category {
	font-size: 14px;
	text-align: center;
	line-height: 1.429;
	letter-spacing: 0.04em;
	color: #B7AC84;
	padding: 5px 9px;
	background: #fff;
	border: 1px solid #B7AC84;
	border-radius: 4px;
}

.blog-list-title { 
	font-size: 20px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

.blog-nopost {
	max-width: 960px;
	font-size: 20px;
	margin: 100px auto 40px;
}

/* blogdetail ---------------------------------------*/
.blogdetail { 
	padding: 0 20px 120px;
}

.blogdetail-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.blogdetail-title { 
	font-size: 32px;
	font-weight: 500;
	line-height: 1.438;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
}

.blogdetail-info {
	display: flex;
	gap: 10px;
	margin-bottom: 32px;
}

.blogdetail-info-date { 
	font-size: 16px;
	font-weight: 400;
}

.blogdetail-info-category { 
	font-size: 14px;
	text-align: center;
	line-height: 1.429;
	letter-spacing: 0.04em;
	color: #B7AC84;
	padding: 5px 9px;
	background: #fff;
	border: 1px solid #B7AC84;
	border-radius: 4px;
}

.entrybody { 
	padding-bottom: 56px;
}

.entrybody h2 { 
	font-size: 22px;
	font-weight: 500;
	line-height: 1.454;
	letter-spacing: 0.04em;
	padding: 10px 16px;
	background: #F8F8F8;
	border-left: 2px solid #000;
	margin-top: 32px;
}

.entrybody h3 { 
	position: relative;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.04em;
	padding-bottom: 9px;
	border-bottom: 1px solid #333;
	padding-left: 25px;
	margin-top: 28px;
}

.entrybody h3::before { 
	position: absolute;
	top: 0;
	left: -2px;
	font-size: 20px;
	content: '◾';
}

.entrybody h4 { 
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
	margin-top: 20px;
}

.entrybody ul { 
	margin-top: 16px;
}

.entrybody ul > li { 
	position: relative;
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.8;
	letter-spacing: 0.04em;
	padding-left: 24px;
}

.entrybody ul > li::before { 
	position: absolute;
	top: 0;
	left: 4px;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.04em;
	content: '・';
}

.entrybody ul > li + li { 
	margin-top: 0;
}

.entrybody p { 
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.8;
	letter-spacing: 0.04em;
	margin-top: 16px;
}

.entrybody b,
.entrybody strong { 
	font-weight: 700;
}

.entrybody a { 
	font-weight: 400;
	color: #B7AC84;
	text-decoration: underline;
}

.entrybody a:hover { 
	text-decoration: none;
	opacity: 1;
}

.entrybody p img, 
.entrybody div img, 
.entrybody figure img { 
	display: block;
	width: 100%;
	margin-top: 16px;
}

.entrybody > *:first-child {margin-top: 0;}
.entrybody h2 + * { margin-top: 32px;}
.entrybody h3 + * { margin-top: 28px;}
.entrybody h4 + * { margin-top: 20px;}
.entrybody p + p,
.entrybody ul + p,
.entrybody p + ul { margin-top: 16px;}
.entrybody p + p:has(img),
.entrybody p:has(img) + p { margin-top: 20px;}


.blogdetail-controler { 
	display: flex;
	gap: calc(80 / 800 * 100%);
	border-top: 1px solid #333;
	padding-top: 56px;
}

.blogdetail-controler-prev,
.blogdetail-controler-next { 
	display: flex;
	gap: 4px;
	align-items: center;
	width: calc(360 / 800 * 100%);
	padding-bottom: 8px;
	border-bottom: 1px solid #EEE;
}

.blogdetail-controler-prev {margin-right: auto;}
.blogdetail-controler-next {margin-left: auto;}

.blogdetail-controler-prev { 
	justify-content: flex-start;
}

.blogdetail-controler-next { 
	justify-content: flex-end;
}

.icon-arrow-blog-prev,
.icon-arrow-blog-next {
	display: inline-block;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	content: '';
	transition: all .25s ease;
}

.icon-arrow-blog-prev {
	background: url('../img/common/icon_arrow_blog_prev.svg') no-repeat;
	background-size: contain;
}

.icon-arrow-blog-next {
	background: url('../img/common/icon_arrow_blog_next.svg') no-repeat;
	background-size: contain;
}

.blogdetail-controler-title { 
	font-size: 18px;
	font-weight: 500;
	line-height: 1.44;
	letter-spacing: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.blogdetail-button { 
	text-align: center;
	margin: 56px auto 0;
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 1200px){

}



@media screen and (max-width: 767px) {
	/* blog ---------------------------------------*/
	.blog { 
		padding: 0 20px 80px;
	}

	.blog-list { 
		max-width: unset;
	}

	.blog-list > li { 
		padding: 24px 0;
	}

	.blog-list-info {
		gap: 10px;
		margin-bottom: 10px;
	}

	.blog-list-date { 
		font-size: 14px;
		letter-spacing: 0.04em;
	}

	.blog-list-category {
		font-size: 13px;
		line-height: 1.462;
		padding: 3px 7px;
	}

	.blog-list-title { 
		font-size: 16px;
	}

	.blog-nopost {
		font-size: 16px;
		text-align: center;
		margin: 40px auto 20px;
	}

	/* blogdetail ---------------------------------------*/
	.blogdetail { 
		padding: 0 20px 80px;
	}

	.blogdetail-wrapper {
		max-width: unset;
	}

	.blogdetail-title { 
		font-size: 28px;
		line-height: 1.464;
		margin-bottom: 22px;
	}

	.blogdetail-info {
		gap: 10px;
		margin-bottom: 30px;
	}

	.blogdetail-info-date { 
		font-size: 14px;
	}

	.blogdetail-info-category { 
		font-size: 13px;
		line-height: 1.462;
		padding: 3px 7px;
	}

	.entrybody { 
		padding-bottom: 40px;
	}

	.entrybody h2 { margin-top: 28px;}
	.entrybody h3 { margin-top: 24px;}
	.entrybody h2 + * { margin-top: 28px;}
	.entrybody h3 + * { margin-top: 24px;}


	.blogdetail-controler { 
		gap: calc(31 / 335 * 100%);
		padding-top: 40px;
	}

	.blogdetail-controler-prev,
	.blogdetail-controler-next { 
		width: calc(152 / 335 * 100%);
		padding-bottom: 10px;
	}

	.blogdetail-controler-title { 
		font-size: 14px;
		line-height: 1.429;
		-webkit-line-clamp: 2;
	}

	.blogdetail-button { 
		margin: 40px auto 0;
	}


}
