@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 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

@-webkit-keyframes swing {
  20% {
    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);
  }
}
@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;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  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);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  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 {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  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);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  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 {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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 {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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 {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

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

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    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);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    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);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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 {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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 {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

@-webkit-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;
  }
}
@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 {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-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;
  }
}
@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 {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@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 {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@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 {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

/* ベースカラー変数　*/
/*リセット
--------------------------------------------*/
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
---------------------------------------------*/
/* common
---------------------------------------------*/
html,
body {
  width: 100%;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}

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;
  }
}

/*content*/
/*--result---*/
div.result div.header {
  background: #77777E;
}
@media screen and (max-width: 768px) {
  div.result div.header {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.header {
    padding-bottom: 50px;
  }
}
div.result div.header h1 {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.result div.header h1 {
    font-size: 14px;
    padding: 17px 0;
  }
}
@media screen and (min-width: 769px) {
  div.result div.header h1 {
    font-size: 22px;
    padding: 45px 0;
  }
}
div.result div.header h1 span {
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  div.result div.header h1 span {
    font-size: 17px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.header h1 span {
    font-size: 27px;
  }
}
div.result div.header div.loopwrap {
  display: flex;
  width: 100vw;
  height: 150px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  div.result div.header div.loopwrap {
    height: 223px;
  }
}
div.result div.header div.loopwrap ul {
  display: flex;
  height: 100%;
}
div.result div.header div.loopwrap ul li {
  height: 100%;
  width: auto;
}
div.result div.header div.loopwrap ul li img {
  width: auto;
  height: 100%;
}
div.result div.header div.loopwrap_r {
  display: flex;
  width: 100vw;
  height: 150px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  div.result div.header div.loopwrap_r {
    height: 223px;
  }
}
div.result div.header div.loopwrap_r ul {
  display: flex;
}
div.result div.header div.loopwrap_r ul li {
  height: 100%;
  width: auto;
}
div.result div.header div.loopwrap_r ul li img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  div.result h2 {
    width: 59.2%;
    margin: 0px auto 40px;
  }
}
@media screen and (min-width: 769px) {
  div.result h2 {
    width: 544px;
    margin: 0px auto 50px;
  }
}
div.result p.desc {
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.result p.desc {
    width: 84%;
    margin: 0 auto 100px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.result p.desc {
    font-size: 16px;
    margin: 0 auto 100px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  div.result p.desc span.big {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  div.result p.desc span.big {
    font-size: 16px;
  }
}
div.result p.desc span.big span.border {
  background: linear-gradient(transparent 40%, #B47483 40%);
  padding-bottom: 6px;
}
div.result p.desc span.small {
  color: #C0C2C9;
  display: block;
}
@media screen and (max-width: 768px) {
  div.result p.desc span.small {
    font-size: 12px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  div.result p.desc span.small {
    font-size: 12px;
    margin-top: 30px;
  }
}
div.result h3 {
  text-align: center;
  border: 1px dotted #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.result h3 {
    font-size: 18px;
    width: 84%;
    margin: 0 auto;
    padding: 22px 0;
  }
}
@media screen and (min-width: 769px) {
  div.result h3 {
    font-size: 18px;
    padding: 22px 0;
    width: 1000px;
    margin: 0 auto 0px;
  }
}
div.result div#no1 {
  position: relative;
  background: #C7C0C9;
}
@media screen and (max-width: 768px) {
  div.result div#no1 {
    padding: 100px 0;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.inner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
  }
}
div.result div#no1 h4 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.result div#no1 h4 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 h4 {
    top: -30px;
    left: -15px;
    width: 134px;
  }
}
@media screen and (max-width: 768px) {
  div.result div#no1 div.img {
    width: 84%;
    margin: 0 auto 35px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.img {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.creditspace {
    width: 50%;
    box-sizing: border-box;
    padding: 0 90px;
  }
}
div.result div#no1 h5 {
  text-align: center;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.result div#no1 h5 {
    font-size: 18px;
    margin-bottom: 28px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 h5 {
    font-size: 18px;
    margin-bottom: 28px;
  }
}
div.result div#no1 h5 span {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  div.result div#no1 h5 span {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 h5 span {
    font-size: 20px;
  }
}
div.result div#no1 p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.result div#no1 p {
    width: 84%;
    margin: 0 auto 30px;
    font-size: 14px;
    font-weight: 400;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 p {
    margin: 0 auto 30px;
    font-size: 14px;
    font-weight: 400;
  }
}
div.result div#no1 div.cashback {
  border: 1px solid #707070;
  background: #fff;
  text-align: center;
  padding: 12px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.result div#no1 div.cashback {
    width: 84%;
    margin: 0 auto 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.cashback {
    margin: 0 auto 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  div.result div#no1 div.cashback span {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.cashback span {
    font-size: 20px;
  }
}
div.result div#no1 div.cashback::after {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  content: "";
  display: block;
}
@media screen and (max-width: 768px) {
  div.result div#no1 div.cashback::after {
    width: 15px;
    height: 15px;
    border-top: 1px solid #707070;
    background: #fff;
    border-right: 1px solid #707070;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 div.cashback::after {
    width: 10px;
    height: 10px;
    border-top: 1px solid #707070;
    background: #fff;
    border-right: 1px solid #707070;
    bottom: -12px;
  }
}
div.result div#no1 a.buy {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  div.result div#no1 a.buy {
    width: 64%;
    margin: 0 auto;
    border-radius: 40px;
    background: #B47483;
    color: #fff;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 a.buy {
    width: 240px;
    margin: 0 auto;
    border-radius: 40px;
    background: #B47483;
    color: #fff;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
div.result div#no1 a.buy span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  div.result div#no1 a.buy span {
    font-size: 22px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 a.buy span {
    font-size: 22px;
    margin-right: 15px;
  }
}
div.result div#no1 span.attention_msg {
  line-height: 2;
  display: block;
}
@media screen and (max-width: 768px) {
  div.result div#no1 span.attention_msg {
    font-size: 12px;
    margin: 30px auto 0;
    width: 84%;
  }
}
@media screen and (min-width: 769px) {
  div.result div#no1 span.attention_msg {
    font-size: 12px;
    margin-top: 30px;
  }
}
div.result div.other {
  background: #77777E;
  color: #fff;
}
@media screen and (max-width: 768px) {
  div.result div.other {
    padding: 100px 0;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other {
    padding: 100px 0;
  }
}
div.result div.other h4 {
  border: dotted 1px #fff;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  div.result div.other h4 {
    width: 84%;
    margin: 0 auto 70px;
    padding: 22px 0;
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other h4 {
    width: 820px;
    margin: 0 auto 70px;
    padding: 22px 0;
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  div.result div.other ul {
    width: 73.8666666667%;
    margin: 0 auto 80px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul {
    width: 820px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
div.result div.other ul li {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.result div.other ul li {
    width: 350px;
    margin-bottom: 85px;
  }
}
@media screen and (max-width: 768px) {
  div.result div.other ul li {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  div.result div.other ul li div.img {
    width: 100%;
    margin: 0 auto 35px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul li div.img {
    margin-bottom: 20px;
  }
}
div.result div.other ul li h5 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  div.result div.other ul li h5 {
    width: 28.880866426%;
    top: -20px;
    left: -20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul li h5 {
    width: 96px;
    top: -20px;
    left: -20px;
  }
}
div.result div.other ul li h6 {
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  div.result div.other ul li h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul li h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
div.result div.other ul li h6 span {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  div.result div.other ul li h6 span {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul li h6 span {
    font-size: 20px;
  }
}
div.result div.other ul li a.buy {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  div.result div.other ul li a.buy {
    width: 86.642599278%;
    margin: 0 auto;
    border-radius: 40px;
    background: #B47483;
    color: #fff;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other ul li a.buy {
    width: 250px;
    margin: 0 auto;
    border-radius: 40px;
    background: #B47483;
    color: #fff;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
div.result div.other ul li a.buy span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  div.result div.other ul li a.buy span {
    font-size: 22px;
    margin-right: 15px;
  }
}
div.result div.other p.etc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.result div.other p.etc {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other p.etc {
    margin-bottom: 20px;
  }
}
div.result div.other a.bnr {
  display: block;
}
@media screen and (max-width: 768px) {
  div.result div.other a.bnr {
    width: 84%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.result div.other a.bnr {
    width: 315px;
    margin: 0 auto;
  }
}
div.result div.movie {
  background: #b47483;
  color: #fff;
}
@media screen and (max-width: 768px) {
  div.result div.movie {
    padding: 100px 0;
  }
}
@media screen and (min-width: 769px) {
  div.result div.movie {
    padding: 100px 0;
  }
}
div.result div.movie h4 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.result div.movie h4 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.movie h4 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  div.result div.movie div.video {
    width: 84%;
    margin: 0 auto 35px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.movie div.video {
    width: 315px;
    margin: 0 auto 35px;
  }
}
div.result div.movie p.message {
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  div.result div.movie p.message {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.result div.movie p.message {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
div.result div.movie a.check {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  div.result div.movie a.check {
    width: 64%;
    margin: 0 auto;
    border-radius: 40px;
    background: #fff;
    color: #B47483;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  div.result div.movie a.check {
    width: 240px;
    margin: 0 auto;
    border-radius: 40px;
    background: #fff;
    color: #B47483;
    font-size: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}

/*--投票版--*/
div.wrap header {
  background: #77777E;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.wrap header {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  div.wrap header {
    width: 100%;
    height: 100vh;
  }
}
div.wrap header h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  div.wrap header h1 {
    width: 84.8%;
  }
}
div.wrap header div.in_header {
  height: 100%;
}
div.wrap header div.loopwrap {
  display: flex;
  width: 100vw;
  height: 300px;
  overflow: hidden;
}
div.wrap header div.loopwrap ul {
  display: flex;
  height: 100%;
}
div.wrap header div.loopwrap ul:first-child {
  -webkit-animation: loop 80s -40s linear infinite;
          animation: loop 80s -40s linear infinite;
}
div.wrap header div.loopwrap ul:last-child {
  -webkit-animation: loop2 80s linear infinite;
          animation: loop2 80s linear infinite;
}
div.wrap header div.loopwrap ul li {
  height: 100%;
  width: auto;
}
div.wrap header div.loopwrap ul li img {
  width: auto;
  height: 100%;
}
div.wrap header div.loopwrap_r {
  display: flex;
  width: 100vw;
  height: 300px;
  overflow: hidden;
}
div.wrap header div.loopwrap_r ul {
  display: flex;
}
div.wrap header div.loopwrap_r ul:first-child {
  -webkit-animation: loop3 80s -40s linear infinite;
          animation: loop3 80s -40s linear infinite;
}
div.wrap header div.loopwrap_r ul:last-child {
  -webkit-animation: loop4 80s linear infinite;
          animation: loop4 80s linear infinite;
}
div.wrap header div.loopwrap_r ul li {
  height: 100%;
  width: auto;
}
div.wrap header div.loopwrap_r ul li img {
  width: auto;
  height: 100%;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.wrap div.vote_p {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  border: 1px solid #fff;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  div.wrap div.vote_p {
    width: 700px;
  }
}
div.wrap section.desc {
  background: #77777E;
  color: #fff;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc {
    border: 1px solid #000000;
  }
}
div.wrap section.desc div.inner {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner {
    padding: 80px 0;
    width: 84%;
    margin: 0 auto;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner {
    width: 1000px;
    margin: 0 auto;
    padding: 100px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner p.explain {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner p.explain {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
  }
}
div.wrap section.desc div.inner div.vote_p {
  width: 100%;
  margin: 0 auto 50px;
  padding: 50px 0;
  box-sizing: border-box;
  border: 1px solid #fff;
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.vote_p {
    width: 700px;
  }
}
div.wrap section.desc div.inner div.presentArea {
  background: #fff;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner div.presentArea {
    padding-bottom: 25px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.presentArea {
    display: flex;
    width: 700px;
    margin: 0px auto 100px;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.presentArea div.img {
    width: 315px;
  }
}
div.wrap section.desc div.inner div.presentArea p {
  color: #000;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner div.presentArea p {
    font-size: 16px;
    padding: 25px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.presentArea p {
    width: 385px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 20px;
  }
}
div.wrap section.desc div.inner div.presentArea a {
  color: #fff;
  background: #B47483;
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner div.presentArea a {
    width: 80.9523809524%;
    margin: 0 auto 0;
    border-radius: 40px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.presentArea a {
    position: absolute;
    width: 255px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    bottom: 22px;
    right: 68px;
    border-radius: 40px;
  }
}
div.wrap section.desc div.inner p.tokuten {
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner p.tokuten {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner p.tokuten {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
div.wrap section.desc div.inner p.tokuten span {
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner p.tokuten span.small {
    margin-top: 10px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner p.tokuten span.small {
    margin-top: 10px;
    font-size: 14px;
    margin-bottom: 5px;
  }
}
div.wrap section.desc div.inner p.tokuten span.big {
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner p.tokuten span.big {
    font-size: 26px;
    border-bottom: 2px solid #fff;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner p.tokuten span.big {
    font-size: 26px;
    border-bottom: 2px solid #fff;
  }
}
div.wrap section.desc div.inner p.tokuten span.big span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner p.tokuten span.big span {
    font-size: 21px;
  }
}
div.wrap section.desc div.inner div.instagram {
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner div.instagram {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.instagram {
    font-size: 14px;
  }
}
div.wrap section.desc div.inner div.instagram a {
  text-align: center;
  display: block;
  color: #fff;
  text-decoration: none;
  background: #B47483;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc div.inner div.instagram a {
    width: 80.9523809524%;
    margin: 20px auto 0;
    padding: 20px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc div.inner div.instagram a {
    width: 255px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
  }
}
div.wrap section.desc .vote_sentance {
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc .vote_sentance {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc .vote_sentance {
    font-size: 14px;
  }
}
div.wrap section.desc .vote_sentance span {
  display: block;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  div.wrap section.desc .vote_sentance span {
    font-size: 46px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.desc .vote_sentance span {
    font-size: 46px;
  }
}
div.wrap section.outercollection {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection {
    background: #77777E;
  }
}
div.wrap section.outercollection div.fixed {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #000;
}
div.wrap section.outercollection div.fixed ul#sort {
  white-space: nowrap;
  font-size: 0;
  overflow-x: auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection div.fixed ul#sort {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
div.wrap section.outercollection div.fixed ul#sort li {
  position: relative;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection div.fixed ul#sort li {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    padding: 18px 5px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection div.fixed ul#sort li {
    font-size: 18px;
    padding: 30px 20px;
  }
}
div.wrap section.outercollection div.fixed ul#sort li.active {
  color: #000;
  font-weight: 600;
}
div.wrap section.outercollection div.fixed ul#sort li.active::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
}
div.wrap section.outercollection div.fixed ul#sort li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 80px 0 110px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in {
    max-width: 860px;
  }
}
@media screen and (min-width: 1280px) {
  div.wrap section.outercollection ul.outercollection_in {
    max-width: 1280px;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea {
  position: relative;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea {
    padding: 40px 0 45px;
    margin-bottom: 25px;
    box-sizing: border-box;
    border: 1px solid #000;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea {
    width: 410px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea {
    padding: 50px 0 45px;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(1), div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(5n+1) {
  background: #C7C0C9;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(2), div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(5n+2) {
  background: #C0C2C9;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(3), div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(5n+3) {
  background: #C0C9C3;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(4), div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(5n+4) {
  background: #D1D1C0;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:nth-child(5n) {
  background: #D1C7C0;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea div.stamp {
  position: absolute;
  z-index: 1000;
  display: none;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea div.stamp {
    top: 25px;
    left: 16%;
    width: 21.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea div.stamp {
    top: 25px;
    left: 13.3333333333%;
    width: 21.3333333333%;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink {
  color: #000;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty {
  position: relative;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty {
    width: 57.3333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty {
    width: 250px;
    margin: 0 auto 20px;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty div.carticon {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 6px;
  left: 6px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty div.carticon span {
    font-size: 22px;
  }
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul {
  width: 100%;
  position: relative;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul::before {
  content: "";
  display: block;
  padding-top: 150%;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul li {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: opacity 4s linear infinite 0s forwards;
          animation: opacity 4s linear infinite 0s forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul li:nth-child(1) {
  z-index: 9;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul li:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  z-index: 8;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul li:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  z-index: 7;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul li:nth-child(4) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  z-index: 6;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea a.itemlink div.three_sixty ul.active li {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
div.wrap section.outercollection ul.outercollection_in li.brandArea:hover a.itemlink div.three_sixty ul li {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
div.wrap section.outercollection p.item {
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection p.item {
    margin: 35px auto;
    font-size: 14px;
    letter-spacing: 0em;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection p.item {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
div.wrap section.outercollection p.message {
  position: absolute;
  top: 45px;
  right: 8.5333333333%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1000;
  letter-spacing: 0.019em;
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection p.message {
    top: 25px;
  }
}
div.wrap section.outercollection p.message span {
  display: inline-block;
  background: #fff;
  padding: 12px 6px;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection p.message span {
    font-size: 14px;
  }
}
div.wrap section.outercollection p.message span:nth-child(1) {
  margin-left: 5px;
}
div.wrap section.outercollection p.brand {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-top: 40px;
  position: absolute;
  top: 50px;
  left: 8.5333333333%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection p.brand {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection p.brand {
    font-size: 16px;
  }
}
div.wrap section.outercollection p.brand::before {
  content: "";
  width: 1px;
  height: 30px;
  background: #000;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
div.wrap section.outercollection a.vote {
  display: block;
  background: #A8A8A8;
  color: #FFF;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  div.wrap section.outercollection a.vote {
    width: 64%;
    margin: 0 auto;
    border-radius: 40px;
    padding: 23px 0;
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.outercollection a.vote {
    width: 280px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 23px 0;
    font-size: 16px;
  }
}
div.wrap section.outercollection a.vote.vote_this {
  background: #000;
  cursor: pointer;
}
div.wrap section.presentArea02 {
  background: #77777E;
  color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 {
    padding: 125px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 {
    padding-bottom: 230px;
  }
}
div.wrap section.presentArea02 h2 {
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 h2 {
    font-size: 50px;
    margin-bottom: 15px;
  }
}
div.wrap section.presentArea02 h3 {
  text-align: center;
  line-height: 1.77;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 h3 {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 h3 {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 div.img {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 div.img {
    width: 600px;
    margin: 0 auto 40px;
  }
}
div.wrap section.presentArea02 p.explain {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 p.explain {
    width: 84%;
    margin: 0 auto 60px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 p.explain {
    width: 600px;
    margin: 0 auto 45px;
    font-size: 14px;
  }
}
div.wrap section.presentArea02 p.prize {
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 p.prize {
    width: 84%;
    margin: 0 auto 80px;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 p.prize {
    width: 600px;
    margin: 0 auto 40px;
    font-size: 12px;
  }
}
div.wrap section.presentArea02 dl {
  background: #fff;
  color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl {
    width: 84%;
    margin: 0 auto 45px;
    box-sizing: border-box;
    padding: 65px 20px 35px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl {
    width: 600px;
    margin: 0 auto 42px;
    box-sizing: border-box;
    padding: 70px 0px 55px;
    text-align: center;
  }
}
div.wrap section.presentArea02 dl dt {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: #B47483;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dt {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl dt {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}
div.wrap section.presentArea02 dl dt span {
  display: block;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dt span {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl dt span {
    font-size: 14px;
  }
}
div.wrap section.presentArea02 dl dd {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dd {
    font-size: 14px;
  }
}
div.wrap section.presentArea02 dl dd span {
  text-align: center;
}
div.wrap section.presentArea02 dl dd span.midashi {
  display: block;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dd span.midashi {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl dd span.midashi {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
div.wrap section.presentArea02 dl dd span.small {
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dd span.small {
    display: block;
    margin-top: 15px;
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl dd span.small {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-size: 10px;
  }
}
div.wrap section.presentArea02 dl dd a {
  color: #fff;
  display: block;
  background: #B47483;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 dl dd a {
    width: 87.3015873016%;
    margin: 15px auto 0;
    font-size: 14px;
    padding: 15px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 dl dd a {
    width: 520px;
    font-size: 14px;
    padding: 15px 0;
    margin: 45px auto 0;
  }
}
div.wrap section.presentArea02 dl dd a span {
  position: absolute;
  right: 8.5106382979%;
  top: 50%;
  transform: translateY(-50%);
}
div.wrap section.presentArea02 p.attention {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 p.attention {
    margin: 50px auto 0;
    width: 84%;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 p.attention {
    margin: 50px auto;
    width: 600px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap section.presentArea02 p.attention span {
    margin-bottom: 5px;
    display: block;
  }
}
@media screen and (min-width: 769px) {
  div.wrap section.presentArea02 p.attention span {
    margin-bottom: 5px;
    display: block;
  }
}
div.wrap div.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100vh;
  z-index: 99999;
  top: 0;
  left: 0;
  overflow-y: auto;
  display: none;
}
div.wrap div.modal div.modal_inner {
  background: #fff;
  box-sizing: border-box;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner {
    width: 84%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner {
    width: 600px;
    margin: 0 auto;
  }
}
div.wrap div.modal div.modal_inner p.thankyou {
  color: #B47483;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner p.thankyou {
    font-size: 34px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner p.thankyou {
    font-size: 34px;
    margin-bottom: 35px;
  }
}
div.wrap div.modal div.modal_inner p.thankyou span {
  display: block;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner p.thankyou span {
    margin-top: 25px;
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner p.thankyou span {
    margin-top: 25px;
    font-size: 14px;
  }
}
div.wrap div.modal div.modal_inner p.fav_exp {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner p.fav_exp {
    width: 87.3015873016%;
    margin: 0 auto 35px;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner p.fav_exp {
    width: 87.3015873016%;
    margin: 0 auto 35px;
    font-size: 12px;
  }
}
div.wrap div.modal div.modal_inner a.close {
  background: #B47483;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner a.close {
    font-size: 14px;
    width: 87.3015873016%;
    margin: 40px auto 0;
    padding: 25px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner a.close {
    font-size: 14px;
    width: 275px;
    margin: 40px auto 0;
    padding: 25px 0;
  }
}
div.wrap div.modal div.modal_inner dl {
  border-top: 1px solid #dadada;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl {
    width: 87.3015873016%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl {
    width: 500px;
    margin: 0 auto;
  }
}
div.wrap div.modal div.modal_inner dl:last-of-type {
  border-bottom: 1px solid #dadada;
}
div.wrap div.modal div.modal_inner dl dt {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl dt {
    padding: 10px 0;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl dt {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl dt div.img {
    width: 35.8139534884%;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl dt div.img {
    width: 77px;
  }
}
div.wrap div.modal div.modal_inner dl dt ul {
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl dt ul {
    width: 64.1860465116%;
    font-size: 12px;
    padding-left: 15px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl dt ul {
    font-size: 12px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl dt ul li {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl dt ul li {
    margin-bottom: 10px;
  }
}
div.wrap div.modal div.modal_inner dl dt ul li:last-child {
  margin-bottom: 0;
}
div.wrap div.modal div.modal_inner dl dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dadada;
}
@media screen and (max-width: 768px) {
  div.wrap div.modal div.modal_inner dl dd {
    height: 52px;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.wrap div.modal div.modal_inner dl dd {
    height: 52px;
    font-size: 12px;
  }
}
div.wrap div.modal div.modal_inner dl dd div.favorite_Push {
  width: 30px;
}
div.wrap a#page-top {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #dadada;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: 1s;
}
@media screen and (min-width: 769px) {
  div.wrap a#page-top {
    left: 50%;
    margin-left: 650px;
  }
}
@media screen and (max-width: 768px) {
  div.wrap a#page-top {
    right: 5%;
  }
}
div.wrap a#page-top::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #999999;
  border-right: solid 1px #999999;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -5px;
  z-index: 1001;
  display: block;
}
div.wrap a#page-top.active {
  opacity: 1;
}

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: 400px;
    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 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
}
@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;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    color: #333;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li a img {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  footer ul#footer_snsArea li a span.icon {
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
  }
}
@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 (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 {
    width: 150px;
    display: block;
    margin: 0 auto 5px;
  }
}
@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;
    margin: 0 auto;
    width: 100%;
  }
}

@-webkit-keyframes opacity {
  0% {
    visibility: visible;
    z-index: 100;
  }
  12.5% {
    visibility: visible;
    z-index: 100;
  }
  25% {
    visibility: hidden;
    z-index: 0;
  }
  100% {
    visibility: hidden;
    z-index: 0;
  }
}

@keyframes opacity {
  0% {
    visibility: visible;
    z-index: 100;
  }
  12.5% {
    visibility: visible;
    z-index: 100;
  }
  25% {
    visibility: hidden;
    z-index: 0;
  }
  100% {
    visibility: hidden;
    z-index: 0;
  }
}
div.load {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

div.vote_number {
  text-align: center;
  line-height: 1;
  font-size: 36px;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 24px;
}
div.vote_number div {
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding: 0 0 5px;
}
div.vote_number div span {
  font-size: 24px;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (min-width: 769px) {
  div#no1 {
    padding: 50px 0;
  }
}
div#no1 div.vote_number div {
  border-bottom: 1px solid #000;
  display: inline-block;
  padding: 0 0 5px;
}/*# sourceMappingURL=style.css.map */