@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;
}
/* fonts */
.tk-dnp-shuei-mgothic-std {
	font-family: "dnp-shuei-mgothic-std", sans-serif;
}
.tk-din-2014-rounded-variable {
	font-family: "din-2014-rounded-variable", sans-serif;
}
.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
}
.m-plus-rounded-1c-medium {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 500;
	font-style: normal;
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 5.2rem;
	font-size: 4rem;
	text-align: center;
	line-height: 1.375;
}
.headLine01 .big {
	display: block;
	font-size: 7.354rem;
	font-family: "din-2014-rounded-variable", sans-serif;
	line-height: 1;
}
@media all and (max-width: 767px) {
	.headLine01 {
		margin-bottom: 2rem;
		font-size: 2.4rem;
	}
	.headLine01 .big {
		font-size: 4.5rem;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
	min-height: 8.7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.48;
	background: #00B385;
	border-radius: 5rem;
	will-change: transform;
	transition: .2s cubic-bezier(.17, .67, .46, 2.14);
}
.comBtn a::after {
	position: absolute;
	right: 3.2rem;
	top: 50%;
	font-size: 1.6rem;
	transform: translateY(-50%);
	content: '>';
	transition: 0.3s;
}
@media all and (min-width: 768px) {
	.comBtn a:hover {
		transform: scale(1.02);
	}
}
@media all and (max-width: 767px) {
	.comBtn a {
		padding: 0.5rem 3rem;
		min-height: 5.3rem;
		font-size: 1.2rem;
	}
	.comBtn a::after {
		right: 1.9rem;
		font-size: 1rem;
	}
}