@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: #707070;
  font-size: 12px;
  font-family: "Noto Sans 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;
  }
}

/*
font-family: gill-sans-nova, sans-serif;
font-weight: 400;
font-style: normal;

font-family: gill-sans-nova, sans-serif;
font-weight: 500;
font-style: normal;

*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: url(../images/50_AdobeStock_416490183.jpg);
  background-size: cover;
  background-position: left top;
  text-align: center;
  color: #707070;
}
#splash p.title {
  position: absolute;
  width: 74.6666666667%;
  left: 50%;
  transform: translateX(-50%);
  top: 29.5%;
}
@media screen and (min-width: 769px) {
  #splash p.title {
    width: 27.8184480234%;
  }
}
#splash #splash_text {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  #splash #splash_text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #splash #splash_text {
    font-size: 4.8vw;
  }
}

@media screen and (max-width: 768px) {
  div#container div.pcback {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../images/bg_pc.png);
    background-size: cover;
    background-position: center center;
    z-index: 0;
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.left {
    width: 22.4550898204%;
    position: absolute;
    left: 7.027818448%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.left div {
    width: 93.3333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.left h1 {
    width: 76.3333333333%;
    margin: 1.0248901903vw auto 0;
  }
}
div#container div.pcback div.inner div.scroll {
  position: absolute;
  right: 33.3821376281%;
  bottom: 1.0980966325vw;
  width: 1.3909224012%;
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.right {
    width: 20.5710102489%;
    position: absolute;
    right: 8.4187408492%;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.right ul {
    width: 87.9003558719%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #B786AD;
    margin-bottom: 0.3660322108vw;
  }
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.right ul li {
    width: 46.5587044534%;
    margin-bottom: 1.8301610542vw;
  }
}
div#container div.pcback div.inner div.right ul::after {
  content: "";
  display: block;
  background: url(../images/star.svg) #f9f3f7 no-repeat;
  background-size: contain;
  background-position: center center;
  width: 1.9765739385vw;
  height: 1.9765739385vw;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 0 0.6588579795vw;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  div#container div.pcback div.inner div.right div.img {
    margin-top: 2.9282576867vw;
    width: 91.8149466192%;
    margin-left: 0.5856515373vw;
  }
}
div#container div.center {
  width: 100%;
}
@media screen and (min-width: 769px) {
  div#container div.center {
    width: 27.4524158126%;
    margin: 0 auto;
    box-sizing: border-box;
    border-left: 1px dotted #B786AD;
    border-right: 1px dotted #B786AD;
    position: relative;
    z-index: 2;
    background: #fff;
  }
}
div#container div.header {
  width: 100%;
  height: calc(100vh + 21.3333333333vw);
  background: url(../images/50_AdobeStock_416490183.jpg);
  background-size: cover;
  background-position: center top;
  box-sizing: border-box;
  padding: 3.4666666667vw;
  position: relative;
}
div#container div.header div#movie {
  background: #ccc;
}
div#container div.header div#movie::before {
  content: "";
  display: block;
  padding-top: 132.8571428571%;
}
div#container div.header h1 {
  position: absolute;
  top: calc(68.4% - 14.6666666667vw);
  left: 50%;
  transform: translateX(-50%);
  width: 82.6666666667%;
}
div#container div.header::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 21.3333333333vw;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
div#container div.desc {
  position: relative;
  z-index: 2;
  font-size: 3.4666666667vw;
  padding-bottom: 16vw;
}
@media screen and (min-width: 769px) {
  div#container div.desc {
    font-size: 0.9516837482vw;
    padding-bottom: 4.39238653vw;
    background: #fff;
  }
}
div#container div.desc p {
  line-height: 2;
  width: 85.3333333333%;
  margin: 0 auto 21.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#container div.desc p {
    margin: 0 auto 5.8565153734vw;
    padding-top: 5.8565153734vw;
  }
}
div#container div.desc div.menu {
  width: 91.2%;
  margin: 0 auto;
  border: 1px solid #B786AD;
  border-left: none;
  border-right: none;
  padding: 6.6666666667vw 0 1.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.desc div.menu {
    padding: 1.8301610542vw 0 0.3660322108vw;
    border-bottom: none;
  }
}
div#container div.desc div.menu::before, div#container div.desc div.menu::after {
  content: "";
  display: block;
  background: url(../images/star.svg) #fff no-repeat;
  background-size: contain;
  background-position: center center;
  width: 7.2vw;
  height: 7.2vw;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 2.4vw;
}
@media screen and (min-width: 769px) {
  div#container div.desc div.menu::before, div#container div.desc div.menu::after {
    width: 1.9765739385vw;
    height: 1.9765739385vw;
    padding: 0 0.6588579795vw;
  }
}
div#container div.desc div.menu::before {
  top: 0;
}
div#container div.desc div.menu::after {
  bottom: -8%;
}
@media screen and (min-width: 769px) {
  div#container div.desc div.menu::after {
    display: none;
  }
}
div#container div.desc div.menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 87.7192982456%;
  margin: 0 auto;
}
div#container div.desc div.menu ul li {
  width: 46.6666666667%;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#container div.desc div.menu ul li {
    margin-bottom: 1.4641288433vw;
  }
}
div#container div.desc div.menu ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
div#container div.desc div.menu ul li a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: 300ms;
  animation: shinyshiny 5.5s ease-in-out infinite;
}
div#container div.desc div.menu ul li:nth-child(3) a::before, div#container div.desc div.menu ul li:nth-child(4) a::before {
  animation-delay: 2.5s;
}
div#container div.block {
  padding-top: 16vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block {
    padding-top: 60px;
  }
}
div#container div.block div.staff {
  margin-bottom: 16vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staff {
    margin-bottom: 4.39238653vw;
  }
}
div#container div.block div.fadebox {
  position: relative;
}
div#container div.block div.fadebox::before {
  content: "";
  display: block;
  padding-top: 137.3563218391%;
  background: url(../images/AdobeStock_74064732.jpeg);
  background-size: cover;
  background-position: center center;
}
div#container div.block div.fadebox img {
  opacity: 0;
  width: 100%;
  height: 98.3%;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 15s 0s infinite;
}
div#container div.block div.fadebox img:nth-of-type(2) {
  animation-delay: 5s;
}
div#container div.block div.fadebox img:nth-of-type(3) {
  animation-delay: 10s;
}
div#container div.block div.fadebox02 {
  position: relative;
}
div#container div.block div.fadebox02::before {
  content: "";
  display: block;
  padding-top: 137.3563218391%;
  background: url(../images/AdobeStock_74064732.jpeg);
  background-size: cover;
  background-position: center center;
}
div#container div.block div.fadebox02 img {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 15s 0s infinite;
}
div#container div.block div.fadebox02 img:nth-of-type(2) {
  animation-delay: 5s;
}
div#container div.block div.fadebox02 img:nth-of-type(3) {
  animation-delay: 10s;
}
div#container div.block p.comment {
  width: 86.9333333333%;
  margin: 0 auto;
}
div#container div.block div.staffArea {
  line-height: 1;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea {
    margin-bottom: 2.196193265vw;
  }
}
div#container div.block div.staffArea h3 {
  position: relative;
  width: 64.8%;
  margin: 0 auto 7.4666666667vw;
  font-size: 4.8vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea h3 {
    margin: 0 auto 2.0497803807vw;
    font-size: 1.317715959vw;
  }
}
div#container div.block div.staffArea h3::before, div#container div.block div.staffArea h3::after {
  content: "";
  display: block;
  background: url(../images/star.svg);
  background-size: cover;
  background-position: center center;
  width: 7.2vw;
  height: 7.2vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea h3::before, div#container div.block div.staffArea h3::after {
    width: 1.9765739385vw;
    height: 1.9765739385vw;
  }
}
div#container div.block div.staffArea h3::before {
  left: 0;
}
div#container div.block div.staffArea h3::after {
  right: 0;
}
div#container div.block div.staffArea h3 span {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.2666666667vw;
  display: block;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea h3 span {
    font-size: 1.1713030747vw;
    margin-bottom: 0.7320644217vw;
  }
}
div#container div.block div.staffArea ul {
  width: 73.0666666667%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-style: normal;
}
div#container div.block div.staffArea ul li:first-child {
  width: 36.496350365%;
}
div#container div.block div.staffArea ul li:first-child img {
  border-radius: 50%;
}
div#container div.block div.staffArea ul li:last-child {
  width: 54.7445255474%;
}
div#container div.block div.staffArea ul li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 9.0666666667vw;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea ul li:last-child a {
    height: 34px;
  }
}
div#container div.block div.staffArea ul li:last-child a:first-child {
  background: url(../images/btn01.png);
  background-size: cover;
  background-position: center center;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.staffArea ul li:last-child a:first-child {
    margin-bottom: 1.317715959vw;
  }
}
div#container div.block div.staffArea ul li:last-child a:last-child {
  background: url(../images/btn02.png);
  background-size: cover;
  background-position: center center;
}
div#container div.block div.itemArea {
  width: 84.5333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div#container div.block div.itemArea p.comingsoon {
    font-size: 0.878477306vw;
  }
}
@media screen and (max-width: 768px) {
  div#container div.block div.itemArea p.comingsoon {
    font-size: 3.2vw;
  }
}
div#container div.block div.itemArea ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
div#container div.block div.itemArea ul li {
  width: 47.3186119874%;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.itemArea ul li {
    margin-bottom: 1.8301610542vw;
  }
}
div#container div.block div.itemArea ul li a {
  text-decoration: none;
  color: #707070;
}
div#container div.block div.itemArea ul li img {
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.itemArea ul li img {
    border-radius: 0.7320644217vw;
  }
}
div#container div.block div.itemArea ul li p {
  margin-top: 2.6666666667vw;
  font-size: 3.4666666667vw;
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div#container div.block div.itemArea ul li p {
    margin-top: 0.7320644217vw;
    font-size: 0.9516837482vw;
  }
}
div#container div.block div.itemArea ul li p span {
  display: block;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#container div.block div.itemArea ul li p span {
    margin-top: 0.7320644217vw;
  }
}
div#container div.block a.allbtn {
  margin-top: 26.6666666667vw;
  display: block;
  width: 82.6666666667%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block a.allbtn {
    margin-top: 7.3206442167vw;
  }
}
div#container div.block a.allbtn img:first-child {
  z-index: 2;
  position: relative;
}
div#container div.block a.allbtn img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
div#container div.block a.allbtn:hover img:first-child {
  opacity: 0;
}
div#container div.block#block01 {
  background: #F2F2F9;
}
div#container div.block#block01::before {
  content: "";
  display: block;
  width: 100%;
  height: 32vw;
  background: linear-gradient(rgb(255, 255, 255), rgb(242, 242, 248));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  div#container div.block#block01::before {
    height: 8.78477306vw;
  }
}
div#container div.block#block01 h2 {
  width: 65.0666666667%;
  margin: 0 auto 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block#block01 h2 {
    margin: 0 auto 3.6603221083vw;
  }
}
div#container div.block#block02 {
  padding-top: 48vw;
  background: #F9F2F7;
}
@media screen and (min-width: 769px) {
  div#container div.block#block02 {
    padding-top: 13.17715959vw;
  }
}
div#container div.block#block02::before {
  content: "";
  display: block;
  width: 100%;
  height: 32vw;
  background: linear-gradient(rgb(242, 242, 248), rgb(249, 242, 247));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  div#container div.block#block02::before {
    height: 120px;
  }
}
div#container div.block#block02 h2 {
  width: 78.9333333333%;
  margin: 0 auto 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block#block02 h2 {
    margin: 0 auto 3.6603221083vw;
  }
}
div#container div.block#block03 {
  padding-top: 48vw;
  background: #FDFDF7;
}
@media screen and (min-width: 769px) {
  div#container div.block#block03 {
    padding-top: 48vw;
  }
}
@media screen and (min-width: 769px) {
  div#container div.block#block03 {
    padding-top: 13.17715959vw;
  }
}
div#container div.block#block03::before {
  content: "";
  display: block;
  width: 100%;
  height: 32vw;
  background: linear-gradient(rgb(249, 242, 247), rgb(253, 253, 247));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  div#container div.block#block03::before {
    padding-top: 8.78477306vw;
  }
}
div#container div.block#block03 h2 {
  width: 78.9333333333%;
  margin: 0 auto 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block#block03 h2 {
    margin: 0 auto 50px;
  }
}
div#container div.block#block04 {
  padding-top: 48vw;
  background: #f2eff6;
}
@media screen and (min-width: 769px) {
  div#container div.block#block04 {
    padding-top: 13.17715959vw;
  }
}
div#container div.block#block04::before {
  content: "";
  display: block;
  width: 100%;
  height: 32vw;
  background: linear-gradient(rgb(253, 253, 247), rgb(242, 239, 246));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  div#container div.block#block04::before {
    padding-top: 8.78477306vw;
  }
}
div#container div.block#block04 h2 {
  width: 78.9333333333%;
  margin: 0 auto 13.3333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.block#block04 h2 {
    margin: 0 auto 3.6603221083vw;
  }
}
div#container div.movie {
  width: 100%;
  overflow: hidden;
  padding-top: 51.7333333333vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.movie {
    padding-top: 14.2020497804vw;
  }
}
div#container div.movie::before {
  content: "";
  display: block;
  width: 100%;
  height: 32vw;
  background: linear-gradient(rgb(242, 239, 246), rgb(255, 255, 255));
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  div#container div.movie::before {
    height: 120px;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  div#container div.movie::before {
    height: 8.78477306vw;
  }
}
div#container div.movie h2 {
  padding-top: 16vw;
  border-top: 1px solid #B786AD;
  width: 91.2%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.movie h2 {
    padding-top: 4.39238653vw;
  }
}
div#container div.movie h2::before {
  content: "";
  display: block;
  background: url(../images/star.svg) #fff no-repeat;
  background-size: contain;
  background-position: center center;
  width: 7.2vw;
  height: 7.2vw;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 2.4vw;
  top: 0;
}
@media screen and (min-width: 769px) {
  div#container div.movie h2::before {
    width: 1.9765739385vw;
    height: 1.9765739385vw;
  }
}
div#container div.movie h2 img {
  width: 65.2046783626%;
  margin: 0 auto 8vw;
}
@media screen and (min-width: 769px) {
  div#container div.movie h2 img {
    margin: 0 auto 2.196193265vw;
  }
}
div#container div.movie ul {
  width: 88.2666666667%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
div#container div.movie ul li {
  width: 46.5256797583%;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  div#container div.movie ul li {
    margin-bottom: 2.9282576867vw;
  }
}
div#container div.movie ul li div.reel {
  width: 100%;
}
div#container div.movie ul li div.reel iframe {
  display: block;
  width: 100%;
  min-width: 154px !important;
}
div#container div.movie ul li div.reel blockquote {
  width: 100%;
  display: block;
}
div#container div.movie h3 {
  width: 22.4%;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  div#container div.movie h3 {
    margin: 0 auto 20px;
  }
}
div#container div.movie div.video {
  background: #ccc;
  width: 93.3333333333%;
  margin: 0 auto 26.6666666667vw;
  position: relative;
}
@media screen and (min-width: 769px) {
  div#container div.movie div.video {
    margin: 0 auto 7.3206442167vw;
  }
}
div#container div.movie div.video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
div#container div.movie div.video iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

footer {
  background: #f8f7f7;
  color: #000000;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 90px 0 30px;
  }
}
@media screen and (min-width: 769px) {
  footer {
    padding: 90px 0 30px;
  }
}
@media screen and (min-width: 769px) {
  footer div.bnrarea {
    width: 86.6666666667%;
    margin: 0 auto 65px;
  }
}
@media screen and (max-width: 768px) {
  footer div.bnrarea {
    width: 86.6666666667%;
    margin: 0 auto 65px;
  }
}
footer div.bnrarea a {
  text-decoration: none;
  color: #222;
  text-align: center;
  display: block;
}
footer div.bnrarea a img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea {
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea {
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer ul#footer_snsArea li {
    width: 30px;
    margin-right: 22px;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li {
    margin-right: 20px;
    width: 30px;
    margin-right: 22px;
  }
}
@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: 140px;
    margin: 0 auto 10px;
  }
}
@media screen and (min-width: 769px) {
  footer a.foot_logo {
    display: block;
    width: 140px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 768px) {
  footer p.foot_copy {
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  footer p.foot_copy {
    font-size: 10px;
    text-align: center;
  }
}

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;
  }
}/*# sourceMappingURL=style.css.map */