@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
	animation-duration: 2s;
	animation-fill-mode: both;
}

/* jquery.inview.js用css */
.iv,
.iv2 {
	opacity: 0;
}

/* エレメンター編集画面のみ無効化 */
/* 
.elementor-html .iv,
.elementor-html .iv2 {
	opacity: 1;
	animation: none !important;
}
*/

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}



@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 24px, 0);
		transform: translate3d(0, 24px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}