@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-03s {
  animation-delay: 0.3s;
}

.animated.delay-06s {
  animation-delay: 0.6s;
}

.animated.delay-09s {
  animation-delay: 0.9s;
}

.animated.delay-12s {
  animation-delay: 1.2s;
}

.animated.delay-05s {
  animation-delay: 0.51s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-15s {
  animation-delay: 1.5s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*
 * jQuery FlexSlider v2.7.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: "flexslider-icon";
  src: url("../fonts/flexslider-icon.eot");
  src: url("../fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("../fonts/flexslider-icon.woff") format("woff"), url("../fonts/flexslider-icon.ttf") format("truetype"), url("../fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 30px;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 20px;
  height: 20px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: #999;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 900;
  text-indent: -9999px;
  transform: rotate(180deg);
}

.flex-direction-nav a.flex-next:before {
  transform: rotate(0deg);
}

.flex-direction-nav .flex-prev {
  left: -5px;
}

.flex-direction-nav .flex-next {
  right: -5px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 0.7;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 0.7;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-paging li a.flex-active {
  border: 1px solid #000;
  position: relative;
  display: block;
}
.flex-control-paging li a.flex-active::before {
  text-indent: 0;
  content: "";
  font-weight: 900;
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  -webkit-transform: translateX(-50%) rotate(90deg);
  background: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*リセット
--------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/*fonts
---------------------------------------------*/
/*
Zen Kaku Gothic New regular
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 400;
font-style: normal;

Zen Kaku Gothic New medium
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 500;
font-style: normal;

Zen Kaku Gothic New bold
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 700;
font-style: normal;

Zen Kaku Gothic Antique
font-family: zen-kaku-gothic-antique, sans-serif;
font-weight: 700;
font-style: normal;

*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-feature-settings: "palt";
  color: #fff;
  font-size: 12px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

.en {
  font-family: transat-text, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  position: relative;
}
@media screen and (min-width: 769px) {
  body::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/backpc_1.png);
    background-size: cover;
    background-position: center center;
    position: fixed;
  }
}

div.load {
  background: url(../images/backpc_1.png);
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  div.load img {
    width: 20.8333333333%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  div.load img {
    width: 76.2666666667%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

div.video {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
}
div.video div.sp {
  position: relative;
  width: 100%;
  height: 100%;
}
div.video div.sp video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100vh;
}

div.vertical_left {
  height: 100vh;
  width: 2.5vw;
  position: fixed;
  left: 0;
  top: 0;
}

div.vertical_right {
  height: 100vh;
  width: 2.5vw;
  position: fixed;
  right: 0;
  top: 0;
}

a.back_top {
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  a.back_top {
    width: 10.1333333333vw;
    height: 10.1333333333vw;
    position: fixed;
    right: 3.4666666667%;
    bottom: 2%;
    transition: 1s;
  }
}
@media screen and (min-width: 769px) {
  a.back_top {
    width: 3.1666666667vw;
    height: 3.1666666667vw;
    position: fixed;
    right: 3.4666666667%;
    bottom: 2%;
    transition: 1s;
  }
}

@media screen and (min-width: 769px) {
  div#wrap {
    width: 36.25%;
    overflow: hidden;
    position: absolute;
    box-sizing: border-box;
    right: 13.75%;
    border-left: 2.5vw solid rgba(255, 255, 255, 0.1);
    border-right: 2.5vw solid rgba(255, 255, 255, 0.1);
  }
}
div#wrap::before {
  content: "";
}
@media screen and (max-width: 768px) {
  div#wrap::before {
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../images/back.png);
    background-size: cover;
    background-position: center center;
    position: fixed;
    top: 0;
    z-index: -1;
  }
}
div#wrap div.mainArea div.title {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
  padding: 20.8vw 0 23.4666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.mainArea div.title {
    padding: 6.5vw 0 7.3333333333vw;
  }
}
div#wrap div.mainArea div.title div.gold {
  background: url(../images/gold.jpg);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-position: 0% 50%;
  animation: gold 5s infinite;
}
div#wrap div.mainArea div.title div.gold h1 {
  font-size: 44px;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  div#wrap div.mainArea div.title div.gold h1 {
    font-size: 3.6666666667vw;
  }
}
div#wrap div.mainArea div.title div.gold h1 span {
  display: block;
  font-size: 7.4666666667vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.mainArea div.title div.gold h1 span {
    font-size: 2.3333333333vw;
    margin-top: 0.8333333333vw;
  }
}
div#wrap div.mainArea div.title div.goldbox {
  background: url(../images/gold.jpg);
  background-size: 200%;
  background-clip: content-box;
  -webkit-background-clip: content-box;
  color: #090e31;
  background-position: 0% 50%;
  width: 33.3333333333%;
  margin: 0 auto;
  font-weight: bold;
  font-size: 4.5333333333vw;
  text-align: center;
  border-radius: 5.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.9333333333vw;
  margin-bottom: 4vw;
  animation: gold 5s infinite;
}
@media screen and (min-width: 769px) {
  div#wrap div.mainArea div.title div.goldbox {
    font-size: 1.4166666667vw;
    border-radius: 1.6666666667vw;
    height: 2.1666666667vw;
    margin-bottom: 1.25vw;
  }
}
div#wrap div.mainArea div.loop {
  display: flex;
  width: 100vw;
  height: 61.3333333333vw;
  overflow: hidden;
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.mainArea div.loop {
    height: 19.1666666667vw;
    margin-bottom: 10vw;
  }
}
div#wrap div.mainArea div.loop img {
  width: auto;
  height: 100%;
}
div#wrap div.mainArea div.loop img:first-child {
  animation: slide1 60s -30s linear infinite;
}
div#wrap div.mainArea div.loop img:last-child {
  animation: slide2 60s linear infinite;
}
div#wrap div.desc {
  padding-top: 16vw;
  padding-bottom: 21.8666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.desc {
    padding-top: 5vw;
    padding-bottom: 6.8333333333vw;
  }
}
div#wrap div.desc p {
  font-size: 4vw;
  width: 81.3333333333%;
  margin: 0 auto 15.4666666667vw;
  line-height: 1.86;
}
@media screen and (min-width: 769px) {
  div#wrap div.desc p {
    font-size: 1.25vw;
    margin: 0 auto 4.8333333333vw;
  }
}
div#wrap div.desc ul.menu {
  width: 89.3333333333%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu {
    position: fixed;
    width: 28.1666666667%;
    left: 13.75%;
    top: 20%;
  }
}
div#wrap div.desc ul.menu li {
  width: 48.3582089552%;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu li {
    margin-bottom: 1.5vw;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu li:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu li:first-child img {
    width: 38.4615384615%;
    margin: 0 auto 3.1666666667vw;
  }
}
div#wrap div.desc ul.menu li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  border: 0.2666666667vw solid #fff;
  border-radius: 2.6666666667vw;
  text-align: center;
  font-size: 4.8vw;
  width: 100%;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu li a {
    border: 0.0833333333vw solid #fff;
    border-radius: 0.8333333333vw;
    font-size: 1.5vw;
    height: 3.75vw;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div.desc ul.menu li a::after {
    content: "";
    background: #fff;
    left: -180px;
    opacity: 0.1;
    position: absolute;
    top: -80px;
    transform: rotate(45deg);
    height: 16.6666666667vw;
    width: 3.3333333333vw;
  }
}
div#wrap div.desc ul.menu li a:hover::after {
  left: 120%;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
div#wrap div.block {
  margin-bottom: 49.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block {
    margin-bottom: 15.4166666667vw;
  }
}
div#wrap div.block div.first div.emb {
  width: 62.6666666667%;
  margin: 0 auto 6.6666666667vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.emb {
    margin: 0 auto 2.0833333333vw;
  }
}
div#wrap div.block div.first div.emb:before {
  content: "";
  display: block;
  padding-top: 53.1914893617%;
}
div#wrap div.block div.first div.emb span {
  display: block;
}
div#wrap div.block div.first div.emb span.crown {
  width: 13.6170212766%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
div#wrap div.block div.first div.emb span.left {
  width: 20.8510638298%;
  position: absolute;
  left: 0;
  bottom: 0;
}
div#wrap div.block div.first div.emb span.right {
  width: 20.8510638298%;
  position: absolute;
  right: 0;
  bottom: 0;
}
div#wrap div.block div.first div.emb p.award {
  font-size: 5.3333333333vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40%;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.emb p.award {
    font-size: 1.6666666667vw;
  }
}
div#wrap div.block div.first div.emb p.number {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6.4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.emb p.number {
    font-size: 2vw;
  }
}
div#wrap div.block div.first div.emb p.number span {
  font-size: 9.6vw;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.emb p.number span {
    font-size: 3vw;
  }
}
div#wrap div.block div.first div.back {
  background: #fff;
  border-radius: 4vw;
  box-sizing: border-box;
  padding: 4vw;
  width: 97%;
  margin: 0 auto 26.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back {
    border-radius: 1.25vw;
    padding: 1.25vw;
    margin: 0 auto 8.3333333333vw;
  }
}
div#wrap div.block div.first div.back div.img01 {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img01 {
    margin-bottom: 2.0833333333vw;
  }
}
div#wrap div.block div.first div.back div.img01 a {
  text-decoration: none;
}
div#wrap div.block div.first div.back div.img01 a img {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img01 a img {
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.first div.back div.img01 a p.btn {
  background: #D6C59F;
  color: #10163A;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64.1791044776%;
  margin: 0 auto;
  height: 10.6666666667vw;
  font-size: 4.2666666667vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img01 a p.btn {
    height: 3.3333333333vw;
    font-size: 1.3333333333vw;
    border-radius: 0.8333333333vw;
  }
}
div#wrap div.block div.first div.back div.img01 a p.btn span {
  width: 7.2vw;
  display: inline-block;
  margin-right: 2.4vw;
  height: 7.2vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img01 a p.btn span {
    width: 2.25vw;
    margin-right: 0.75vw;
    height: 2.25vw;
  }
}
div#wrap div.block div.first div.back div.img02_03 {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img02_03 {
    margin-bottom: 2.0833333333vw;
  }
}
div#wrap div.block div.first div.back div.img02_03 ul {
  display: flex;
  justify-content: space-between;
}
div#wrap div.block div.first div.back div.img02_03 ul li {
  width: 49.2537313433%;
}
div#wrap div.block div.first div.back div.img02_03 ul li a {
  text-decoration: none;
}
div#wrap div.block div.first div.back div.img02_03 ul li a img {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img02_03 ul li a img {
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.first div.back div.img02_03 ul li a p {
  background: #D6C59F;
  color: #10163A;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 81.8181818182%;
  margin: 0 auto;
  height: 8vw;
  font-size: 3.4666666667vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img02_03 ul li a p {
    height: 2.5vw;
    font-size: 1.0833333333vw;
    border-radius: 0.8333333333vw;
  }
}
div#wrap div.block div.first div.back div.img02_03 ul li a p span {
  width: 5.8666666667vw;
  display: inline-block;
  margin-right: 1.8666666667vw;
  height: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.img02_03 ul li a p span {
    width: 1.8333333333vw;
    margin-right: 0.5833333333vw;
    height: 1.8333333333vw;
  }
}
div#wrap div.block div.first div.back div.staff {
  color: #10163A;
}
div#wrap div.block div.first div.back div.staff h2 {
  line-height: 1;
  font-size: 6.4vw;
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff h2 {
    font-size: 2vw;
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.first div.back div.staff h2 span {
  font-size: 3.7333333333vw;
  margin-bottom: 4vw;
  display: block;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff h2 span {
    font-size: 1.1666666667vw;
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.first div.back div.staff dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #10163A;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
div#wrap div.block div.first div.back div.staff dl dt {
  width: 29.8507462687%;
}
div#wrap div.block div.first div.back div.staff dl dt img {
  border-radius: 50%;
}
div#wrap div.block div.first div.back div.staff dl dd {
  width: 65.671641791%;
  line-height: 1.81;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff dl dd {
    font-size: 0.9166666667vw;
  }
}
div#wrap div.block div.first div.back div.staff ul.linkArea {
  width: 91.0447761194%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff ul.linkArea {
    margin: 0 auto 2.0833333333vw;
  }
}
div#wrap div.block div.first div.back div.staff ul.linkArea li {
  width: 44.262295082%;
  height: 8vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff ul.linkArea li {
    height: 2.5vw;
  }
}
div#wrap div.block div.first div.back div.staff ul.linkArea li a {
  display: block;
  border: 1px solid #10163A;
  display: flex;
  font-size: 3.4666666667vw;
  width: 100%;
  height: 100%;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.first div.back div.staff ul.linkArea li a {
    font-size: 1.0833333333vw;
    border-radius: 0.4166666667vw;
  }
}
div#wrap div.block div.second_third {
  width: 97.6%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
div#wrap div.block div.second_third div.second, div#wrap div.block div.second_third div.third {
  width: 49.4535519126%;
}
div#wrap div.block div.second_third div.second div.emb, div#wrap div.block div.second_third div.third div.emb {
  width: 54.1436464088%;
  margin: 0 auto 6.6666666667vw;
  position: relative;
  background: url(../images/leaf.png);
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.emb, div#wrap div.block div.second_third div.third div.emb {
    margin: 0 auto 2.0833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.emb::before, div#wrap div.block div.second_third div.third div.emb::before {
  content: "";
  display: block;
  padding-top: 85.7142857143%;
}
div#wrap div.block div.second_third div.second div.emb p.number, div#wrap div.block div.second_third div.third div.emb p.number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.emb p.number, div#wrap div.block div.second_third div.third div.emb p.number {
    font-size: 1.6666666667vw;
  }
}
div#wrap div.block div.second_third div.second div.emb p.number span, div#wrap div.block div.second_third div.third div.emb p.number span {
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.emb p.number span, div#wrap div.block div.second_third div.third div.emb p.number span {
    font-size: 2.6666666667vw;
  }
}
div#wrap div.block div.second_third div.second div.back, div#wrap div.block div.second_third div.third div.back {
  background: #fff;
  border-radius: 2.6666666667vw;
  box-sizing: border-box;
  padding: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back, div#wrap div.block div.second_third div.third div.back {
    border-radius: 0.8333333333vw;
    padding: 0.8333333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back a.styling, div#wrap div.block div.second_third div.third div.back a.styling {
  display: block;
  text-decoration: none;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back a.styling, div#wrap div.block div.second_third div.third div.back a.styling {
    margin-bottom: 2.0833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back a.styling div.img, div#wrap div.block div.second_third div.third div.back a.styling div.img {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back a.styling div.img, div#wrap div.block div.second_third div.third div.back a.styling div.img {
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.second_third div.second div.back a.styling p, div#wrap div.block div.second_third div.third div.back a.styling p {
  width: 83.850931677%;
  height: 8vw;
  color: #10163A;
  background: #D3BB84;
  display: flex;
  margin: 0 auto;
  border-radius: 2.6666666667vw;
  justify-content: center;
  align-items: center;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back a.styling p, div#wrap div.block div.second_third div.third div.back a.styling p {
    height: 2.5vw;
    border-radius: 0.8333333333vw;
    font-size: 1.0833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back a.styling p span, div#wrap div.block div.second_third div.third div.back a.styling p span {
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  margin-right: 1.8666666667vw;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back a.styling p span, div#wrap div.block div.second_third div.third div.back a.styling p span {
    width: 1.8333333333vw;
    height: 1.8333333333vw;
    margin-right: 0.5833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back h2, div#wrap div.block div.second_third div.third div.back h2 {
  font-size: 6.4vw;
  color: #10163A;
  text-align: center;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back h2, div#wrap div.block div.second_third div.third div.back h2 {
    font-size: 2vw;
    margin-bottom: 1.6666666667vw;
  }
}
div#wrap div.block div.second_third div.second div.back h2 span, div#wrap div.block div.second_third div.third div.back h2 span {
  font-size: 3.7333333333vw;
  display: block;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back h2 span, div#wrap div.block div.second_third div.third div.back h2 span {
    font-size: 1.1666666667vw;
    margin-bottom: 1.25vw;
  }
}
div#wrap div.block div.second_third div.second div.back dl, div#wrap div.block div.second_third div.third div.back dl {
  padding-bottom: 6.6666666667vw;
  border-bottom: 0.2666666667vw dashed #10163a;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back dl, div#wrap div.block div.second_third div.third div.back dl {
    padding-bottom: 2.0833333333vw;
    border-bottom: 0.0833333333vw dashed #10163a;
  }
}
div#wrap div.block div.second_third div.second div.back dl dt, div#wrap div.block div.second_third div.third div.back dl dt {
  width: 55.2486187845%;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back dl dt, div#wrap div.block div.second_third div.third div.back dl dt {
    margin: 0 auto 1.6666666667vw;
  }
}
div#wrap div.block div.second_third div.second div.back dl dt img, div#wrap div.block div.second_third div.third div.back dl dt img {
  border-radius: 50%;
}
div#wrap div.block div.second_third div.second div.back dl dd, div#wrap div.block div.second_third div.third div.back dl dd {
  color: #10163A;
  font-size: 2.9333333333vw;
  line-height: 1.81;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back dl dd, div#wrap div.block div.second_third div.third div.back dl dd {
    font-size: 0.9166666667vw;
  }
}
div#wrap div.block div.second_third div.second div.back ul.linkArea, div#wrap div.block div.second_third div.third div.back ul.linkArea {
  padding-top: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back ul.linkArea, div#wrap div.block div.second_third div.third div.back ul.linkArea {
    padding-top: 2.0833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back ul.linkArea li, div#wrap div.block div.second_third div.third div.back ul.linkArea li {
  width: 74.5856353591%;
  margin: 0 auto 3.4666666667vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back ul.linkArea li, div#wrap div.block div.second_third div.third div.back ul.linkArea li {
    margin: 0 auto 1.0833333333vw;
  }
}
div#wrap div.block div.second_third div.second div.back ul.linkArea li.after::after, div#wrap div.block div.second_third div.third div.back ul.linkArea li.after::after {
  content: "";
  display: block;
  width: 100%;
  height: 8vw;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back ul.linkArea li.after::after, div#wrap div.block div.second_third div.third div.back ul.linkArea li.after::after {
    height: 2.5vw;
  }
}
div#wrap div.block div.second_third div.second div.back ul.linkArea li a, div#wrap div.block div.second_third div.third div.back ul.linkArea li a {
  border: 1px solid #10163A;
  border-radius: 2.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8vw;
  font-size: 3.4666666667vw;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  div#wrap div.block div.second_third div.second div.back ul.linkArea li a, div#wrap div.block div.second_third div.third div.back ul.linkArea li a {
    border-radius: 0.8333333333vw;
    height: 2.5vw;
    font-size: 1.0833333333vw;
  }
}

footer {
  background: #f8f7f7;
  color: #000000;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 24vw 0 8vw;
  }
}
@media screen and (min-width: 769px) {
  footer {
    padding: 7.5vw 0 2.5vw;
  }
}
@media screen and (min-width: 769px) {
  footer div.bnrarea {
    width: 86.6666666667%;
    margin: 0 auto 5.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  footer div.bnrarea {
    width: 86.6666666667%;
    margin: 0 auto 17.3333333333vw;
  }
}
footer div.bnrarea a {
  text-decoration: none;
  color: #222;
  text-align: center;
  display: block;
}
@media screen and (min-width: 769px) {
  footer div.bnrarea a img {
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  footer div.bnrarea a img {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea {
    margin: 0 auto 8vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea {
    margin: 0 auto 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea li {
    width: 8vw;
    margin-right: 5.8666666667vw;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li {
    margin-right: 1.6666666667vw;
    width: 2.5vw;
    margin-right: 1.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li a span.icon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea li a span.icon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea li a span.text {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li a span.text {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  footer a.foot_logo {
    display: block;
    width: 37.3333333333vw;
    margin: 0 auto 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  footer a.foot_logo {
    display: block;
    width: 11.6666666667vw;
    margin: 0 auto 0.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  footer p.foot_copy {
    font-size: 2.6666666667vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  footer p.foot_copy {
    font-size: 0.8333333333vw;
    text-align: center;
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
div.fixed_menu {
  width: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  opacity: 0;
  transition: 1s;
}
div.fixed_menu ul {
  padding: 2.6666666667vw;
  display: flex;
  justify-content: space-between;
}
div.fixed_menu ul li {
  width: 25.6vw;
}
div.fixed_menu ul li a {
  display: block;
  width: 100%;
}
div.fixed_menu ul li img {
  border-radius: 50%;
  background: #fff;
  width: 100%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
div.fixed_menu.active {
  opacity: 1;
}

/*========= レイアウトのためのCSS ===============*/
a {
  color: #333;
}

a:hover {
  text-decoration: none;
}

/*アニメーション*/
/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0.6;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shinyshiny {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes gold {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}/*# sourceMappingURL=style.css.map */