/* =========================================
   一覧ページ
   ========================================= */
.page-title {
	text-align:center;
	margin-top:3%;
	margin-bottom:2%;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #FE6564;
	font-size:35px;
	font-weight:700;
}
.blog-grid {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5%;
	padding: 0 3%;
}
.blog-card {
	width:18%;
	text-align:center;
	border: 1px solid;
    padding: 1%;
    border-radius: 10px;
	margin-bottom:3%;
}
.blog-card a {
	text-decoration:none;
	font-family: "Zen Maru Gothic", sans-serif;
	color:#585858;
}
.blog-card-title {
	font-size:20px;
	border-bottom:1px solid;
}
.blog-card-date {font-size:15px;}

/* =========================================
   シングルページ
   ========================================= */
.blog-single-container {
	width: 100%;
    max-width: 1400px;
    margin: 0 auto;
	padding:0 10%;
}
.blog-entry-title {
	text-align:center;
	margin-top:3%;
	margin-bottom:1%;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #FE6564;
	font-size:35px;
	font-weight:700;
}
.blog-date {
	display: block;
	text-align: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-bottom: 2%;
	font-size:15px;
}
.blog-flex {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	gap:5%;
}
.blog-entry-image {
	width:35%;
	height: fit-content;
}
.blog-entry-body {
	width:60%;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size:18px;
	text-align:justify;
	color:#585858;
}
.post-navigation {
	text-align: center;
    margin: 4% 0px;
}