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

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

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

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

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

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

.animated.delay-25s {
  animation-delay: 2.5s;
}

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

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

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

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

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

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

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

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

/*メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #5E5E5E;
  scroll-behavior: smooth;
}

/*リセット
--------------------------------------------*/
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;
}

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

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

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

/*モーダル
--------------------------------------------*/
div.modal {
  z-index: 99999;
}

div.modal {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}

div.modal div.inner {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 618px;
}

/*閉じるボタン
---------------------------------------------*/
.square_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}

.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #333;
}

.square_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  background: #fff;
  margin-left: auto;
  margin-right: 20px;
  margin-top: 10px;
}

.square_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.square_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*チャート
---------------------------------------------*/
p.question {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 30px auto 20px;
}

p.question_2 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 3px auto 20px;
}

p.question_3 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 120px auto 20px;
}

p.question_4 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: -10px auto 15px;
}

p.question::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #7F69A8;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_2::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #7F69A8;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_3::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #7F69A8;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

p.question_4::before {
  content: "Question";
  font-size: 10px;
  width: 70px;
  display: block;
  height: 16px;
  background: #7F69A8;
  margin: 0 auto 10px;
  color: #fff;
  line-height: 16px;
}

.question ul {
  width: 90%;
  text-align: center;
  margin: 0 auto 30px;
}

.question_4 ul {
  width: 90%;
  text-align: center;
  margin: 0 auto 13px;
}

p.lato {
  padding: 20px;
  font-size: 14px;
}

p.lato_4 {
  padding: 12px;
  font-size: 14px;
}

.question ul li a {
  border: 1px solid #333;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 60px;*/
  line-height: 60px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  /*background: #F1EFE9;*/
}

.question_4 ul li a {
  border: 1px solid #333;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 60px;*/
  line-height: 26px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  /*background: #F1EFE9;*/
}

/*質問*/
div.img_01 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

div.img_01 img {
  width: 50%;
}

.choose_box .question ul li a.pattern1, .choose_box .question_2 ul li a.pattern1 {
  border: 2px solid #000;
  box-sizing: border-box;
  width: 100%;
  display: block;
  /*height: 221px;*/
  line-height: 60px;
  text-decoration: none;
}

.choose_box .question ul li a.pattern2 {
  border: 2px solid #000;
  box-sizing: border-box;
  width: 100%;
  display: block;
  line-height: 40px;
  text-decoration: none;
}

div.pattern3 {
  box-sizing: border-box;
  width: 90%;
  display: block;
  height: 252px;
  line-height: 40px;
  text-decoration: none;
  margin-left: 5%;
}

/*//質問*/
/*戻るボタン*/
a.back_link {
  text-decoration: none;
  color: #5E5E5E;
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

span.ico-tri {
  width: 11px;
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.3s ease-out;
  height: auto;
  transform: rotate(-90deg);
  transform-origin: center;
  vertical-align: top !important;
  margin-top: -1.2px;
}

.back_text {
  font-size: 15px;
  padding-left: 6px;
}

/*//戻るボタン*/
/*結果*/
div.ar {
  width: 300px;
  margin: 0 auto;
}

/*もう一度診断する*/
.agein {
  font-size: 15px;
  padding-left: 6px;
  margin: 0 auto;
}

/*診断ボタン*/
#btn {
  position: fixed;
  z-index: 9998;
  transform: translateX(65%);
}
@media screen and (min-width: 769px) {
  #btn {
    width: 155px;
    bottom: 60px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #btn {
    width: 41.33%;
    top: 81.86%;
    right: 0;
  }
}

#btn.active {
  transform: translateX(0%);
}

/*戻るボタン*/
#modotubtn {
  position: fixed;
  z-index: 9998;
}
@media screen and (min-width: 769px) {
  #modotubtn {
    width: 49px;
    bottom: 6px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #modotubtn {
    width: 13.06%;
    top: 74%;
    right: 0;
  }
}

/*変数
---------------------------------------------*/
/*bodyの色*/
/*menuの色*/
/*fv
---------------------------------------------*/
div.top {
  background: #F1EFE9;
}
@media screen and (min-width: 769px) {
  div.top {
    position: relative;
  }
  div.top::before {
    content: "";
    display: block;
    padding-top: 48.6111111111%;
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  div.top div.title {
    width: 26.2%;
    position: absolute;
    top: 18.14%;
    left: 7.2%;
  }
}
@media screen and (max-width: 768px) {
  div.top div.title {
    width: 62.18%;
    margin: 0 auto 0px;
    padding-top: 24px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  div.top div.loop {
    position: absolute;
    right: 0;
    width: 61.5972222222%;
    top: 50%;
    transform: translateY(-50%);
  }
}
div.top div.loop div.loopslider_2 img {
  padding-top: 6px;
}
div.top div.loop img {
  padding-left: 7px;
}
div.top div.intro_sentence {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div.top div.intro_sentence {
    width: 26.41%;
    position: absolute;
    top: 64.1%;
    left: 6.9%;
    line-height: 2.42;
  }
}
@media screen and (max-width: 768px) {
  div.top div.intro_sentence {
    width: 309px;
    margin: 55px auto 0px;
    padding-bottom: 60px;
    line-height: 1.8;
  }
}
div.top div.intro_sentence p {
  text-align: center;
}
@media screen and (min-width: 769px) {
  div.top div.intro_sentence p {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 768px) {
  div.top div.intro_sentence p {
    font-size: 14px;
  }
}

/*メニュー
---------------------------------------------*/
div.menu {
  background: #F4F4F4;
}
div.menu .intro h2 {
  color: #7F69A8;
  text-align: center;
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (min-width: 769px) {
  div.menu .intro h2 {
    padding-top: 71px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  div.menu .intro h2 {
    padding-top: 55px;
    font-size: 24px;
  }
}
div.menu div.section {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.menu div.section {
    width: 700px;
    padding-top: 57px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  div.menu div.section {
    width: 75.52%;
    padding-top: 30px;
    padding-bottom: 63px;
  }
}
div.menu div.section ul.nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div.menu div.section ul.nav {
    flex-wrap: wrap;
    margin: 0 auto 0px;
  }
}
div.menu div.section ul.nav li.icon {
  color: #7F69A8;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  div.menu div.section ul.nav li.icon {
    width: 103px;
  }
}
@media screen and (max-width: 768px) {
  div.menu div.section ul.nav li.icon {
    width: 29.68%;
  }
}
div.menu div.section li.icon::before {
  content: "";
  height: 83.4951456311%;
  background: #fff;
  width: 100%;
  position: absolute;
  top: 12.1359223301%;
  left: 0;
}
div.menu div.section li.icon::after {
  content: "";
  display: block;
  padding-top: 200%;
}
div.menu div.section li.icon p, div.menu div.section li.icon a {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  z-index: 2;
}
div.menu div.section li.icon p.icon_nunber {
  position: absolute;
  top: 4.854368932%;
  left: 50%;
  transform: translateX(-50%);
  font-family: korolev-compressed, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div.menu div.section li.icon p.icon_nunber {
    font-size: 41px;
  }
}
@media screen and (max-width: 768px) {
  div.menu div.section li.icon p.icon_nunber {
    font-size: 34px;
  }
}
div.menu div.section li.icon p.category {
  width: 100%;
  position: absolute;
  top: 24.2718446602%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
@media screen and (min-width: 769px) {
  div.menu div.section li.icon p.category {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  div.menu div.section li.icon p.category {
    font-size: 11px;
  }
}

/*ボディー
---------------------------------------------*/
body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  /*秋のメイク*/
}
body div.coordinate {
  background: #F1EFE9;
}
@media screen and (min-width: 769px) {
  body div.coordinate {
    padding-top: 107px;
  }
}
@media screen and (max-width: 768px) {
  body div.coordinate {
    padding-top: 71px;
  }
}
body div.body_title {
  text-align: center;
  line-height: 1;
  color: #78ADAB;
  position: relative;
}
@media screen and (min-width: 769px) {
  body div.body_title {
    height: 193px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title::before {
    content: "";
    display: block;
    padding-top: 128%;
  }
}
body div.body_title div.taste_loop {
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop {
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop {
    left: 0;
    top: 11.4583333333%;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_01 ul li {
    width: 581px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_01 ul li {
    width: 498px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_02 ul li {
    width: 348px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_02 ul li {
    width: 302px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_03 ul li {
    width: 398px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_03 ul li {
    width: 398px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_04 ul li {
    width: 376px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_04 ul li {
    width: 376px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_05 ul li {
    width: 280px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_05 ul li {
    width: 265px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title div.taste_loop_06 ul li {
    width: 412px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title div.taste_loop_06 ul li {
    width: 412px;
  }
}
body div.body_title div.subtitle {
  color: #7F69A8;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  body div.body_title div.subtitle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
body div.body_title span.sub {
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  body div.body_title span.sub {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title span.sub {
    font-size: 20px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }
}
body div.body_title span.number {
  font-family: korolev-compressed, sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  body div.body_title span.number {
    font-size: 103px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title span.number {
    font-size: 81px;
    text-align: center;
    display: block;
    line-height: 1;
  }
}
body div.body_title span.kinds {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  body div.body_title span.kinds {
    font-size: 24px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title span.kinds {
    font-size: 19px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-top: -9px;
  }
}
@media screen and (min-width: 769px) {
  body div.body_title span.sp_cd {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body div.body_title span.sp_cd {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 200px;
    z-index: 2;
  }
}
body div.body_title span.sp_cd img {
  width: 80%;
}
@media screen and (max-width: 768px) {
  body div.body_title span.sp_cd img {
    margin: 0 auto;
  }
}
body div.matching {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  body div.matching {
    position: relative;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching {
    padding-top: 159px;
    width: 100%;
  }
}
body div.matching div.profile_bar {
  position: sticky;
  top: -2px;
  z-index: 10;
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  body div.matching div.profile_bar {
    width: 77px;
    left: calc(100% - 88px);
    height: 0;
    top: -10px;
  }
  body div.matching div.profile_bar div {
    width: 77px;
    height: 412px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  body div.matching div.profile_bar div p {
    writing-mode: vertical-rl;
  }
  body div.matching div.profile_bar div p span.name {
    font-size: 18px;
    font-weight: 700;
  }
  body div.matching div.profile_bar div p span.height {
    font-size: 14px;
  }
  body div.matching div.profile_bar div p span.copy {
    display: block;
    font-size: 14px;
    padding-right: 7px;
    height: 302px;
    border-right: 1px dotted #707070;
    margin-right: 5px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.profile_bar {
    background: #fff;
    width: 100%;
    height: 70px;
  }
  body div.matching div.profile_bar div {
    display: flex;
    align-items: center;
  }
  body div.matching div.profile_bar span.name {
    font-size: 16px;
    font-weight: 700;
  }
  body div.matching div.profile_bar span.height {
    font-size: 12px;
  }
  body div.matching div.profile_bar span.copy {
    font-size: 12px;
    display: block;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.profile_bar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.profile_bar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.profile_bar img.pc_non {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.profile_bar img.sp_non {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 span.pc_cd {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 span.pc_cd img {
    width: 450px;
    margin: 0 auto -100px;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.pcstyle {
    width: 835px;
    display: flex;
    margin: 0 auto;
    align-items: end;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.up_style {
    width: 407px;
    padding-top: 208px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.up_style {
    margin: 0 auto;
    width: 319px;
  }
}
body div.matching div.coordinate01 div.up_style p.coordinate_title {
  color: #7F69A8;
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.up_style p.coordinate_title {
    font-size: 20px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.up_style p.coordinate_title {
    font-size: 20px;
    padding-bottom: 9px;
  }
}
body div.matching div.coordinate01 div.up_style div.item_detail {
  position: relative;
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.up_style div.item_detail div.tapme {
    width: 16.92%;
    position: absolute;
    right: 2.8213166144%;
    bottom: 13.4090909091%;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.up_style div.item_detail div.tapme {
    width: 65px;
    position: absolute;
    right: 13px;
    bottom: 80px;
  }
}
body div.matching div.coordinate01 div.up_style div.item_detail .slick-prev:before {
  opacity: 0;
}
body div.matching div.coordinate01 div.up_style div.item_detail_out {
  position: relative;
}
body div.matching div.coordinate01 div.up_style div.item_detail_out ul {
  z-index: 2;
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.up_style div.item_detail_out ul {
    width: 270px;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    bottom: 11px;
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.up_style div.item_detail_out ul {
    width: 74.6081504702%;
    display: flex;
    flex-wrap: wrap;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    bottom: 2.0454545455%;
    left: 7.5235109718%;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.up_style div.item_detail_out li {
    padding: 6px 14px;
    box-sizing: border-box;
    border: 1px solid #707070;
    border-radius: 20px;
    background: #fff;
    margin-right: 4px;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.up_style div.item_detail_out li {
    padding: 5px 10px;
    box-sizing: border-box;
    border: 1px solid #707070;
    border-radius: 10.5px;
    background: #fff;
    margin-right: 3px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.style1_credit {
    margin: 0 auto;
    width: 319px;
    padding-top: 27px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.style1_credit {
    padding-left: 56px;
    width: 372px;
  }
}
body div.matching div.coordinate01 div.style1_credit ul.credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li {
  margin-top: 11px;
  height: 72px;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li a {
  text-decoration: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li p.brand_name {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 10px;
  color: #5E5E5E;
  width: 80px;
  padding-top: 7px;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li p.item_credit {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #5E5E5E;
  text-decoration: none;
  font-size: 10px;
  padding-top: 5px;
  width: 80px;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li p.price {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  font-size: 10px;
  color: #5E5E5E;
  width: 80px;
  padding-top: 5px;
}
body div.matching div.coordinate01 div.style1_credit ul.credit li div.detail {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.style1_credit ul.credit li div.detail {
    line-height: 1.4;
  }
}
body div.matching div.coordinate01 div.style1_credit ul.credit img {
  width: 56px;
}
body div.matching div.coordinate01 div.style1_credit p {
  padding-top: 11px;
}
@media screen and (max-width: 768px) {
  body div.matching div.coordinate01 div.style1_credit p {
    font-size: 10px;
  }
}
@media screen and (min-width: 769px) {
  body div.matching div.coordinate01 div.style1_credit p {
    font-size: 12px;
  }
}
body div.itemlist {
  background: #F4F4F4;
}
body div.itemlist p.caption {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #7F69A8;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  body div.itemlist p.caption {
    font-size: 20px;
    padding-top: 104px;
    padding-bottom: 60px;
    width: 300px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  body div.itemlist p.caption {
    font-size: 18px;
    padding-top: 69px;
    padding-bottom: 38px;
    width: 300px;
    line-height: 1.5;
  }
}
body div.itemlist div.item_top {
  margin: 0 auto;
  width: 994px;
  position: relative;
}
body div.itemlist div.item_top span.right {
  position: absolute;
  top: 123px;
  right: -10px;
}
body div.itemlist div.item_top span.right img {
  width: 36px;
}
body div.itemlist div.item_top span.left {
  position: absolute;
  top: 123px;
  left: -10px;
}
body div.itemlist div.item_top span.left img {
  width: 36px;
}
body div.itemlist div.item_scroll_pc {
  width: 976px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 64px;
  overflow-x: scroll;
}
body div.itemlist div.item_scroll_pc ul.item_pc {
  width: 4360px;
  display: flex;
  white-space: nowrap;
  margin: 20px 0 !important;
}
body div.itemlist div.item_scroll_pc ul.item_pc li {
  width: 198px;
  padding-right: 20px;
}
body div.itemlist div.item_scroll_pc ul.item_pc li a {
  color: #5E5E5E;
  font-size: 12px;
  text-decoration: none;
  position: relative;
}
body div.itemlist div.item_scroll_pc ul.item_pc li a div.textOverflow {
  padding-top: 17px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
body div.itemlist div.item_scroll_pc ul.item_pc li a p.price {
  padding-top: 7px;
}
body div.itemlist div.item_scroll_sp {
  box-sizing: border-box;
}
body div.itemlist div.item_scroll_sp div.item_sp {
  overflow-x: scroll;
  white-space: nowrap;
  margin: 20px 0 !important;
  padding-left: 17px;
}
body div.itemlist div.item_scroll_sp div.item_sp div {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  width: 150px;
  padding-right: 10px;
}
body div.itemlist div.item_scroll_sp div.item_sp div a {
  color: #5E5E5E;
  font-size: 12px;
  text-decoration: none;
  position: relative;
}
body div.itemlist div.item_scroll_sp div.item_sp div a p.label {
  padding-top: 17px;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
body div.itemlist div.item_scroll_sp div.item_sp div a p.price {
  padding-top: 7px;
}
body div.itemlist div.item_scroll_pc::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
body div.itemlist div.item_sp::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
@media screen and (min-width: 769px) {
  body div.itemlist div.morebtn {
    padding-top: 64px;
    padding-bottom: 141px;
  }
}
@media screen and (max-width: 768px) {
  body div.itemlist div.morebtn {
    padding-top: 45px;
    padding-bottom: 84px;
  }
}
body div.itemlist div.morebtn a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
  background: #7F69A8;
  line-height: 65px;
}
@media screen and (max-width: 768px) {
  body div.itemlist div.morebtn a {
    width: 294px;
    height: 66px;
  }
}
@media screen and (min-width: 769px) {
  body div.itemlist div.morebtn a {
    width: 507px;
    height: 66px;
  }
}
body div.itemlist div.morebtn a::after {
  content: ">";
  color: #7F69A8;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  body div.itemlist div.morebtn a::after {
    right: 26px;
  }
}
@media screen and (min-width: 769px) {
  body div.itemlist div.morebtn a::after {
    right: 138px;
  }
}
body div.topics {
  background: #FDFCF7;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  body div.topics {
    padding-top: 104px;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  body div.topics {
    padding-top: 61px;
    padding-bottom: 37px;
  }
}
body div.topics h3 {
  padding: 10px;
  position: relative;
}
@media screen and (min-width: 769px) {
  body div.topics h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  body div.topics h3 {
    font-size: 18px;
  }
}
body div.topics h3::after {
  content: "";
  display: block;
  height: 0;
  border-bottom: 1px solid #5E5E5E;
  position: absolute;
}
@media screen and (min-width: 769px) {
  body div.topics h3::after {
    width: 100px;
    margin: 7px auto;
    position: relative;
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  body div.topics h3::after {
    width: 93px;
    margin: 5px auto;
    position: relative;
    padding-top: 9px;
  }
}
body div.topics h4 {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #7F69A8;
  font-style: italic;
}
body div.topics div.recent_topics {
  padding-top: 48px;
  padding-bottom: 83px;
  margin: 0 auto;
  /*吹き出し*/
}
@media screen and (max-width: 768px) {
  body div.topics div.recent_topics {
    width: 300.58px;
  }
}
@media screen and (min-width: 769px) {
  body div.topics div.recent_topics {
    width: 359px;
  }
}
body div.topics div.recent_topics ul.topics_img img {
  padding-bottom: 10px;
}
body div.topics div.recent_topics div.arrow_box {
  box-sizing: border-box;
  line-height: 1.5;
  padding: 10px 10px;
  position: relative;
  background: #FFFFFF;
  text-align: center;
  border: 1px solid #707070;
  color: #707070;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}
@media screen and (max-width: 768px) {
  body div.topics div.recent_topics div.arrow_box {
    width: 95%;
    font-size: 12px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 769px) {
  body div.topics div.recent_topics div.arrow_box {
    width: 95%;
    font-size: 14px;
  }
}
body div.topics div.recent_topics div.arrow_box p {
  text-align: left;
  padding: 5px 5px 5px 5px;
}
body div.topics div.recent_topics div.arrow_box p.QandA_q {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body div.topics div.recent_topics div.arrow_box p.QandA_q {
    font-size: 12px;
  }
}
body div.topics div.recent_topics div.arrow_box p.QandA_a {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
body div.topics div.recent_topics div.arrow_box:after, body div.topics div.recent_topics .arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 17%;
}
body div.topics div.recent_topics div.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 15px;
  border-right-width: 15px;
  margin-left: -15px;
  border-bottom-color: #FFFFFF;
}
body div.topics div.recent_topics div.arrow_box:before {
  border-color: rgba(112, 112, 112, 0);
  border-top-width: 21px;
  border-bottom-width: 21px;
  border-left-width: 16px;
  border-right-width: 16px;
  margin-left: -16px;
  margin-bottom: 1px;
  border-bottom-color: #707070;
}
body div.topics div.recent_topics .slick-prev {
  top: 37%;
  z-index: 2;
  width: 26px;
}
@media screen and (max-width: 768px) {
  body div.topics div.recent_topics .slick-prev {
    transform: translateX(50%);
  }
}
@media screen and (min-width: 769px) {
  body div.topics div.recent_topics .slick-prev {
    transform: translateX(-50%);
  }
}
body div.topics div.recent_topics .slick-next {
  top: 37%;
  width: 26px;
}
@media screen and (max-width: 768px) {
  body div.topics div.recent_topics .slick-next {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 769px) {
  body div.topics div.recent_topics .slick-next {
    transform: translateX(50%);
  }
}
body div.topics div.recent_topics .slick-next:before, body div.topics div.recent_topics .slick-prev:before {
  display: none;
}
body div.cosmetics {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  body div.cosmetics {
    width: 538px;
    padding-top: 94px;
    padding-bottom: 117px;
  }
}
@media screen and (max-width: 768px) {
  body div.cosmetics {
    width: 330px;
    padding-top: 30px;
    padding-bottom: 62px;
  }
}
body div.cosmetics p {
  text-align: left;
}
@media screen and (min-width: 769px) {
  body div.cosmetics p {
    font-size: 14px;
    padding-bottom: 9px;
  }
}
@media screen and (max-width: 768px) {
  body div.cosmetics p {
    font-size: 12px;
    padding-bottom: 10px;
  }
}
body div.cosmetics img.cosme_img {
  width: 100%;
}
body div.cosmetics p.come_detail {
  padding-top: 15px;
  text-align: left;
  word-break: break-all;
}
@media screen and (min-width: 769px) {
  body div.cosmetics p.come_detail {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  body div.cosmetics p.come_detail {
    font-size: 10px;
    letter-spacing: 1.2px;
    line-height: 1.4;
  }
}
body div.cosmetics p.come_detail span {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
}
body div.cosmetics p.come_detail span:nth-child(n+2) {
  padding-left: 10px;
}
@media screen and (min-width: 769px) {
  body div.cosmetics p.come_detail span {
    font-size: 14px;
  }
}
body div.personal {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  body div.personal {
    width: 654px;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal {
    width: 81.06%;
    padding-bottom: 60px;
  }
}
body div.personal div.staff {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  body div.personal div.staff div.staff_icon {
    width: 167px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal div.staff div.staff_icon {
    width: 35.54%;
  }
}
body div.personal div.staff div.staff_icon img {
  border-radius: 50%;
}
body div.personal div.staff ul.post {
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  body div.personal div.staff ul.post {
    width: 24.95%;
    padding-left: 41px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal div.staff ul.post {
    width: 56.06%;
    padding-left: 23px;
  }
}
body div.personal div.staff ul.post li.name {
  font-weight: 500;
}
body div.personal div.staff ul.post li.name_en {
  font-size: 16px;
  font-family: century-gothic, sans-serif;
  font-weight: 700;
}
body div.personal div.staff ul.post li.brand {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  body div.personal div.staff ul.post li.brand {
    padding-top: 3px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal div.staff ul.post li.brand {
    padding-top: 2px;
  }
}
body div.personal div.staff ul.post li.insta {
  font-size: 12px;
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body div.personal div.staff ul.post li.insta {
    padding-top: 9px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal div.staff ul.post li.insta {
    padding-top: 6px;
  }
}
body div.personal div.staff ul.post li.insta a {
  border-bottom: solid;
  border-width: 0.5px;
  text-decoration: none;
  color: #707070;
}
body div.personal div.staff ul.post li.code {
  font-size: 12px;
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body div.personal div.staff ul.post li.code {
    padding-top: 34px;
  }
}
@media screen and (max-width: 768px) {
  body div.personal div.staff ul.post li.code {
    padding-top: 20px;
  }
}
body div.personal div.staff ul.post li.code a {
  border-bottom: solid;
  border-width: 0.5px;
  text-decoration: none;
  color: #707070;
}
body div.personal div.hashtag_pc {
  width: 41.54%;
}
@media screen and (max-width: 768px) {
  body div.personal div.hashtag_pc {
    display: none !important;
  }
}
body div.personal div.hashtag_pc ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1;
}
body div.personal div.hashtag_pc ul li {
  padding: 5px 10px;
  box-sizing: border-box;
  border: 1px solid #707070;
  border-radius: 10.5px;
  background: #fff;
  margin-right: 8px;
  margin-bottom: 11px;
}
body div.personal div.hashtag_sp {
  padding-top: 26px;
}
@media screen and (min-width: 769px) {
  body div.personal div.hashtag_sp {
    display: none !important;
  }
}
body div.personal div.hashtag_sp ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1;
}
body div.personal div.hashtag_sp ul li {
  padding: 5px 10px;
  box-sizing: border-box;
  border: 1px solid #707070;
  border-radius: 10.5px;
  background: #fff;
  margin-right: 8px;
  margin-bottom: 11px;
}

div.goodbtn {
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
div.goodbtn div {
  position: relative;
  width: 100%;
  height: 100%;
}
div.goodbtn span {
  width: 20px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.goodbtn span:nth-child(n+2) {
  opacity: 0;
}
div.goodbtn::before {
  content: "";
  display: block;
  width: 69px;
  height: 23px;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background: url(../images/tapme_1.png);
  background-size: cover;
}
div.goodbtn.active span:nth-child(2) {
  opacity: 1;
}
div.goodbtn.active::before {
  width: 54px;
  height: 13px;
  background: url(../images/tapme.png);
  background-size: cover;
}
div.goodbtn.move span:nth-child(3) {
  animation-name: move;
  animation-duration: 0.8s;
}

@keyframes move {
  0% {
    opacity: 0;
  }
  10% {
    transform: translate(2px, -25px);
    opacity: 1;
  }
  20% {
    transform: translate(5px, -35px);
    opacity: 1;
  }
  30% {
    transform: translate(0px, -45px);
    opacity: 1;
  }
  40% {
    transform: translate(-2px, -55px);
    opacity: 1;
  }
  50% {
    transform: translate(-5px, -65px);
  }
  60% {
    transform: translate(0px, -75px);
  }
  70% {
    transform: translate(2px, -85px);
  }
  80% {
    transform: translate(5px, -95px);
  }
  90% {
    transform: translate(0px, -105px);
  }
  100% {
    transform: translate(-10px, -115px);
    opacity: 0;
  }
}
div.itemlist p.photo span {
  display: none;
}/*# sourceMappingURL=style.css.map */