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

/*メディアクエリー
---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/* ゆっくり遷移する */
html {
  scroll-behavior: smooth;
}

/*modal
---------------------------------------------*/
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: #78ADAB;
  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: #78ADAB;
  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: #78ADAB;
  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: #78ADAB;
  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 {
  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.8px;
}

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

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

a.answer img {
  margin-bottom: 22px;
}

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

/*診断の中のグッドボタン*/
div.shindan_goodbtn_1 {
  width: 50px;
  position: absolute;
  right: 26px;
  top: 300px;
}
div.shindan_goodbtn_1.shake {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: shake;
}

div.shindan_goodbtn_2 {
  width: 50px;
  position: absolute;
  right: 26px;
  bottom: 14px;
}
div.shindan_goodbtn_2.shake {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: shake;
}

/*変数
---------------------------------------------*/
/*bodyの色*/
/*bodyの色*/
/*menuの色*/
/*診断ボタン*/
#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: 91.07%;
    right: 0;
  }
}

/*topページ*/
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.loop {
    position: absolute;
    right: 0;
    width: 61.5972222222%;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 769px) {
  div.title {
    width: 26.2%;
    position: absolute;
    top: 18.14%;
    left: 7.2%;
  }
}
@media screen and (max-width: 768px) {
  div.title {
    width: 62.18%;
    margin: 0 auto 0px;
    padding-top: 24px;
  }
}

div.intro_sentence {
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  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.intro_sentence {
    width: 82.4%;
    margin: 55px auto 0px;
    padding-bottom: 60px;
    line-height: 1.8;
  }
}

div.intro_sentence p {
  text-align: center;
}
@media screen and (min-width: 769px) {
  div.intro_sentence p {
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 768px) {
  div.intro_sentence p {
    font-size: 16px;
  }
}

/*menu*/
div.menu {
  background: #F4F4F4;
}

.intro h2 {
  color: #78ADAB;
  text-align: center;
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (min-width: 769px) {
  .intro h2 {
    padding-top: 71px;
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .intro h2 {
    padding-top: 55px;
    font-size: 24px;
  }
}

div.section {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.section {
    width: 700px;
    padding-top: 57px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  div.section {
    width: 75.52%;
    padding-top: 30px;
    padding-bottom: 63px;
  }
}

div.section ul.nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div.section ul.nav {
    flex-wrap: wrap;
    margin: 0 auto 0px;
  }
}

li.icon {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  li.icon {
    width: 103px;
  }
}
@media screen and (max-width: 768px) {
  li.icon {
    width: 29.68%;
  }
}

li.icon::before {
  content: "";
  height: 83.4951456311%;
  background: #fff;
  width: 100%;
  position: absolute;
  top: 12.1359223301%;
  left: 0;
}

li.icon::after {
  content: "";
  display: block;
  padding-top: 200%;
}

li.icon p, li.icon a {
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  z-index: 2;
}

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) {
  li.icon p.icon_nunber {
    font-size: 41px;
  }
}
@media screen and (max-width: 768px) {
  li.icon p.icon_nunber {
    font-size: 34px;
  }
}

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) {
  li.icon p.category {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  li.icon p.category {
    font-size: 11px;
  }
}

li.icon:nth-child(1) a {
  width: 114.5631067961%;
  left: -3.8834951456%;
}
li.icon:nth-child(2) a {
  width: 112.6213592233%;
  left: -3.8834951456%;
}
li.icon:nth-child(3) a {
  width: 108.7378640777%;
  right: 0;
}
@media screen and (max-width: 768px) {
  li.icon:nth-child(4) {
    margin-top: 7px;
  }
}
li.icon:nth-child(4) a {
  width: 118.4466019417%;
  left: -8.7378640777%;
}
@media screen and (max-width: 768px) {
  li.icon:nth-child(5) {
    margin-top: 7px;
  }
}
li.icon:nth-child(5) a {
  width: 111.6504854369%;
  left: 0.9708737864%;
}
@media screen and (max-width: 768px) {
  li.icon:nth-child(6) {
    margin-top: 7px;
  }
}
li.icon:nth-child(6) a {
  width: 106.7961165049%;
  left: -1.9417475728%;
}

/*body*/
body {
  color: #5E5E5E;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

div.coordinate {
  background: #F1EFE9;
}
@media screen and (min-width: 769px) {
  div.coordinate {
    padding-top: 107px;
  }
}
@media screen and (max-width: 768px) {
  div.coordinate {
    padding-top: 71px;
  }
}

div.body_title {
  text-align: center;
  line-height: 1;
  color: #78ADAB;
  position: relative;
}

@media screen and (min-width: 769px) {
  div.body_title {
    height: 193px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  div.body_title::before {
    content: "";
    display: block;
    padding-top: 128%;
  }
}
div.body_title div.taste_loop {
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop {
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop {
    left: 0;
    top: 11.4583333333%;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_01 ul li {
    width: 581px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_01 ul li {
    width: 498px;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_02 ul li {
    width: 348px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_02 ul li {
    width: 302px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_03 ul li {
    width: 398px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_03 ul li {
    width: 398px;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_04 ul li {
    width: 376px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_04 ul li {
    width: 376px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_05 ul li {
    width: 280px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_05 ul li {
    width: 265px;
    box-sizing: border-box;
    padding: 0 10px;
  }
}
@media screen and (min-width: 769px) {
  div.body_title div.taste_loop_06 ul li {
    width: 412px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title div.taste_loop_06 ul li {
    width: 412px;
  }
}
div.body_title div.subtitle {
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  div.body_title div.subtitle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
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) {
  div.body_title span.sub {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div.body_title span.sub {
    font-size: 20px;
    text-align: center;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
  }
}
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) {
  div.body_title span.number {
    font-size: 103px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  div.body_title span.number {
    font-size: 81px;
    text-align: center;
    display: block;
    line-height: 1;
  }
}
div.body_title span.kinds {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  div.body_title span.kinds {
    font-size: 24px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  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) {
  div.body_title span.sp_cd {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  div.body_title span.sp_cd {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
  }
}
div.body_title span.yuna_sp {
  bottom: -40px;
}
div.body_title span.itami_sp {
  bottom: -33px;
}
div.body_title span.ai_sp {
  bottom: -8px;
}
div.body_title span.kazumi_sp {
  bottom: -8px;
}
div.body_title span.hijiri_sp {
  bottom: -20px;
}
div.body_title span.date_sp {
  bottom: -20px;
}
div.body_title span.yuzu_sp {
  bottom: -50px;
}
div.body_title span.rika_sp {
  bottom: -60px;
}

div.matching {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.matching {
    position: relative;
    margin: 0 auto;
    padding-top: 121px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  div.matching {
    padding-top: 159px;
    width: 100%;
  }
}

div.profile_bar {
  position: sticky;
  top: -2px;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  div.profile_bar {
    width: 77px;
    left: calc(100% - 77px);
    height: 0;
  }
}
@media screen and (max-width: 768px) {
  div.profile_bar {
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  div.profile_bar img {
    width: 105%;
    transform: translateX(-2.5%);
    position: relative;
    top: -7px;
  }
}

@media screen and (min-width: 769px) {
  div.profile_bar img.pc_non {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  div.profile_bar img.sp_non {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  div.up_style {
    width: 407px;
  }
}
@media screen and (max-width: 768px) {
  div.up_style {
    margin: 0 auto;
    width: 80%;
  }
}

@media screen and (min-width: 769px) {
  div.coordinate01 {
    display: flex;
    width: 728px;
    margin: 0 auto;
    position: relative;
    left: -138px;
  }
}

@media screen and (min-width: 769px) {
  div.coordinate02 {
    display: flex;
    width: 728px;
    padding-top: 150px;
    margin: 0 auto;
    position: relative;
    left: 27px;
  }
}

@media screen and (min-width: 769px) {
  div.coordinate03 {
    display: flex;
    width: 728px;
    padding-top: 150px;
    margin: 0 auto;
    position: relative;
    left: 175px;
  }
}

div.credit {
  display: flex;
}
@media screen and (min-width: 769px) {
  div.credit {
    align-items: end;
    width: 321px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  div.credit {
    padding-top: 20px;
    padding-bottom: 30px;
    margin: 0 auto;
    width: 71.73%;
    align-items: end;
  }
}

@media screen and (max-width: 768px) {
  div.credit_img {
    width: 52.26%;
  }
}
@media screen and (min-width: 769px) {
  div.credit_img {
    width: 180px;
  }
}

div.credit_item {
  text-decoration: underline;
  text-underline-offset: 7px;
  padding: 0 10px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div.credit_item {
    font-size: 12px;
    text-align: right;
    width: 147px;
  }
}
@media screen and (max-width: 768px) {
  div.credit_item {
    width: 61.99%;
    font-size: 12px;
    text-align: right;
  }
}

@media screen and (min-width: 769px) {
  div.credit_item ul li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  div.credit_item ul li {
    margin-bottom: 20px;
  }
}

/*千早さん用*/
div.credit_2 {
  display: flex;
}
@media screen and (min-width: 769px) {
  div.credit_2 {
    align-items: end;
    width: 340px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  div.credit_2 {
    padding-top: 20px;
    padding-bottom: 30px;
    margin: 0 auto;
    width: 76.73%;
    align-items: end;
  }
}

@media screen and (max-width: 768px) {
  div.credit_2_img {
    width: 52.26%;
  }
}
@media screen and (min-width: 769px) {
  div.credit_2_img {
    width: 180px;
  }
}

div.credit_2_item {
  text-decoration: underline;
  text-underline-offset: 7px;
  padding: 0 10px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div.credit_2_item {
    font-size: 12px;
    text-align: right;
    width: 147px;
  }
}
@media screen and (max-width: 768px) {
  div.credit_2_item {
    width: 61.99%;
    font-size: 12px;
    text-align: right;
  }
}

@media screen and (min-width: 769px) {
  div.credit_2_item ul li {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  div.credit_2_item ul li {
    margin-bottom: 20px;
  }
}

div.a {
  position: relative;
}

@media screen and (min-width: 769px) {
  div.a 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) {
  div.a 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) {
  div.a ul 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) {
  div.a ul 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) {
  div.goodbtn {
    width: 13.16%;
    position: absolute;
    right: 4.7021943574%;
    bottom: 2.9545454545%;
  }
}
@media screen and (min-width: 769px) {
  div.goodbtn {
    width: 61px;
    position: absolute;
    right: 15px;
    bottom: 14px;
  }
}
div.goodbtn.shake {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: shake;
}

img.up_01 {
  position: absolute;
  top: 0;
  left: 0;
}

img.up_01.active {
  opacity: 0;
}

img.goodbtn_1 {
  position: absolute;
  top: 0;
  left: 0;
}

img.goodbtn_1.active {
  opacity: 0;
}

/*最近のあれこれ*/
div.topics {
  background: #FDFCF7;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  div.topics {
    padding-top: 104px;
  }
}
@media screen and (max-width: 768px) {
  div.topics {
    padding-top: 61px;
  }
}

div.recent_topics_pc {
  width: 921px;
  padding-top: 48px;
  padding-bottom: 83px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  div.recent_topics_pc {
    display: none !important;
  }
}

div.recent_topics_sp {
  width: 81.06%;
  padding-top: 48px;
  padding-bottom: 83px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div.recent_topics_sp {
    display: none !important;
  }
}

h3 {
  /*border-bottom: 1px solid #707070;*/
}
@media screen and (min-width: 769px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 18px;
  }
}

h3 {
  padding: 10px;
  position: relative;
}

h3::after {
  content: "";
  display: block;
  height: 0;
  border-bottom: 1px solid #707070;
  position: absolute;
}
@media screen and (min-width: 769px) {
  h3::after {
    width: 165px;
    margin: 7px auto;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  h3::after {
    width: 145px;
    margin: 5px auto;
    position: relative;
  }
}

h4 {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #78ADAB;
  font-style: italic;
}

@media screen and (min-width: 769px) {
  ul.topics_img {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  ul.topics_img li {
    width: 246px;
  }
}

ul.topics_img img {
  padding-bottom: 10px;
}

/*吹き出し*/
.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;
  font-size: 12px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .arrow_box {
    width: 99%;
  }
}
@media screen and (max-width: 768px) {
  .arrow_box {
    width: 95%;
    left: 8px;
  }
}

.arrow_box:after, .arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  left: 17%;
}

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

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

/*ul.topics_img li p{
    font-size: 12px;
    position: relative;
    background: url(../images/fukidashi.png);
    background-size: cover;
    background-position: center center;
}
ul.topics_img li p::before{
    content: "";
    display: block;
    padding-top: 24.49%;
}
ul.topics_img li p span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}*/
.personal {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .personal {
    width: 43.12%;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 768px) {
  .personal {
    width: 81.06%;
    padding-bottom: 60px;
  }
}

.staff {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .staff_icon {
    width: 26.89%;
  }
}
@media screen and (max-width: 768px) {
  .staff_icon {
    width: 35.54%;
  }
}

.staff_icon img {
  border-radius: 50%;
}

.post {
  text-align: left;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .post {
    width: 24.95%;
    padding-left: 41px;
  }
}
@media screen and (max-width: 768px) {
  .post {
    width: 56.06%;
    padding-left: 23px;
  }
}

.post li.name {
  font-size: 16px;
  font-weight: bold;
}

.post li.brand {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .post li.brand {
    padding-top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .post li.brand {
    padding-top: 2px;
  }
}

.post li.insta {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .post li.insta {
    padding-top: 9px;
  }
}
@media screen and (max-width: 768px) {
  .post li.insta {
    padding-top: 6px;
  }
}

.post li.insta a {
  border-bottom: solid;
  border-width: 0.5px;
}

.post li.code {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .post li.code {
    padding-top: 34px;
  }
}
@media screen and (max-width: 768px) {
  .post li.code {
    padding-top: 20px;
  }
}

.post li.code a {
  border-bottom: solid;
  border-width: 0.5px;
}

div.hashtag_pc {
  width: 41.54%;
}
@media screen and (max-width: 768px) {
  div.hashtag_pc {
    display: none !important;
  }
}

div.hashtag_pc ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1;
}

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

div.hashtag_sp {
  padding-top: 26px;
}
@media screen and (min-width: 769px) {
  div.hashtag_sp {
    display: none !important;
  }
}

div.hashtag_sp ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1;
}

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

/*最近のあれこれ終わり*/
/*//body*/
/*slick調整*/
.slick-next, .slick-prev {
  top: 37% !important;
  width: 10px !important;
  height: 10px !important;
}

@media screen and (min-width: 769px) {
  .arrow_box:before {
    margin-left: -8px !important;
  }
}

@media screen and (min-width: 769px) {
  .arrow_box::after {
    margin-left: -7px;
  }
}

.arrow_box {
  padding: 15px 20px !important;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-5px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(5px, 0, 0);
  }
}/*# sourceMappingURL=style.css.map */