@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 900px;
}
.com__btn a {
	margin: 0 auto;
	padding: 25px 20px 26px;
	max-width: 490px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	display: block;
	border: 1px solid #fff;
	border-radius: 44px;
	box-sizing: border-box;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	transition: all 0.3s;
	background-image: linear-gradient(to right, #98E1DA , #EBEB91);
}
@media all and (min-width: 897px) {
	.com__btn a:hover {
		box-shadow: none;
		transform: translateY(5px);
	}
	.com__btn a:active {
		box-shadow: none;
		transform: translateY(5px);
	}
}
@media all and (max-width: 896px) {
	.content {
		max-width: inherit;
	}
	.com__btn {
		padding: 0 23px 0 36px;
	}
	.com__btn a {
		padding: 15px 20px 17px;
		max-width: inherit;
	}
}
.animation {
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* head_line01 */
.head_line01 {
	padding-bottom: 33px;
	margin-bottom: 77px;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	position: relative;
}
.head_line01::after {
	width: 109px;
	height: 25px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: '';
	background: url(../../images/common/h_icon.png) no-repeat bottom center / 109px;
}
.head_line01 span {
	margin-bottom: 8px;
	display: block;
	font-size: 3.5rem;
	font-weight: bold;
	letter-spacing: 0.06em;
}
@media all and (max-width: 896px) {
	.head_line01 {
		padding-bottom: 22px;
		margin-bottom: 35px;
		font-size: 1.3rem;
	}
	.head_line01 span {
		margin-bottom: 5px;
		font-size: 2.9rem;
	}
}
.details__btn {
	z-index: 100;
	position: absolute;
	bottom: 198px;
	left: 50%;
	transform: translateX(-50%);
}
.details__btn a {
	padding: 10px 10px;
	display: block;
	width: 187px;
	color: #000000;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	box-sizing: border-box;
	border-radius: 50px;
	background-color: #fff;
	border: 2px solid #707070;
}
@media all and (max-width: 896px) {
	.details__btn {
		bottom: 120px;
	}
}




















