/*
  Skin Name: マテリアル
  Description: マテリアルデザインチックなCocoonスキンです。
  Skin URI: https://wp-cocoon.com/
  Author: みずかず
  Author URI: https://mizukazu.com/
  Screenshot URI: https://mizukazu-lab.work/wp-content/uploads/2020/12/screenshot.jpg
  Version: 1.0
  Priority: 9999000000
*/

/*以下にスタイルシートを記入してください*/

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
	animation-iteration-count: calc(var(--animate-repeat)*2);
}

.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
	animation-iteration-count: calc(var(--animate-repeat)*3);
}

.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay)*2);
	animation-delay: calc(var(--animate-delay)*2);
}

.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay)*3);
	animation-delay: calc(var(--animate-delay)*3);
}

.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay)*4);
	animation-delay: calc(var(--animate-delay)*4);
}

.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay)*5);
	animation-delay: calc(var(--animate-delay)*5);
}

.animate__animated.animate__faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-duration: calc(var(--animate-duration)/2);
	animation-duration: calc(var(--animate-duration)/2);
}

.animate__animated.animate__fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.8);
	animation-duration: calc(var(--animate-duration)*0.8);
}

.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration)*2);
	animation-duration: calc(var(--animate-duration)*2);
}

.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration)*3);
	animation-duration: calc(var(--animate-duration)*3);
}

.animate__bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	transform-origin: center bottom;
}

.animate__flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.animate__rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX;
}

.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY;
}

.animate__headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}

.animate__swing {
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

.animate__tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animate__wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

.animate__jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	transform-origin: center;
}

.animate__heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-duration: calc(var(--animate-duration)*1.3);
	animation-duration: calc(var(--animate-duration)*1.3);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown;
}

.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft;
}

.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight;
}

.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp;
}

.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown;
}

.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft;
}

.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight;
}

.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp;
}

.animate__bounceIn {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.75);
	animation-duration: calc(var(--animate-duration)*0.75);
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

.animate__bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

.animate__bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

.animate__bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

.animate__bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.75);
	animation-duration: calc(var(--animate-duration)*0.75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

.animate__bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

.animate__bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

.animate__bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

.animate__bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

.animate__fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.animate__fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.animate__fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

.animate__fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.animate__fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.animate__fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft;
}

.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight;
}

.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft;
}

.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight;
}

.animate__fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.animate__fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

.animate__fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

.animate__fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

.animate__fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

.animate__fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

.animate__fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

.animate__fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

.animate__fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft;
}

.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight;
}

.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight;
}

.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft;
}

.animate__animated.animate__flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

.animate__flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

.animate__flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

.animate__flipOutX {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.75);
	animation-duration: calc(var(--animate-duration)*0.75);
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

.animate__flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.75);
	animation-duration: calc(var(--animate-duration)*0.75);
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

.animate__rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
	transform-origin: center;
}

.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	transform-origin: left bottom;
}

.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	transform-origin: right bottom;
}

.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	transform-origin: left bottom;
}

.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	transform-origin: right bottom;
}

.animate__rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
	transform-origin: center;
}

.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	transform-origin: left bottom;
}

.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	transform-origin: right bottom;
}

.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	transform-origin: left bottom;
}

.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	transform-origin: right bottom;
}

.animate__hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration)*2);
	animation-duration: calc(var(--animate-duration)*2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	transform-origin: top left;
}

.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox;
}

.animate__rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

.animate__rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

.animate__zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

.animate__zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

.animate__zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

.animate__zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

.animate__zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	transform-origin: center bottom;
}

.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	transform-origin: left center;
}

.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	transform-origin: right center;
}

.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	transform-origin: center bottom;
}

.animate__slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

.animate__slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

.animate__slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

.animate__slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

.animate__slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

.animate__slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

.animate__slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

.animate__slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

/*-------------------------------
  変数
-------------------------------*/

/* ---------------------------- */

/*-------------------------------
  全体で共通するもの
-------------------------------*/

body {
	color: #4e4e4e;
	background-color: #EAEDF2;
	-webkit-animation: pageload 0.777s ease-in-out;
	        animation: pageload 0.777s ease-in-out;
}

/*-------------------------------
  ヘッダー
-------------------------------*/

.header {
	background: #3b4675;
	color: #fff;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}

.header .logo-text a {
	color: #fff;
}

/*-------------------------------
  トップページ
-------------------------------*/

.home .main,
.archive .main {
	background: #EAEDF2;
	padding: 0; /* 2カラムの時 */
}

.home .main .entry-card-wrap,
.archive .main .entry-card-wrap {
	background: #fff;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
	transition: .3s;
}

.home .main .entry-card-wrap:hover,
.archive .main .entry-card-wrap:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.home .main .ect-2-columns .entry-card-wrap,
.archive .main .ect-2-columns .entry-card-wrap {
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.home .main .ect-2-columns .entry-card-content,
.archive .main .ect-2-columns .entry-card-content {
	padding: 0 1.5%;
}

.home .main .ect-2-columns .entry-card-content .entry-card-meta,
.archive .main .ect-2-columns .entry-card-content .entry-card-meta {
	padding: 0 1.5%;
}

/* トップページのみアニメーション */

.home .header,
.home .navi {
	-webkit-animation: fadeInUp;
	        animation: fadeInUp;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}

.home .sidebar {
	-webkit-animation: fadeInRight;
	        animation: fadeInRight;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}

/*  */

/*-------------------------------
  サイドバー
-------------------------------*/

.sidebar {
	padding: 0 20px;
	background: #EAEDF2;
	border: none;
}

.sidebar aside {
	background: #fff;
	margin-bottom: 3rem;
}

.sidebar aside ul {
	padding: 0 12px;
}

.sidebar aside ul#recentcomments {
	padding: 0 12px 0 40px;
}

.sidebar aside.widget {
	padding-bottom: 12px;
}

.sidebar aside.widget_search {
	padding-bottom: 0;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}

.sidebar aside.widget_search .search-edit {
	border-radius: 0;
}

.sidebar h3 {
	background: #3b4675;
	color: #fff;
	border-radius: 0;
}

.sidebar .search-box {
	margin-top: 0;
}

/*-------------------------------
  フッター
-------------------------------*/

.footer {
	background: #3b4675;
	color: #fff;
	-webkit-animation: fadeInUp;
	        animation: fadeInUp;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}

.footer aside ul li a {
	color: #fff;
}

.footer .logo-text a {
	color: #fff;
}

/*-------------------------------
  アーカイブ
-------------------------------*/

.archive .archive-title {
	background: #3b4675;
	color: #fff;
	display: inline-block;
	padding: 4px 12px 4px 8px;
	-webkit-animation: headShake;
	        animation: headShake;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}

/*-------------------------------
  ナビゲーション
-------------------------------*/

.navi {
	background: #293150;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
}

.navi ul li a {
	color: #fff;
}

.navi ul li .sub-menu {
	background: #3b4675;
}

/*-------------------------------
  ページネーション
-------------------------------*/

.pagination-next {
	display: none;
}

.pagination .page-numbers {
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
	transition: .3s;
}

.pagination .page-numbers:hover {
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.pagination .current {
	background: #3b4675;
	color: #fff;
}

.pagination .current:hover {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
	transform: translateY(0px);
}

/*-------------------------------
  カテゴリー
-------------------------------*/

.cat-label {
	background: #ffcd44;
}

/*-------------------------------
  パンくずリスト
-------------------------------*/

.breadcrumb div a:hover {
	opacity: 0.8;
	transform: .3s;
}

/*-------------------------------
  プロフィール
-------------------------------*/

.sidebar aside.widget_author_box {
	padding-bottom: 0;
}

.sidebar aside.widget_author_box .author-box {
	border-radius: 0;
}

/*-------------------------------
  ボックス関連
-------------------------------*/

.sidebar aside.widget_box_menu {
	padding-bottom: 0;
}

.sidebar aside.widget_box_menu .box-menu-icon {
	color: #293150;
}

/*-------------------------------
  SNSフォローボタン
-------------------------------*/

.sidebar aside.widget_sns_follow_buttons {
	padding-bottom: 0;
}

/*-------------------------------
  サイドバーのCTAボックス
-------------------------------*/

.sidebar aside.widget_cta_box {
	padding-bottom: 0;
}

/*-------------------------------
  フロントページのタブ
-------------------------------*/

.index-tab-buttons {
	margin-top: 0;
}

.index-tab-buttons .index-tab-button {
	border-radius: 0;
	min-width: calc(100% / 4 - 3px);
}

.list-more-button {
	background: #3b4675;
	color: #fff;
	border: none;
	border-radius: 0;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
	transition: .3s;
}

.list-more-button:hover {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
	transform: translateY(-4px);
}

/*-------------------------------
  記事の見出し
-------------------------------*/

.article h2 {
	background: #3b4675;
	color: #fff;
}

.article h3 {
	border-left: 7px solid #3b4675;
}

.article h4 {
	border-top: 2px solid #3b4675;
	border-bottom: 2px solid #3b4675;
}

.article h5 {
	border-bottom: 2px solid #3b4675;
}

.article h6 {
	border-bottom: 1px solid #3b4675;
}

/*-------------------------------
  CTAボックス
-------------------------------*/

.cta-box {
	background: #6473AF;
}

@media screen and (min-width: 1260px) {

.content {
	margin-top: 48px;
}

.ect-entry-card-wrap .main {
	width: 850px;
}

}

@media (prefers-reduced-motion: reduce), print {

.animate__animated {
	-webkit-animation-duration: 1ms !important;
	animation-duration: 1ms !important;
	transition-duration: 1ms !important;
	-webkit-animation-iteration-count: 1 !important;
	animation-iteration-count: 1 !important;
}

.animate__animated[class*=Out] {
	opacity: 0;
}

}

@-webkit-keyframes bounce {

0%,20%,53%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translateZ(0);
}

40%,43% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -30px, 0) scaleY(1.1);
}

70% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -15px, 0) scaleY(1.05);
}

80% {
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translateZ(0) scaleY(0.95);
}

90% {
	transform: translate3d(0, -4px, 0) scaleY(1.02);
}

}

@keyframes bounce {

0%,20%,53%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translateZ(0);
}

40%,43% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -30px, 0) scaleY(1.1);
}

70% {
	-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	transform: translate3d(0, -15px, 0) scaleY(1.05);
}

80% {
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translateZ(0) scaleY(0.95);
}

90% {
	transform: translate3d(0, -4px, 0) scaleY(1.02);
}

}

@-webkit-keyframes flash {

0%,50%,to {
	opacity: 1;
}

25%,75% {
	opacity: 0;
}

}

@keyframes flash {

0%,50%,to {
	opacity: 1;
}

25%,75% {
	opacity: 0;
}

}

@-webkit-keyframes pulse {

0% {
	transform: scaleX(1);
}

50% {
	transform: scale3d(1.05, 1.05, 1.05);
}

to {
	transform: scaleX(1);
}

}

@keyframes pulse {

0% {
	transform: scaleX(1);
}

50% {
	transform: scale3d(1.05, 1.05, 1.05);
}

to {
	transform: scaleX(1);
}

}

@-webkit-keyframes rubberBand {

0% {
	transform: scaleX(1);
}

30% {
	transform: scale3d(1.25, 0.75, 1);
}

40% {
	transform: scale3d(0.75, 1.25, 1);
}

50% {
	transform: scale3d(1.15, 0.85, 1);
}

65% {
	transform: scale3d(0.95, 1.05, 1);
}

75% {
	transform: scale3d(1.05, 0.95, 1);
}

to {
	transform: scaleX(1);
}

}

@keyframes rubberBand {

0% {
	transform: scaleX(1);
}

30% {
	transform: scale3d(1.25, 0.75, 1);
}

40% {
	transform: scale3d(0.75, 1.25, 1);
}

50% {
	transform: scale3d(1.15, 0.85, 1);
}

65% {
	transform: scale3d(0.95, 1.05, 1);
}

75% {
	transform: scale3d(1.05, 0.95, 1);
}

to {
	transform: scaleX(1);
}

}

@-webkit-keyframes shakeX {

0%,to {
	transform: translateZ(0);
}

10%,30%,50%,70%,90% {
	transform: translate3d(-10px, 0, 0);
}

20%,40%,60%,80% {
	transform: translate3d(10px, 0, 0);
}

}

@keyframes shakeX {

0%,to {
	transform: translateZ(0);
}

10%,30%,50%,70%,90% {
	transform: translate3d(-10px, 0, 0);
}

20%,40%,60%,80% {
	transform: translate3d(10px, 0, 0);
}

}

@-webkit-keyframes shakeY {

0%,to {
	transform: translateZ(0);
}

10%,30%,50%,70%,90% {
	transform: translate3d(0, -10px, 0);
}

20%,40%,60%,80% {
	transform: translate3d(0, 10px, 0);
}

}

@keyframes shakeY {

0%,to {
	transform: translateZ(0);
}

10%,30%,50%,70%,90% {
	transform: translate3d(0, -10px, 0);
}

20%,40%,60%,80% {
	transform: translate3d(0, 10px, 0);
}

}

@-webkit-keyframes headShake {

0% {
	transform: translateX(0);
}

6.5% {
	transform: translateX(-6px) rotateY(-9deg);
}

18.5% {
	transform: translateX(5px) rotateY(7deg);
}

31.5% {
	transform: translateX(-3px) rotateY(-5deg);
}

43.5% {
	transform: translateX(2px) rotateY(3deg);
}

50% {
	transform: translateX(0);
}

}

@keyframes headShake {

0% {
	transform: translateX(0);
}

6.5% {
	transform: translateX(-6px) rotateY(-9deg);
}

18.5% {
	transform: translateX(5px) rotateY(7deg);
}

31.5% {
	transform: translateX(-3px) rotateY(-5deg);
}

43.5% {
	transform: translateX(2px) rotateY(3deg);
}

50% {
	transform: translateX(0);
}

}

@-webkit-keyframes swing {

20% {
	transform: rotate(15deg);
}

40% {
	transform: rotate(-10deg);
}

60% {
	transform: rotate(5deg);
}

80% {
	transform: rotate(-5deg);
}

to {
	transform: rotate(0deg);
}

}

@keyframes swing {

20% {
	transform: rotate(15deg);
}

40% {
	transform: rotate(-10deg);
}

60% {
	transform: rotate(5deg);
}

80% {
	transform: rotate(-5deg);
}

to {
	transform: rotate(0deg);
}

}

@-webkit-keyframes tada {

0% {
	transform: scaleX(1);
}

10%,20% {
	transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
}

30%,50%,70%,90% {
	transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
}

40%,60%,80% {
	transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
}

to {
	transform: scaleX(1);
}

}

@keyframes tada {

0% {
	transform: scaleX(1);
}

10%,20% {
	transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
}

30%,50%,70%,90% {
	transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
}

40%,60%,80% {
	transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
}

to {
	transform: scaleX(1);
}

}

@-webkit-keyframes wobble {

0% {
	transform: translateZ(0);
}

15% {
	transform: translate3d(-25%, 0, 0) rotate(-5deg);
}

30% {
	transform: translate3d(20%, 0, 0) rotate(3deg);
}

45% {
	transform: translate3d(-15%, 0, 0) rotate(-3deg);
}

60% {
	transform: translate3d(10%, 0, 0) rotate(2deg);
}

75% {
	transform: translate3d(-5%, 0, 0) rotate(-1deg);
}

to {
	transform: translateZ(0);
}

}

@keyframes wobble {

0% {
	transform: translateZ(0);
}

15% {
	transform: translate3d(-25%, 0, 0) rotate(-5deg);
}

30% {
	transform: translate3d(20%, 0, 0) rotate(3deg);
}

45% {
	transform: translate3d(-15%, 0, 0) rotate(-3deg);
}

60% {
	transform: translate3d(10%, 0, 0) rotate(2deg);
}

75% {
	transform: translate3d(-5%, 0, 0) rotate(-1deg);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes jello {

0%,11.1%,to {
	transform: translateZ(0);
}

22.2% {
	transform: skewX(-12.5deg) skewY(-12.5deg);
}

33.3% {
	transform: skewX(6.25deg) skewY(6.25deg);
}

44.4% {
	transform: skewX(-3.125deg) skewY(-3.125deg);
}

55.5% {
	transform: skewX(1.5625deg) skewY(1.5625deg);
}

66.6% {
	transform: skewX(-0.78125deg) skewY(-0.78125deg);
}

77.7% {
	transform: skewX(0.39063deg) skewY(0.39063deg);
}

88.8% {
	transform: skewX(-0.19531deg) skewY(-0.19531deg);
}

}

@keyframes jello {

0%,11.1%,to {
	transform: translateZ(0);
}

22.2% {
	transform: skewX(-12.5deg) skewY(-12.5deg);
}

33.3% {
	transform: skewX(6.25deg) skewY(6.25deg);
}

44.4% {
	transform: skewX(-3.125deg) skewY(-3.125deg);
}

55.5% {
	transform: skewX(1.5625deg) skewY(1.5625deg);
}

66.6% {
	transform: skewX(-0.78125deg) skewY(-0.78125deg);
}

77.7% {
	transform: skewX(0.39063deg) skewY(0.39063deg);
}

88.8% {
	transform: skewX(-0.19531deg) skewY(-0.19531deg);
}

}

@-webkit-keyframes heartBeat {

0% {
	transform: scale(1);
}

14% {
	transform: scale(1.3);
}

28% {
	transform: scale(1);
}

42% {
	transform: scale(1.3);
}

70% {
	transform: scale(1);
}

}

@keyframes heartBeat {

0% {
	transform: scale(1);
}

14% {
	transform: scale(1.3);
}

28% {
	transform: scale(1);
}

42% {
	transform: scale(1.3);
}

70% {
	transform: scale(1);
}

}

@-webkit-keyframes backInDown {

0% {
	transform: translateY(-1200px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@keyframes backInDown {

0% {
	transform: translateY(-1200px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@-webkit-keyframes backInLeft {

0% {
	transform: translateX(-2000px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@keyframes backInLeft {

0% {
	transform: translateX(-2000px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@-webkit-keyframes backInRight {

0% {
	transform: translateX(2000px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@keyframes backInRight {

0% {
	transform: translateX(2000px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@-webkit-keyframes backInUp {

0% {
	transform: translateY(1200px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@keyframes backInUp {

0% {
	transform: translateY(1200px) scale(0.7);
	opacity: .7;
}

80% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: scale(1);
	opacity: 1;
}

}

@-webkit-keyframes backOutDown {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateY(700px) scale(0.7);
	opacity: .7;
}

}

@keyframes backOutDown {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateY(700px) scale(0.7);
	opacity: .7;
}

}

@-webkit-keyframes backOutLeft {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateX(-2000px) scale(0.7);
	opacity: .7;
}

}

@keyframes backOutLeft {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateX(-2000px) scale(0.7);
	opacity: .7;
}

}

@-webkit-keyframes backOutRight {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateX(2000px) scale(0.7);
	opacity: .7;
}

}

@keyframes backOutRight {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateX(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateX(2000px) scale(0.7);
	opacity: .7;
}

}

@-webkit-keyframes backOutUp {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateY(-700px) scale(0.7);
	opacity: .7;
}

}

@keyframes backOutUp {

0% {
	transform: scale(1);
	opacity: 1;
}

20% {
	transform: translateY(0) scale(0.7);
	opacity: .7;
}

to {
	transform: translateY(-700px) scale(0.7);
	opacity: .7;
}

}

@-webkit-keyframes bounceIn {

0%,20%,40%,60%,80%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

20% {
	transform: scale3d(1.1, 1.1, 1.1);
}

40% {
	transform: scale3d(0.9, 0.9, 0.9);
}

60% {
	opacity: 1;
	transform: scale3d(1.03, 1.03, 1.03);
}

80% {
	transform: scale3d(0.97, 0.97, 0.97);
}

to {
	opacity: 1;
	transform: scaleX(1);
}

}

@keyframes bounceIn {

0%,20%,40%,60%,80%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

20% {
	transform: scale3d(1.1, 1.1, 1.1);
}

40% {
	transform: scale3d(0.9, 0.9, 0.9);
}

60% {
	opacity: 1;
	transform: scale3d(1.03, 1.03, 1.03);
}

80% {
	transform: scale3d(0.97, 0.97, 0.97);
}

to {
	opacity: 1;
	transform: scaleX(1);
}

}

@-webkit-keyframes bounceInDown {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(0, -3000px, 0) scaleY(3);
}

60% {
	opacity: 1;
	transform: translate3d(0, 25px, 0) scaleY(0.9);
}

75% {
	transform: translate3d(0, -10px, 0) scaleY(0.95);
}

90% {
	transform: translate3d(0, 5px, 0) scaleY(0.985);
}

to {
	transform: translateZ(0);
}

}

@keyframes bounceInDown {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(0, -3000px, 0) scaleY(3);
}

60% {
	opacity: 1;
	transform: translate3d(0, 25px, 0) scaleY(0.9);
}

75% {
	transform: translate3d(0, -10px, 0) scaleY(0.95);
}

90% {
	transform: translate3d(0, 5px, 0) scaleY(0.985);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes bounceInLeft {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(-3000px, 0, 0) scaleX(3);
}

60% {
	opacity: 1;
	transform: translate3d(25px, 0, 0) scaleX(1);
}

75% {
	transform: translate3d(-10px, 0, 0) scaleX(0.98);
}

90% {
	transform: translate3d(5px, 0, 0) scaleX(0.995);
}

to {
	transform: translateZ(0);
}

}

@keyframes bounceInLeft {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(-3000px, 0, 0) scaleX(3);
}

60% {
	opacity: 1;
	transform: translate3d(25px, 0, 0) scaleX(1);
}

75% {
	transform: translate3d(-10px, 0, 0) scaleX(0.98);
}

90% {
	transform: translate3d(5px, 0, 0) scaleX(0.995);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes bounceInRight {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(3000px, 0, 0) scaleX(3);
}

60% {
	opacity: 1;
	transform: translate3d(-25px, 0, 0) scaleX(1);
}

75% {
	transform: translate3d(10px, 0, 0) scaleX(0.98);
}

90% {
	transform: translate3d(-5px, 0, 0) scaleX(0.995);
}

to {
	transform: translateZ(0);
}

}

@keyframes bounceInRight {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(3000px, 0, 0) scaleX(3);
}

60% {
	opacity: 1;
	transform: translate3d(-25px, 0, 0) scaleX(1);
}

75% {
	transform: translate3d(10px, 0, 0) scaleX(0.98);
}

90% {
	transform: translate3d(-5px, 0, 0) scaleX(0.995);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes bounceInUp {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(0, 3000px, 0) scaleY(5);
}

60% {
	opacity: 1;
	transform: translate3d(0, -20px, 0) scaleY(0.9);
}

75% {
	transform: translate3d(0, 10px, 0) scaleY(0.95);
}

90% {
	transform: translate3d(0, -5px, 0) scaleY(0.985);
}

to {
	transform: translateZ(0);
}

}

@keyframes bounceInUp {

0%,60%,75%,90%,to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

0% {
	opacity: 0;
	transform: translate3d(0, 3000px, 0) scaleY(5);
}

60% {
	opacity: 1;
	transform: translate3d(0, -20px, 0) scaleY(0.9);
}

75% {
	transform: translate3d(0, 10px, 0) scaleY(0.95);
}

90% {
	transform: translate3d(0, -5px, 0) scaleY(0.985);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes bounceOut {

20% {
	transform: scale3d(0.9, 0.9, 0.9);
}

50%,55% {
	opacity: 1;
	transform: scale3d(1.1, 1.1, 1.1);
}

to {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

}

@keyframes bounceOut {

20% {
	transform: scale3d(0.9, 0.9, 0.9);
}

50%,55% {
	opacity: 1;
	transform: scale3d(1.1, 1.1, 1.1);
}

to {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

}

@-webkit-keyframes bounceOutDown {

20% {
	transform: translate3d(0, 10px, 0) scaleY(0.985);
}

40%,45% {
	opacity: 1;
	transform: translate3d(0, -20px, 0) scaleY(0.9);
}

to {
	opacity: 0;
	transform: translate3d(0, 2000px, 0) scaleY(3);
}

}

@keyframes bounceOutDown {

20% {
	transform: translate3d(0, 10px, 0) scaleY(0.985);
}

40%,45% {
	opacity: 1;
	transform: translate3d(0, -20px, 0) scaleY(0.9);
}

to {
	opacity: 0;
	transform: translate3d(0, 2000px, 0) scaleY(3);
}

}

@-webkit-keyframes bounceOutLeft {

20% {
	opacity: 1;
	transform: translate3d(20px, 0, 0) scaleX(0.9);
}

to {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0) scaleX(2);
}

}

@keyframes bounceOutLeft {

20% {
	opacity: 1;
	transform: translate3d(20px, 0, 0) scaleX(0.9);
}

to {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0) scaleX(2);
}

}

@-webkit-keyframes bounceOutRight {

20% {
	opacity: 1;
	transform: translate3d(-20px, 0, 0) scaleX(0.9);
}

to {
	opacity: 0;
	transform: translate3d(2000px, 0, 0) scaleX(2);
}

}

@keyframes bounceOutRight {

20% {
	opacity: 1;
	transform: translate3d(-20px, 0, 0) scaleX(0.9);
}

to {
	opacity: 0;
	transform: translate3d(2000px, 0, 0) scaleX(2);
}

}

@-webkit-keyframes bounceOutUp {

20% {
	transform: translate3d(0, -10px, 0) scaleY(0.985);
}

40%,45% {
	opacity: 1;
	transform: translate3d(0, 20px, 0) scaleY(0.9);
}

to {
	opacity: 0;
	transform: translate3d(0, -2000px, 0) scaleY(3);
}

}

@keyframes bounceOutUp {

20% {
	transform: translate3d(0, -10px, 0) scaleY(0.985);
}

40%,45% {
	opacity: 1;
	transform: translate3d(0, 20px, 0) scaleY(0.9);
}

to {
	opacity: 0;
	transform: translate3d(0, -2000px, 0) scaleY(3);
}

}

@-webkit-keyframes fadeIn {

0% {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fadeIn {

0% {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@-webkit-keyframes fadeInDown {

0% {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInDown {

0% {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInDownBig {

0% {
	opacity: 0;
	transform: translate3d(0, -2000px, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInDownBig {

0% {
	opacity: 0;
	transform: translate3d(0, -2000px, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInLeftBig {

0% {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInLeftBig {

0% {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInRight {

0% {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInRight {

0% {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInRightBig {

0% {
	opacity: 0;
	transform: translate3d(2000px, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInRightBig {

0% {
	opacity: 0;
	transform: translate3d(2000px, 0, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInUp {

0% {
	opacity: 0;
	transform: translate3d(0, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInUp {

0% {
	opacity: 0;
	transform: translate3d(0, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInUpBig {

0% {
	opacity: 0;
	transform: translate3d(0, 2000px, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInUpBig {

0% {
	opacity: 0;
	transform: translate3d(0, 2000px, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInTopLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInTopLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInTopRight {

0% {
	opacity: 0;
	transform: translate3d(100%, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInTopRight {

0% {
	opacity: 0;
	transform: translate3d(100%, -100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInBottomLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInBottomLeft {

0% {
	opacity: 0;
	transform: translate3d(-100%, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInBottomRight {

0% {
	opacity: 0;
	transform: translate3d(100%, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes fadeInBottomRight {

0% {
	opacity: 0;
	transform: translate3d(100%, 100%, 0);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeOut {

0% {
	opacity: 1;
}

to {
	opacity: 0;
}

}

@keyframes fadeOut {

0% {
	opacity: 1;
}

to {
	opacity: 0;
}

}

@-webkit-keyframes fadeOutDown {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, 100%, 0);
}

}

@keyframes fadeOutDown {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, 100%, 0);
}

}

@-webkit-keyframes fadeOutDownBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, 2000px, 0);
}

}

@keyframes fadeOutDownBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, 2000px, 0);
}

}

@-webkit-keyframes fadeOutLeft {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

}

@keyframes fadeOutLeft {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(-100%, 0, 0);
}

}

@-webkit-keyframes fadeOutLeftBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0);
}

}

@keyframes fadeOutLeftBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(-2000px, 0, 0);
}

}

@-webkit-keyframes fadeOutRight {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

}

@keyframes fadeOutRight {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(100%, 0, 0);
}

}

@-webkit-keyframes fadeOutRightBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(2000px, 0, 0);
}

}

@keyframes fadeOutRightBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(2000px, 0, 0);
}

}

@-webkit-keyframes fadeOutUp {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}

}

@keyframes fadeOutUp {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}

}

@-webkit-keyframes fadeOutUpBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, -2000px, 0);
}

}

@keyframes fadeOutUpBig {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(0, -2000px, 0);
}

}

@-webkit-keyframes fadeOutTopLeft {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(-100%, -100%, 0);
}

}

@keyframes fadeOutTopLeft {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(-100%, -100%, 0);
}

}

@-webkit-keyframes fadeOutTopRight {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(100%, -100%, 0);
}

}

@keyframes fadeOutTopRight {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(100%, -100%, 0);
}

}

@-webkit-keyframes fadeOutBottomRight {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(100%, 100%, 0);
}

}

@keyframes fadeOutBottomRight {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(100%, 100%, 0);
}

}

@-webkit-keyframes fadeOutBottomLeft {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(-100%, 100%, 0);
}

}

@keyframes fadeOutBottomLeft {

0% {
	opacity: 1;
	transform: translateZ(0);
}

to {
	opacity: 0;
	transform: translate3d(-100%, 100%, 0);
}

}

@-webkit-keyframes flip {

0% {
	transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

40% {
	transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

50% {
	transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

80% {
	transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

to {
	transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

}

@keyframes flip {

0% {
	transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

40% {
	transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

50% {
	transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

80% {
	transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

to {
	transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

}

@-webkit-keyframes flipInX {

0% {
	transform: perspective(400px) rotateX(90deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	opacity: 0;
}

40% {
	transform: perspective(400px) rotateX(-20deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

60% {
	transform: perspective(400px) rotateX(10deg);
	opacity: 1;
}

80% {
	transform: perspective(400px) rotateX(-5deg);
}

to {
	transform: perspective(400px);
}

}

@keyframes flipInX {

0% {
	transform: perspective(400px) rotateX(90deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	opacity: 0;
}

40% {
	transform: perspective(400px) rotateX(-20deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

60% {
	transform: perspective(400px) rotateX(10deg);
	opacity: 1;
}

80% {
	transform: perspective(400px) rotateX(-5deg);
}

to {
	transform: perspective(400px);
}

}

@-webkit-keyframes flipInY {

0% {
	transform: perspective(400px) rotateY(90deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	opacity: 0;
}

40% {
	transform: perspective(400px) rotateY(-20deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

60% {
	transform: perspective(400px) rotateY(10deg);
	opacity: 1;
}

80% {
	transform: perspective(400px) rotateY(-5deg);
}

to {
	transform: perspective(400px);
}

}

@keyframes flipInY {

0% {
	transform: perspective(400px) rotateY(90deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	opacity: 0;
}

40% {
	transform: perspective(400px) rotateY(-20deg);
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

60% {
	transform: perspective(400px) rotateY(10deg);
	opacity: 1;
}

80% {
	transform: perspective(400px) rotateY(-5deg);
}

to {
	transform: perspective(400px);
}

}

@-webkit-keyframes flipOutX {

0% {
	transform: perspective(400px);
}

30% {
	transform: perspective(400px) rotateX(-20deg);
	opacity: 1;
}

to {
	transform: perspective(400px) rotateX(90deg);
	opacity: 0;
}

}

@keyframes flipOutX {

0% {
	transform: perspective(400px);
}

30% {
	transform: perspective(400px) rotateX(-20deg);
	opacity: 1;
}

to {
	transform: perspective(400px) rotateX(90deg);
	opacity: 0;
}

}

@-webkit-keyframes flipOutY {

0% {
	transform: perspective(400px);
}

30% {
	transform: perspective(400px) rotateY(-15deg);
	opacity: 1;
}

to {
	transform: perspective(400px) rotateY(90deg);
	opacity: 0;
}

}

@keyframes flipOutY {

0% {
	transform: perspective(400px);
}

30% {
	transform: perspective(400px) rotateY(-15deg);
	opacity: 1;
}

to {
	transform: perspective(400px) rotateY(90deg);
	opacity: 0;
}

}

@-webkit-keyframes lightSpeedInRight {

0% {
	transform: translate3d(100%, 0, 0) skewX(-30deg);
	opacity: 0;
}

60% {
	transform: skewX(20deg);
	opacity: 1;
}

80% {
	transform: skewX(-5deg);
}

to {
	transform: translateZ(0);
}

}

@keyframes lightSpeedInRight {

0% {
	transform: translate3d(100%, 0, 0) skewX(-30deg);
	opacity: 0;
}

60% {
	transform: skewX(20deg);
	opacity: 1;
}

80% {
	transform: skewX(-5deg);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes lightSpeedInLeft {

0% {
	transform: translate3d(-100%, 0, 0) skewX(30deg);
	opacity: 0;
}

60% {
	transform: skewX(-20deg);
	opacity: 1;
}

80% {
	transform: skewX(5deg);
}

to {
	transform: translateZ(0);
}

}

@keyframes lightSpeedInLeft {

0% {
	transform: translate3d(-100%, 0, 0) skewX(30deg);
	opacity: 0;
}

60% {
	transform: skewX(-20deg);
	opacity: 1;
}

80% {
	transform: skewX(5deg);
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes lightSpeedOutRight {

0% {
	opacity: 1;
}

to {
	transform: translate3d(100%, 0, 0) skewX(30deg);
	opacity: 0;
}

}

@keyframes lightSpeedOutRight {

0% {
	opacity: 1;
}

to {
	transform: translate3d(100%, 0, 0) skewX(30deg);
	opacity: 0;
}

}

@-webkit-keyframes lightSpeedOutLeft {

0% {
	opacity: 1;
}

to {
	transform: translate3d(-100%, 0, 0) skewX(-30deg);
	opacity: 0;
}

}

@keyframes lightSpeedOutLeft {

0% {
	opacity: 1;
}

to {
	transform: translate3d(-100%, 0, 0) skewX(-30deg);
	opacity: 0;
}

}

@-webkit-keyframes rotateIn {

0% {
	transform: rotate(-200deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@keyframes rotateIn {

0% {
	transform: rotate(-200deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@-webkit-keyframes rotateInDownLeft {

0% {
	transform: rotate(-45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@keyframes rotateInDownLeft {

0% {
	transform: rotate(-45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@-webkit-keyframes rotateInDownRight {

0% {
	transform: rotate(45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@keyframes rotateInDownRight {

0% {
	transform: rotate(45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@-webkit-keyframes rotateInUpLeft {

0% {
	transform: rotate(45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@keyframes rotateInUpLeft {

0% {
	transform: rotate(45deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@-webkit-keyframes rotateInUpRight {

0% {
	transform: rotate(-90deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@keyframes rotateInUpRight {

0% {
	transform: rotate(-90deg);
	opacity: 0;
}

to {
	transform: translateZ(0);
	opacity: 1;
}

}

@-webkit-keyframes rotateOut {

0% {
	opacity: 1;
}

to {
	transform: rotate(200deg);
	opacity: 0;
}

}

@keyframes rotateOut {

0% {
	opacity: 1;
}

to {
	transform: rotate(200deg);
	opacity: 0;
}

}

@-webkit-keyframes rotateOutDownLeft {

0% {
	opacity: 1;
}

to {
	transform: rotate(45deg);
	opacity: 0;
}

}

@keyframes rotateOutDownLeft {

0% {
	opacity: 1;
}

to {
	transform: rotate(45deg);
	opacity: 0;
}

}

@-webkit-keyframes rotateOutDownRight {

0% {
	opacity: 1;
}

to {
	transform: rotate(-45deg);
	opacity: 0;
}

}

@keyframes rotateOutDownRight {

0% {
	opacity: 1;
}

to {
	transform: rotate(-45deg);
	opacity: 0;
}

}

@-webkit-keyframes rotateOutUpLeft {

0% {
	opacity: 1;
}

to {
	transform: rotate(-45deg);
	opacity: 0;
}

}

@keyframes rotateOutUpLeft {

0% {
	opacity: 1;
}

to {
	transform: rotate(-45deg);
	opacity: 0;
}

}

@-webkit-keyframes rotateOutUpRight {

0% {
	opacity: 1;
}

to {
	transform: rotate(90deg);
	opacity: 0;
}

}

@keyframes rotateOutUpRight {

0% {
	opacity: 1;
}

to {
	transform: rotate(90deg);
	opacity: 0;
}

}

@-webkit-keyframes hinge {

0% {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

20%,60% {
	transform: rotate(80deg);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

40%,80% {
	transform: rotate(60deg);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	opacity: 1;
}

to {
	transform: translate3d(0, 700px, 0);
	opacity: 0;
}

}

@keyframes hinge {

0% {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

20%,60% {
	transform: rotate(80deg);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

40%,80% {
	transform: rotate(60deg);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	opacity: 1;
}

to {
	transform: translate3d(0, 700px, 0);
	opacity: 0;
}

}

@-webkit-keyframes jackInTheBox {

0% {
	opacity: 0;
	transform: scale(0.1) rotate(30deg);
	transform-origin: center bottom;
}

50% {
	transform: rotate(-10deg);
}

70% {
	transform: rotate(3deg);
}

to {
	opacity: 1;
	transform: scale(1);
}

}

@keyframes jackInTheBox {

0% {
	opacity: 0;
	transform: scale(0.1) rotate(30deg);
	transform-origin: center bottom;
}

50% {
	transform: rotate(-10deg);
}

70% {
	transform: rotate(3deg);
}

to {
	opacity: 1;
	transform: scale(1);
}

}

@-webkit-keyframes rollIn {

0% {
	opacity: 0;
	transform: translate3d(-100%, 0, 0) rotate(-120deg);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@keyframes rollIn {

0% {
	opacity: 0;
	transform: translate3d(-100%, 0, 0) rotate(-120deg);
}

to {
	opacity: 1;
	transform: translateZ(0);
}

}

@-webkit-keyframes rollOut {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(100%, 0, 0) rotate(120deg);
}

}

@keyframes rollOut {

0% {
	opacity: 1;
}

to {
	opacity: 0;
	transform: translate3d(100%, 0, 0) rotate(120deg);
}

}

@-webkit-keyframes zoomIn {

0% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

50% {
	opacity: 1;
}

}

@keyframes zoomIn {

0% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

50% {
	opacity: 1;
}

}

@-webkit-keyframes zoomInDown {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomInDown {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes zoomInLeft {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomInLeft {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes zoomInRight {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomInRight {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes zoomInUp {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomInUp {

0% {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

60% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes zoomOut {

0% {
	opacity: 1;
}

50% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

to {
	opacity: 0;
}

}

@keyframes zoomOut {

0% {
	opacity: 1;
}

50% {
	opacity: 0;
	transform: scale3d(0.3, 0.3, 0.3);
}

to {
	opacity: 0;
}

}

@-webkit-keyframes zoomOutDown {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

to {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomOutDown {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

to {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes zoomOutLeft {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}

to {
	opacity: 0;
	transform: scale(0.1) translate3d(-2000px, 0, 0);
}

}

@keyframes zoomOutLeft {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}

to {
	opacity: 0;
	transform: scale(0.1) translate3d(-2000px, 0, 0);
}

}

@-webkit-keyframes zoomOutRight {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}

to {
	opacity: 0;
	transform: scale(0.1) translate3d(2000px, 0, 0);
}

}

@keyframes zoomOutRight {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}

to {
	opacity: 0;
	transform: scale(0.1) translate3d(2000px, 0, 0);
}

}

@-webkit-keyframes zoomOutUp {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

to {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@keyframes zoomOutUp {

40% {
	opacity: 1;
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

to {
	opacity: 0;
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}

}

@-webkit-keyframes slideInDown {

0% {
	transform: translate3d(0, -100%, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@keyframes slideInDown {

0% {
	transform: translate3d(0, -100%, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes slideInLeft {

0% {
	transform: translate3d(-100%, 0, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@keyframes slideInLeft {

0% {
	transform: translate3d(-100%, 0, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes slideInRight {

0% {
	transform: translate3d(100%, 0, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@keyframes slideInRight {

0% {
	transform: translate3d(100%, 0, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes slideInUp {

0% {
	transform: translate3d(0, 100%, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@keyframes slideInUp {

0% {
	transform: translate3d(0, 100%, 0);
	visibility: visible;
}

to {
	transform: translateZ(0);
}

}

@-webkit-keyframes slideOutDown {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(0, 100%, 0);
}

}

@keyframes slideOutDown {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(0, 100%, 0);
}

}

@-webkit-keyframes slideOutLeft {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(-100%, 0, 0);
}

}

@keyframes slideOutLeft {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(-100%, 0, 0);
}

}

@-webkit-keyframes slideOutRight {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(100%, 0, 0);
}

}

@keyframes slideOutRight {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(100%, 0, 0);
}

}

@-webkit-keyframes slideOutUp {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(0, -100%, 0);
}

}

@keyframes slideOutUp {

0% {
	transform: translateZ(0);
}

to {
	visibility: hidden;
	transform: translate3d(0, -100%, 0);
}

}

@-webkit-keyframes pageload {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes pageload {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

