@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/* font */
.en {
	font-family: "Goldman", sans-serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 80rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 3rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	font-size: 3.6rem;
	font-weight: 400;
	text-align: center;
	font-family: "Goldman", sans-serif;
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 4rem;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.055em;
	text-align: center;
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin-bottom: 9.3rem;
	min-height: 24rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #EFEFEF;
	border-top: 10px solid #FFF57F;
}
.pageTitle .headLine01 {
	margin-bottom: 0 !important;
}
@media all and (max-width: 896px) {
	.pageTitle {
		margin-bottom: 5rem;
		min-height: 18rem;
	}
}
/*------------------------------------------------------------
	comNewsList
------------------------------------------------------------*/
.comNewsList {
	border-bottom: 0.1rem solid #583700;
}
.comNewsList li a {
	padding: 2.8rem 4rem 2.7rem 2rem;
	display: flex;
	position: relative;
	border-top: 0.1rem solid #583700;
}
.comNewsList li a::after {
	width: 0;
	height: 0;
	position: absolute;
	right: 2rem;
	top: 50%;
	border-left: 0.5rem solid #007D62;
	border-top: 0.4rem solid transparent;
	border-bottom: 0.4rem solid transparent;
	transform: translateY(-50%);
	box-sizing: border-box;
	content: '';
}
.comNewsList li a time {
	margin-right: 2rem;
	width: 16rem;
	font-weight: 400;
	font-family: "Goldman", sans-serif;
	letter-spacing: 0.05em;
}
.comNewsList li a span {
	flex: 1;
	letter-spacing: 0.055em;
}
@media all and (min-width: 897px) {
	.comNewsList li a span {
		-webkit-line-clamp: 1;
		text-overflow: -o-ellipsis-lastline;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
	}
	.comNewsList li a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.comNewsList li a {
		padding: 2.6rem 0 2.7rem;
		flex-direction: column;
		gap: 0.4rem;
	}
	.comNewsList li a::after {
		display: none;
	}
	.comNewsList li a time {
		margin-right: 0;
		width: 100%;
	}
	.comNewsList li a span {
		width: 100%;
		flex: initial;
	}
}
/*------------------------------------------------------------
	wp-pagenavi
------------------------------------------------------------*/
.wp-pagenavi {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
	width: 5rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #555;
	font-size: 1.6rem;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 400;
	border: 0.1rem solid #555;
	opacity: 1;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages,
.wp-pagenavi .extend {
	display: none;
}
@media all and (min-width: 897px) {
	.wp-pagenavi a:hover {
		opacity: 0.7;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
	padding: 1.8rem 3rem 1.8rem;
	position: relative;
	display: block;
	text-align: center;
	color: #fff;
	letter-spacing: 0.055em;
	background: #007D62;
}
.comBtn a::after {
	width: 0;
	height: 0;
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translateY(-50%);
	box-sizing: border-box;
	border-left: 0.5rem solid #fff;
	border-top: 0.4rem solid transparent;
	border-bottom: 0.4rem solid transparent;
	content: '';
}
.comBtn a:hover {
	border-radius: 5rem;
}
@media all and (max-width: 896px) {
	.comBtn a:hover {
		border-radius: 0;
	}
}