@charset "utf-8";
.wrap1160 {
		max-width: 1160px;
		margin: 0 auto;
		padding: 0 30px;
}
.underL {
		position: relative;
}
.underL::after {
		content: '';
		display: block;
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100%;
		height: 1px;
		background: #F55282;
		transform-origin: left center;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0);
}
.underL.bgWht::after {
		background: #fff;
}
@media (hover: hover) {
		a:hover .underL::after {
				transform: scaleX(1);
		}
}
/* ============ */
.hrCenter {
		display: flex;
		justify-content: center;
}
/* ============ */
.mobileBr {
		display: none
}
@media(min-width: 961px) {
		.tabletBr {
				display: none
		}
}
@media(min-width: 767px) {
		.sbBr {
				display: none
		}
}
@media screen and (orientation: portrait) and (max-width: 600px) {
		.mobileBr {
				display: block
		}
}
/* ============ */
.fadeInNml {
		opacity: 0;
		transition: opacity 0.35s;
}
.fadeInNmlActive {
		opacity: 1;
}
.fadeInUp {
		opacity: 0;
		transform: translateY(80px);
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
}
.fadeInUpActive {
		opacity: 1;
		transform: translateY(0px);
}
.autoFadeIn {
		opacity: 0;
		animation: autoFadeIn 0.5s linear forwards;
		animation-delay: 0.2s;
}
.autoZoomIn {
		opacity: 0;
		transform: scale(1.2);
		animation: autoZoomIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
		animation-delay: 0.2s;
}
@keyframes autoFadeIn {
		0% {
				opacity: 0;
		}
		100% {
				opacity: 1;
		}
}
@keyframes autoZoomIn {
		0% {
				opacity: 0;
				transform: scale(1.2);
		}
		100% {
				opacity: 1;
				transform: scale(1);
		}
}