@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/*----------------------------------------
	RESET
-----------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none !important;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.0.0
 * 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: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.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);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-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);
    -webkit-transform: translateZ(0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    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);
    -webkit-transform: translateZ(0);
    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);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    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);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.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;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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;
}

@-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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    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;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    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;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    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;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-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;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    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;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    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 {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    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 {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.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;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    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% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.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;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 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);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 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);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(50px, 50px);
            transform: translate(50px, 50px);
  }
  75% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(50px, 50px);
            transform: translate(50px, 50px);
  }
  75% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes move-reverse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
  75% {
    -webkit-transform: translate(50px, 50px);
            transform: translate(50px, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes move-reverse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-50px, -50px);
            transform: translate(-50px, -50px);
  }
  75% {
    -webkit-transform: translate(50px, 50px);
            transform: translate(50px, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@media screen and (max-width: 769px) {
  @-webkit-keyframes move {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    25% {
      -webkit-transform: translate(20px, 20px);
              transform: translate(20px, 20px);
    }
    75% {
      -webkit-transform: translate(-20px, -20px);
              transform: translate(-20px, -20px);
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
  }
  @keyframes move {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    25% {
      -webkit-transform: translate(20px, 20px);
              transform: translate(20px, 20px);
    }
    75% {
      -webkit-transform: translate(-20px, -20px);
              transform: translate(-20px, -20px);
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
  }
  @-webkit-keyframes move-reverse {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    25% {
      -webkit-transform: translate(-20px, -20px);
              transform: translate(-20px, -20px);
    }
    75% {
      -webkit-transform: translate(20px, 20px);
              transform: translate(20px, 20px);
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
  }
  @keyframes move-reverse {
    0% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
    25% {
      -webkit-transform: translate(-20px, -20px);
              transform: translate(-20px, -20px);
    }
    75% {
      -webkit-transform: translate(20px, 20px);
              transform: translate(20px, 20px);
    }
    100% {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
    }
  }
}
/*----------------------------------------
初期設定
-----------------------------------------*/
.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

.tukusi {
  font-family: "FOT-筑紫オールド明朝 Pro R", "TsukuOldMinPro-R", serif;
}

.hlv {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.ofit {
  font-family: "Outfit", sans-serif;
}

.opensan {
  font-family: "Open Sans", sans-serif;
}

.lato {
  font-family: "Lato", sans-serif;
}

.manrope {
  font-family: "Manrope", sans-serif;
}

.minimunWidth {
  width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.inrWidth {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.outerWidth {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.fullWidth {
  margin-right: auto;
  margin-left: auto;
}

@media print, screen and (min-width: 1400px) {
  .fullWidth {
    width: 1400px;
  }
  .inrWidth {
    width: 1000px;
  }
  .minimumWidth {
    width: 720px;
  }
}
@media print, screen and (min-width: 1200px) and (max-width: 1400px) {
  .fullWidth {
    width: 100%;
  }
  .outerWidth {
    width: 1200px;
  }
  .inrWidth {
    width: 1000px;
  }
  .minimumWidth {
    width: 720px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  .fullWidth {
    width: 90% !important;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1200px) {
  .outerWidth {
    width: 95% !important;
  }
  .minimumWidth {
    width: 720px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1000px) {
  .inrWidth {
    width: 95% !important;
  }
}
@media screen and (max-width: 768px) {
  .minimumWidth {
    width: 85%;
  }
  .inrWidth {
    width: 85%;
  }
  .outerWidth {
    width: 85% !important;
  }
  .fullWidth {
    width: 85% !important;
  }
}
/*----------------------------------------
BODY
-----------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #000000;
  background: #fff;
  position: relative;
  width: 100%;
  line-height: 1.75;
  font-weight: normal;
  letter-spacing: 0.075em;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  vertical-align: bottom;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-tap-highlight-color: transparent;
}

input[type=text],
input[type=password],
textarea,
select {
  outline: none;
}

.fw {
  font-weight: bold;
}

.udl {
  font-size: 18px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #000));
  background: linear-gradient(transparent 75%, #000 0%);
}

.abr {
  display: inline-block;
}

.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
  font-size: 77%;
  text-align: right;
}
#pageTop a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#pageTop a:hover {
  text-decoration: none;
}

.imgFull img {
  width: 100%;
}

body .fadeInUpTrigger,
body .fadeInDownTrigger,
body .fadeInLeftTrigger,
body .fadeInRightTrigger {
  opacity: 0;
}

@media print, screen and (min-width: 901px) {
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.4rem;
    min-width: 1000px;
  }
  .spbr {
    display: none;
  }
  .sp {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .pc {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a {
    text-decoration: none;
  }
  a:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    color: #000000;
  }
  a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
  }
  a:hover img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none !important;
    text-decoration: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  .pcbr {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none !important;
  }
  a:hover {
    color: #000000;
    text-decoration: none;
  }
}
/*----------------------------------------
HEADER
-----------------------------------------*/
.hd-sp {
  display: none;
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.hd__lft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hd__lft__name {
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  z-index: 200;
  background: #1783c5;
  color: #fff;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 11px 17px;
}
.hd__lft__name h1 {
  font-size: 3.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hd__lft__name h1 ruby {
  font-size: 2.2rem;
  margin-left: -9px;
}
.hd__lft__name h1 ruby rt {
  font-size: 1.2rem;
  translate: 0 -0.5em;
}
@-moz-document url-prefix() {
  .hd__lft__name h1 ruby rt {
    position: relative;
    top: -0.5em;
  }
}
.hd__lft__logo {
  margin-left: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hd__lft__logo .-logo {
  width: 90px;
}
.hd__lft__logo .-logo img {
  width: 100%;
}
.hd__lft__logo .-txt {
  margin-left: 18px;
  font-size: 1.2rem;
  line-height: 1.4;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media (max-width: 1160px) {
  .hd__lft__logo .-txt {
    display: none;
  }
}
.hd__rgt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
}
.hd__rgt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.hd__rgt ul li {
  margin-right: 14px;
  padding-right: 14px;
  border-right: 2px solid #1783c5;
}
.hd__rgt ul li:last-of-type {
  border-right: none;
  padding-right: 0;
}
.hd__rgt ul li a {
  color: #1783c5;
  line-height: 1;
}
.hd__rgt ul li a.--act {
  color: #000000;
}
.hd__rgt__lastbox a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000000;
  color: #fff;
  padding: 0 20px;
  height: 60px;
}
.hd__rgt__lastbox a.--act {
  background: #1783c5;
}

@media screen and (max-width: 999px) {
  .hd-sp {
    display: block;
  }
  .hd-pc {
    display: none;
  }
  .hd {
    height: 40px;
  }
  .hd__lft__name {
    width: 172px;
    padding: 10px 15px;
    height: 63px;
  }
  .hd__lft__name h1 {
    font-size: 2.7rem;
    height: 43px;
  }
  .hd__lft__name h1 ruby {
    font-size: 1.6rem;
    margin-left: -9px;
  }
  .hd__lft__name h1 ruby rt {
    font-size: 50%;
    translate: 0 -0.4em;
  }
  @-moz-document url-prefix() {
    .hd__lft__name h1 ruby rt {
      position: relative;
      top: -0.4em;
    }
  }
  .hd #hdNav {
    position: fixed;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #000000;
    cursor: pointer;
    color: #fff;
    padding: 5px 0;
  }
  .hd #hdNav div {
    position: relative;
    width: 55%;
    height: 15px;
    margin: 0 auto;
  }
  .hd #hdNav div span {
    display: block;
    position: absolute;
    /*#hdNav div に対して*/
    width: 100%;
    border-bottom: solid 2px #fff;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    z-index: 200;
  }
  .hd #hdNav div span:nth-child(1) {
    top: 5px;
  }
  .hd #hdNav div span:nth-child(2) {
    top: 9px;
  }
  .hd #hdNav p {
    font-size: 40%;
    text-align: center;
    width: 20px;
    margin: 0 auto;
  }
  .hd nav {
    display: none;
    position: absolute;
    /*bodyに対しての絶対位置*/
    right: 0;
    top: 40px;
    width: 60%;
    width: calc(100% - 160px);
    height: calc(100vh - 40px);
    background: #000000;
    text-align: left;
  }
  .hd nav .hdNavInr {
    position: relative;
    padding: 60px 30px 160px;
    height: calc(100vh - 40px);
  }
  .hd nav ul li:first-of-type {
    border-top: 2px solid #1783c5;
  }
  .hd nav ul li a {
    display: block;
    font-size: 1.7rem;
    color: #fff;
    padding: 13px 0;
    border-bottom: 2px solid #1783c5;
    letter-spacing: 0;
  }
  .hd nav .hdNavBtm {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1783c5;
    padding: 25px 30px;
  }
  .hd nav .hdNavBtm__logo {
    width: 90px;
    margin-bottom: 10px;
  }
  .hd nav .hdNavBtm__txt {
    font-size: 1.2rem;
    color: #fff;
  }
  .hd.openNav #hdNav span:nth-child(1) {
    top: 7px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    border-bottom: solid 2px #fff;
  }
  .hd.openNav #hdNav span:nth-child(2) {
    top: 7px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    border-bottom: solid 2px #fff;
  }
}
/*----------------------------------------
FOOTER
-----------------------------------------*/
.ft__inr {
  background: #1783c5;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 40px;
}
.ft__df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ft__lft .-ttl {
  font-size: 1.9rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.ft__lft .-address {
  font-size: 1.2rem;
}
.ft__lft .-address a {
  color: #fff;
  text-decoration: underline;
}
.ft__rgt {
  letter-spacing: 0;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .ft__inr {
    display: block;
    padding: 30px 0 40px;
    text-align: center;
  }
  .ft__df {
    display: block;
  }
  .ft__lft .-ttl {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .ft__lft .-address {
    font-size: 1.2rem;
  }
  .ft__lft .-address a {
    color: #fff;
    text-decoration: underline;
  }
  .ft__rgt {
    font-size: 1rem;
    margin-top: 25px;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
@media print, screen and (min-width: 769px) {
  main {
    margin-top: 60px;
    overflow: hidden;
  }
  main h2 {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  main {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 40px;
    overflow: hidden;
  }
  main h2 {
    text-align: center;
  }
}
/*----------------------------------------
ボタン共通パーツ
-----------------------------------------*/
.c-btn-combtnwrap {
  text-align: center;
}

.c-btn-combtn {
  display: inline-block;
  font-size: 1.8rem;
  border: 3px solid #fff;
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  font-weight: bold;
}
.c-btn-combtn:hover {
  background: #fff;
  color: #1783c5;
  opacity: 1;
}
.c-btn-combtn.--blue {
  background: #fff;
  color: #1783c5;
  border-color: #1783c5;
}
.c-btn-combtn.--blue:hover {
  background: #1783c5;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .c-btn-combtn {
    font-size: 1.4rem;
    border: 2px solid #fff;
    padding: 10px;
    letter-spacing: 0.06em;
  }
  .c-btn-combtn:hover {
    background: #fff;
    color: #1783c5;
  }
  .c-btn-combtn.--blue {
    background: #fff;
    color: #1783c5;
    border-color: #1783c5;
  }
  .c-btn-combtn.--blue:hover {
    background: #1783c5;
    color: #fff;
  }
}
/*----------------------------------------
タイトル 共通パーツ
-----------------------------------------*/
.c-ttl-addborder {
  font-size: 4.4rem;
  color: #1783c5;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}
.c-ttl-addborder.--blue {
  color: #fff;
  -webkit-text-stroke: 2px #1783c5;
  text-stroke: 2px #1783c5;
}

.c-ttl-h2img {
  margin-bottom: 50px;
}
.c-ttl-h2img img {
  height: 53px;
  width: auto;
}

@media screen and (max-width: 768px) {
  .c-ttl-h2img {
    margin-bottom: 25px;
  }
  .c-ttl-h2img img {
    height: 30px;
    width: auto;
  }
  .c-ttl-h2img.--w img {
    height: 65px;
  }
}
.c-ttl-lftnum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 28px;
}
.c-ttl-lftnum__num {
  width: 70px;
  height: auto;
}
.c-ttl-lftnum__ttl img {
  height: 39px;
}

@media screen and (max-width: 768px) {
  .c-ttl-lftnum {
    display: block;
  }
  .c-ttl-lftnum__num {
    width: 50px;
    height: auto;
  }
  .c-ttl-lftnum__ttl {
    margin-top: 10px;
    text-align: left;
  }
  .c-ttl-lftnum__ttl img {
    height: 60px;
  }
  .c-ttl-lftnum__ttl img.--oneline {
    height: 30px;
  }
}
.c-ttl-circlelft {
  position: relative;
  padding-left: 18px;
  line-height: 2.2;
}
.c-ttl-circlelft::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1783c5;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
}
.c-ttl-circlelft.--wh::before {
  background: #fff;
}

/*----------------------------------------
タイトル 共通パーツ
-----------------------------------------*/
@-webkit-keyframes scroll {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  45% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  55% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@media screen and (max-width: 768px) {
  .c-cts__scroll {
    font-size: 1.2rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    color: #fff !important;
    position: relative;
  }
  .c-cts__scroll::before {
    content: "";
    background: #fff;
    width: 1px;
    height: 100px;
    display: block;
    position: absolute;
    top: 0;
    left: -3px;
    -webkit-animation: scroll 2s ease-in-out infinite;
            animation: scroll 2s ease-in-out infinite;
  }
}
.c-cts-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-cts-bg img {
  width: 100%;
}

.c-cts-3imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-cts-3imgs::after {
  content: "";
  width: 30%;
  display: block;
}
.c-cts-3imgs li {
  width: 30%;
  margin-bottom: 40px;
}
.c-cts-3imgs li .-img iframe {
  border: 10px solid #fff;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-cts-3imgs li .-img.-none {
  border: 10px solid #fff;
  width: 100%;
  height: 66%;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 167px;
  font-size: 2rem;
}
@media (max-width: 1000px) {
  .c-cts-3imgs li .-img.-none {
    min-height: 160px;
    height: 65%;
  }
}
.c-cts-3imgs li .-img.--mitei {
  position: relative;
}
.c-cts-3imgs li .-img.--mitei::before {
  content: "";
  display: block;
  background: #000000;
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid #fff;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-cts-3imgs li .-img.--mitei::after {
  content: "準備中";
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-cts-3imgs li .-img.--mitei iframe {
  opacity: 0;
}
.c-cts-3imgs li .-img.--olnone iframe {
  border: none;
}
.c-cts-3imgs li .-txt {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .c-cts-3imgs {
    max-width: 600px;
    margin: 0 auto;
  }
  .c-cts-3imgs li {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-cts-3imgs li .-img.-none {
    padding-bottom: 0;
  }
  .c-cts-3imgs li .-txt {
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.c-cts-2imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-cts-2imgs::after {
  content: "";
  width: 48%;
  display: block;
}
.c-cts-2imgs li {
  width: 48%;
  margin-bottom: 40px;
}
.c-cts-2imgs li .-img iframe {
  border: 10px solid #fff;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-cts-2imgs li .-img.--olnone iframe {
  border: none;
}
.c-cts-2imgs li .-img.--mitei {
  position: relative;
}
.c-cts-2imgs li .-img.--mitei::before {
  content: "";
  display: block;
  background: #000000;
  position: absolute;
  top: 0;
  left: 0;
  border: 10px solid #fff;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-cts-2imgs li .-img.--mitei::after {
  content: "準備中";
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-cts-2imgs li .-img.--mitei iframe {
  opacity: 0;
}
.c-cts-2imgs li .-txt {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .c-cts-2imgs {
    max-width: 600px;
    margin: 0 auto;
  }
  .c-cts-2imgs li {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-cts-2imgs li .-img {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56%;
  }
  .c-cts-2imgs li .-img iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-cts-2imgs li .-txt {
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    margin-top: 10px;
  }
}
.c-cts-sns {
  padding: 85px 0 50px;
}
.c-cts-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}
.c-cts-sns ul::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background: url(../img/top/sns_deco.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -100px;
  left: -17%;
}
.c-cts-sns ul li img {
  height: 80px;
  width: auto;
}
.c-cts-sns ul li img.-youtube {
  height: 37px;
}

@media screen and (max-width: 768px) {
  .c-cts-sns ul {
    max-width: 240px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-cts-sns ul::before {
    width: 75px;
    height: 75px;
    top: -40px;
    left: -25%;
  }
  .c-cts-sns ul li {
    margin: 0 10px 20px;
  }
  .c-cts-sns ul li img {
    height: 40px;
    width: auto;
  }
  .c-cts-sns ul li img.-youtube {
    height: 20px;
  }
}
.c-cts-wborder {
  position: relative;
}
.c-cts-wborder::before, .c-cts-wborder::after {
  width: 100%;
  height: 4px;
  background: url(../img/common/bar_blue_long.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
}
.c-cts-wborder::after {
  content: "";
  bottom: 0;
}
.c-cts-wborder.--1st::before {
  content: "";
  top: 0;
}
.c-cts-wborder.--wh::before, .c-cts-wborder.--wh::after {
  background: url(../img/common/bar_wh_long.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .c-cts-wborder::before, .c-cts-wborder::after {
    height: 4px;
  }
  .c-cts-wborder.--1st::before {
    z-index: 10;
  }
}
.c-sec-prof {
  padding: 90px 0 100px;
}
.c-sec-prof__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-sec-prof__main__lft {
  position: relative;
  font-weight: bold;
  width: 280px;
}
.c-sec-prof__main__lft::after {
  content: "";
  width: 320px;
  height: 470px;
  display: block;
  background: url(../img/top/prof_deco.png) no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  top: 97%;
  left: -30%;
}
.c-sec-prof__main__lft h3 {
  font-size: 5.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.c-sec-prof__main__lft h3 ruby {
  font-size: 3rem;
  margin-left: -9px;
}
.c-sec-prof__main__lft h3 ruby rt {
  font-size: 1.6rem;
  translate: 0 -0.5em;
}
@-moz-document url-prefix() {
  .c-sec-prof__main__lft h3 ruby rt {
    position: relative;
    top: -0.5em;
  }
}
.c-sec-prof__main__rgt {
  width: calc(100% - 280px);
}
.c-sec-prof__main__rgt img {
  margin-left: 5%;
}
.c-sec-prof__btn {
  margin-top: 105px;
}
.c-sec-prof.--blue {
  padding: 0;
}
.c-sec-prof.--blue .c-sec-prof__inr {
  background: #1783c5;
  padding: 80px 0 130px;
}
.c-sec-prof.--blue .c-sec-prof__main__lft {
  color: #fff;
}
.c-sec-prof.--blue .c-sec-prof__main__lft::after {
  content: none;
}
.c-sec-prof.--blue .c-sec-prof__main__lft p {
  font-size: 1.2rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.08em;
  font-weight: normal;
  margin-top: 25px;
}
.c-sec-prof.--blue .c-sec-prof__main__rgt {
  position: relative;
}
.c-sec-prof.--blue .c-sec-prof__main__rgt::before, .c-sec-prof.--blue .c-sec-prof__main__rgt::after {
  content: "";
  display: block;
  position: absolute;
}
.c-sec-prof.--blue .c-sec-prof__main__rgt::before {
  width: 550px;
  height: 250px;
  background: url(../img/profile/prof_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -90px;
  right: -38%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.c-sec-prof.--blue .c-sec-prof__main__rgt::after {
  width: 500px;
  height: 200px;
  background: url(../img/profile/prof_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 85%;
  left: -2%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
.c-sec-prof.--blue .c-sec-prof__main__rgt img {
  margin-left: 6%;
}

@media screen and (max-width: 768px) {
  .c-sec-prof {
    padding: 60px 0 50px;
  }
  .c-sec-prof__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 600px;
    margin: 0 auto;
  }
  .c-sec-prof__main__rgt {
    width: 100%;
  }
  .c-sec-prof__main__rgt img {
    margin-left: 0;
  }
  .c-sec-prof__main__lft {
    margin-top: 20px;
    position: relative;
    font-weight: bold;
    width: 100%;
  }
  .c-sec-prof__main__lft::after {
    content: "";
    width: 130px;
    height: 200px;
    top: 100%;
    left: -11%;
  }
  .c-sec-prof__main__lft h3 {
    font-size: 4.3rem;
    font-weight: 900;
    margin-bottom: 10px;
  }
  .c-sec-prof__main__lft h3 ruby {
    font-size: 2.4rem;
    margin-left: -9px;
  }
  .c-sec-prof__main__lft h3 ruby rt {
    font-size: 1.3rem;
    translate: 0 -0.4em;
  }
  @-moz-document url-prefix() {
    .c-sec-prof__main__lft h3 ruby rt {
      position: relative;
      top: -0.4em;
    }
  }
  .c-sec-prof__btn {
    margin-top: 40px;
  }
  .c-sec-prof.--blue {
    padding: 0;
  }
  .c-sec-prof.--blue .c-sec-prof__inr {
    background: #1783c5;
    padding: 60px 0 50px;
  }
  .c-sec-prof.--blue .c-sec-prof__main__lft {
    color: #fff;
  }
  .c-sec-prof.--blue .c-sec-prof__main__lft::after {
    content: none;
  }
  .c-sec-prof.--blue .c-sec-prof__main__rgt {
    position: relative;
  }
  .c-sec-prof.--blue .c-sec-prof__main__rgt::before {
    width: 250px;
    height: 150px;
    position: absolute;
    top: -70px;
    right: -20%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
  }
  .c-sec-prof.--blue .c-sec-prof__main__rgt::after {
    width: 200px;
    height: 80px;
    position: absolute;
    top: 80%;
    left: -8%;
    -webkit-animation: move-reverse 20s linear infinite;
            animation: move-reverse 20s linear infinite;
  }
  .c-sec-prof.--blue .c-sec-prof__main__rgt img {
    margin-left: 0;
  }
}
.c-txt-addbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 0;
  position: relative;
  letter-spacing: 0.09em;
}
.c-txt-addbar::after {
  content: "";
  width: 100%;
  height: 5px;
  display: block;
  background: #1783c5;
  -webkit-mask-image: url(../img/common/bdr_wh.svg);
          mask-image: url(../img/common/bdr_wh.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-txt-addbar:first-of-type::before {
  content: "";
  width: 100%;
  height: 5px;
  display: block;
  background: #1783c5;
  -webkit-mask-image: url(../img/common/bdr_wh.svg);
          mask-image: url(../img/common/bdr_wh.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.c-txt-addbar dt {
  width: 105px;
}
.c-txt-addbar dd {
  width: calc(100% - 105px);
}
.c-txt-addbar.--wh::after {
  background: url(../img/common/bdr_wh.svg) no-repeat;
  background-position: left;
  background-size: cover;
}
.c-txt-addbar.--wh:first-of-type::before {
  background: url(../img/common/bdr_wh.svg) no-repeat;
  background-position: left;
  background-size: cover;
}
.c-txt-addbar.--wh dd {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*----------------------------------------
MAIN
-----------------------------------------*/
.p-top h2 {
  margin-bottom: 80px;
}
.p-top h2 img {
  height: 53px;
  width: auto;
}
.p-top__city__inr {
  position: relative;
  background: #1783c5;
  padding: 75px 0 120px;
}
.p-top__city__ul {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-top__city__ul li {
  margin-bottom: 90px;
  position: relative;
}
.p-top__city__ul li .-decotxt {
  position: absolute;
  bottom: -150px;
  right: -1%;
  width: 210px;
  z-index: 2;
}
.p-top__city__ul li::before, .p-top__city__ul li::after {
  content: "";
  display: block;
  position: absolute;
}
.p-top__city__ul li .-img {
  position: relative;
  border: 10px solid #fff;
}
.p-top__city__ul li .-img img {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  display: none;
}
.p-top__city__ul li .-img.--mitei {
  border: 10px solid #fff;
  background: #000000;
}
.p-top__city__ul li .-img.--mitei::after {
  content: "準備中";
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top__city__ul li .-img.--mitei iframe {
  opacity: 0;
}
.p-top__city__ul li iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.p-top__city__ul li.-first {
  margin-bottom: 180px;
}
.p-top__city__ul li.-first::before {
  width: 330px;
  height: 130px;
  background: url(../img/top/city_img01_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -75px;
  left: -22%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
  z-index: 2;
}
.p-top__city__ul li.-first::after {
  width: 330px;
  height: 130px;
  background: url(../img/top/city_img01_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 55%;
  right: -22%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
  z-index: 2;
}
.p-top__city__ul li.-second::before {
  width: 320px;
  height: 130px;
  background: url(../img/top/city_img02_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 148px;
  left: -16%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
  z-index: 2;
}
.p-top__city__ul li.-second::after {
  width: 240px;
  height: 250px;
  background: url(../img/top/city_img02_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 71%;
  right: -3%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
  z-index: 2;
}
.p-top__city__ul li.-third::before {
  width: 600px;
  height: 200px;
  background: url(../img/top/city_img03_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 4%;
  left: -27%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
  z-index: 2;
}
.p-top__city__ul li.-third::after {
  width: 320px;
  height: 130px;
  background: url(../img/top/city_img03_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 62%;
  right: -17%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
  z-index: 2;
}
.p-top-re-city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.p-top-re-city::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 215px;
  background: url(../img/top/city_img01_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -250px;
  left: -14%;
  -webkit-animation: move 20s linear infinite;
  animation: move 20s linear infinite;
  z-index: 2;
}
.p-top-re-city::after {
  content: "";
  display: block;
  position: absolute;
  width: 240px;
  height: 250px;
  background: url(../img/top/city_img02_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 91%;
  right: -17%;
  -webkit-animation: move 20s linear infinite;
  animation: move 20s linear infinite;
  z-index: 2;
}
.p-top-re-city-3 {
  width: 55%;
}
.p-top-re-city-3__ttl {
  max-width: 250px;
  margin: 0 auto 30px;
}
.p-top-re-city-3 ul li:not(:first-of-type) {
  margin-top: 20px;
}
.p-top-re-city-3 ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  border: 2px solid #fff;
}
.p-top-re-city-3 ul li .-num {
  width: 110px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-re-city-3 ul li .-num img {
  height: 37px;
  width: auto;
  margin: 0 auto;
}
.p-top-re-city-3 ul li .-num img.--2nd {
  height: 35px;
}
.p-top-re-city-3 ul li .-num img.--3rd {
  height: 35px;
}
.p-top-re-city-3 ul li .-txt {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  text-align: center;
}
.p-top-re-city-3 ul li a:hover {
  opacity: 1;
  background: #fff;
}
.p-top-re-city-3 ul li a:hover .-num {
  border-right: 1px solid #1783c5;
}
.p-top-re-city-3 ul li a:hover .-num img {
  opacity: 1;
}
.p-top-re-city-3 ul li a:hover .-txt {
  color: #1783c5;
}
.p-top-re-city-cycle {
  width: 37%;
}
.p-top-re-city-cycle__ttl {
  margin-bottom: 30px;
}
.p-top-re-city-cycle__ttl img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.p-top-re-city-cycle .-img {
  position: relative;
  border: 10px solid #fff;
}
.p-top-re-city-cycle .-img iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  display: block;
}
.p-top-re-yt {
  padding: 90px 0 120px;
}
.p-top-re-yt .inrWidth {
  position: relative;
}
.p-top-re-yt .inrWidth::after {
  content: "";
  display: block;
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  width: 340px;
  height: 215px;
  background: url(../img/top/city_btm_deco.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -100px;
  left: -20%;
  z-index: 1;
}
.p-top-re-yt__ttl {
  text-align: center;
  margin-bottom: 60px !important;
}
.p-top-re-yt__ttl img {
  height: 40px !important;
  width: auto;
}
.p-top-re-yt__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-re-yt__slide {
  width: 22%;
}
.p-top-re-yt__slide h3 {
  color: #1783c5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.p-top-re-yt__slide h3 span {
  white-space: nowrap;
  margin-left: -60px;
}
.p-top-re-yt__slide .-img {
  position: relative;
  border: 1px solid #000000;
  padding: 4px;
}
.p-top-re-yt__slide .-img iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 9/16;
  display: block;
}
.p-top-re-yt__btn {
  margin-top: 90px;
}
.p-top-re-three__inr {
  background: #1783c5;
  padding: 90px 0 150px;
}
.p-top-re-three__blk {
  padding: 80px 0;
  color: #fff;
  position: relative;
}
.p-top-re-three__blk.--1st::before {
  content: "";
  display: block;
  position: absolute;
  width: 330px;
  height: 130px;
  background: url(../img/top/city_img01_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -38%;
  -webkit-animation: move 20s linear infinite;
  animation: move 20s linear infinite;
  z-index: 2;
}
.p-top-re-three__blk.--2nd::before {
  content: "";
  display: block;
  position: absolute;
  width: 400px;
  height: 215px;
  background: url(../img/top/city_img01_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -140px;
  left: -48%;
  -webkit-animation: move 20s linear infinite;
  animation: move 20s linear infinite;
  z-index: 2;
}
.p-top-re-three__blk.--3rd::before {
  content: "";
  display: block;
  position: absolute;
  width: 240px;
  height: 250px;
  background: url(../img/top/city_img02_deco02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -80px;
  left: -20%;
  z-index: 2;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-top-re-three__blk.--3rd::after {
  content: "";
  display: block;
  position: absolute;
  width: 600px;
  height: 200px;
  background: url(../img/top/city_img03_deco01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 95%;
  right: -20%;
  -webkit-animation: move 20s linear infinite;
  animation: move 20s linear infinite;
  z-index: 2;
}
.p-top-re-three__blk h3 {
  margin-bottom: 30px;
}
.p-top-re-three__blk h3 img {
  height: 37px;
  width: auto;
}
.p-top-re-three__blk h3.--w img {
  height: 85px;
}
.p-top-re-three__blk ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-re-three__blk ul:last-of-type {
  margin-bottom: 20px;
}
.p-top-re-three__blk ul li {
  width: 100%;
  border: 2px solid #fff;
  padding: 20px;
}
.p-top-re-three__blk ul li.--w50 {
  width: 48%;
}
.p-top-re-three__blk ul li.--addarw {
  position: relative;
  margin-bottom: 100px;
}
.p-top-re-three__blk ul li.--addarw::after {
  content: "";
  width: 62px;
  height: 53px;
  display: block;
  background: url(/img/top/re/3_arw.svg) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(100% + 25px);
  left: calc(50% - 31px);
}
.p-top-re-three__blk ul li h4 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-top-re-three__blk ul li div p {
  padding-left: 20px;
  position: relative;
}
.p-top-re-three__blk ul li div p::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-re-three__blk ul li div p.--arw::before {
  content: "⇒";
}
.p-top-re-three__blk__img {
  border: 10px solid #fff;
  margin-bottom: 20px;
}
.p-top-re-three__blk__img img {
  width: 100%;
}
.p-top-re-three__blk .attn a {
  color: #fff;
  text-decoration: underline;
}
.p-top-re-three__bar {
  width: 100%;
}
.p-top-re-three__bar img {
  width: 100%;
  max-width: unset;
}
.p-top__kanou__inr {
  background: #1783c5;
  padding: 100px 0;
}
.p-top__kanou__inr h2 {
  margin-bottom: 0;
}
.p-top__kanou__inr h2 img {
  width: 500px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p-top h2 {
    margin-bottom: 25px;
  }
  .p-top h2 img {
    height: 30px;
    width: auto;
  }
  .p-top h2.sptxtW img {
    height: 65px;
  }
  .p-top__city__inr {
    position: relative;
    background: #1783c5;
    padding: 65px 0 70px;
  }
  .p-top__city__inr::after {
    width: 120px;
    height: 80px;
    bottom: 70px;
  }
  .p-top__city__ul {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }
  .p-top__city__ul li {
    margin-bottom: 30px;
    position: relative;
  }
  .p-top__city__ul li .-decotxt {
    position: absolute;
    bottom: -95px;
    right: -1%;
    width: 115px;
  }
  .p-top__city__ul li::before, .p-top__city__ul li::after {
    content: "";
    display: block;
    position: absolute;
  }
  .p-top__city__ul li.-first {
    margin-bottom: 50px;
  }
  .p-top__city__ul li.-first::before {
    width: 100px;
    height: 40px;
    background: url(../img/top/city_img01_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -20%;
    left: -15%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
  }
  .p-top__city__ul li.-first::after {
    width: 100px;
    height: 40px;
    background: url(../img/top/city_img01_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 60%;
    right: -15%;
    -webkit-animation: move-reverse 20s linear infinite;
            animation: move-reverse 20s linear infinite;
  }
  .p-top__city__ul li.-second::before {
    width: 120px;
    height: 50px;
    background: url(../img/top/city_img02_deco01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 55px;
    left: -10%;
    -webkit-animation: move-reverse 20s linear infinite;
            animation: move-reverse 20s linear infinite;
  }
  .p-top__city__ul li.-second::after {
    width: 70px;
    height: 70px;
    background: url(../img/top/city_img02_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 71%;
    right: -3%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
  }
  .p-top__city__ul li.-third {
    margin-bottom: 50px;
  }
  .p-top__city__ul li.-third::before {
    width: 200px;
    height: 100px;
    background: url(../img/top/city_img03_deco01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 4%;
    left: -27%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
  }
  .p-top__city__ul li.-third::after {
    width: 100px;
    height: 40px;
    background: url(../img/top/city_img03_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 62%;
    right: -17%;
    -webkit-animation: move-reverse 20s linear infinite;
            animation: move-reverse 20s linear infinite;
  }
  .p-top-re-city {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top-re-city::before {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 70px;
    background: url(../img/top/city_img01_deco01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -40px;
    left: -18%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
    z-index: 2;
  }
  .p-top-re-city::after {
    content: "";
    display: block;
    position: absolute;
    width: 65px;
    height: 70px;
    background: url(../img/top/city_img02_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 99%;
    right: -15%;
    -webkit-animation: move 20s linear infinite;
    animation: move 20s linear infinite;
    z-index: 2;
  }
  .p-top-re-city-3 {
    width: 100%;
  }
  .p-top-re-city-3__ttl {
    max-width: 135px;
    margin: 0 auto 30px;
  }
  .p-top-re-city-3 ul li a {
    display: block;
    min-height: unset;
  }
  .p-top-re-city-3 ul li .-num {
    width: 100%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
  }
  .p-top-re-city-3 ul li .-num img {
    height: 26px;
    width: auto;
    margin: 0 auto;
  }
  .p-top-re-city-3 ul li .-num img.--2nd {
    height: 24px;
  }
  .p-top-re-city-3 ul li .-num img.--3rd {
    height: 24px;
  }
  .p-top-re-city-3 ul li .-txt {
    font-size: 2.4rem;
    padding: 30px;
    min-height: 130px;
  }
  .p-top-re-city-3 ul li a:hover {
    opacity: 1;
    background: #1783c5;
  }
  .p-top-re-city-3 ul li a:hover .-num {
    border-right: none;
  }
  .p-top-re-city-3 ul li a:hover .-num img {
    opacity: 1;
  }
  .p-top-re-city-3 ul li a:hover .-txt {
    color: #fff;
  }
  .p-top-re-city-cycle {
    width: 100%;
    margin-top: 60px;
  }
  .p-top-re-city-cycle__ttl {
    margin-bottom: 30px;
  }
  .p-top-re-city-cycle__ttl img {
    height: auto;
    width: 200px;
  }
  .p-top-re-city-cycle .-img {
    border: 5px solid #fff;
  }
  .p-top-re-yt {
    padding: 45px 0 60px;
  }
  .p-top-re-yt .inrWidth {
    position: relative;
  }
  .p-top-re-yt .inrWidth::after {
    content: "";
    display: block;
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 80px;
    background: url(../img/top/city_btm_deco.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: -20%;
    z-index: 1;
  }
  .p-top-re-yt__ttl {
    margin-bottom: 30px !important;
  }
  .p-top-re-yt__ttl img {
    height: 70px !important;
    width: auto;
  }
  .p-top-re-yt__main {
    display: block;
    max-width: 230px;
    margin: 0 auto;
  }
  .p-top-re-yt__main .slick-arrow {
    width: 40px;
    height: 40px;
  }
  .p-top-re-yt__main .slick-arrow::before {
    content: "";
    background: url(/img/top/re/slide_arw.svg);
    width: 40px;
    height: 40px;
    display: block;
    opacity: 1;
  }
  .p-top-re-yt__main .slick-prev {
    left: -50px;
  }
  .p-top-re-yt__main .slick-next {
    right: -50px;
  }
  .p-top-re-yt__main .slick-next::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .p-top-re-yt__slide {
    width: 100%;
  }
  .p-top-re-yt__slide h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    min-height: 50px;
  }
  .p-top-re-yt__slide h3 span {
    white-space: initial;
    margin-left: 0;
  }
  .p-top-re-yt__slide .-img {
    position: relative;
    border: 1px solid #000000;
    padding: 4px;
  }
  .p-top-re-yt__slide .-img iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    display: block;
  }
  .p-top-re-yt__btn {
    margin-top: 45px;
  }
  .p-top-re-three__inr {
    padding: 60px 0 90px;
  }
  .p-top-re-three__blk {
    padding: 30px 0 10px;
  }
  .p-top-re-three__blk.--1st::before {
    content: "";
    display: block;
    position: absolute;
    width: 100px;
    height: 40px;
    background: url(../img/top/city_img01_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 61%;
    left: -32%;
    -webkit-animation: move 20s linear infinite;
    animation: move 20s linear infinite;
    z-index: 2;
  }
  .p-top-re-three__blk.--2nd::before {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 70px;
    background: url(../img/top/city_img01_deco01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -60px;
    left: -38%;
    -webkit-animation: move 20s linear infinite;
    animation: move 20s linear infinite;
    z-index: 2;
  }
  .p-top-re-three__blk.--3rd::before {
    content: "";
    display: block;
    position: absolute;
    width: 65px;
    height: 70px;
    background: url(../img/top/city_img02_deco02.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: -80px;
    left: -20%;
    z-index: 2;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .p-top-re-three__blk.--3rd::after {
    content: "";
    display: block;
    position: absolute;
    width: 200px;
    height: 100px;
    background: url(../img/top/city_img03_deco01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 95%;
    right: -20%;
    -webkit-animation: move 20s linear infinite;
    animation: move 20s linear infinite;
    z-index: 2;
  }
  .p-top-re-three__blk h3 {
    margin-bottom: 20px;
  }
  .p-top-re-three__blk h3 img {
    height: 80px;
    width: auto;
  }
  .p-top-re-three__blk h3.--w img, .p-top-re-three__blk h3.--spw img {
    height: 150px;
  }
  .p-top-re-three__blk ul {
    display: block;
  }
  .p-top-re-three__blk ul:last-of-type {
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
  }
  .p-top-re-three__blk ul:last-of-type::after {
    content: "";
    width: 62px;
    height: 53px;
    display: block;
    background: url(/img/top/re/3_arw.svg) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: calc(100% + 25px);
    left: calc(50% - 31px);
  }
  .p-top-re-three__blk ul li {
    width: 100%;
    border: 2px solid #fff;
    padding: 20px;
  }
  .p-top-re-three__blk ul li.--w50 {
    width: 100%;
  }
  .p-top-re-three__blk ul li.--addarw {
    position: relative;
    margin-bottom: 30px;
  }
  .p-top-re-three__blk ul li.--addarw::after {
    content: none;
  }
  .p-top-re-three__blk ul li h4 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .p-top-re-three__blk ul li div p {
    padding-left: 20px;
    position: relative;
  }
  .p-top-re-three__blk ul li div p::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-top-re-three__blk ul li div p.--arw::before {
    content: "⇒";
  }
  .p-top-re-three__blk__img {
    border: 5px solid #fff;
    margin-bottom: 20px;
  }
  .p-top-re-three__blk__img img {
    width: 100%;
  }
  .p-top-re-three__blk .attn a {
    color: #fff;
    text-decoration: underline;
  }
  .p-top__kanou__inr {
    padding: 50px 0;
  }
  .p-top__kanou__inr h2 {
    margin-bottom: 0;
  }
  .p-top__kanou__inr h2 img {
    width: 270px;
    height: auto;
  }
}
.p-prof__keireki {
  padding: 90px 0 125px;
  font-weight: bold;
}
.p-prof__keireki__df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-prof__keireki__lft {
  width: 290px;
}
.p-prof__keireki__lft__ttl {
  margin-bottom: 3px;
  text-align: left;
}
.p-prof__keireki__lft__ttl img {
  height: 42px;
  margin-bottom: 23px;
}
.p-prof__keireki__lft__dl dt {
  width: 60px;
}
.p-prof__keireki__lft__dl dd {
  width: calc(100% - 60px);
}
.p-prof__keireki__rgt {
  width: calc(100% - 330px);
  line-height: 2.3;
}
.p-prof__movie__inr {
  padding: 95px 0 80px;
  background: #1783c5;
  position: relative;
}
.p-prof__movie__inr::before {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  background: url(../img/profile/prof_deco03.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -130px;
  left: 7%;
}
.p-prof__movie__inr::after {
  content: "";
  display: block;
  width: 300px;
  height: 150px;
  background: url(../img/profile/prof_deco04.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 10px;
  right: -2%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.p-prof__movie__ttl {
  margin-bottom: 75px;
}
.p-prof__si {
  padding: 80px 0;
}
.p-prof__si p {
  position: relative;
  font-weight: bold;
  text-align: center;
  line-height: 2.5;
}
.p-prof__si p::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background: url(../img/top/sns_deco.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 15px;
  left: -8%;
}

@media screen and (max-width: 768px) {
  .p-prof__keireki {
    padding: 45px 0 60px;
    margin: 0 auto;
  }
  .p-prof__keireki__df {
    display: block;
  }
  .p-prof__keireki__lft {
    width: 100%;
  }
  .p-prof__keireki__lft__ttl {
    margin-bottom: 10px;
    text-align: center;
  }
  .p-prof__keireki__lft__ttl img {
    height: 26px;
  }
  .p-prof__keireki__lft__dl dt {
    width: 60px;
  }
  .p-prof__keireki__lft__dl dd {
    width: calc(100% - 60px);
  }
  .p-prof__keireki__rgt {
    width: 100%;
    line-height: 2.2;
    margin-top: 30px;
    text-align: justify;
  }
  .p-prof__movie__inr {
    padding: 40px 0 50px;
    background: #1783c5;
    position: relative;
  }
  .p-prof__movie__inr::before {
    content: "";
    display: block;
    width: 80px;
    height: 90px;
    top: -70px;
    left: 2%;
  }
  .p-prof__movie__inr::after {
    width: 110px;
    height: 55px;
    bottom: 10px;
    right: -2%;
  }
  .p-prof__si {
    padding: 40px 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .p-prof__si p {
    text-align: justify;
    line-height: 2.2;
  }
  .p-prof__si p::before {
    content: "";
    display: block;
    width: 75px;
    height: 75px;
    bottom: 100%;
    left: -8%;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
.p-policy__inr {
  background: #1783c5;
  color: #fff;
}
.p-policy__top {
  padding-bottom: 85px;
}
.p-policy__top__wrap {
  position: relative;
  width: 100%;
}
.p-policy__top__wrap::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/policy/policy_img01_deco01.svg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 560px;
  height: 210px;
  top: -3%;
  left: -11%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.p-policy__top__wrap::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/policy/policy_img01_deco02.svg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 600px;
  height: 200px;
  top: -20%;
  right: -27%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
.p-policy__top h2 {
  padding: 70px 0 5px;
}
.p-policy__top__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-policy__top__main h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.p-policy__top__main p {
  text-align: center;
  margin-top: 2.5rem;
  font-weight: bold;
  line-height: 3.3rem;
  letter-spacing: 1.5px;
}
.p-policy__top__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.p-policy__top__sub h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 3.2rem;
}
.p-policy__top__sub h3 span {
  font-size: 38px;
}
.p-policy__top__sub p {
  text-align: center;
  margin-top: 2.5rem;
  font-weight: bold;
  line-height: 3.3rem;
  letter-spacing: 1.5px;
}
.p-policy__top__sub p span {
  font-size: 2.5rem;
  line-height: 2.2;
}
.p-policy__top__sub p::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/policy/policy_img01_deco03.svg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 345px;
  height: 210px;
  top: 80%;
  right: -6%;
}
.p-policy__cts {
  font-weight: bold;
  position: relative;
}
.p-policy__cts__inr {
  padding: 90px 0 140px;
}
.p-policy__cts__h3 {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #1783c5;
  font-weight: bold;
}
.p-policy__cts__main {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-policy__cts__main .-img {
  width: 37.5%;
}
.p-policy__cts__main .-txt {
  width: 100%;
  text-align: justify;
  line-height: 2.4;
}
.p-policy__cts__btmtxt {
  margin-top: 45px;
  font-size: 1.6rem;
}
.p-policy__cts__btmtxt a {
  color: #1783c5;
  text-decoration: underline;
}
.p-policy__cts.--blue {
  color: #fff;
}
.p-policy__cts.--blue .p-policy__cts__inr {
  background: #1783c5;
  padding: 100px 0 115px;
}
.p-policy__cts.--blue .p-policy__cts__h3 {
  color: #fff;
}
.p-policy__cts.--blue .p-policy__cts__btmtxt a {
  color: #fff;
}
.p-policy__cts.--1st::after {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  background: url(../img/common/deco_bird_l.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -80px;
  right: 3%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-policy__inr {
    background: #1783c5;
    color: #fff;
  }
  .p-policy__top {
    padding-bottom: 100px;
  }
  .p-policy__top__wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .p-policy__top__wrap::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/policy/policy_img01_deco01.svg) no-repeat;
    background-size: cover;
    background-position: top;
    width: 130px;
    height: 80px;
    top: 28%;
    left: -8%;
    -webkit-animation: move 20s linear infinite;
            animation: move 20s linear infinite;
  }
  .p-policy__top__wrap::after {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/policy/policy_img01_deco02.svg) no-repeat;
    background-size: cover;
    background-position: top;
    width: 130px;
    height: 80px;
    top: 52%;
    right: -23%;
    -webkit-animation: move-reverse 20s linear infinite;
            animation: move-reverse 20s linear infinite;
  }
  .p-policy__top h2 {
    padding: 70px 0 5px;
  }
  .p-policy__top__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-policy__top__main h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 1.5;
  }
  .p-policy__top__main p {
    text-align: justify;
    margin-top: 2rem;
    font-weight: bold;
    line-height: 3.3rem;
  }
  .p-policy__top__sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 60px;
  }
  .p-policy__top__sub h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 3.2rem;
    line-height: 1.5;
  }
  .p-policy__top__sub h3 span {
    font-size: 3.8rem;
    line-height: 1;
  }
  .p-policy__top__sub p {
    text-align: justify;
    margin-top: 2rem;
    font-weight: bold;
    line-height: 3.3rem;
    letter-spacing: 1.5px;
  }
  .p-policy__top__sub p span {
    font-size: 1.4rem;
  }
  .p-policy__top__sub p::after {
    content: "";
    display: block;
    position: absolute;
    background: url(../img/policy/policy_img01_deco03.svg) no-repeat;
    background-size: cover;
    background-position: top;
    width: 130px;
    height: 85px;
    top: 100%;
    right: -1%;
  }
  .p-policy__cts__inr {
    padding: 50px 0 80px;
  }
  .p-policy__cts .inrWidth {
    max-width: 600px;
    margin: 0 auto;
  }
  .p-policy__cts__h3 {
    line-height: 2.3;
    text-align: justify;
  }
  .p-policy__cts__main {
    margin-top: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-policy__cts__main .-img {
    width: 100%;
  }
  .p-policy__cts__main .-txt {
    margin-top: 30px;
    width: 100%;
  }
  .p-policy__cts__btmtxt {
    margin-top: 35px;
  }
  .p-policy__cts.--blue {
    color: #fff;
  }
  .p-policy__cts.--blue .p-policy__cts__inr {
    background: #1783c5;
    padding: 40px 0;
  }
  .p-policy__cts.--blue .p-policy__cts__h3 {
    color: #fff;
  }
  .p-policy__cts.--blue .p-policy__cts__btmtxt a {
    color: #fff;
  }
  .p-policy__cts.--1st::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 2%;
    z-index: 1;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
.p-gallery h3 {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
.p-gallery-main {
  color: #fff;
}
.p-gallery-main__inr {
  background: #1783c5;
  padding: 70px 0 120px;
}
.p-gallery-main__dc {
  position: relative;
}
.p-gallery-main__dc::after {
  content: "";
  display: block;
  width: 220px;
  height: 220px;
  background: url(../img/common/deco_bird_l.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: -145px;
  right: -12%;
  z-index: 1;
}
.p-gallery-main__ttl {
  margin-bottom: 100px;
}
.p-gallery-main__blk {
  padding: 90px 0 50px;
  position: relative;
}
.p-gallery-main__blk::before, .p-gallery-main__blk::after {
  width: 100%;
  height: 4px;
  background: url(../img/gallery/bar_wh.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
}
.p-gallery-main__blk::after {
  content: "";
  bottom: 0;
}
.p-gallery-main__blk.--1st::before {
  content: "";
  top: 0;
}
.p-gallery-main__blk__movies {
  position: relative;
}
.p-gallery-main__blk__movies.--1st::before {
  content: "";
  display: block;
  width: 310px;
  height: 130px;
  background: url(../img/common/deco_kumo01.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -145px;
  left: -17%;
  z-index: 1;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.p-gallery-main__blk__movies.--2nd::before {
  content: "";
  display: block;
  width: 480px;
  height: 200px;
  background: url(../img/common/deco_kumo02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -260px;
  right: -38%;
  z-index: 1;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
.p-gallery-main__blk__movies.--3rd::before {
  content: "";
  display: block;
  width: 400px;
  height: 220px;
  background: url(../img/common/deco_kumo_w.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -285px;
  left: -26%;
  z-index: 1;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.p-gallery-other {
  color: #1783c5;
  padding: 90px 0 30px;
}
.p-gallery-other__blk__movies {
  position: relative;
}
.p-gallery-other__blk__movies::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background: url(../img/common/deco_butterfly.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -115px;
  left: -12%;
}
.p-gallery-other__blk__movies li .-img {
  outline: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-gallery-other__blk__movies li .-txt {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .p-gallery h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .p-gallery-main {
    color: #fff;
  }
  .p-gallery-main__inr {
    padding: 70px 0 90px;
  }
  .p-gallery-main__dc {
    position: relative;
  }
  .p-gallery-main__dc::after {
    width: 110px;
    height: 110px;
    bottom: -70px;
    right: -10%;
    z-index: 1;
  }
  .p-gallery-main__ttl {
    margin-bottom: 50px;
  }
  .p-gallery-main__blk {
    padding: 45px 0 25px;
    position: relative;
  }
  .p-gallery-main__blk::before, .p-gallery-main__blk::after {
    height: 4px;
  }
  .p-gallery-main__blk.--1st::before {
    z-index: 10;
  }
  .p-gallery-main__blk__movies {
    position: relative;
  }
  .p-gallery-main__blk__movies.--1st::before {
    width: 160px;
    height: 70px;
    top: -145px;
    left: -17%;
  }
  .p-gallery-main__blk__movies.--2nd::before {
    width: 240px;
    height: 100px;
    top: -200px;
    right: -40%;
  }
  .p-gallery-main__blk__movies.--3rd::before {
    width: 200px;
    height: 110px;
    top: -180px;
    left: -26%;
  }
  .p-gallery-other {
    padding: 50px 0 30px;
  }
  .p-gallery-other__blk__movies::before {
    width: 100px;
    height: 100px;
    top: -90px;
    left: -12%;
  }
  .p-gallery-other__blk__movies li .-img {
    outline: 1px solid #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-gallery-other__blk__movies li .-txt {
    color: #000000;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
.p-support h3 {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}
.p-support-main {
  color: #fff;
  font-weight: bold;
}
.p-support-main__inr {
  background: #1783c5;
  padding: 70px 0 120px;
}
.p-support-main__lead {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 80px;
}
.p-support-main__blk {
  padding: 90px 0;
  position: relative;
}
.p-support-main__blk::before, .p-support-main__blk::after {
  width: 100%;
  height: 4px;
  background: url(../img/gallery/bar_wh.svg) no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
}
.p-support-main__blk::after {
  content: "";
  bottom: 0;
}
.p-support-main__blk:first-of-type::before {
  content: "";
  top: 0;
}
.p-support-main__blk__inr {
  position: relative;
}
.p-support-main__blk__inr.--1st::before {
  content: "";
  display: block;
  width: 480px;
  height: 200px;
  background: url(../img/common/deco_kumo02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -395px;
  right: -35%;
  z-index: 1;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
.p-support-main__blk__inr.--1st::after {
  content: "";
  display: block;
  width: 400px;
  height: 220px;
  background: url(../img/common/deco_kumo_w.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -65px;
  left: -24%;
  z-index: 1;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
.p-support-main__blk__inr.--2nd::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/policy/policy_img01_deco03.svg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 345px;
  height: 210px;
  top: -350px;
  right: -19%;
  z-index: 1;
}
.p-support-main__blk__inr.--2nd::after {
  content: "";
  display: block;
  width: 170px;
  height: 170px;
  background: url(../img/common/deco_bird_only.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 26%;
  left: -9%;
  z-index: 1;
}
.p-support-main__blk__txt {
  text-align: center;
  line-height: 2.5;
}
.p-support-main__blk__btn {
  margin-top: 35px;
}
.p-support-main__blk__btmtxt {
  margin-top: 30px;
  text-align: center;
  font-size: 1.6rem;
}
.p-support-main__blk__btmtxt a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .p-support h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .p-support-main {
    color: #fff;
    font-weight: bold;
  }
  .p-support-main__inr {
    background: #1783c5;
    padding: 70px 0 80px;
  }
  .p-support-main__lead {
    text-align: justify;
    margin-bottom: 40px;
  }
  .p-support-main__blk {
    padding: 45px 0;
    position: relative;
  }
  .p-support-main__blk::before, .p-support-main__blk::after {
    height: 3px;
  }
  .p-support-main__blk::after {
    content: "";
    bottom: 0;
  }
  .p-support-main__blk:first-of-type::before {
    content: "";
    top: 0;
  }
  .p-support-main__blk__inr {
    position: relative;
  }
  .p-support-main__blk__inr.--1st::before {
    width: 240px;
    height: 100px;
  }
  .p-support-main__blk__inr.--1st::after {
    width: 200px;
    height: 110px;
    top: -105px;
    left: -30%;
  }
  .p-support-main__blk__inr.--2nd::before {
    width: 170px;
    height: 100px;
    top: -22%;
    right: -26%;
  }
  .p-support-main__blk__inr.--2nd::after {
    width: 80px;
    height: 80px;
    top: 90%;
    left: -9%;
    z-index: 1;
  }
  .p-support-main__blk__txt {
    text-align: justify;
  }
  .p-support-main__blk__btn {
    margin-top: 35px;
  }
  .p-support-main__blk__btmtxt {
    margin-top: 30px;
    text-align: center;
    font-size: 1.6rem;
  }
}
/*----------------------------------------
MAIN
-----------------------------------------*/
.p-planning {
  font-weight: 900;
}
.p-planning-plan__comblk {
  margin-top: 45px;
  font-weight: 900;
}
.p-planning-plan__comblk__subttl {
  font-size: 2.5rem;
  color: #1783c5;
  text-align: center;
  margin-bottom: 20px;
}
.p-planning-plan__comblk__subttl.--wh {
  color: #fff;
}
.p-planning-plan__comblk__txts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.p-planning-plan__comblk__txts::after {
  content: "など";
  bottom: 10px;
  right: 0;
  position: absolute;
}
.p-planning-plan__comblk__txts li {
  margin-bottom: 15px;
}
.p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+1) {
  width: 16%;
}
.p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+2) {
  width: 17%;
}
.p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+3) {
  width: 29%;
}
.p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+4) {
  width: 38%;
}
.p-planning-plan__comblk__txts.--2nd li {
  width: 49%;
}
.p-planning-plan__comblk__txts.--3rd::after {
  content: none;
}
.p-planning-plan__comblk__txts.--3rd li {
  width: 100%;
}
.p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+1) {
  width: 38%;
}
.p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+2) {
  width: 28%;
}
.p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+3) {
  width: 34%;
}
.p-planning-plan__comblk__btmtxt {
  margin-top: 10px;
}
.p-planning-plan01__inr {
  padding: 70px 0 100px;
  background: #1783c5;
}
.p-planning-plan01__bg {
  position: relative;
}
.p-planning-plan01__bg::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/deco_kumo_w_none.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 650px;
  height: 190px;
  z-index: 1;
  top: 2%;
  right: -36%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan01__bg::before {
    width: 650px;
    height: 190px;
  }
}
.p-planning-plan01__bg::after {
  content: "";
  display: block;
  width: 480px;
  height: 200px;
  background: url(../img/common/deco_kumo02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  width: 530px;
  height: 220px;
  top: 63%;
  left: -23%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan01__bg::after {
    width: 240px;
    height: 100px;
  }
}
.p-planning-plan01__cts {
  margin-top: 90px;
}
.p-planning-plan02 {
  padding: 85px 0 50px;
}
.p-planning-plan02__lead {
  width: 98%;
  margin: 70px auto 110px;
}
.p-planning-plan02__cts {
  position: relative;
  padding: 90px 0 80px;
  font-weight: 900;
}
.p-planning-plan02__cts__decoblk {
  position: relative;
}
.p-planning-plan02__cts__decoblk.--1st::before {
  content: "";
  display: block;
  width: 400px;
  height: 220px;
  background: url(../img/common/deco_kumo_w.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: -210px;
  right: -22%;
  z-index: 1;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan02__cts__decoblk.--1st::before {
    width: 200px;
    height: 110px;
  }
}
.p-planning-plan02__cts__decoblk.--1st::after {
  content: "";
  display: block;
  width: 240px;
  height: 240px;
  background: url(../img/common/deco_bird_r.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  bottom: -210px;
  left: -16%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-planning-plan02__cts__decoblk.--1st::after {
    width: 120px;
    height: 120px;
  }
}
.p-planning-plan02__cts__decoblk.--2nd::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/deco_kumo01.svg) no-repeat;
  background-size: cover;
  background-position: top;
  width: 350px;
  height: 150px;
  top: 13%;
  right: -14%;
  z-index: 1;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan02__cts__decoblk.--2nd::before {
    width: 180px;
    height: 80px;
  }
}
.p-planning-plan02__cts__decoblk.--2nd::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/deco_kumo_w_none.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 650px;
  height: 190px;
  z-index: 1;
  bottom: -2%;
  right: -23%;
  z-index: 1;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan02__cts__decoblk.--2nd::after {
    width: 650px;
    height: 190px;
  }
}
.p-planning-plan02__cts__ttl {
  margin-bottom: 30px;
}
.p-planning-plan02__cts__lead {
  line-height: 2.2;
}
.p-planning-plan03 {
  color: #fff;
  font-weight: 900;
}
.p-planning-plan03__inr {
  background: #1783c5;
  padding: 95px 0 140px;
}
.p-planning-plan03__decoblk {
  position: relative;
}
.p-planning-plan03__decoblk::before {
  content: "";
  display: block;
  width: 400px;
  height: 220px;
  background: url(../img/common/deco_kumo_w.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 35%;
  left: -25%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan03__decoblk::before {
    width: 200px;
    height: 110px;
  }
}
.p-planning-plan03__decoblk::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/deco_star.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 345px;
  height: 210px;
  z-index: 1;
  top: 16%;
  right: -20%;
}
@media screen and (max-width: 768px) {
  .p-planning-plan03__decoblk::after {
    width: 170px;
    height: 100px;
  }
}
.p-planning-plan03__lead {
  margin-top: 65px;
}
.p-planning-plan03__lead li {
  margin-bottom: 20px;
}
.p-planning-plan03__box {
  margin-top: 60px;
  padding: 55px 0;
}
.p-planning-plan03__box__decoblk {
  position: relative;
}
.p-planning-plan03__box__decoblk::after {
  content: "";
  display: block;
  width: 480px;
  height: 200px;
  background: url(../img/common/deco_kumo02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: -20%;
  right: -46%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-plan03__box__decoblk::after {
    width: 240px;
    height: 100px;
  }
}
.p-planning-bill {
  padding: 75px 0 140px;
}
.p-planning-bill__lead {
  line-height: 2.2;
  text-align: justify;
}
.p-planning-bill__btn {
  margin-top: 50px;
}
.p-planning-summary__inr {
  background: #1783c5;
  padding: 100px 0;
  margin-top: -1px;
}
.p-planning-summary__topbg, .p-planning-summary__btmbg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.p-planning-summary__decoblk {
  position: relative;
}
.p-planning-summary__decoblk::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/common/deco_kumo_w_none.svg) no-repeat;
  background-size: contain;
  background-position: top;
  width: 650px;
  height: 190px;
  z-index: 1;
  top: -2%;
  left: -36%;
  -webkit-animation: move 20s linear infinite;
          animation: move 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-summary__decoblk::before {
    width: 650px;
    height: 190px;
  }
}
.p-planning-summary__decoblk::after {
  content: "";
  display: block;
  width: 480px;
  height: 200px;
  background: url(../img/common/deco_kumo02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  bottom: -7%;
  right: -30%;
  -webkit-animation: move-reverse 20s linear infinite;
          animation: move-reverse 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .p-planning-summary__decoblk::after {
    width: 240px;
    height: 100px;
  }
}
.p-planning-summary__btn {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .p-planning-plan__comblk {
    margin-top: 25px;
    font-weight: 900;
  }
  .p-planning-plan__comblk__subttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 2.3;
    text-align: justify;
  }
  .p-planning-plan__comblk__txts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .p-planning-plan__comblk__txts::after {
    content: "など";
    bottom: 10px;
    right: 0;
    position: absolute;
  }
  .p-planning-plan__comblk__txts li {
    margin-bottom: 5px;
  }
  .p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+1) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+2) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+3) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--1st li:nth-of-type(4n+4) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--2nd li {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--3rd::after {
    content: none;
  }
  .p-planning-plan__comblk__txts.--3rd li {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+1) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+2) {
    width: 100%;
  }
  .p-planning-plan__comblk__txts.--4th li:nth-of-type(3n+3) {
    width: 100%;
  }
  .p-planning-plan__comblk__btmtxt {
    margin-top: 10px;
  }
  .p-planning-plan01__inr {
    padding: 70px 0;
  }
  .p-planning-plan01__bg {
    position: relative;
  }
  .p-planning-plan01__bg::before {
    width: 320px;
    height: 80px;
    top: 2%;
    right: -60%;
  }
  .p-planning-plan01__bg::after {
    top: 63%;
    left: -23%;
  }
  .p-planning-plan01__cts {
    margin-top: 10px;
  }
  .p-planning-plan02 {
    padding: 70px 0 50px;
  }
  .p-planning-plan02__lead {
    margin: 35px auto 50px;
  }
  .p-planning-plan02__cts {
    padding: 45px 0 40px;
  }
  .p-planning-plan02__cts__decoblk {
    position: relative;
  }
  .p-planning-plan02__cts__decoblk.--1st::before {
    top: -110px;
    right: -22%;
    z-index: 10;
  }
  .p-planning-plan02__cts__decoblk.--1st::after {
    bottom: -110px;
    left: -16%;
  }
  .p-planning-plan02__cts__decoblk.--2nd::before {
    top: 8%;
    right: -24%;
  }
  .p-planning-plan02__cts__decoblk.--2nd::after {
    bottom: -2%;
    right: -23%;
    width: 320px;
    height: 80px;
  }
  .p-planning-plan02__cts__ttl {
    margin-bottom: 30px;
  }
  .p-planning-plan02__cts__lead {
    line-height: 2.2;
  }
  .p-planning-plan03__inr {
    padding: 70px 0;
  }
  .p-planning-plan03__decoblk {
    position: relative;
  }
  .p-planning-plan03__decoblk::before {
    top: 37%;
    left: -25%;
  }
  .p-planning-plan03__decoblk::after {
    top: 23%;
    right: -43%;
  }
  .p-planning-plan03__lead {
    margin-top: 30px;
  }
  .p-planning-plan03__lead li {
    margin-bottom: 20px;
  }
  .p-planning-plan03__box {
    margin-top: 60px;
    padding: 55px 0;
  }
  .p-planning-plan03__box__decoblk {
    position: relative;
  }
  .p-planning-plan03__box__decoblk::after {
    top: -24%;
    right: -46%;
  }
  .p-planning-bill {
    padding: 70px 0;
  }
  .p-planning-bill__btn {
    margin-top: 40px;
  }
  .p-planning-summary__inr {
    background: #1783c5;
    padding: 70px 0;
  }
  .p-planning-summary__topbg, .p-planning-summary__btmbg {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .p-planning-summary__decoblk {
    position: relative;
  }
  .p-planning-summary__decoblk::before {
    width: 350px;
    height: 80px;
    top: -16%;
    left: -43%;
  }
  .p-planning-summary__decoblk::after {
    bottom: 6%;
    right: -50%;
  }
  .p-planning-summary__btn {
    margin-top: 40px;
  }
}