@charset "utf-8";
/* CSS Document */

body.single-student .page_ttl_wrap {
	padding: 3vw 0px 0px;
}

body.single-news .page_ttl_wrap {
	padding: 5vw 0px;
}

.sec_ttl {
	font-size: clamp(30px,5vw,50px);
	color: #B7002C;
}

.post_ttl {
	font-size: clamp(20px,2.4vw,39px);
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
	line-height: 140%;
	padding-bottom: 10px;
	border-bottom: 2px solid #B7002C;
	text-align: center;
}

.post_info {
	padding: 10px 0px;
	display: flex;
	align-items: center;
	gap: 10px 20px;
}

.post_content {
	max-width: 800px;
	width: 100%;
	margin: 1vw auto 10vw;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
}

.post_content > h2 {
	color: #B7002C;
	font-size: clamp(20px,3vw,30px);
	line-height: 140%;
}

.post_content > h3 {
	color: #242A39;
	border-bottom: 2px solid #B7002C;
	font-size: clamp(18px,2.6vw,26px);
	line-height: 140%;
	padding-bottom: 1vw;
	margin: 1.5vw 0px 0px;
}

.post_content > h4 {
	color: #B7002C;
	background: #F8E5EA;
	padding: 10px 30px;
	margin: 20px 0px;
	font-size: clamp(18px,2.6vw,26px);
}

.post_content > p {
	font-size: clamp(15px,1.8vw,18px);
	text-align: justify;
	margin: 0px 0px 3vw;
}

.post_content > p:nth-of-type(1) {
	margin: 0px;
}

.post_content > figure {
	margin: 0px 0px 2.5vw;
}

.post_content > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain !important;
	aspect-ratio: 0 !important;
}

.post_content .is-layout-flex {
	flex-wrap: wrap;
}

.post_content .wp-block-group {
	font-size: clamp(15px,1.8vw,18px);
}

.post_content a {
	color: #2ca9e1;
	text-decoration: underline;
}

.has-vivid-red-color {
	color: #B7002C;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
}

.page_link_wrap {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	align-items: center;
	max-width: 800px;
	width: 100%;
	margin: 3vw auto;
	border-width: 2px 0px;
	border-style: solid;
	border-color: #B7002C;
	padding: 2vw 0px;
	text-align: center;
}

.page_link_wrap > div {
	color: #B7002C;
	font-size: clamp(14px,2.2vw,22px);
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: bold;
	width: 100%;
	line-height: 130%;
}

.page_arrow {
	display: flex;
}

.page_next {
	justify-content: flex-end;
}

.page_arrow a {
	display: flex;
	align-items: center;
}

.page_arrow a::before,
.page_arrow a::after {
	content: '';
	background-repeat: no-repeat !important;
	display: inline-block;
	width: 2.3vw;
	height: 2.3vw;
	top: 1px;
	position: relative;
}

.page_prev a::before {
	background: url("../images/common/post_arrow_prev.svg");
	margin-right: 1vw;
}

.page_next a::after {
	background: url("../images/common/post_arrow_next.svg");
	margin-left: 1vw;
}


/* ---------------------------------------------------
画像横並び
--------------------------------------------------- */
.wp-block-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
	gap: 0px 8px;
	margin-bottom: 2.5vw;
}

.wp-block-image img {
	height: auto;
}


@media screen and (max-width: 600px) {
.page_arrow a::before,
.page_arrow a::after {
	width: 4.3vw;
	height: 4.3vw;
}

}






















