@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LYX */
/* 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;}
.plus {
	font-family: "M PLUS Rounded 1c", sans-serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	padding: 0 2rem;
	max-width: 135.6rem;
}
@media all and (max-width: 896px) {
	.content {
		max-width: 100% !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 4.4rem;
	padding-bottom: 2.8rem;
	text-align: center;
	background: url(../img/common/h_line01.png) no-repeat center bottom / 26.5rem;
}
.headLine01 img {
	margin: 0 auto 1.7rem;
	width: fit-content;
	display: block;
}
.headLine01 .jp {
	margin-right: 1.3rem;
	font-weight: 600;
	font-size: 3rem;
	letter-spacing: 0.075em;
	color: #5baf84;
}
.headLine01 .en {
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 3.5rem;
		padding-bottom: 2rem;
		min-width: 15rem;
		background-size: 15rem auto;
	}
	.headLine01 img {
		margin-bottom: 1rem;
		width: 3rem;
	}
	.headLine01 .jp {
		font-size: 2rem;
	}
	.headLine01 .en {
		font-size: 1.4rem;
	}
}
/*------------------------------------------------------------
	comNewsUl
------------------------------------------------------------*/
.comNewsUl {
	margin-bottom: 6.9rem;
}
.comNewsUl li:not(:last-child) {
	margin-bottom: 1.9rem;
}
.comNewsUl a {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.comNewsUl .lText {
	margin-right: 1.4rem;
	width: 19.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comNewsUl .time {
	flex: 1;
	font-size: 1.5rem;
	letter-spacing: 0.18em;
}
.comNewsUl .tagUl {
	width: 7rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.075em;
	color: #fff;
}
.comNewsUl .tagUl li {
	width: 7rem;
	padding: 0.2rem 0;
	border-radius: 1.2rem;
	background-color: #ED798D;
}
.comNewsUl .tagUl li:not(:last-child) {
	margin-bottom: 0.5rem;
}
.comNewsUl .rText {
	flex: 1;
	font-size: 1.4rem;
	letter-spacing: 0.075em;
	white-space: nowrap;
	overflow: hidden; 
	text-overflow: ellipsis; 
}
.comNewsUl a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.comNewsUl {
		margin-bottom: 4rem;
	}
	.comNewsUl > li {
		border-bottom: 1px solid #5BAF84;
	}
	.comNewsUl .tagUl {
		width: 66%;
		flex-wrap: wrap;
		display: flex;
		justify-content: right;
		gap: 0.3rem;
	}
	.comNewsUl .tagUl li:not(:last-child) {
		margin-bottom: 0;
	}
	.comNewsUl a {
		padding: 1rem 0;
		display: block;
	}
	.comNewsUl .lText {
		margin: 0 0 1rem;
		width: auto;
	}
	.comNewsUl .rText {
		line-height: 1.8;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	margin: 0 auto;
	width: 33rem;
}
.comBtn a {
	padding: 1rem 2.5rem;
	min-height: 7rem;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	background-color: #5BAF84;
	border-radius: 3.5rem;
}
.comBtn a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.comBtn {
		width: 22rem;
	}
	.comBtn a {
		padding: 0.5rem 2rem;
		min-height: 5rem;
		font-size: 1.6rem;
	}
}
/*------------------------------------------------------------
	comTel
------------------------------------------------------------*/
.comTel {
	padding-left: 2.7rem;
	margin-bottom: 1.8rem;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.075em;
	line-height: 1.3;
	font-family: "M PLUS Rounded 1c", sans-serif;
	background: url(../img/common/icon01.png) no-repeat left bottom 0.5rem / 2.1rem;
}
.comTel a {
	display: block;
	margin: 0 auto;
	width: fit-content;
	font-size: 2.7rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #6AB58E;
}
@media all and (max-width: 896px) {
	.comTel {
		padding-left: 2.7rem;
		margin-bottom: 1.8rem;
		width: fit-content;
		margin: 0 auto;
		font-size: 1.2rem;
		background-size: 1.7rem auto;
	}
	.comTel a {
		font-size: 2.2rem;
	}
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	transition: all .5s ease;
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0); 
}