@charset "utf-8";

/*=== ブログ 一覧（アーカイブ） ここから ===*/
.blog_archive{
	width: 100%;
	height: auto;
	background-color: #fafafa;
}
.blog_archive .baskervville{
	font-family: 'Baskervville', serif;
}
.blog_head{
	width: 100%;
	height: auto;
	padding: 70px 0 0;
	display: block;
	text-align: center;
}
.blog_head_inner{
	width: 1042px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.blog_en{
	font-size: 17px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #0e2155;
}
.blog_page_ttl{
	margin-top: 30px;
	font-size: 32px;
	line-height: 41px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.blog_list_sec{
	width: 100%;
	height: auto;
	margin: 65px 0 0;
	padding: 0 0 120px;
	display: block;
}
.blog_list_inner{
	width: 1042px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.blog_list{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 34px 41px;
}
.blog_card{
	width: 320px;
	height: auto;
	display: block;
	color: #0f0f0f;
	text-decoration: none;
}
.blog_card_img{
	width: 320px;
	height: 213px;
	display: block;
	overflow: hidden;
	border-radius: 12px;
	background-color: #e6e6e6;
}
.blog_card_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.blog_card_date{
	margin-top: 16px;
	display: block;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #5a5959;
}
.blog_card_ttl{
	margin-top: 12px;
	transition: color .35s ease;
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0.02em;
	color: #0f0f0f;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
@media only screen and (min-width: 768px){
	/* ホバー時はTOPのブログカードと同じ青＋下線 */
	.blog_card:hover .blog_card_ttl{
		color: #10359b;
		text-decoration: underline;
		text-underline-offset: 3px;
		text-decoration-thickness: 1px;
	}
	.blog_card:hover .blog_card_img img{
		transform: scale(1.05);
	}
}
.blog_card_img img{
	transition: transform .4s ease;
}

/*--- ページネーション ---*/
.blog_pager{
	width: 100%;
	height: auto;
	margin: 104px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
@media only screen and (max-width: 767px){
	.blog_pager{
		gap: 15px;
	}
}
.blog_pager .page-numbers{
	min-width: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #b6bccb;
	text-decoration: none;
	transition: color .3s ease;
}
.blog_pager .page-numbers.current{
	color: #0e2155;
	font-weight: 700;
}
@media only screen and (min-width: 768px){
	.blog_pager a.page-numbers:hover{
		color: #0e2155;
	}
}
.blog_pager .page-numbers.dots{
	color: #b6bccb;
}
/*=== ブログ 一覧 ここまで ===*/


/*=== ブログ 詳細（single） ここから ===*/
.blog_single{
	width: 100%;
	height: auto;
	padding: 69px 0 100px;
	background-color: #fafafa;
}
.blog_single_img{
	width: 650px;
	height: 432px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background-color: #e6e6e6;
}
.blog_single_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.blog_single_inner{
	width: 900px;
	height: auto;
	margin: 52px auto 0;
	display: block;
}
.blog_single_date{
	display: block;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #5a5959;
}
.blog_single_ttl{
	margin-top: 14px;
	font-size: 25px;
	line-height: 38px;
	letter-spacing: 0.04em;
	color: #0f0f0f;
}
.blog_single_body{
	margin-top: 25px;
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0.04em;
	color: #0f0f0f;
}
.blog_single_body p{
	margin: 0;
}
.blog_single_body p + p{
	margin-top: 28px;
}
/* 「1行あけ」用の空段落（空/&nbsp;/<br>のみ）を1行分に正規化 */
.blog_single_body p.is-blank{
	margin: 0;
	height: 28px;
}
/* 空段落直後の段落は p+p の margin-top を打ち消す（空段落の高さ＝1行分のみに） */
.blog_single_body p.is-blank + p{
	margin-top: 0;
}
.blog_single_body a{
	color: #0e2155;
	text-decoration: underline;
}
.blog_single_body img{
	max-width: 100%;
	height: auto;
}
.blog_back{
	width: 100%;
	height: auto;
	margin: 60px 0 0;
	display: flex;
	justify-content: center;
}
.blog_back_btn{
	width: 220px;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #0e2155;
	border-radius: 29px;
	background-color: transparent;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #0e2155;
	text-decoration: none;
	position: relative;
}
/*=== ブログ 詳細 ここまで ===*/


/* ============================================================
   SP（〜767px） ブログ 一覧・詳細
   ============================================================ */
@media only screen and (max-width: 767px){
	/* 一覧 */
	.blog_head{ padding: 56px 0 0; }
	.blog_head_inner{ width: 100%; padding: 0 27px; }
	.blog_en{ font-size: 16px; letter-spacing: 0.1em; }
	.blog_page_ttl{ margin-top: 18px; font-size: 25px; line-height: 1.4; }
	.blog_list_sec{ margin-top: 40px; padding: 0 0 54px; }
	.blog_list_inner{ width: 100%; padding: 0 27px; }
	.blog_list{ flex-direction: column; flex-wrap: nowrap; gap: 36px; }
	.blog_card{ width: 100%; }
	.blog_card_img{ width: 100%; height: auto; aspect-ratio: 320 / 213; }
	.blog_pager{ margin-top: 50px; }

	/* 詳細 */
	.blog_single{ padding: 42px 27px 54px; }
	.blog_single_img{ width: 100%; height: auto; aspect-ratio: 320 / 213; }
	.blog_single_inner{ width: 100%; margin-top: 28px; }
	.blog_single_ttl{ font-size: 20px; line-height: 1.5; }
	.blog_back{ margin-top: 40px; }
}
