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

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

.animated.delay-075s {
  animation-delay: 0.75s;
}

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

.animated.delay-125s {
  animation-delay: 1.25s;
}

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

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

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

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

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

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

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

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

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

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  background-color: #455163;
  scroll-behavior: smooth;
  color: #fff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.2vw;
}

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

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

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  width: 100%;
  display: block;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

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

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

* {
  box-sizing: border-box;
}

/*リセット
--------------------------------------------*/
/*フォントの読み込みが遅い時にいれる
--------------------------------------------*/
.wf-loading {
  /* styles to use when web fonts are loading */
}

.wf-active {
  /* styles to use when web fonts are active */
}

.wf-inactive {
  /* styles to use when web fonts are inactive */
}

/*
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/* Ambicase Fatface Regular */
.ambi_reg {
  font-family: ambicase-fatface, sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* Ambicase Fatface Poster */
.ambi_pos {
  font-family: ambicase-fatface-poster, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.amand_light {
  font-family: amandine, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.amand_reg {
  font-family: "amandine", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.amand_bl {
  font-family: "amandine", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Noto Sans CJK JP Regular */
.noto_reg {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Noto Sans CJK JP medium */
.noto_mid {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Noto Sans CJK JP Bold */
.noto_bl {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*
--------------------------------------------*/
.gld {
  color: #BC975D;
}

.txt_red {
  color: #AC2625;
}

/* 雪 
--------------------------------------------*/
#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* クリックやスクロールを邪魔しない */
  z-index: 9999; /* 全ての上に出す */
}

/*fv
--------------------------------------------*/
.fv {
  text-align: center;
  background-color: #800000;
  font-size: 14.4vw;
  position: relative;
}
.fv .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .fv {
    line-height: 1.09;
  }
  .fv .brandLogo {
    width: 21.3333333333%;
    margin: 0 auto;
  }
  .fv .titleMain {
    margin: 7.4666666667vw auto 2.6666666667vw;
  }
  .fv .titleYear {
    font-size: 10.4vw;
  }
}
.fv::before {
  display: block;
  content: "";
  padding-top: 100vh;
}
@media screen and (min-width: 769px) {
  .fv {
    font-size: 7.5vw;
  }
  .fv .brandLogo {
    width: 11.0833333333vw;
    margin: 2.3333333333vw auto 2.6666666667vw;
  }
  .fv .titleMain {
    margin: 3.9166666667vw auto 1.4166666667vw;
  }
  .fv .titleYear {
    font-size: 5.4166666667vw;
  }
}

/*fvここまで
--------------------------------------------*/
/* intro & メニュー
---------------------------------------------*/
.intro .arch {
  margin: 135px auto 48px;
  width: 38.9333333333vw;
}
@media screen and (min-width: 769px) {
  .intro .arch {
    width: 14.4166666667vw;
    margin: 95px auto 40px;
  }
}
.intro__txt {
  font-size: 3.2vw;
  line-height: 3;
  text-align: center;
  margin: 70px 0 65px;
}
@media screen and (min-width: 769px) {
  .intro__txt {
    font-size: 1.0833333333vw;
  }
}
.intro__menu {
  margin-bottom: 21.3333333333vw;
  color: #AC2625;
}
@media screen and (min-width: 769px) {
  .intro__menu {
    margin-bottom: 9.5833333333vw;
  }
}
.intro__menuBg, .intro .intro__menuBg ul {
  background-color: #fcfcfc;
}
@media screen and (min-width: 769px) {
  .intro__menuBg, .intro .intro__menuBg ul {
    margin-top: -1px;
  }
}
.intro__menuTitle {
  font-size: 9.6vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .intro__menuTitle {
    font-size: 3.8333333333vw;
  }
}
.intro .intro__menuBg ul {
  display: flex;
  width: 92%;
  gap: 1.3333333333vw;
  margin: 0 auto;
  padding: 26px 0;
}
@media screen and (min-width: 769px) {
  .intro .intro__menuBg ul {
    width: 89.3333333333%;
    gap: 3.5833333333vw;
  }
}
.intro .intro__menuBg ul li {
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .intro .intro__menuBg ul li {
    font-size: 2vw;
  }
}
.intro .intro__menuBg ul li a {
  color: #AC2625 !important;
}
.intro .intro__menuBg ul li:nth-child(2), .intro .intro__menuBg ul li:nth-child(4) {
  padding-top: 50px;
}
@media screen and (min-width: 769px) {
  .intro .intro__menuBg ul li:nth-child(2), .intro .intro__menuBg ul li:nth-child(4) {
    padding-top: 147px;
  }
}

/* intro & メニュー ここまで
---------------------------------------------*/
/* section 共通
---------------------------------------------*/
.cate_ttlMain {
  text-align: center;
}
.cate_ttlMain h2 {
  font-size: 15.4666666667vw;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 769px) {
  .cate_ttlMain h2 {
    font-size: 7.1666666667vw;
    margin-bottom: 2.8333333333vw;
  }
}
.cate_ttlMain p {
  margin-bottom: 1.8666666667vw;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  .cate_ttlMain p {
    font-size: 2vw;
    margin-bottom: 0.75vw;
  }
}
.cate_ttlMain p .font_s {
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  .cate_ttlMain p .font_s {
    font-size: 1.5833333333vw;
  }
}
.cate_ttlMain p .font_min {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 769px) {
  .cate_ttlMain p .font_min {
    font-size: 1.3333333333vw;
  }
}

.cate_description {
  text-align: center;
  font-size: 3.2vw;
  line-height: 2.7;
  margin: 8vw auto 16vw;
}
@media screen and (min-width: 769px) {
  .cate_description {
    font-size: 1.0833333333vw;
    margin: 3.5833333333vw auto 5.8333333333vw;
  }
}

.item_container {
  margin-bottom: 32vw;
}
@media screen and (min-width: 769px) {
  .item_container {
    margin-bottom: 13.3333333333vw;
  }
}

.item_ttl {
  margin: 24vw auto 12.8vw;
}
@media screen and (min-width: 769px) {
  .item_ttl {
    margin: 8.9166666667vw auto 5.3333333333vw;
  }
}
.item_ttl h3 .arch {
  margin: 0 auto;
  width: 38.9333333333%;
  height: auto;
  padding-bottom: 18px;
}
@media screen and (min-width: 769px) {
  .item_ttl h3 .arch {
    width: 14.3333333333%;
  }
}
.item_ttl h3 p {
  font-size: 12vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .item_ttl h3 p {
    font-size: 4.3333333333vw;
  }
}
.item_ttl .item_description {
  text-align: center;
  font-size: 3.2vw;
  line-height: 2;
  margin-top: 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  .item_ttl .item_description {
    font-size: 1.0833333333vw;
    margin-top: 2.5vw;
  }
}

.item_flex_pcRight {
  margin: 60px auto 60px;
}
.item_flex_pcRight .fade-slideshow {
  margin: 0 auto;
  width: 92vw;
  height: 122.6666666667vw;
}
@media screen and (min-width: 769px) {
  .item_flex_pcRight {
    margin: 30px auto 0;
  }
  .item_flex_pcRight .fade-slideshow {
    width: 33.5833333333vw;
    height: 44.75vw;
  }
}

.btnAll {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 89.8666666667%;
  margin: 0 auto 60px;
  padding: 15px 2em;
  border: 1px solid rgba(255, 255, 255, 0.8117647059);
  border-radius: 5px;
  box-shadow: 0 0 0 5px #800000;
  background-color: #800000;
  color: #fff;
  font-size: 3.4666666667vw;
  line-height: 2;
}
.btnAll a {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .btnAll {
    width: 46.6666666667%;
    font-size: 1.25vw;
    margin: 120px auto;
  }
}

.btnAll_soon {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 769px) {
  .btnAll_soon {
    font-size: 1.0833333333vw;
  }
}

.bottomSnow_section {
  margin-top: -1px;
  padding-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .bottomSnow_section {
    margin-bottom: 120px;
    margin-top: -1px;
  }
}

.credit .soon {
  font-size: 3.2vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .credit .soon {
    font-size: 1vw;
    margin-bottom: 0.8333333333vw;
  }
}

/* section 共通　ここまで
---------------------------------------------*/
/* 各セクション
---------------------------------------------*/
#christmas .tree .point {
  text-align: center;
  font-size: 6.9333333333vw;
}
#christmas .point_flex {
  display: flex;
  gap: 13px;
  justify-content: center;
  margin-top: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  #christmas .point_flex {
    gap: 1.3rem;
  }
}
#christmas .point_flex .point_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 26.6666666667vw;
}
@media screen and (max-width: 768px) {
  #christmas .point_flex p {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  #christmas .point_flex p {
    font-size: 0.8333333333vw;
  }
}
#christmas .tree .btn {
  text-align: center;
  width: 92%;
  background: #BC975D;
  padding: 10px 0;
  margin: 0 auto;
  border-radius: 3px;
  font-size: 2.6666666667vw;
}
#christmas .tree .btn a {
  color: #fff;
  line-height: 2.25;
}
@media screen and (min-width: 769px) {
  #christmas .tree {
    width: 76.6666666667%;
    margin: 0 auto 13.3333333333vw !important;
  }
  #christmas .tree .item_flex_pc {
    display: flex;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft .item_ttl {
    margin-top: 0;
    margin-bottom: 0;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft .arch {
    width: 14.3333333333vw;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft .point {
    font-size: 2.5vw;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft .point_flex .point_content {
    width: 11vw;
  }
  #christmas .tree .item_flex_pc .item_flex_pcLeft .point_flex .point_content img {
    width: 100%;
    height: auto;
  }
  #christmas .tree .btn {
    width: 26.6666666667vw;
    margin: 80px auto 0;
    font-size: 1vw;
  }
}
#christmas .wreath h3 p {
  font-size: 9.6vw;
}
@media screen and (min-width: 769px) {
  #christmas .wreath h3 p {
    font-size: 4.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #christmas .wreath_list {
    margin: 5.8333333333vw auto;
    width: 86.6666666667%;
    display: flex;
    -moz-column-gap: 1.25vw;
         column-gap: 1.25vw;
  }
  #christmas .wreath_list li {
    text-align: center;
    line-height: 1.4;
    position: relative;
  }
  #christmas .wreath_list li a.credit {
    position: absolute;
    margin-top: 8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 1vw;
    width: 100%;
  }
  #christmas .wreath_list li a.credit p {
    margin-bottom: 0.4166666667vw;
    width: 100%;
  }
  #christmas .wreath_list li a.credit .credit_btn {
    display: flex;
    background-color: #BC975D;
    justify-content: center;
    margin-left: auto;
    align-items: center;
    height: 1.3rem;
    width: 5.4166666667vw;
    margin: 1vw auto 0;
    border-radius: 4px;
  }
}
#christmas .object {
  margin-bottom: 60px;
}
#christmas .object__imgBox {
  position: relative;
}
#christmas .object__imgInner {
  width: 26.1333333333vw;
  height: 34.9333333333vw;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgInner {
    width: 20%;
    height: 56.9395017794%;
  }
}
#christmas .object__imgInner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
#christmas .object__imgInner1, #christmas .object__imgInner2, #christmas .object__imgInner3, #christmas .object__imgInner4, #christmas .object__imgInner5 {
  position: absolute;
}
#christmas .object__imgInner1 {
  left: 2.6666666667vw;
  top: 0;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgInner1 {
    left: 5.4166666667%;
  }
}
#christmas .object__imgInner2 {
  left: 19.7333333333vw;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgInner2 {
    left: 22.75%;
  }
}
#christmas .object__imgInner3 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#christmas .object__imgInner4 {
  right: 19.7333333333vw;
  bottom: 0;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgInner4 {
    right: 22.5833333333%;
  }
}
#christmas .object__imgInner5 {
  right: 2.6666666667vw;
  top: 0;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgInner5 {
    right: 5.4166666667%;
  }
}
#christmas .object__imgBox::before {
  content: "";
  display: block;
  padding-top: 64.8%;
}
@media screen and (min-width: 769px) {
  #christmas .object__imgBox::before {
    padding-top: 46.8333333333%;
  }
}
@media screen and (min-width: 769px) {
  #christmas .object {
    margin-top: 20.8333333333vw;
  }
}

#kids {
  background: #CBBFAD;
  padding: 0 0 60px;
}
@media screen and (min-width: 769px) {
  #kids {
    padding: 0px 0 120px;
  }
}
#kids h3 .arch {
  width: 28%;
}
@media screen and (min-width: 769px) {
  #kids h3 .arch {
    width: 10.5833333333%;
  }
}
#kids .credit {
  font-size: 3.2vw;
  text-align: center;
}
#kids .credit p {
  margin-bottom: 2.1333333333vw;
}
#kids .credit .credit_btn {
  background: #BC975D;
  width: 65px;
  margin: 15px auto 0;
  padding: 3px 0;
  border-radius: 4px;
}
@media screen and (min-width: 769px) {
  #kids .credit {
    font-size: 1vw;
  }
}
@media screen and (min-width: 769px) {
  #kids .poncho_list {
    margin: 0.8333333333vw auto;
    width: 71.6666666667%;
    display: flex;
    -moz-column-gap: 2.0833333333vw;
         column-gap: 2.0833333333vw;
  }
  #kids .poncho_list li {
    text-align: center;
    line-height: 1.4;
    position: relative;
  }
  #kids .poncho_list li a.credit {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 1vw;
    width: 100%;
  }
  #kids .poncho_list li a.credit p {
    margin-bottom: 0.4166666667vw;
    width: 100%;
  }
  #kids .poncho_list li a.credit .credit_btn {
    display: flex;
    background-color: #BC975D;
    justify-content: center;
    margin-left: auto;
    align-items: center;
    height: 1.3rem;
    width: 5.4166666667vw;
    margin: 1vw auto 0;
    border-radius: 4px;
  }
  #kids .top250 {
    margin-top: 20.8333333333vw;
  }
}
#kids .hat_itemlist {
  margin-top: 32vw;
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist {
    margin-top: 0;
  }
}
#kids .hat_itemlist h3 {
  font-size: 12vw;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist h3 {
    font-size: 4.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
#kids .hat_itemlist .hat_item {
  display: flex;
  align-items: center;
  font-size: 3.2vw;
}
#kids .hat_itemlist .hat_item .hat_img {
  width: 45.8666666667vw;
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist .hat_item .hat_img {
    width: 14.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist .hat_item .credit p {
    margin-bottom: 0.6666666667vw;
  }
}
#kids .hat_itemlist .hat_item:nth-of-type(1) {
  margin-top: 2.6666666667vw;
}
#kids .hat_itemlist .hat_item:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: -10.6666666667vw;
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist .hat_item:nth-of-type(2) {
    margin-top: -1.25vw;
    margin-left: 9.5833333333vw;
  }
}
#kids .hat_itemlist .hat_item:nth-of-type(3) {
  margin-top: -10.6666666667vw;
  margin-left: 8vw;
}
@media screen and (min-width: 769px) {
  #kids .hat_itemlist .hat_item:nth-of-type(3) {
    margin-top: -1.25vw;
    margin-left: 2.5vw;
  }
}
#kids .swiperFlex__right {
  width: 92vw;
  height: 122.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #kids .swiperFlex__right {
    width: 33.5833333333vw;
    height: 44.75vw;
    margin-top: 2.3333333333vw;
  }
}
#kids .knithat_pcFlex {
  margin-bottom: 16vw;
}
@media screen and (min-width: 769px) {
  #kids .knithat_pcFlex {
    display: flex;
    width: 70.25%;
    flex-direction: row-reverse;
    margin: 200px auto 120px;
    gap: 46px;
  }
}
#kids .pet_data {
  text-align: center;
  margin-top: 6.4vw;
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  #kids .pet_data {
    margin-top: 0;
    font-size: 1.5833333333vw;
  }
}
#kids .pet_data p {
  margin-bottom: 7px;
}
#kids .pet_data .font_s {
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 769px) {
  #kids .pet_data .font_s {
    font-size: 1.25vw;
  }
}
#kids .pet_data .font_min {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 769px) {
  #kids .pet_data .font_min {
    font-size: 1vw;
  }
}
#kids .petItem_itemlist {
  margin-top: 32vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist {
    margin-top: 0;
  }
  #kids .petItem_itemlist .item_ttl {
    margin: 0 auto 2vw;
  }
}
#kids .petItem_itemlist h3 {
  font-size: 12vw;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist h3 {
    font-size: 4.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
  #kids .petItem_itemlist h3 .arch {
    width: 9.8333333333vw;
  }
}
#kids .petItem_itemlist .petItem_item {
  display: flex;
  align-items: center;
  font-size: 3.2vw;
}
#kids .petItem_itemlist .petItem_item .petItem_img {
  width: 45.8666666667vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist .petItem_item .petItem_img {
    width: 14.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist .petItem_item .credit p {
    margin-bottom: 0.6666666667vw;
  }
}
#kids .petItem_itemlist .petItem_item:nth-of-type(2) {
  margin-top: -10.6666666667vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist .petItem_item:nth-of-type(2) {
    margin-top: -1.25vw;
    margin-left: 0vw;
  }
}
#kids .petItem_itemlist .petItem_item:nth-of-type(3) {
  flex-direction: row-reverse;
  margin-top: -10.6666666667vw;
  margin-left: 8vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_itemlist .petItem_item:nth-of-type(3) {
    margin-top: -1.25vw;
    margin-left: 9.5833333333vw;
  }
}
#kids .swiperFlex__right {
  width: 92vw;
  height: 122.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #kids .swiperFlex__right {
    width: 33.5833333333vw;
    height: 44.75vw;
    margin-top: 2.3333333333vw;
  }
}
#kids .petItem_pcFlex {
  margin-bottom: 16vw;
}
@media screen and (min-width: 769px) {
  #kids .petItem_pcFlex {
    display: flex;
    width: 70.25%;
    flex-direction: row;
    margin: 160px auto 100px;
    gap: 46px;
  }
}
@media screen and (min-width: 769px) {
  #kids .mb_0 {
    margin-bottom: 0;
    margin-top: 100px;
  }
}

#dwarf {
  padding: 0 0 60px;
}
@media screen and (min-width: 769px) {
  #dwarf {
    padding-top: 0;
  }
}
#dwarf .item_ttl {
  margin-bottom: 4.2666666667vw;
}
#dwarf .top120 {
  padding-top: 32vw;
}
@media screen and (min-width: 769px) {
  #dwarf .top120 {
    padding-top: 0;
  }
}
#dwarf .base, #dwarf .base_2 {
  position: relative;
}
#dwarf .base::before {
  content: "";
  display: block;
  padding-top: 90.1333333333vw;
}
@media screen and (min-width: 769px) {
  #dwarf .base::before {
    padding-top: 66.5%;
  }
}
#dwarf .base_2::before {
  content: "";
  display: block;
  padding-top: 88.8vw;
}
@media screen and (min-width: 769px) {
  #dwarf .base_2::before {
    padding-top: 68.1666666667%;
  }
}
#dwarf .bottom, #dwarf .img1, #dwarf .img2, #dwarf .img3, #dwarf .img4, #dwarf .img5, #dwarf .img6 {
  position: absolute;
}
#dwarf .base .bottom {
  top: 8vw;
  border-radius: 30px;
  width: 93.3333333333%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  #dwarf .base .bottom {
    width: 74.1666666667%;
    border-radius: 30px;
  }
}
#dwarf .img1 {
  width: 27.2vw;
  right: 6px;
  top: 0;
  border-radius: 200px;
}
@media screen and (min-width: 769px) {
  #dwarf .img1 {
    width: 18.3333333333%;
    right: 10.5833333333vw;
  }
}
#dwarf .img2 {
  width: 27.2vw;
  bottom: 15px;
  left: 0;
  border-radius: 200px;
}
@media screen and (min-width: 769px) {
  #dwarf .img2 {
    width: 20.8333333333%;
    left: 4.75%;
    bottom: 5.8333333333vw;
  }
}
#dwarf .img3 {
  width: 29.6vw;
  bottom: 0;
  right: 3px;
  border-radius: 200px;
}
@media screen and (min-width: 769px) {
  #dwarf .img3 {
    width: 21.6666666667%;
    right: 5vw;
  }
}
#dwarf .base_2 {
  margin-top: 37.3333333333vw;
}
@media screen and (min-width: 769px) {
  #dwarf .base_2 {
    margin-top: 10.6666666667vw;
  }
}
#dwarf .base_2 .bottom {
  width: 93.3333333333%;
  top: 8vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  #dwarf .base_2 .bottom {
    width: 74.1666666667%;
    border-radius: 30px;
  }
}
#dwarf .img4 {
  width: 26.6666666667vw;
  left: 0;
  top: 4.8vw;
}
@media screen and (min-width: 769px) {
  #dwarf .img4 {
    width: 20%;
    left: 7.4166666667vw;
  }
}
#dwarf .img5 {
  width: 32vw;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  #dwarf .img5 {
    width: 25%;
    right: 4.1666666667vw;
  }
}
#dwarf .img6 {
  width: 22.9333333333vw;
  bottom: 15.4666666667vw;
  left: 0;
}
@media screen and (min-width: 769px) {
  #dwarf .img6 {
    width: 17.5%;
    left: 10.6666666667vw;
    bottom: 4.8333333333vw;
  }
}
#dwarf .story_text1, #dwarf .story_text2 {
  font-size: 3.2vw;
  text-align: center;
  line-height: 2;
  padding: 15.2vw 0 0;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 769px) {
  #dwarf .story_text1, #dwarf .story_text2 {
    font-size: 1.0833333333vw;
    padding: 2.5vw 0 0;
  }
}
#dwarf .storyBox {
  position: relative;
  margin: 3.2vw 0 21.3333333333vw;
}
#dwarf .kazari1, #dwarf .kazari2, #dwarf .kazari3, #dwarf .kazari4 {
  position: absolute;
  width: 20.2666666667vw;
}
@media screen and (min-width: 769px) {
  #dwarf .kazari1, #dwarf .kazari2, #dwarf .kazari3, #dwarf .kazari4 {
    width: 8.5vw;
  }
}
#dwarf .kazari1, #dwarf .kazari3 {
  left: 15px;
}
@media screen and (min-width: 769px) {
  #dwarf .kazari1, #dwarf .kazari3 {
    left: 20.8333333333vw;
  }
}
#dwarf .kazari2, #dwarf .kazari4 {
  right: 15px;
}
@media screen and (min-width: 769px) {
  #dwarf .kazari2, #dwarf .kazari4 {
    right: 20.8333333333vw;
  }
}
@media screen and (min-width: 769px) {
  #dwarf .kazari3, #dwarf .kazari4 {
    margin-top: -2.5vw;
  }
}

#market {
  background-color: #CBBFAD;
  padding: 0 0 60px;
}
@media screen and (min-width: 769px) {
  #market {
    padding-bottom: 120px;
  }
}
#market .image1 {
  width: 94.6666666667%;
  margin: 0 auto;
}
#market .image1 img {
  border-radius: 40px;
}
#market h3 .arch {
  width: 49.8666666667%;
}
#market .swiper {
  margin-top: 24vw;
}
#market .item_container {
  margin-bottom: 0;
}
#market .btnAll {
  margin-bottom: 0;
}

#tea {
  padding: 0 0 60px;
}
@media screen and (min-width: 769px) {
  #tea {
    padding-bottom: 120px;
  }
}
#tea .image1 {
  margin: 0 auto;
  width: 89.3333333333%;
}
#tea .lineupCate {
  margin: 0 auto;
  text-align: center;
}

.displayNone {
  display: none;
}

.soon {
  font-size: 24px;
}

/* footer
---------------------------------------------*/
.footer {
  margin-top: 16vw;
}
.footer .box_red {
  text-align: center;
  background: #AC2625;
  width: 92%;
  margin: 0 auto;
  border-radius: 6px;
  padding: 10.1333333333vw 0 16vw;
}
@media screen and (min-width: 769px) {
  .footer .box_red {
    width: 95.8333333333%;
    padding: 6.3333333333vw 0 8.0833333333vw;
  }
}
.footer .box_red .ttl {
  font-size: 5.8666666667vw;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer .box_red .ttl {
    font-size: 2.6666666667vw;
  }
}
.footer .box_red .ttl::after, .footer .box_red .ttl::before {
  background-color: #fff; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 1px; /* 線の高さ */
  width: 12.2666666667vw; /* 線の長さ */
}
@media screen and (min-width: 769px) {
  .footer .box_red .ttl::after, .footer .box_red .ttl::before {
    width: 2.75vw;
    height: 2px;
  }
}
.footer .box_red .ttl::before {
  margin-right: 0px; /* 文字との余白 */
  transform: rotate(70deg); /* 傾ける */
}
.footer .box_red .ttl::after {
  margin-left: 0px; /* 文字との余白 */
  transform: rotate(-70deg); /* 傾ける */
}
.footer .box_red .toukou {
  font-size: 3.4666666667vw;
  line-height: 1.6;
  margin: 6.4vw auto 11.7333333333vw;
}
@media screen and (min-width: 769px) {
  .footer .box_red .toukou {
    font-size: 1.25vw;
    margin: 3.6666666667vw auto 4.4166666667vw;
  }
}
.footer .box_red .btn_staff {
  display: flex;
  justify-content: center;
  line-height: 1.2;
  margin: 0 30px 0;
  height: 50px;
  align-items: center;
  background-color: #BC975D;
  font-size: 3.4666666667vw;
  border-radius: 50px;
}
@media screen and (min-width: 769px) {
  .footer .box_red .btn_staff {
    height: 4.8333333333vw;
    line-height: 1.2;
    font-size: 1.25vw;
    margin: 0 28.75vw 0;
  }
}
.footer .box_snow {
  margin-top: -16vw;
}
@media screen and (min-width: 769px) {
  .footer .box_snow {
    margin-top: -12.0833333333vw;
  }
}
.footer .box_wh {
  background: #fcfcfc;
  color: #800000;
  text-align: center;
  font-size: 10px;
  padding-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .footer .box_wh {
    margin-top: -10px;
    z-index: 0;
    position: absolute;
    width: 100%;
  }
}
.footer .box_wh .logo {
  width: 29.3333333333vw;
  margin: 0 auto;
  padding: 36.2666666667vw 0 4vw;
}
@media screen and (min-width: 769px) {
  .footer .box_wh .logo {
    width: 8.1666666667vw;
    padding: 9.5vw 0 1.4166666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer .box_wh {
    padding-bottom: 2.75vw;
  }
}

/* 動き
---------------------------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-right: 30px;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 66.6666666667vw;
}
@media screen and (min-width: 769px) {
  .scroll-infinity__item {
    width: 18.1818181818vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  border-radius: 30px;
}

.swiper {
  width: 100%;
  height: auto;
}
.swiper .swiper-slide .swiper_inner {
  border-radius: 22px;
  background-color: #800000;
  padding: 4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiper_inner {
    padding: 1.8333333333vw 3.0833333333vw;
  }
}
.swiper .swiper-slide .swiperFlex {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiperFlex {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 2vw;
  }
}
.swiper .swiper-slide .swiperFlex__right img {
  border-radius: 12px !important;
}
.swiper .swiper-slide .swiperFlex__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiperFlex__left {
    flex: 1;
    padding: 1.9rem 0;
  }
}
.swiper .swiper-slide .swiperFlex__left .ambi_pos {
  font-size: 10.9333333333vw;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiperFlex__left .ambi_pos {
    font-size: 4.5833333333vw;
    width: 25vw;
  }
}
.swiper .swiper-slide .swiperFlex__left .noto_mid {
  font-size: 3.4666666667vw;
  line-height: 1.38;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiperFlex__left .noto_mid {
    font-size: 1.1666666667vw;
  }
}
.swiper .swiper-slide .swiperFlex__left .btn {
  background-color: #BC975D;
  border-radius: 3px;
  font-size: 2.6666666667vw;
  line-height: 2.2;
  margin-top: 8vw;
  justify-content: center;
  height: 2.37rem;
  margin-top: 1.9rem;
  margin-left: auto;
  align-items: center;
  display: flex;
}
.swiper .swiper-slide .swiperFlex__left .btn a {
  color: #fff !important;
}
@media screen and (min-width: 769px) {
  .swiper .swiper-slide .swiperFlex__left .btn {
    width: 25vw;
    font-size: 1vw;
    height: 3.75rem;
    margin-top: 2.5rem;
  }
}

.swiper-button-next {
  right: 32px;
}
@media screen and (min-width: 769px) {
  .swiper-button-next {
    right: 15%;
  }
}

.swiper-button-prev {
  left: 32px;
}
@media screen and (min-width: 769px) {
  .swiper-button-prev {
    left: 15%;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  margin: auto;
  width: 10px;
}
@media screen and (min-width: 769px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 1.5833333333vw;
    width: 0.8333333333vw;
  }
}

.swiper-button-next::after {
  background-image: url(../images/polygon_next.webp);
}

.swiper-button-prev::after {
  background-image: url(../images/polygon_prev.webp);
}

.swiper-nonBG {
  margin-top: 60px;
  width: 100%;
  height: auto;
  max-width: 100%; /* ← これ大事 */
  overflow: hidden; /* ← はみ出し防止 */
  position: relative; /* ← 矢印位置調整にも必要 */
}
.swiper-nonBG .credit {
  font-size: 3.2vw;
  color: #fff;
}
.swiper-nonBG .credit p {
  margin-bottom: 2.1333333333vw;
}
.swiper-nonBG .credit .credit_btn {
  background: #BC975D;
  width: 65px;
  margin: 15px auto 0;
  padding: 3px 0;
  border-radius: 4px;
}

.swiper-nonBG .swiper-wrapper {
  box-sizing: border-box;
}

.swiper-nonBG .swiper-slide {
  width: auto; /* もしくは100%でもOK */
  text-align: center;
}

.swiper-nonBG img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.swiper-nonBG .swiper-button-next,
.swiper-nonBG .swiper-button-prev {
  color: #fff; /* 矢印の色 */
  width: 29px;
  height: 29px;
}

.swiper-nonBG .swiper-button-next {
  right: 50px;
}

.swiper-nonBG .swiper-button-prev {
  left: 50px;
}

/* --- フェードスライド部分 --- */
.fade-slideshow {
  position: relative;
  width: 100%;
  height: 368px; /* 画像高さに合わせて調整 */
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .fade-slideshow {
    width: 61.1524163569vw;
    height: 41.1666666667vw;
  }
}

.fade-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-slideshow img.active {
  opacity: 1;
}

/* --- フェードスライド部分 --- */
/* --- フェードスライド部分 2 --- */
.fade-slideshow2 {
  position: relative;
  width: 100%;
  height: 63.2vw; /* 画像高さに合わせて調整 */
  overflow: hidden;
  border-radius: 16px;
}

.fade-slideshow2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-slideshow2 img.active {
  opacity: 1;
}

/* --- フェードスライド部分 2 --- */
footer {
  z-index: 1;
}/*# sourceMappingURL=style.css.map */