@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;
}
/*------------------------------------------------------------
	fadeIn
------------------------------------------------------------*/
.fadeIn {
	opacity: 0;
	transform: translate(0px, 50px);
	transition: transform 1s, opacity 1s;
}

.fadeIn.on {
	transform: translate(0px, 0px);
	opacity: 1;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 124rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.5rem;
		width: auto !important;
		max-width: initial !important;
	}
}









/*------------------------------------------------------------
	pagetop
------------------------------------------------------------*/
.pageTop {
	position: fixed;
	right: 130px;
	bottom: 0;
	z-index: 100;
	display: none;
}
.pageTop a {
	color: #fff;
}
@media all and (min-width: 897px) {
	.pageTop a:hover {
		opacity: 0.7;
	}
	.comBtn a:hover {
		background: linear-gradient(45deg, #00A1A3 0%,#009A8E 40% ,#008346 75%, #008346 100%);
	}
}
@media all and (max-width: 896px) {
	.pageTop {
		right: 18px;
	}
}









