@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 */
.mincho {
	font-family: "Shippori Mincho", serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 108rem;
	max-width: 95%;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.5rem;
		width: auto;
		max-width: initial;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 2.8rem;
	color: #096E2F;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.72;
}
@media all and (min-width: 897px) and (max-width: 1024px) {
	.headLine01 {
		font-size: 3.512vw;
	}
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 2.2rem;
		font-size: 2.1rem;
		line-height: 1.79;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 7.9rem;
	position: relative;
	text-align: center;
	font-size: 3.6rem;
	font-weight: 600;
	color: #096E2F;
}
.headLine02::before {
	margin-top: 0.6rem;
	width: 23rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	aspect-ratio: 230/121;
	background: url(../img/common/ttl_bg01.png) no-repeat center center / 100%;
	content: '';
}
.headLine02 span {
	position: relative;
	z-index: 1;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 4.1rem;
		font-size: 2.4rem;
	}
	.headLine02::before {
		margin-top: 0;
		width: 11.4rem;
	}
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 1.8rem;
	font-size: 2.8rem;
	font-weight: 600;
	color: #096E2F;
}
@media all and (max-width: 896px) {
	.headLine03 {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	width: 30rem;
}
.comBtn a {
	padding: 1.1rem 3rem 1.1rem 1.4rem;
	display: block;
	position: relative;
	color: #096E2F;
	border: 0.1rem solid #096E2F;
}
.comBtn a::after {
	width: 0;
	height: 0;
	position: absolute;
	right: 0.6rem;
	top: 50%;
	border-style: solid;
	border-width: 0.6rem 1rem;
	border-color: transparent;
	border-left-color: #096E2F;
	box-sizing: border-box;
	transform: translateY(-50%);
	content: '';
	transition: 0.3s;
}
@media (hover:hover) {
	.comBtn a:hover {
		opacity: 1;
		color: #fff;
		background-color: #096E2F;
	}
	.comBtn a:hover::after {
		border-left-color: #fff;
	}
}
@media all and (max-width: 896px) {
	.comBtn {
		width: 24rem;
		margin: 0 auto;
	}
	.comBtn a {
		padding: 0.9rem 3rem 0.7rem 1.4rem;
	}
	.comBtn a::after {
		border-width: 0.5rem 0.9rem;
	}
}