@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: 2s;
  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-3s {
  animation-delay: 3s;
}

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

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

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

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

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

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

.img-wrapL {
  animation: img-opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-wrapL:before {
  animation: img-wrapL 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #d9d36f;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapL {
  100% {
    transform: translateX(100%);
  }
}
.img-wrapR {
  overflow: hidden;
  position: relative;
  animation: img-opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.img-wrapR:before {
  animation: img-wrapR 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #d9d36f;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapR {
  100% {
    transform: translateX(-100%);
  }
}
/*リセット
--------------------------------------------*/
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 {
  font-size: 62.5%;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: futura-pt, noto-sans-cjk-jp, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  font-size: 14px;
  color: #000;
  font-weight: normal;
  scroll-snap-type: y mandatory;
  background-color: #d9d36f;
}

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
}
#loader div {
  width: 53%;
}
@media screen and (min-width: 1000px) {
  #loader div {
    max-width: 300px;
  }
}

#wrapper {
  width: 100%;
  overflow: hidden;
  opacity: 0;
}
#wrapper.loaded {
  opacity: 1;
  transition: 2s 1s;
}

#header {
  width: 100%;
  height: 130px;
  position: relative;
}
@media screen and (min-width: 1000px) {
  #header {
    height: auto;
  }
  #header::before {
    content: "";
    display: block;
    padding-top: calc(80 / 1260 * 100%);
  }
}
#header h1 {
  position: fixed;
  top: 37px;
  left: 20px;
  width: 33%;
  z-index: 10;
  transition: 0.6s;
  max-width: 140px;
}
@media screen and (min-width: 1000px) {
  #header h1 {
    width: 13.5%;
    max-width: 166px;
    top: 40px;
    left: 40px;
  }
}
#header h1.small {
  width: 20%;
}
@media screen and (min-width: 1000px) {
  #header h1.small {
    max-width: 100px;
  }
}
#header span {
  display: block;
  width: 33%;
  position: absolute;
  top: 95px;
  left: 20px;
  max-width: 140px;
}
@media screen and (min-width: 1000px) {
  #header span {
    width: 23%;
    top: 75px;
    left: 244px;
    max-width: 254px;
  }
}

div.top {
  position: relative;
}
@media screen and (min-width: 1000px) {
  div.top {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  div.top::before {
    content: "";
    display: block;
    padding-top: calc(473 / 710 * 100%);
  }
}
@media screen and (max-width: 999px) {
  div.top::before {
    content: "";
    display: block;
    padding-top: calc(1200 / 750 * 100%);
  }
}
div.top div.ciao {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.ciao {
    width: calc(275 / 750 * 100%);
    top: 0;
    right: calc(86 / 750 * 100%);
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.ciao {
    width: calc(150 / 710 * 100%);
    top: calc(19 / 473 * 100%);
    left: calc(356 / 750 * 100%);
    z-index: 2;
  }
}
div.top div.olive {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.olive {
    width: calc(449 / 750 * 100%);
    top: calc(203 / 1200 * 100%);
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.olive {
    width: calc(265 / 710 * 100%);
    top: calc(80 / 473 * 100%);
    left: calc(60 / 710 * 100%);
  }
}
div.top div.rasvoa {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.rasvoa {
    width: calc(222 / 750 * 100%);
    top: calc(176 / 1200 * 100%);
    right: calc(-18 / 750 * 100%);
    z-index: 3;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.rasvoa {
    width: calc(100 / 710 * 100%);
    top: calc(101 / 473 * 100%);
    left: calc(489 / 750 * 100%);
    z-index: 3;
  }
}
div.top div.chico {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.chico {
    width: calc(291 / 750 * 100%);
    top: calc(279 / 1200 * 100%);
    left: calc(221 / 750 * 100%);
    z-index: 5;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.chico {
    width: calc(160 / 710 * 100%);
    bottom: 0;
    right: calc(12 / 710 * 100%);
    z-index: 5;
  }
}
div.top div.nice {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.nice {
    width: calc(357 / 750 * 100%);
    top: calc(652 / 1200 * 100%);
    right: 0;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.nice {
    width: calc(195 / 710 * 100%);
    top: calc(202 / 473 * 100%);
    left: calc(208 / 710 * 100%);
    z-index: 2;
  }
}
div.top div.omekashi {
  position: absolute;
}
@media screen and (max-width: 999px) {
  div.top div.omekashi {
    width: calc(249 / 750 * 100%);
    top: calc(467 / 1200 * 100%);
    left: calc(27 / 750 * 100%);
    z-index: 4;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.omekashi {
    width: calc(140 / 710 * 100%);
    top: calc(162 / 473 * 100%);
    left: calc(24 / 710 * 100%);
    z-index: 4;
  }
}
div.top h1 {
  position: absolute;
  font-style: italic;
  font-weight: 700;
  -webkit-text-stroke: 1px black;
  -webkit-text-fill-color: #fff;
}
@media screen and (max-width: 999px) {
  div.top h1 {
    font-size: 55px;
    left: calc(88 / 750 * 100%);
    bottom: -5%;
    z-index: 6;
  }
}
@media screen and (min-width: 1000px) {
  div.top h1 {
    font-size: 120px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8%;
    white-space: nowrap;
    z-index: 8;
  }
}
div.top h1 span {
  animation: 0.2s linear both 2.3s size-sp;
}
@media screen and (max-width: 999px) {
  div.top h1 span {
    font-size: 80px;
    display: inline-block;
  }
}
@media screen and (min-width: 1000px) {
  div.top h1 span {
    font-size: 160px;
    display: inline-block;
  }
}
div.top div.num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff100;
  color: #d9d36f;
  font-style: italic;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  div.top div.num {
    width: calc(148 / 750 * 100%);
    height: calc(148 / 1200 * 100%);
    bottom: calc(120 / 1200 * 100%);
    right: calc(30 / 750 * 100%);
    font-size: 21px;
  }
}
@media screen and (min-width: 1000px) {
  div.top div.num {
    width: calc(90 / 710 * 100%);
    height: calc(90 / 473 * 100%);
    bottom: calc(66 / 473 * 100%);
    right: calc(95 / 710 * 100%);
    font-size: 40px;
    z-index: 7;
  }
}
div.top p {
  position: absolute;
  font-style: italic;
  display: inline-block;
  border-bottom: 2px solid #000;
  line-height: 1;
}
@media screen and (min-width: 1000px) {
  div.top p {
    bottom: calc(100 / 473 * 100%);
    font-size: 40px;
    left: calc(180 / 710 * 100%);
  }
}
@media screen and (max-width: 999px) {
  div.top p {
    bottom: calc(150 / 1200 * 100%);
    font-size: 16px;
    left: calc(120 / 750 * 100%);
  }
}

#lead {
  line-height: 2;
}
@media screen and (max-width: 999px) {
  #lead {
    margin: 64px auto 64px;
    width: 83%;
  }
}
@media screen and (min-width: 1000px) {
  #lead {
    text-align: center;
    padding-bottom: 76px;
    max-width: 1060px;
    margin: 50px auto 0;
    font-size: 16px;
  }
}

div.korekai {
  animation: 6s linear infinite rotation;
}

p.num {
  font-weight: 500;
}

div.huki {
  font-size: 14px !important;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000 !important;
  background: #fff;
  letter-spacing: 2px;
  box-sizing: border-box;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1000px) {
  div.huki {
    font-size: 18px !important;
    white-space: nowrap;
  }
}
@media screen and (max-width: 999px) {
  div.huki {
    white-space: nowrap;
  }
}
div.huki::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  div.huki::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 20px 7px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1000px) {
  div.huki::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 20px 7px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
  }
}
div.huki div {
  padding: 21px 15px;
}

div.staffinfo {
  font-family: futura, noto-sans-cjk-jp, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
@media screen and (max-width: 999px) {
  div.staffinfo {
    margin: 40px auto 50px;
    padding-bottom: 90px;
    border-bottom: 1px solid #000;
    width: calc(670 / 750 * 100%);
  }
}
@media screen and (min-width: 1000px) {
  div.staffinfo {
    padding-bottom: 100px;
  }
}
div.staffinfo h3 {
  text-align: center;
}
@media screen and (max-width: 999px) {
  div.staffinfo h3 {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1000px) {
  div.staffinfo h3 {
    margin-bottom: 27px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  div.staffinfo ul {
    width: 522px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
div.staffinfo ul li {
  border: 1px solid #000;
}
@media screen and (max-width: 999px) {
  div.staffinfo ul li {
    width: calc(420 / 670 * 100%);
    margin: 0 auto 15px;
    padding: 7px 0;
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  div.staffinfo ul li {
    width: 252px;
    padding: 15px 0;
    font-size: 14px;
  }
}
div.staffinfo ul a {
  color: #000;
  text-decoration: none;
  width: 100%;
  display: block;
}

div.archive {
  position: relative;
}
@media screen and (min-width: 1000px) {
  div.archive::before {
    content: "";
    display: block;
    width: 500%;
    top: 0;
    left: -100%;
    height: 1px;
    background: #000;
    position: absolute;
  }
}
@media screen and (min-width: 1000px) {
  div.archive::after {
    content: "";
    display: block;
    width: 500%;
    bottom: 0;
    left: -100%;
    height: 1px;
    background: #000;
    position: absolute;
  }
}
@media screen and (max-width: 999px) {
  div.archive {
    padding: 90px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}
@media screen and (min-width: 1000px) {
  div.archive {
    padding: 60px 0;
  }
}
div.archive h3 {
  text-align: center;
  text-decoration: underline;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  div.archive h3 {
    font-size: 24px;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 999px) {
  div.archive h3 {
    font-size: 24px;
    margin-bottom: 45px;
  }
}
div.archive a {
  display: block;
}
@media screen and (max-width: 999px) {
  div.archive a {
    width: calc(590 / 750 * 100%);
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  div.archive a {
    width: 300px;
    margin: 0 auto;
  }
}
div.archive a p {
  text-align: center;
}
@media screen and (max-width: 999px) {
  div.archive a p {
    margin-top: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  div.archive a p {
    margin-top: 15px;
    font-size: 24px;
  }
}
div.archive a p span {
  display: block;
}
@media screen and (max-width: 999px) {
  div.archive a p span:first-child {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  div.archive a p span:first-child {
    font-size: 12px;
  }
}
@media screen and (max-width: 999px) {
  div.archive a p span:last-child {
    font-size: 12px;
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  div.archive a p span:last-child {
    font-size: 12px;
    color: #fff;
  }
}

.noborder {
  border-bottom: none !important;
}

@media screen and (min-width: 1000px) {
  #main_area {
    max-width: 1060px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .line {
    margin-bottom: 80px;
    border-bottom: 1px solid #000;
    width: 100%;
  }
}
#main_area .block {
  position: relative;
}
@media screen and (min-width: 1000px) {
  #main_area .block {
    max-width: 960px;
    margin: 0px 0 80px;
  }
}
#main_area .block01 {
  position: relative;
}
#main_area .block01::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block01::before {
    padding-top: 296%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block01 p {
  color: #fff;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  #main_area .block01 p {
    font-size: 48px;
    top: 3.8%;
    left: 13.5%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    right: calc(148 / 1060 * 100%);
  }
}
#main_area .block01 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block01 div.korekai {
    width: 27%;
    left: 6%;
    top: 3%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    right: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block01 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block01 div.img01 {
    width: 86.2%;
    top: 9%;
    right: 0;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01 div.img01 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    left: calc(44 / 1060 * 100%);
  }
}
#main_area .block01 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block01 div.img02 {
    width: 43.8%;
    top: 23.8%;
    right: 4%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01 div.img02 {
    width: calc(273 / 1060 * 100%);
    left: calc(236 / 1060 * 100%);
    bottom: 0;
  }
}
#main_area .block01 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block01 div.img03 {
    width: 75%;
    bottom: 0;
    left: 3%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block01 div.img03 {
    width: calc(378 / 1060 * 100%);
    bottom: 0;
    right: calc(125 / 1060 * 100%);
  }
}
#main_area .block01 div.huki {
  position: absolute;
  top: 57.7%;
  left: 78%;
}
@media screen and (min-width: 1000px) {
  #main_area .block01 div.huki {
    left: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
#main_area .block02 {
  position: relative;
}
#main_area .block02::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block02::before {
    padding-top: 310.5%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block02 p {
  position: absolute;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  #main_area .block02 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    left: calc(152 / 1060 * 100%);
  }
}
@media screen and (max-width: 999px) {
  #main_area .block02 p {
    font-size: 48px;
    top: 64%;
    left: 12%;
    z-index: 2;
  }
}
#main_area .block02 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block02 div.korekai {
    width: 27%;
    left: 6%;
    top: 63.5%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    left: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block02 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block02 div.img01 {
    width: 96%;
    top: 4.7%;
    left: 4.4%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.img01 {
    width: calc(273 / 1060 * 100%);
    right: calc(236 / 1060 * 100%);
    bottom: 0;
    z-index: 2;
  }
}
#main_area .block02 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block02 div.img02 {
    width: 39.8%;
    top: 52.7%;
    right: 23%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.img02 {
    width: calc(378 / 1060 * 100%);
    bottom: 0;
    left: calc(125 / 1060 * 100%);
  }
}
#main_area .block02 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block02 div.img03 {
    width: 86.6%;
    bottom: 0;
    left: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.img03 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    right: calc(44 / 1060 * 100%);
  }
}
#main_area .block02 div.huki {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block02 div.huki {
    top: 57%;
    left: 79%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.huki {
    right: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block02 div.huki::before {
    right: -20px;
    border-width: 7px 0px 7px 20px;
    border-color: transparent transparent transparent #fff;
  }
}
#main_area .block03 {
  position: relative;
}
#main_area .block03::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block03::before {
    padding-top: 314.1%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block03 p {
  color: #fff;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 p {
    font-size: 48px;
    top: 3.9%;
    right: 11%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    right: calc(152 / 1060 * 100%);
  }
}
#main_area .block03 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 div.korekai {
    width: 27%;
    right: 5.3%;
    top: 3.3%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    right: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block03 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 div.img01 {
    width: 86%;
    top: 8.9%;
    left: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 div.img01 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    left: calc(44 / 1060 * 100%);
  }
}
#main_area .block03 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 div.img02 {
    width: 54.3%;
    top: 24.7%;
    right: 4%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 div.img02 {
    width: calc(380 / 1060 * 100%);
    left: calc(126 / 1060 * 100%);
    bottom: 0;
  }
}
#main_area .block03 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 div.img03 {
    width: 71.3%;
    bottom: 0;
    left: 2%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 div.img03 {
    width: calc(340 / 1060 * 100%);
    bottom: 0;
    right: calc(170 / 1060 * 100%);
  }
}
#main_area .block03 div.huki {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block03 div.huki {
    top: 57%;
    left: 80.4%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block03 div.huki {
    left: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
#main_area .block04 {
  position: relative;
}
#main_area .block04::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block04::before {
    padding-top: 314.1%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block04 p {
  color: #fff;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 p {
    font-size: 48px;
    top: 4.2%;
    right: 13.5%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    left: calc(152 / 1060 * 100%);
  }
}
#main_area .block04 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 div.korekai {
    width: 27%;
    right: 7.3%;
    top: 3.5%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    left: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block04 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 div.img01 {
    width: 75.3%;
    top: 0%;
    left: 4.6%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.img01 {
    width: calc(340 / 1060 * 100%);
    bottom: 0;
    left: calc(175 / 1060 * 100%);
  }
}
#main_area .block04 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 div.img02 {
    width: 32%;
    top: 51.7%;
    right: 7.3%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.img02 {
    width: calc(200 / 1060 * 100%);
    right: calc(236 / 1060 * 100%);
    bottom: 0;
    z-index: 2;
  }
}
#main_area .block04 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 div.img03 {
    width: 86.6%;
    bottom: 0;
    left: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.img03 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    right: calc(44 / 1060 * 100%);
  }
}
#main_area .block04 div.huki {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block04 div.huki {
    top: 16.6%;
    left: 77.8%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.huki {
    right: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block04 div.huki::before {
    right: -20px;
    border-width: 7px 0px 7px 20px;
    border-color: transparent transparent transparent #fff;
  }
}
#main_area .block05 {
  position: relative;
}
#main_area .block05::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block05::before {
    padding-top: 314.1%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block05 p {
  color: #fff;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 p {
    font-size: 48px;
    top: 15.6%;
    right: 11%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    right: calc(152 / 1060 * 100%);
  }
}
#main_area .block05 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.korekai {
    width: 27%;
    right: 5.3%;
    top: 15%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    right: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block05 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.img01 {
    width: 86%;
    top: 0%;
    right: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 div.img01 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    left: calc(44 / 1060 * 100%);
  }
}
#main_area .block05 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.img02 {
    width: 44.5%;
    top: 14.5%;
    left: 2%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 div.img02 {
    width: calc(290 / 1060 * 100%);
    left: calc(126 / 1060 * 100%);
    bottom: 0;
  }
}
#main_area .block05 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.img03 {
    width: 82.3%;
    bottom: 0;
    right: 2%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 div.img03 {
    width: calc(340 / 1060 * 100%);
    bottom: 0;
    right: calc(170 / 1060 * 100%);
  }
}
#main_area .block05 div.huki {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.huki {
    top: 54.8%;
    left: 9.3%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block05 div.huki {
    left: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
@media screen and (max-width: 999px) {
  #main_area .block05 div.huki::before {
    right: -20px;
    border-width: 7px 0px 7px 20px;
    border-color: transparent transparent transparent #fff;
  }
}
#main_area .block06 {
  position: relative;
}
#main_area .block06::before {
  content: "";
  display: block;
}
@media screen and (max-width: 999px) {
  #main_area .block06::before {
    padding-top: 314.1%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06::before {
    padding-top: calc(934 / 1060 * 100%);
  }
}
#main_area .block06 p {
  color: #fff;
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 p {
    font-size: 48px;
    top: 66.3%;
    right: 21.6%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 p {
    font-size: 64px;
    top: calc(12 / 934 * 100%);
    left: calc(152 / 1060 * 100%);
  }
}
#main_area .block06 div.korekai {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 div.korekai {
    width: 27%;
    right: 15.7%;
    top: 65.7%;
    z-index: 1;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.korekai {
    width: calc(160 / 1060 * 100%);
    top: 0;
    left: calc(112 / 1060 * 100%);
    z-index: 1;
  }
}
#main_area .block06 div.img01 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 div.img01 {
    width: 102%;
    top: 1.8%;
    left: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.img01 {
    width: calc(440 / 1060 * 100%);
    bottom: 0;
    left: calc(175 / 1060 * 100%);
    z-index: 2;
  }
}
#main_area .block06 div.img02 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 div.img02 {
    width: 39%;
    top: 55.3%;
    left: 2%;
    z-index: 2;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.img02 {
    width: calc(220 / 1060 * 100%);
    right: calc(110 / 1060 * 100%);
    bottom: 0;
    z-index: 2;
  }
}
#main_area .block06 div.img03 {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 div.img03 {
    width: 86.3%;
    bottom: 0;
    right: 0%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.img03 {
    width: calc(416 / 1060 * 100%);
    top: calc(119 / 934 * 100%);
    right: calc(44 / 1060 * 100%);
  }
}
#main_area .block06 div.huki {
  position: absolute;
}
@media screen and (max-width: 999px) {
  #main_area .block06 div.huki {
    top: 0%;
    left: 78%;
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.huki {
    right: calc(911 / 1060 * 100%);
    top: calc(321 / 934 * 100%);
  }
}
@media screen and (min-width: 1000px) {
  #main_area .block06 div.huki::before {
    right: -20px;
    border-width: 7px 0px 7px 20px;
    border-color: transparent transparent transparent #fff;
  }
}

.item {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 80px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .item {
    max-width: 600px;
    margin: 0 auto;
  }
}
.item p {
  font-size: 10px;
}
@media screen and (min-width: 1000px) {
  .item p {
    font-size: 12px;
  }
}
.item .flex {
  margin: 0 auto;
  width: 100%;
  padding-top: 0%;
  position: relative;
}
.item .flex::after {
  content: "";
  content: "";
  /*何も入れない*/
  display: inline-block;
  /*忘れずに！*/
  width: 244px;
  /*画像の幅*/
  height: 13px;
  /*画像の高さ*/
  background-image: url(../img/shape.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30%;
}
.item .flex p {
  font-size: 24px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .item .flex p {
    font-size: 28px;
  }
}
@media screen and (max-width: 999px) {
  .item .flex p span:first-child {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .item .flex p span:first-child {
    font-size: 20px;
  }
}
.item .flex p span:last-child {
  font-style: italic;
  font-weight: 700;
  -webkit-text-stroke: 0.5px black;
  -webkit-text-fill-color: #fff;
}
@media screen and (max-width: 999px) {
  .item .flex p span:last-child {
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .item .flex p span:last-child {
    font-size: 28px;
  }
}
.item p.brand {
  font-size: 36px;
  font-family: futura, noto-sans-cjk-jp, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #fff;
  margin: 24px auto;
}
@media screen and (min-width: 1000px) {
  .item p.brand {
    font-size: 42px;
  }
}
.item p.title {
  letter-spacing: 1px;
  font-size: 18px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
@media screen and (min-width: 1000px) {
  .item p.title {
    font-size: 22px;
  }
}
.item p.title span {
  font-family: futura, noto-sans-cjk-jp, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
@media screen and (min-width: 1000px) {
  .item p.title span {
    font-size: 16px;
  }
}
.item p.comment {
  width: 83.8%;
  margin: 50px auto;
  font-size: 14px;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .item p.comment {
    font-size: 16px;
  }
}
.item .buy {
  width: 210px;
  height: 50px;
  line-height: 50px;
  background: #000;
  color: #d9d36f;
  font-size: 14px;
  margin: 35px auto 0;
  font-family: futura, noto-sans-cjk-jp, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
@media screen and (min-width: 1000px) {
  .item .buy {
    width: 250px;
    height: 60px;
    line-height: 60px;
    margin: 30px auto 60px;
  }
}
.item a {
  text-decoration: none;
  color: #d9d36f;
  display: block;
  width: 100%;
}

.slider {
  margin: 28px auto;
  width: 100%;
}

.slider img {
  height: auto;
  width: 100%;
}

/*slick setting*/
.slider.slick-prev,
.slider.slick-next {
  z-index: 100 !important;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:after,
.slick-next:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 3px;
  display: block;
  width: 8px;
  height: 8px;
  color: #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.slick-next:after {
  left: 7px;
  transform: rotate(-135deg);
}

@keyframes slideNext {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  }
}
@keyframes slide {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0%);
  }
}
.navToggle01 {
  position: fixed;
  top: 50%;
  right: 0;
  width: 30px;
  height: 100px;
  display: flex;
  flex-flow: column;
  background-color: #000;
  z-index: 500;
}
@media screen and (min-width: 1000px) {
  .navToggle01 {
    width: 50px;
    height: 150px;
  }
}
.navToggle01:hover {
  cursor: pointer;
}
.navToggle01 div {
  position: absolute;
  width: 100%;
  height: 40%;
}
.navToggle01 div span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background-color: #a6b3c0;
}
.navToggle01 div span:nth-of-type(1) {
  top: 40%;
  transition: 0.4s;
}
.navToggle01 div span:nth-of-type(2) {
  top: 50%;
  transition: 0.2s;
}
.navToggle01 div span:nth-of-type(3) {
  top: 60%;
  transition: 0.4s;
}
.navToggle01 div + span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 5px;
  left: 50%;
  height: 60%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  color: #a6b3c0;
  padding: 5px 0;
}
@media screen and (min-width: 1000px) {
  .navToggle01 div + span {
    font-size: 14px;
  }
}

.navToggle01.active div span:nth-of-type(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
}
.navToggle01.active div span:nth-of-type(2) {
  transform: translateX(150%);
}
.navToggle01.active div span:nth-of-type(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
}

.nav01 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a6b3c0;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
  z-index: 400;
  overflow: scroll;
}
.nav01.active {
  opacity: 1;
  visibility: visible;
}
.nav01 .wrap {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap {
    max-width: 1280px;
    margin: 0 auto;
  }
}
.nav01 .wrap span.ttl {
  display: block;
  font-size: 24px;
  color: #000;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.05em;
  height: 75px;
  line-height: 75px;
  margin-top: 30px;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap span.ttl {
    font-size: 36px;
    height: 150px;
    line-height: 150px;
  }
}
.nav01 .wrap div ul {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.nav01 .wrap div ul li {
  text-align: center;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 999px) {
  .nav01 .wrap div ul li {
    width: 50%;
    padding: 20px 0;
  }
  .nav01 .wrap div ul li:nth-of-type(n + 11) {
    border-bottom: none;
  }
  .nav01 .wrap div ul li:nth-of-type(odd) {
    border-right: 1px solid #000;
  }
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap div ul li {
    width: 25%;
    padding: 40px 0;
  }
  .nav01 .wrap div ul li:not(:nth-of-type(4n)) {
    border-right: 1px solid #000;
  }
  .nav01 .wrap div ul li:nth-of-type(n + 9) {
    border-bottom: none;
  }
}
.nav01 .wrap div ul li a {
  display: block;
}
.nav01 .wrap div ul li a div {
  width: 75%;
  margin: 0 auto;
  position: relative;
  padding-top: 5px;
  margin-bottom: 10px;
}
.nav01 .wrap div ul li a div span.num {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 39px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap div ul li a div span.num {
    font-size: 60px;
  }
}
.nav01 .wrap div ul li a span {
  display: block;
}
.nav01 .wrap div ul li a span.brand {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  position: relative;
}
.nav01 .wrap div ul li a span.brand::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap div ul li a span.brand {
    font-size: 20px;
  }
}
@media screen and (max-width: 999px) {
  .nav01 .wrap div ul li a span.brand.small {
    font-size: 14px;
  }
}
.nav01 .wrap div ul li a span.store {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap div ul li a span.store {
    font-size: 14px;
  }
}
.nav01 .wrap div ul li a h3 {
  -webkit-text-stroke: 0.5px black;
  -webkit-text-fill-color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .nav01 .wrap div ul li a h3 {
    -webkit-text-stroke: 0.7px black;
    font-size: 30px;
  }
}

#footer {
  padding: 50px 0;
}
@media screen and (min-width: 1000px) {
  #footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0;
  }
}
@media screen and (min-width: 1000px) {
  #footer .wrap {
    /*width: 38%;
    max-width: 1280px;
    margin: 0 auto;*/
  }
}
#footer .wrap p {
  font-size: 14px;
  text-align: center;
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-indent: 1px;
}
#footer .wrap h4 {
  width: 53.3%;
  margin: 0 auto 50px;
  max-width: 200px;
}
@media screen and (min-width: 1000px) {
  #footer .wrap h4 {
    width: 14.8%;
    margin: 0 auto 35px;
  }
}
#footer .wrap p small {
  font-size: 10px;
  font-weight: normal;
}

.cover_anim:before {
  animation: cover_T 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #f8ced2;
  width: 120%;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.cover_anim01:before {
  animation: cover_L 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.bg_color::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
  animation: shrink 1.2s ease-in-out 0s 1 forwards;
}

.opacity {
  animation: opacity 1.6s ease-in-out 1 both;
}

/*.rotate {
  animation: rotate 1.6s ease-in-out .6s 1 forwards;
}*/
.opacity01 {
  opacity: 1 !important;
}

.logo_small {
  opacity: 0;
  transform: translateY(50px);
}

.logo_small.translate {
  opacity: 1 !important;
  transform: translateY(0);
  transition: all 2s;
}

h1.translate01 {
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
  transition: all 1s 1s;
}

h3.translate02 {
  opacity: 1 !important;
  transform: translate(-90%, -95%) !important;
  transition: all 1s 1.6s;
}

.rotate {
  opacity: 0;
  transform: translate3d(0%, -35%, 0) rotate3d(1, 1, 0, -30deg);
  transition: transform 1.4s;
}

.rotate.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate3d(1, 1, 0, 0deg);
}

.filter {
  filter: blur(10px) brightness(2) saturate(1);
  -webkit-filter: blur(10px) brightness(2) saturate(1);
  -moz-filter: blur(10px) brightness(2) saturate(1);
  transition: filter 0.6s cubic-bezier(0.1, 0, 0.2, 1);
}

.filter.off {
  filter: blur(0) brightness(1) saturate(1);
  -webkit-filter: blur(0) brightness(1) saturate(1);
  -moz-filter: blur(0) brightness(1) saturate(1);
}

.scale {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: all 2s ease-in-out;
}

@media screen and (max-width: 999px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .pc_none {
    display: none;
  }
}

/*テキストアニメーション
_______________________________________*/
/* ANIMATION
--------------------------------------*/
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 0.6s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fuwatAnimeFromTop {
  animation-fill-mode: both;
  animation-duration: 1.5s;
  animation-name: fuwatAnimeFromTop;
  visibility: visible !important;
}
@keyframes fuwatAnimeFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blink {
  animation: blink 2s ease 0s infinite normal;
  -webkit-animation: blink 2s ease 0s infinite normal;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce {
  0% {
    transform: traslate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes shrink {
  0% {
    transform: traslateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    opacity: 0;
    transform: scale(1.4) rotate(12deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes fadeIn01 {
  0% {
    opacity: 0.4;
    transform: matrix(1.5, 0.2, 0.2, 1.5, 0, -10);
  }
  30% {
    opacity: 0.4;
    transform: matrix(1.3, 0.1, 0.1, 1.3, 3, -7);
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0.1;
    transform: scale(1.4) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0px);
  }
}
@keyframes zoomIn01 {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
/*.position {
  opacity: 0;
  -webkit-animation: position 2s ease-in-out 0s 1 forwards;
      animation: position 2s ease-in-out 0s 1 forwards;
}*/
@keyframes position {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(8px);
  }
}
@keyframes position_01 {
  0% {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }
}
@keyframes bg_size {
  0% {
    border: none;
  }
  100% {
    border: 1px solid;
  }
}
@keyframes cover_R {
  100% {
    transform: translateX(100%);
  }
}
@keyframes cover_L {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cover_T {
  100% {
    transform: translateY(-120%);
  }
}
@keyframes arrow_anime {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 50px) rotate(180deg);
  }
}
@keyframes bar_anim_y {
  0% {
    transform: translateY(-100%);
  }
  30% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes blur {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
  }
}
@keyframes animation-marquee {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}
/*----- フェードイン -----*/
.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 20%);
  -webkit-transform: translate(0, 20%);
  transition: 1s;
  transition-delay: 0.8s;
}

.inviewfadeInUp01 {
  opacity: 0;
  transform: translate(0, 10px);
  -webkit-transform: translate(0, 10px);
  transition: 1s;
  transition-delay: 1s;
}

.inviewfadeInUp2 {
  opacity: 0;
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition: 1s;
  transition-delay: 0.4s;
}

.inviewfadeInUp3 {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1.4s;
  transition-delay: 0.8s;
}

.inviewfadeIn {
  opacity: 0;
  transition: 0.8s;
}

.inviewfromTop {
  opacity: 0;
  transform: translate(0, -80px);
  -webkit-transform: translate(0, -80px);
  transition: 1s;
}

.inviewRight {
  opacity: 0;
  transform: translate(30px, -30px);
  -webkit-transform: translate(30px, -30px);
  transition: 0.8s;
  transition-delay: 0.8s;
}

.inviewLeft {
  opacity: 0;
  transform: translate(-30px, -30px);
  -webkit-transform: translate(-30px, -30px);
  transition: 0.8s;
  transition-delay: 0.8s;
}

/*.zoomIn {
      animation: zoomIn 1.2s 1s cubic-bezier(.3,1.59,.79,-0.64) 1 forwards;
    }*/
.fadeInUp {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  -webkit-transform: translate(0, 0) !important;
}

.fadeInUp01 {
  opacity: 1 !important;
}

/* 回転アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes size-sp {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.inviewimg-wrapL, .inviewimg-wrapR, .inviewimg-wrapB {
  opacity: 0;
}

/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}
#loader-bg #loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (max-width: 999px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}
@media screen and (max-width: 999px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

/*jQueryのCSS
--------------------------------------*/