@charset "UTF-8";

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
  animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
  animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay)*2);
  animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay)*3);
  animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay)*4);
  animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay)*5);
  animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-duration: calc(var(--animate-duration)/2);
  animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-duration: calc(var(--animate-duration)*0.8);
  animation-duration: calc(var(--animate-duration)*0.8)
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration)*2);
  animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration)*3);
  animation-duration: calc(var(--animate-duration)*3)
}

@media (prefers-reduced-motion:reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important
  }

  .animate__animated[class*=Out] {
    opacity: 0
  }
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05)
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0) scaleY(.95);
    transform: translateZ(0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02)
  }
}

@keyframes bounce {
  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1)
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05)
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0) scaleY(.95);
    transform: translateZ(0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02)
  }
}

.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1
  }

  25%, 75% {
    opacity: 0
  }
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1
  }

  25%, 75% {
    opacity: 0
  }
}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX
}

@-webkit-keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
}

@keyframes shakeY {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }
}

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg)
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg)
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
}

.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }

  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }

  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg)
  }

  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }
}

.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration)*1.3);
  animation-duration: calc(var(--animate-duration)*1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7
  }

  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }
}

@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
}

@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
}

@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }
}

@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }

  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }
}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
}

.animate__bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration)*0.75);
  animation-duration: calc(var(--animate-duration)*0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9)
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1)
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98)
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1)
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98)
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5)
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95)
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

.animate__bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration)*0.75);
  animation-duration: calc(var(--animate-duration)*0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985)
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3)
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985)
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3)
  }
}

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2)
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2)
  }
}

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2)
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2)
  }
}

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985)
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3)
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985)
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3)
  }
}

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
}

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
}

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
}

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }
}

@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }
}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }
}

@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }
}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }
}

@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }
}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }
}

@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }
}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }
}

.animate__flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration)*0.75);
  animation-duration: calc(var(--animate-duration)*0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }
}

.animate__flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: calc(var(--animate-duration)*0.75);
  animation-duration: calc(var(--animate-duration)*0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOutRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
}

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }
}

.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
}

.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
}

.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }
}

.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }
}

.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration)*2);
  animation-duration: calc(var(--animate-duration)*2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}

@keyframes rollOut {
  0% {
    opacity: 1
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }
}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  to {
    opacity: 0
  }
}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0)
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0)
  }
}

.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0)
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0)
  }
}

.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }
}

.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
}

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.lity.lity-opened {
  opacity: 1
}

.lity.lity-closed {
  opacity: 0
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.lity-loading .lity-loader {
  opacity: 1
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: -o-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease
}

.lity-loading .lity-content, .lity-closed .lity-content {
  -webkit-transform: scale(.8);
  -ms-transform: scale(.8);
  -o-transform: scale(.8);
  transform: scale(.8)
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6)
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none
}

.lity-close:active {
  top: 1px
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000
}

.lity-hide {
  display: none
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@charset "UTF-8";

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/assets/images/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-style: normal;
  font-weight: normal;

  src: url("/assets/fonts/slick.eot");
  src: url("/assets/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/slick.woff") format("woff"), url("/assets/fonts/slick.ttf") format("truetype"), url("/assets/fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev, .slick-next {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  line-height: 0;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);

  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: transparent;
  color: transparent;
  outline: none;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before, .slick-next:before {
  opacity: .75;
  font-family: "slick";
  color: white;
  font-size: 20px;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: block;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: -25px;
}

.slick-dots li {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 5px;
  cursor: pointer;
  position: relative;
}

.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  line-height: 0;
  outline: none;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "•";
  opacity: .25;
  width: 20px;
  height: 20px;
  font-family: "slick";
  color: black;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@import"https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";

*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}

html {
  line-height: 1.15;
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0
}

dt {
  font-weight: 700
}

dd {
  margin-left: 0
}

hr {
  clear: both;
  box-sizing: content-box;
  height: 0;
  margin: 0;
  overflow: visible;
  color: inherit;
  border-top-width: 1px
}

pre {
  font-family: monospace, monospace;
  font-size: inherit
}

address {
  font-style: inherit
}

a {
  background-color: rgba(0, 0, 0, 0);
  color: inherit;
  text-decoration: none
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b, strong {
  font-weight: bolder
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit
}

small {
  font-size: 80%
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative
}

sub {
  bottom: -0.25em
}

sup {
  top: -0.5em
}

svg, img, embed, object, iframe {
  vertical-align: bottom
}

button, input, optgroup, select, textarea {
  vertical-align: middle;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default
}

:-moz-focusring {
  outline: auto
}

select:disabled {
  opacity: inherit
}

option {
  padding: 0
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0
}

legend {
  padding: 0
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=number]::inner-spin-button, [type=number]::outer-spin-button {
  height: auto
}

[type=search] {
  outline-offset: -2px
}

[type=search]::search-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

::file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button
}

label[for] {
  cursor: pointer
}

details {
  display: block
}

summary {
  display: list-item
}

[contenteditable]:focus {
  outline: auto
}

table {
  border-collapse: collapse;
  border-color: inherit
}

caption {
  text-align: left
}

td, th {
  vertical-align: top;
  padding: 0
}

th {
  font-weight: 700;
  text-align: left
}

body {
  background: #fff;
  overflow-x: hidden;
  color: #101010;
  line-height: 1
}

body * {
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif
}

img {
  max-width: 100%;
  height: auto
}

ul, ol, dl {
  list-style: none
}

a {
  display: inline-block;
  outline: none;
  color: #38b5dd
}

p, li, dt, dd {
  color: #101010;
  line-height: 1
}

.l-footer {
  padding-top: 2.9375rem;
  background: #f2f2f2
}

.l-footer__flex {
  display: flex;
  flex-wrap: nowrap
}

.l-footer__col {
  padding-right: 1.875rem
}

.l-footer__col:nth-of-type(1) {
  width: 8.75rem
}

.l-footer__col:nth-of-type(2) {
  width: 9.375rem
}

.l-footer__col:nth-of-type(3) {
  width: 8.125rem
}

.l-footer__col:nth-of-type(4) {
  width: calc(100% - 440px);
  padding-right: 0
}

.l-footer__li, .l-footer__li--parent {
  margin-top: .9375rem
}

.l-footer__li:first-of-type, .l-footer__li--parent:first-of-type {
  margin-top: 0
}

.l-footer__li a, .l-footer__li--parent a {
  color: #3b4043;
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.3333333333
}

.l-footer__li--parent a {
  font-weight: 700
}

.l-footer__copyright {
  padding: 1.5rem 0 1.0625rem 0
}

.l-footer__copyright p {
  color: #3b4043;
  font-size: .625rem;
  line-height: 1.3;
  text-align: right
}

.l-header {
  width: 100%;
  padding: 1.875rem 0 3.0625rem 0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11
}

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

.l-header__logo a img {
  max-width: 16.5rem
}

.l-header__right {
  display: flex;
  align-items: center
}

.l-header__inquiry a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.125rem;
  height: 1.875rem;
  background: #d7283c;
  border-radius: .9375rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: center
}

.l-header__7i {
  margin-left: 3.75rem
}

.l-header__7i a img {
  max-width: 10.1875rem
}

.l-header__toggle {
  display: none
}

.l-header__toggle span {
  display: block;
  width: 100%;
  height: .0625rem;
  margin: auto;
  background: #707070;
  position: absolute;
  left: 0;
  right: 0;
  transition: all .3s ease
}

.l-header__toggle span:nth-of-type(1) {
  top: 0
}

.l-header__toggle span:nth-of-type(2) {
  top: .4375rem
}

.l-header__toggle span:nth-of-type(3) {
  top: .875rem
}

.l-header__toggle.is-active span:nth-of-type(1) {
  top: .4375rem;
  transform: rotate(45deg)
}

.l-header__toggle.is-active span:nth-of-type(2) {
  width: 0
}

.l-header__toggle.is-active span:nth-of-type(3) {
  top: .4375rem;
  transform: rotate(-45deg)
}

.l-nav {
  width: 100%;
  position: fixed;
  top: 4.375rem;
  left: 0;
  z-index: 12
}

.l-nav__wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%
}

.l-nav__ul {
  display: flex;
  margin-right: -0.625rem
}

.l-nav__li, .l-nav__li--parent {
  margin-left: 1.2rem;
  text-align: center;
  position: relative
}

.l-nav__li:first-of-type, .l-nav__li--parent:first-of-type {
  margin-left: 0
}

.l-nav__li:nth-of-type(2), .l-nav__li--parent:nth-of-type(2) {
  margin-left: 3rem
}

.l-nav__li>a, .l-nav__li--parent>a, .l-nav__li>p, .l-nav__li--parent>p {
  display: inline-block;
  padding: .875rem 0 1rem 0;
  color: #333;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: .15em
}

.l-nav__li>a span, .l-nav__li--parent>a span, .l-nav__li>p span, .l-nav__li--parent>p span {
  display: inline-block;
  padding: 0 .625rem;
  position: relative
}

.l-nav__li>a span::before, .l-nav__li--parent>a span::before, .l-nav__li>p span::before, .l-nav__li--parent>p span::before {
  content: "";
  display: block;
  width: 0;
  height: .125rem;
  background: #00a76d;
  position: absolute;
  left: 0;
  bottom: -0.375rem;
  transition: width .3s ease
}

.l-nav__li>a:hover span::before, .l-nav__li--parent>a:hover span::before, .l-nav__li>a.is-active span::before, .l-nav__li--parent>a.is-active span::before, .l-nav__li>p:hover span::before, .l-nav__li--parent>p:hover span::before, .l-nav__li>p.is-active span::before, .l-nav__li--parent>p.is-active span::before {
  width: 100%
}

.l-nav__li--parent>a, .l-nav__li--parent>p {
  display: inline-block
}

.l-nav__li--parent>a span::after, .l-nav__li--parent>p span::after {
  content: "";
  display: block;
  width: .625rem;
  height: .3125rem;
  margin: auto;
  background: url("/assets/images/common/nav_icon_arrow.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: -0.5rem;
  bottom: 0
}

.l-nav__li--parent>a.is-active span::after, .l-nav__li--parent>p.is-active span::after {
  opacity: 1
}

.l-nav__sub {
  width: 9.8125rem;
  padding: 2.5rem 1.25rem 1.5rem 1.25rem;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 14px);
  left: -1.25rem;
  transition: opacity .3s ease
}

.l-nav__sub.is-active {
  opacity: 1;
  pointer-events: all
}

.l-nav__sub::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 16px);
  background: #fff;
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1
}

.l-nav__sub li {
  margin-top: 1rem;
  text-align: left;
  position: relative;
  z-index: 2
}

.l-nav__sub li:first-of-type {
  margin-top: 0
}

.l-nav__sub li a, .l-nav__sub li span {
  display: inline-block;
  padding-left: .5625rem;
  color: #333;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.3333333333;
  position: relative
}

.l-nav__sub li a::before, .l-nav__sub li span::before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0
}

.l-nav__sub li.heading a, .l-nav__sub li.heading span {
  padding-left: 0
}

.l-nav__sub li.heading a::before, .l-nav__sub li.heading span::before {
  display: none
}

.l-nav__sub--sp {
  width: 0;
  height: 0;
  overflow: hidden
}

.l-pagebody {
  padding-top: 7.4375rem
}

.c-mv-01, .c-mv-01--gray {
  padding-top: 1.125rem
}

.c-mv-01__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8.3125rem;
  position: relative
}

.c-mv-01__wrap::before {
  content: "";
  display: block;
  width: 7.0625rem;
  height: 8.3125rem;
  margin: auto;
  background: url("/assets/images/common/c-mv-01_bg.png") no-repeat top left/100% 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 134.5px);
  bottom: 0
}

.c-mv-01__meta {
  position: relative;
  z-index: 2
}

.c-mv-01__heading {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center
}

.c-mv-01__subHeading {
  margin-top: .375rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: .025em;
  text-align: center
}

.c-mv-01--gray {
  background: #f2f2f2
}

.c-mv-01--gray .c-mv-01__wrap::before {
  background-image: url("/assets/images/common/c-mv-01_bg--gray.png")
}

.c-mv-02 {
  margin-top: 7.5rem
}

.c-mv-02__heading {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center
}

.c-mv-03 {
  margin-top: 3.75rem
}

.c-mv-03__heading {
  padding-bottom: 1rem;
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  position: relative
}

.c-mv-03__heading::before, .c-mv-03__heading::after {
  content: "";
  display: block;
  width: .625rem;
  height: .625rem;
  margin: auto;
  position: absolute;
  bottom: 0
}

.c-mv-03__heading::before {
  background: #d7283c;
  left: calc(50% - 15px)
}

.c-mv-03__heading::after {
  background: #28966e;
  right: calc(50% - 15px)
}

.c-mv-04 {
  position: relative
}

.c-mv-04::before, .c-mv-04::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  z-index: 1
}

.c-mv-04::before {
  width: 13.75rem;
  height: 28.3125rem;
  background-image: url("/assets/images/common/c-mv-04_bg_before.png");
  left: 0
}

.c-mv-04::after {
  width: 17.625rem;
  height: 26.0625rem;
  background-image: url("/assets/images/common/c-mv-04_bg_after.png");
  right: 0
}

.c-mv-04__wrap {
  height: 28.3125rem;
  position: relative;
  z-index: 2
}

.c-mv-04__img {
  width: 22.75rem;
  height: 23.625rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1
}

.c-mv-04__img img {
  width: 11.1875rem;
  height: 18.4375rem;
  position: absolute;
  top: 3.875rem;
  left: 0;
  z-index: 2
}

.c-mv-04__img::before {
  content: "";
  display: block;
  width: 17.8125rem;
  height: 23.625rem;
  background: url("/assets/images/common/c-mv-04_bg_egg.png") no-repeat top left/100% 100%;
  position: absolute;
  top: 0;
  left: 4.8125rem;
  z-index: 1
}

.c-mv-04__meta {
  padding: 1rem 0;
  background: #fff;
  position: absolute;
  top: 13.0625rem;
  left: 20.3125rem;
  z-index: 2
}

.c-mv-04__meta__heading {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.40625
}

.c-mv-04__meta__subHeading {
  margin-top: .5rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: .025em
}

.c-news-list__li {
  border-bottom: .0625rem solid #28966e
}

.c-news-list__li:first-of-type {
  border-top: .0625rem solid #28966e
}

.c-news-list__flex {
  display: flex;
  padding: 2.5rem 1.25rem
}

.c-news-list__flex:hover .c-news-list__read::before {
  right: -0.625rem
}

.c-news-list__meta {
  width: 8.75rem;
  padding-top: .3125rem
}

.c-news-list__date {
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #28966e;
  font-size: 1.125rem;
  font-weight: 500
}

.c-news-list__tag {
  display: inline-block;
  padding: .4375rem .625rem;
  margin-top: .375rem;
  background: #28966e;
  border-radius: .8125rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-size: .75rem;
  text-align: center
}

.c-news-list__read {
  width: calc(100% - 140px);
  padding-left: 1.25rem;
  padding-right: 4.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  position: relative
}

.c-news-list__read::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-green.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all .3s ease
}

.c-bottomEgg, .c-bottomEgg--col3 {
  padding: 4.125rem 0 3.75rem 0;
  background: url("/assets/images/common/c-bottomEgg_bg.png") repeat-x center left/332px 355px, #e9f4f0
}

.c-bottomEgg__flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto
}

.c-bottomEgg__col {
  position: relative
}

.c-bottomEgg__col:not(:last-child) {
  margin-right: 7.5rem
}

.c-bottomEgg__col::before {
  content: "";
  display: block;
  width: 1.9375rem;
  height: .8125rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-white.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  left: calc(50% - 15.5px);
  bottom: 1.5625rem;
  z-index: 3;
  transition: all .3s ease
}

.c-bottomEgg__col__img {
  position: relative
}

.c-bottomEgg__col__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/images/common/c-bottomEgg_bg_filter.png") no-repeat top left/100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: opacity .3s ease;
  mix-blend-mode: multiply
}

.c-bottomEgg__col__img img {
  width: 11.625rem;
  height: auto;
  opacity: .75;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity .3s ease
}

.c-bottomEgg__col__meta {
  width: 100%;
  position: absolute;
  top: 10.125rem;
  left: 0;
  right: 0;
  z-index: 3
}

.c-bottomEgg__col__heading {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: text-shadow .3s ease
}

.c-bottomEgg__col__read {
  margin-top: .625rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  position: relative;
  transition: text-shadow .3s ease
}

.c-bottomEgg__col:hover::before {
  left: calc(50% - 7.75px);
  filter: drop-shadow(0rem 0rem 0.375rem rgba(0, 0, 0, 0.3))
}

.c-bottomEgg__col:hover .c-bottomEgg__col__img::before {
  opacity: 0
}

.c-bottomEgg__col:hover .c-bottomEgg__col__img img {
  opacity: 1
}

.c-bottomEgg__col:hover .c-bottomEgg__col__heading, .c-bottomEgg__col:hover .c-bottomEgg__col__subHeading, .c-bottomEgg__col:hover .c-bottomEgg__col__read {
  text-shadow: 0rem 0rem .375rem rgba(0, 0, 0, .3)
}

.c-bottomEgg--col3 .c-bottomEgg__scroll {
  -webkit-overflow-scrolling: touch
}

.c-bottomEgg--col3 .c-bottomEgg__scroll::-webkit-scrollbar-track {
  background: #fff
}

.c-message-box {
  padding: 5rem 0;
  background: url("/assets/images/common/c-message-box_bg.png") repeat-x center left/503px 477px, #e9f4f0
}

.c-message-box__flex {
  display: flex
}

.c-message-box__img {
  width: 17.5rem;
  text-align: center
}

.c-message-box__img img {
  border-radius: 9999px;
  filter: drop-shadow(1.25rem 1.25rem 1.875rem rgba(24, 93, 68, 0.1))
}

.c-message-box__meta {
  width: calc(100% - 280px);
  padding-left: 3.375rem
}

.c-message-box__meta__subHeading {
  max-width: 35.625rem;
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6
}

.c-message-box__meta__read, .c-message-box__meta__read--right {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.c-message-box__meta__read--right {
  margin-top: .9375rem;
  font-size: .875rem;
  text-align: right
}

.c-heading-01, .c-heading-01--big {
  padding-left: 1.125rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  position: relative
}

.c-heading-01::before, .c-heading-01--big::before, .c-heading-01::after, .c-heading-01--big::after {
  content: "";
  display: block;
  width: .5rem;
  height: .5rem;
  position: absolute;
  left: 0
}

.c-heading-01::before, .c-heading-01--big::before {
  background: #28966e;
  top: calc(50% - 10.5px)
}

.c-heading-01::after, .c-heading-01--big::after {
  background: #d7283c;
  bottom: calc(50% - 10.5px)
}

.c-heading-01--big {
  padding-left: 1.25rem;
  font-size: 1.75rem;
  line-height: 1.4
}

.c-heading-01--big::before, .c-heading-01--big::after {
  width: .625rem;
  height: .625rem
}

.c-heading-01--big::before {
  background: #28966e;
  top: calc(50% - 15px)
}

.c-heading-01--big::after {
  background: #d7283c;
  bottom: calc(50% - 15px)
}

.c-heading-02 {
  padding-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  position: relative
}

.c-heading-02::before, .c-heading-02::after {
  content: "";
  display: block;
  width: .5rem;
  height: .5rem;
  position: absolute;
  bottom: 0
}

.c-heading-02::before {
  background: #d7283c;
  left: calc(50% - 11px)
}

.c-heading-02::after {
  background: #28966e;
  right: calc(50% - 11px)
}

.c-button-01, .c-button-01--back {
  display: flex;
  align-items: center;
  width: 100%;
  height: 3.75rem;
  padding: 0 5rem 0 1.25rem;
  background: #28966e;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  position: relative
}

.c-button-01::before, .c-button-01--back::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-white.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.c-button-01:hover::before, .c-button-01--back:hover::before {
  right: .625rem
}

.c-button-01--back {
  justify-content: flex-end;
  max-width: 20.9375rem;
  padding: 0 1.25rem 0 5rem;
  text-align: right
}

.c-button-01--back::before {
  background-image: url("/assets/images/common/common_icon_arrow-white--back.png");
  left: 1.25rem;
  right: auto
}

.c-button-01--back:hover::before {
  left: .625rem;
  right: auto
}

.c-button-02 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 22.6875rem;
  height: 6.25rem;
  padding: 0 4.375rem 0 1.25rem;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  position: relative
}

.c-button-02::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-red.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.c-button-02:hover::before {
  right: .625rem
}

.c-button-inquiry {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 20.3125rem;
  height: 6.25rem;
  padding: 0 5rem 0 1.25rem;
  margin: 0 auto;
  background: #d7283c;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: .1em;
  position: relative
}

.c-button-inquiry::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.125rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-white.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.c-button-inquiry:hover::before {
  right: .625rem
}

.c-button-more {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 20.3125rem;
  height: 3.75rem;
  padding: 0 5rem 0 1.25rem;
  margin: 0 auto;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  cursor: pointer;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: .1em;
  position: relative
}

.c-button-more.close::before {
  height: .1875rem;
  background: url("/assets/images/common/common_icon_minus.png") no-repeat top left/100% 100%
}

.c-button-more::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_plus.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.u-wrap, .u-wrap--big, .u-wrap--small {
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 0 auto
}

.u-wrap--small {
  max-width: 52.5rem;
}

.u-wrap--scroll {
  max-width: 64.5rem
}

@media (max-width:767px) {
  .u-wrap--scroll {
    padding: 0 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: auto;
  }

  .u-wrap--scroll::-webkit-scrollbar {
    height: 0.25rem;
    background-color: #fff;
  }
  .u-wrap--scroll::-webkit-scrollbar-thumb {
    background: #28966e;
  }
}

.u-wrap--big {
  max-width: 87.5rem
}

.u-hr {
  width: .125rem;
  height: 2.5rem;
  margin: 1.875rem auto 1.25rem auto;
  background: #3c8c00
}

.u-noTxtTransform {
  text-transform: none
}

.u-nopc {
  display: none
}

.u-nosp {
  display: inherit
}

.u-hover--fade {
  transition: opacity .3s ease
}

.u-hover--fade:hover {
  opacity: .7
}

.u-hover--fadeLong {
  transition: opacity .6s ease
}

.u-hover--fadeLong:hover {
  opacity: .7
}

.u-hover--underline {
  text-decoration: underline
}

.u-hover--underline:hover {
  text-decoration: none
}

.mfp-title {
  color: #fff;
  font-size: .8125rem;
  line-height: 1.3846153846
}

.js-inview {
  visibility: hidden
}

.p-adr {
  padding-bottom: 5rem
}

.p-adr__heading {
  margin-top: 5rem;
  color: #333;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4814814815
}

.p-adr__subHeading {
  margin-top: 1.25rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.p-adr__subHeading+.p-adr__read {
  margin-top: 1.25rem
}

.p-adr__read {
  margin-top: 2.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8
}

.p-adr__read a {
  color: #333;
  text-decoration: underline
}

.p-adr__read a:hover {
  text-decoration: none
}

.p-asf {
  padding-bottom: 5rem
}

.p-asf__read, .p-asf__read--right {
  margin-top: 5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8
}

.p-asf__read--right {
  margin-top: 1.875rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #3b4043;
  font-weight: 500;
  line-height: 1.875;
  text-align: right
}

.p-business-archive {
  background: #f2f2f2
}

.p-business-archive__heading {
  margin-top: 2.5rem;
  letter-spacing: .3em
}

.p-business-archive__read {
  max-width: 53.4375rem;
  margin: 1rem auto 0 auto;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center
}

.p-business-archive__detail {
  padding: 7.125rem 0 5rem 0
}

.p-business-archive__box {
  position: relative
}

.p-business-archive__box::before {
  content: "";
  display: block;
  width: 17.625rem;
  height: 26.0625rem;
  background: url("/assets/images/page/business/business_bg_even.png") no-repeat top left/100% 100%;
  position: absolute;
  top: -1.25rem;
  right: 0
}

.p-business-archive__box__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 6.25rem auto 0 auto;
  position: relative
}

.p-business-archive__box__img {
  width: 42.6875rem;
  position: relative;
  top: 0;
  left: -11.4375rem;
  z-index: 1
}

.p-business-archive__box__img img {
  width: 100%
}

.p-business-archive__box__meta {
  width: 28.1875rem;
  height: 16rem;
  margin: auto;
  background: #f2f2f2;
  color: #333;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  z-index: 2
}

.p-business-archive__box__heading {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: .1em
}

.p-business-archive__box__subHeading {
  margin-top: .625rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .025em
}

.p-business-archive__box__read {
  margin-top: 1.25rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-business-archive__box__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.875rem
}

.p-business-archive__box__button a {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 20.9375rem;
  height: 6.25rem;
  padding: 0 5rem 0 1.25rem;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  position: relative
}

.p-business-archive__box__button a::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-red.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.p-business-archive__box__button a:hover::before {
  right: .625rem
}

.p-business-archive__box:first-of-type .p-business-archive__box__wrap {
  margin-top: 0
}

.p-business-archive__box:nth-of-type(odd)::before {
  display: none
}

.p-business-archive__box:nth-of-type(odd)::after {
  content: "";
  display: block;
  width: 13.75rem;
  height: 28.3125rem;
  background: url("/assets/images/page/business/business_bg_odd.png") no-repeat top left/100% 100%;
  position: absolute;
  top: -1.875rem;
  left: 0
}

.p-business-archive__box:nth-of-type(odd) .p-business-archive__box__wrap {
  flex-direction: row-reverse;
  overflow: hidden
}

.p-business-archive__box:nth-of-type(odd) .p-business-archive__box__img {
  left: auto;
  right: -11.4375rem
}

.p-business-archive__box:nth-of-type(odd) .p-business-archive__box__meta {
  left: 1.25rem;
  right: auto
}

.p-business-single-detail {
  margin-top: -0.3125rem
}

.p-business-single-detail__flex {
  display: flex
}

.p-business-single-detail__img {
  width: 50%;
  text-align: center
}

.p-business-single-detail__meta {
  width: 50%;
  padding: 3.125rem 0 0 1.875rem
}

.p-business-single-detail__meta__read {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-business-single-charm {
  margin-top: 5rem
}

.p-business-single-charm__box {
  display: flex;
  align-items: center;
  margin-top: 3.125rem
}

.p-business-single-charm__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 12.5rem;
  border: .0625rem solid #f2f2f2;
  border-radius: 50%
}

.p-business-single-charm__img img {
  width: 4.375rem
}

.p-business-single-charm__meta {
  width: calc(100% - 200px);
  padding-left: 1.875rem
}

.p-business-single-charm__meta__heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-business-single-charm__meta__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-business-single-case {
  padding: 4.5rem 0 5.5rem 0;
  margin-top: 5rem;
  background: #e9f4f0
}

.p-business-single-case__box {
  display: flex;
  margin-top: 3.125rem
}

.p-business-single-case__box:first-of-type {
  margin-top: 1.875rem
}

.p-business-single-case__img {
  width: 21.25rem;
  text-align: center
}

.p-business-single-case__meta {
  width: calc(100% - 340px);
  padding-left: 1.875rem
}

.p-business-single-case__meta__heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-business-single-case__meta__read {
  margin-top: .9375rem;
  color: 333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-business-single-case__more {
  margin-top: 2.5rem
}

.p-business-single-inquiry {
  margin-top: 4.625rem
}

.p-business-single-relation {
  padding: 5rem 0;
  margin-top: 5rem;
  background: #f2f2f2
}

.p-business-single-relation__card {
  display: flex;
  flex-wrap: wrap;
  max-width: 44.375rem;
  margin: 0 auto
}

.p-business-single-relation__card.is-post1 {
  justify-content: center
}

.p-business-single-relation__col {
  display: flex;
  align-items: center;
  width: calc(50% - 20px);
  height: 6.25rem;
  padding: 0 3.5rem 0 1.25rem;
  margin-top: 2.5rem;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  position: relative
}

.p-business-single-relation__col:nth-child(2n+1) {
  margin-right: 2rem
}

.p-business-single-relation__col[target=_blank]::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.1875rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_blank.png") no-repeat top left/100% 100%;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0
}

.p-company-message {
  margin-top: 2.1875rem
}

.p-company-philosophy {
  margin-top: 5rem
}

.p-company-philosophy__flex {
  display: flex
}

.p-company-philosophy__meta {
  width: 50%;
  padding-right: 3.75rem
}

.p-company-philosophy__meta__subHeading {
  margin-top: 2.1875rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-company-philosophy__meta__subHeading:first-of-type {
  margin-top: 1.5625rem
}

.p-company-philosophy__meta__read {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-company-philosophy__meta__read+.p-company-philosophy__meta__read {
  margin-top: .9375rem
}

.p-company-philosophy__img {
  width: 50%;
  padding-top: 3.75rem;
  text-align: center
}

.p-company-overview {
  margin-top: 5rem
}

.p-company-overview__table table {
  width: 100%
}

.p-company-overview__table table tr:first-of-type td {
  padding-top: .3125rem
}

.p-company-overview__table table tr th, .p-company-overview__table table tr td {
  padding: 1.25rem 0;
  border-bottom: .0625rem solid #28966e
}

.p-company-overview__table table tr th p, .p-company-overview__table table tr td p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8
}

.p-company-overview__table table tr th {
  width: 12.5rem;
  padding-right: 1.25rem
}

.p-company-overview__table table tr th p {
  font-weight: 700
}

.p-company-overview__table table tr td {
  width: calc(100% - 200px)
}

.p-company-overview__table table tr td p {
  font-weight: 500
}

.p-company-overview__table__name p {
  display: inline-block;
  margin-top: .9375rem;
  margin-right: 1.0625rem
}

.p-company-overview__table__name p:last-of-type {
  margin-right: 0
}

.p-company-overview__table__name p a {
  display: inline-block;
  padding-right: 1.875rem;
  color: #28966e;
  position: relative
}

.p-company-overview__table__name p a::before {
  content: "";
  display: block;
  width: 1.4375rem;
  height: 1.625rem;
  background: url("/assets/images/page/company/overview_icon_pdf.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: .3125rem
}

.p-company-overview__table__member {
  display: flex;
  flex-wrap: wrap
}

.p-company-overview__table__member p:nth-of-type(odd) {
  width: 14.6875rem;
  padding-right: 1.25rem
}

.p-company-overview__table__member p:nth-of-type(even) {
  width: calc(100% - 235px)
}

.p-company-overview__table__member p:last-of-type {
  width: 100%;
  padding: 0;
  margin-top: .3125rem;
  text-align: right
}

.p-company-overview__table__historyCol {
  display: flex;
  padding: 1rem 0;
  border-top: .125rem solid #f2f2f2
}

.p-company-overview__table__historyCol:first-of-type {
  padding-top: 0;
  border-top: none
}

.p-company-overview__table__historyCol:last-of-type {
  padding-bottom: 0
}

.p-company-overview__table__historyCol p {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-company-overview__table__historyCol p:nth-of-type(odd) {
  width: 3.875rem;
  padding-right: .625rem
}

.p-company-overview__table__historyCol p:nth-of-type(even) {
  width: calc(100% - 62px)
}

.p-company-access {
  margin-top: 5rem
}

.p-company-access__table {
  margin-top: 1.875rem
}

.p-company-access__table table {
  width: 100%
}

.p-company-access__table table tr th p, .p-company-access__table table tr td p {
  color: #333;
  font-size: 1rem;
  line-height: 1.75
}

.p-company-access__table table tr th {
  width: 12.5rem;
  padding-right: 1.25rem
}

.p-company-access__table table tr th p {
  font-weight: 700
}

.p-company-access__table table tr td {
  width: calc(100% - 200px)
}

.p-company-access__table table tr td p {
  font-weight: 500
}

.p-company-access__table__remark {
  margin-top: -0.3125rem
}

.p-company-access__table__remark small {
  display: block;
  margin-top: .625rem;
  font-size: .75rem;
  line-height: 1.4
}

.p-company-access__table__map {
  margin-top: 1.25rem
}

.p-company-access__table__map iframe {
  width: 100%;
  height: 25rem
}

.p-company-bottomEgg {
  margin-top: 5rem
}

.p-csr-task {
  margin-top: 2.25rem
}

.p-csr-task__read, .p-csr-task__read--right {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-csr-task__read a, .p-csr-task__read--right a {
  color: #28966e
}

.p-csr-task__read--right {
  text-align: right
}

.p-csr-results {
  padding: 5rem 0;
  margin-top: 3.25rem;
  background: #f2f2f2
}

.p-csr-results__flex {
  display: flex;
  flex-wrap: wrap
}

.p-csr-results__heading {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-csr-results__col {
  display: flex;
  flex-direction: column;
  width: calc(50% - 22px);
  margin-top: 3.125rem;
  margin-left: 2.375rem
}

.p-csr-results__col:nth-of-type(odd) {
  margin-left: 0
}

.p-csr-results__col:nth-of-type(-n+2) {
  margin-top: 1.5625rem
}

.p-csr-results__img {
  text-align: center
}

.p-csr-results__meta {
  margin-top: .9375rem
}

.p-csr-results__meta__heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-csr-results__meta__box {
  padding: 1.875rem 1.25rem;
  margin-top: .9375rem;
  background: #fff;
  border-top: .0625rem solid #28966e;
  border-bottom: .0625rem solid #28966e
}

.p-csr-results__meta__subHeading {
  padding-left: 1.25rem;
  margin-top: 1.25rem;
  color: #28966e;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.26;
  position: relative
}

.p-csr-results__meta__subHeading:first-of-type {
  margin-top: 0
}

.p-csr-results__meta__subHeading::before {
  content: "";
  display: block;
  width: .625rem;
  height: .625rem;
  background: #28966e;
  position: absolute;
  top: .4375rem;
  left: 0
}

.p-csr-results__meta__read {
  margin-top: .75rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-csr-event {
  padding: 5rem 0
}

.p-csr-event__slider-main {
  margin-top: 1.875rem
}

.p-csr-event__icons {
  margin-top: 1.25rem
}

.p-csr-event__icons img {
  width: 8.125rem
}

.p-csr-event__subHeading {
  margin-top: .9375rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-csr-event__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-csr-event__remark {
  margin-top: .3125rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6
}

.p-csr-event__box {
  display: flex;
  margin-top: 1.875rem
}

.p-csr-event__box:first-of-type {
  margin-top: 3.125rem
}

.p-csr-event__boxImg {
  width: 22.5rem
}

.p-csr-event__boxMeta {
  width: calc(100% - 360px);
  padding-left: 1.875rem
}

.p-csr-event__boxMeta__icons img {
  width: 3.8125rem
}

.p-csr-event__boxMeta__heading {
  margin-top: .9375rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-csr-event__boxMeta__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-csr-event__boxMeta__read a {
  color: #28966e;
  text-decoration: underline
}

.p-csr-event__boxMeta__read a:hover {
  text-decoration: none
}

.p-csr-event__boxMeta__small {
  margin-top: .3125rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6
}

.p-csr-event__slider-main, .p-csr-event__boxSlider {
  margin-bottom: 0 !important
}

.p-csr-event__slider-main__col, .p-csr-event__boxSlider__col {
  text-align: center
}

.p-csr-event__slider-main__col img, .p-csr-event__boxSlider__col img {
  width: 100%
}

.p-csr-event__slider-main .slick-dots, .p-csr-event__boxSlider .slick-dots {
  display: flex;
  justify-content: flex-end;
  max-width: 65rem;
  padding: 0 5.625rem 0 0;
  margin: 1.125rem auto 0 auto;
  position: static
}

.p-csr-event__slider-main .slick-dots li, .p-csr-event__boxSlider .slick-dots li {
  display: inline-block;
  width: 1.125rem;
  height: 1.25rem;
  padding: 0;
  margin: 0;
  opacity: 1
}

.p-csr-event__slider-main .slick-dots li button, .p-csr-event__boxSlider .slick-dots li button {
  width: 1.125rem;
  height: 1.25rem;
  margin: 0
}

.p-csr-event__slider-main .slick-dots li button::before, .p-csr-event__boxSlider .slick-dots li button::before {
  width: .5rem;
  height: .5rem;
  padding: 0;
  margin: auto;
  background: #e9f4f0;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.p-csr-event__slider-main .slick-dots li.slick-active, .p-csr-event__boxSlider .slick-dots li.slick-active {
  margin: 0;
  color: #28966e
}

.p-csr-event__slider-main .slick-dots li.slick-active button::before, .p-csr-event__boxSlider .slick-dots li.slick-active button::before {
  background: #28966e
}

.p-csr-event__slider-main .slick-arrow__wrap, .p-csr-event__boxSlider .slick-arrow__wrap {
  width: 100%;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5625rem
}

.p-csr-event__slider-main .slick-arrow__prev, .p-csr-event__slider-main .slick-arrow__next, .p-csr-event__boxSlider .slick-arrow__prev, .p-csr-event__boxSlider .slick-arrow__next {
  width: 1.25rem;
  height: 1.09375rem;
  margin-top: .375rem;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: opacity .3s ease
}

.p-csr-event__slider-main .slick-arrow__prev:hover, .p-csr-event__slider-main .slick-arrow__next:hover, .p-csr-event__boxSlider .slick-arrow__prev:hover, .p-csr-event__boxSlider .slick-arrow__next:hover {
  opacity: .7
}

.p-csr-event__slider-main .slick-arrow__prev, .p-csr-event__boxSlider .slick-arrow__prev {
  background-image: url("/assets/images/page/csr/slider_icon_slider_prev.png");
  right: 3.375rem
}

.p-csr-event__slider-main .slick-arrow__next, .p-csr-event__boxSlider .slick-arrow__next {
  background-image: url("/assets/images/page/csr/slider_icon_slider_next.png");
  right: 0
}

.p-csr-event__slider-main .slick-arrow__next::before, .p-csr-event__boxSlider .slick-arrow__next::before {
  content: "";
  display: block;
  width: .125rem;
  height: 1.875rem;
  background: #28966e;
  position: absolute;
  top: -0.375rem;
  right: 2.25rem
}

.p-csr-event__more {
  margin-top: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem
}

.p-csr-site {
  padding-bottom: 2.5rem
}

.p-csr-site__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.25rem -1.25rem 0
}

.p-csr-site__list.is-one {
  justify-content: center
}

.p-csr-site__item {
  width: calc(33.3333333333% - 2.5rem);
  margin: 0 1.25rem 2.5rem;
  background-color: #fff;
  box-shadow: 20px 20px 25px rgba(24, 93, 68, .1)
}

.p-csr-site__link {
  display: block;
  height: 100%;
  color: #333
}

.p-csr-site__img img {
  width: 100%
}

.p-csr-site__meta {
  padding: 1.25rem 1.25rem .9375rem
}

.p-csr-site__meta__heading {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4222222222
}

.p-csr-site__meta__read {
  margin-top: 10px;
  line-height: 1.75
}

.p-csr-site__meta__detail {
  margin-top: 10px;
  font-weight: bold;
  text-align: right
}

.p-csr-site__meta__detail:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 18px;
  margin: 0 0 -4px 10px;
  background: url("/assets/images/common/common_icon_blank.png") 0 0 no-repeat;
  background-size: cover
}

.p-csr-detail {
  padding: 5rem 0;
  background: #f2f2f2
}

.p-csr-detail__subHeading {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-csr-detail__subHeading:last-of-type {
  margin-top: 2.8125rem
}

.p-csr-detail__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-csr-detail__box {
  display: flex;
  padding: 2.5rem;
  margin-top: 1.875rem;
  background: #fff
}

.p-csr-detail__img {
  width: 23.5rem;
  text-align: center;
  position: relative;
  z-index: 1
}

.p-csr-detail__img img {
  position: relative;
  z-index: 2
}

.p-csr-detail__img::before {
  content: "";
  display: block;
  width: 11.1875rem;
  height: 1.875rem;
  background: url("/assets/images/page/csr/detail_bg_before.png") no-repeat top left/100% 100%;
  position: absolute;
  top: 3.625rem;
  left: 13.875rem
}

.p-csr-detail__meta {
  width: calc(100% - 376px);
  padding-top: 2.3125rem;
  padding-left: 1.375rem;
  position: relative;
  z-index: 2
}

.p-csr-detail__meta__heading {
  padding: .1875rem 1.25rem;
  background: #28966e;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.68
}

.p-csr-detail__meta__read {
  margin-top: 1.25rem;
  color: #333;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6
}

.p-csr-detail__meta__read:first-of-type {
  margin-top: .9375rem
}

.p-csr-detail__button {
  margin-top: 1.875rem
}

.p-csr-detail__button a {
  margin: 0 auto
}

.p-csr-detail__policy {
  display: flex
}

.p-csr-detail__policyCol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.33% - 15px);
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-left: 1.40625rem;
  background: #fff;
  border: .0625rem solid #28966e
}

.p-csr-detail__policyCol:nth-of-type(3n+1) {
  margin-left: 0
}

.p-csr-detail__policyRead {
  color: #28966e;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center
}

.p-csr-bottomEgg {
  margin-top: 5rem
}

.is-big-size {
  flex-flow: column
}

.is-big-size .p-csr-event__boxImg {
  width: 100%
}

.is-big-size .p-csr-event__boxMeta {
  width: 100%;
  padding-left: 0
}

.p-privacy {
  padding-bottom: 5rem
}

.p-privacy__read, .p-privacy__read--right {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8
}

.p-privacy__read--right {
  margin-top: .3125rem;
  text-align: right
}

.p-privacy__read:first-of-type, .p-privacy__read--right:first-of-type {
  margin-top: 5rem
}

.p-privacy__read a, .p-privacy__read--right a {
  display: inline;
  color: #333;
  text-decoration: underline
}

.p-privacy__heading {
  padding-left: 1.15em;
  margin-top: 3.125rem;
  text-indent: -1.15em;
  color: #333;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4814814815
}

.p-privacy__heading:first-of-type {
  margin-top: 2.5rem
}

.p-privacy__number__heading {
  padding-left: 1.6em;
  margin-top: 1.25rem;
  text-indent: -1.6em;
  color: #333;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6
}

.p-privacy__number__li, .p-privacy__number__read {
  width: calc(100% - 30px);
  margin-left: 1.875rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  word-break: break-all
}

.p-privacy__number__li a, .p-privacy__number__read a {
  display: inline;
  color: #333;
  text-decoration: underline
}

.p-privacy__number__li {
  padding-left: 1.35em;
  margin-top: .9375rem;
  text-indent: -1.35em
}

.p-privacy__number__read {
  margin-top: .75rem
}

.p-privacy__subHeading {
  margin-top: 1.875rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.p-privacy__indent {
  padding-left: 1.6em;
  text-indent: -1.6em
}

.p-privacy .mt0 {
  margin-top: 0
}

.p-privacy .mt40 {
  margin-top: 40px
}

.p-privacy .no-indent {
  padding-left: 0;
  text-indent: 0
}

.p-recruit-message {
  margin-top: 2.1875rem
}

.p-recruit-flow {
  padding: 5rem 0;
  background: #f2f2f2
}

.p-recruit-flow__read {
  margin-top: 1.5625rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-recruit-flow__box {
  display: flex;
  padding: 1.875rem 1.25rem;
  margin-top: 3.75rem;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  position: relative
}

.p-recruit-flow__box::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  background: url("/assets/images/page/recruit/flow_bg_fukidashi.png") no-repeat top left/100% 100%;
  border-left: .8125rem solid rgba(0, 0, 0, 0);
  border-right: .8125rem solid rgba(0, 0, 0, 0);
  border-bottom: 1.375rem solid #fff;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.1875rem;
  transform: rotate(180deg)
}

.p-recruit-flow__box__img {
  width: 7.5rem;
  text-align: center
}

.p-recruit-flow__box__img img {
  border-radius: 50%
}

.p-recruit-flow__box__meta {
  width: calc(100% - 120px);
  padding-top: .3125rem;
  padding-left: 1.25rem
}

.p-recruit-flow__box__metaHeading {
  color: #28966e;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.26
}

.p-recruit-flow__box__metaSubHeading {
  margin-top: .375rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.3333333333
}

.p-recruit-flow__box__metaRead {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-recruit-flow__movie {
  margin-top: 2.5rem;
  text-align: center
}

.p-recruit-flow__movie img {
  width: 37.5rem
}

.p-recruit-flow__movie iframe {
  width: 37.5rem
}

.p-recruit-overview {
  margin-top: 5rem
}

.p-recruit-overview__table {
  margin-top: .625rem
}

.p-recruit-overview__table table {
  width: 100%
}

.p-recruit-overview__table table tr th, .p-recruit-overview__table table tr td {
  padding: 1.25rem 0;
  border-bottom: .0625rem solid #28966e
}

.p-recruit-overview__table table tr th p, .p-recruit-overview__table table tr td p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8
}

.p-recruit-overview__table table tr th {
  width: 12.5rem;
  padding-right: 1.25rem
}

.p-recruit-overview__table table tr th p {
  font-weight: 700
}

.p-recruit-overview__table table tr td {
  width: calc(100% - 200px)
}

.p-recruit-overview__table table tr td p {
  font-weight: 500
}

.p-recruit-overview__table__time {
  display: flex;
  flex-wrap: wrap
}

.p-recruit-overview__table__time p:nth-of-type(odd) {
  width: 5rem;
  padding-right: .9375rem
}

.p-recruit-overview__table__time p:nth-of-type(even) {
  width: calc(100% - 80px)
}

.p-recruit-overview__inquiry {
  margin-top: 3.25rem
}

.p-recruit-results {
  margin: 5rem 0
}

.p-recruit-results__flex {
  display: flex
}

.p-recruit-results__col {
  width: calc(33.33% - 15px);
  padding: 2.5rem 1.25rem 2rem 1.25rem;
  margin-top: 1.875rem;
  margin-left: 1.40625rem;
  border: .0625rem solid #28966e
}

.p-recruit-results__col:nth-of-type(3n+1) {
  margin-left: 0
}

.p-recruit-results__col:nth-of-type(3) .p-recruit-results__img {
  margin-top: 3.625rem
}

.p-recruit-results__heading {
  color: #28966e;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-align: center
}

.p-recruit-results__img {
  margin-top: 1.5625rem;
  text-align: center
}

.p-recruit-results__table, .p-recruit-results__table2 {
  width: 100%;
  margin-top: 1.5625rem;
  text-align: center
}

.p-recruit-results__table th, .p-recruit-results__table2 th {
  width: calc((100% - 100px)/3);
  text-align: center
}

.p-recruit-results__table th p, .p-recruit-results__table2 th p {
  margin-top: .1875rem;
  color: #28966e;
  font-size: 1rem
}

.p-recruit-results__table th.p-recruit-results__table__heading, .p-recruit-results__table2 th.p-recruit-results__table__heading {
  border-bottom: none
}

.p-recruit-results__table__col, .p-recruit-results__table2__col {
  vertical-align: middle;
  width: calc((100% - 100px)/3);
  border-bottom: 1px solid #f2f2f2;
  font-size: 1.25rem
}

.p-recruit-results__table__col span, .p-recruit-results__table2__col span {
  font-size: 1rem
}

.p-recruit-results__table__heading, .p-recruit-results__table2__heading {
  width: 6.25rem;
  padding: 1rem 0;
  border-bottom: 2px solid #28966e;
  font-weight: bold;
  text-align: left
}

.p-recruit-results .p-recruit-results__table2 {
  margin-top: 3.125rem
}

.p-recruit-results .p-recruit-results__table2 .p-recruit-results__table__col {
  width: calc((100% - 100px)/1)
}

.p-teamexpo2025 .c-mv-04__img.is-expo img {
  width: 14rem;
  height: auto;
  top: 6.5rem;
  left: -1.875rem
}

.p-teamexpo2025-archive {
  background: #f2f2f2
}

.p-teamexpo2025-archive__heading {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  letter-spacing: .3em
}

.p-teamexpo2025-archive__read {
  max-width: 53.4375rem;
  margin: 1rem auto 0 auto;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center
}

.p-teamexpo2025-event {
  padding: 5rem 0
}

.p-teamexpo2025-event__slider-main {
  margin-top: 1.875rem
}

.p-teamexpo2025-event__icons {
  margin-top: 1.25rem
}

.p-teamexpo2025-event__icons img {
  width: 8.125rem
}

.p-teamexpo2025-event__subHeading {
  margin-top: .9375rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-teamexpo2025-event__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-teamexpo2025-event__remark {
  margin-top: .3125rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6
}

.p-teamexpo2025-event__box {
  display: flex;
  margin-top: 1.875rem
}

.p-teamexpo2025-event__box:first-of-type {
  margin-top: 0rem
}

.p-teamexpo2025-event__boxImg {
  width: 22.5rem
}

.p-teamexpo2025-event__boxMeta {
  width: calc(100% - 360px);
  padding-left: 1.875rem
}

.p-teamexpo2025-event__boxMeta__icons img {
  width: 3.8125rem
}

.p-teamexpo2025-event__boxMeta__heading {
  margin-top: .9375rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-teamexpo2025-event__boxMeta__read {
  margin-top: .9375rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-teamexpo2025-event__boxMeta__read a {
  color: #28966e;
  text-decoration: underline
}

.p-teamexpo2025-event__boxMeta__read a:hover {
  text-decoration: none
}

.p-teamexpo2025-event__boxMeta__small {
  margin-top: .3125rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6
}

.p-teamexpo2025-event__slider-main, .p-teamexpo2025-event__boxSlider {
  margin-bottom: 0 !important
}

.p-teamexpo2025-event__slider-main__col, .p-teamexpo2025-event__boxSlider__col {
  text-align: center
}

.p-teamexpo2025-event__slider-main__col img, .p-teamexpo2025-event__boxSlider__col img {
  width: 100%
}

.p-teamexpo2025-event__slider-main .slick-dots, .p-teamexpo2025-event__boxSlider .slick-dots {
  display: flex;
  justify-content: flex-end;
  max-width: 65rem;
  padding: 0 5.625rem 0 0;
  margin: 1.125rem auto 0 auto;
  position: static
}

.p-teamexpo2025-event__slider-main .slick-dots li, .p-teamexpo2025-event__boxSlider .slick-dots li {
  display: inline-block;
  width: 1.125rem;
  height: 1.25rem;
  padding: 0;
  margin: 0;
  opacity: 1
}

.p-teamexpo2025-event__slider-main .slick-dots li button, .p-teamexpo2025-event__boxSlider .slick-dots li button {
  width: 1.125rem;
  height: 1.25rem;
  margin: 0
}

.p-teamexpo2025-event__slider-main .slick-dots li button::before, .p-teamexpo2025-event__boxSlider .slick-dots li button::before {
  width: .5rem;
  height: .5rem;
  padding: 0;
  margin: auto;
  background: #e9f4f0;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.p-teamexpo2025-event__slider-main .slick-dots li.slick-active, .p-teamexpo2025-event__boxSlider .slick-dots li.slick-active {
  margin: 0;
  color: #28966e
}

.p-teamexpo2025-event__slider-main .slick-dots li.slick-active button::before, .p-teamexpo2025-event__boxSlider .slick-dots li.slick-active button::before {
  background: #28966e
}

.p-teamexpo2025-event__slider-main .slick-arrow__wrap, .p-teamexpo2025-event__boxSlider .slick-arrow__wrap {
  width: 100%;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5625rem
}

.p-teamexpo2025-event__slider-main .slick-arrow__prev, .p-teamexpo2025-event__slider-main .slick-arrow__next, .p-teamexpo2025-event__boxSlider .slick-arrow__prev, .p-teamexpo2025-event__boxSlider .slick-arrow__next {
  width: 1.25rem;
  height: 1.09375rem;
  margin-top: .375rem;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: opacity .3s ease
}

.p-teamexpo2025-event__slider-main .slick-arrow__prev:hover, .p-teamexpo2025-event__slider-main .slick-arrow__next:hover, .p-teamexpo2025-event__boxSlider .slick-arrow__prev:hover, .p-teamexpo2025-event__boxSlider .slick-arrow__next:hover {
  opacity: .7
}

.p-teamexpo2025-event__slider-main .slick-arrow__prev, .p-teamexpo2025-event__boxSlider .slick-arrow__prev {
  background-image: url("/assets/images/page/csr/slider_icon_slider_prev.png");
  right: 3.375rem
}

.p-teamexpo2025-event__slider-main .slick-arrow__next, .p-teamexpo2025-event__boxSlider .slick-arrow__next {
  background-image: url("/assets/images/page/csr/slider_icon_slider_next.png");
  right: 0
}

.p-teamexpo2025-event__slider-main .slick-arrow__next::before, .p-teamexpo2025-event__boxSlider .slick-arrow__next::before {
  content: "";
  display: block;
  width: .125rem;
  height: 1.875rem;
  background: #28966e;
  position: absolute;
  top: -0.375rem;
  right: 2.25rem
}

.p-teamexpo2025-event__more {
  margin-top: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem
}

.p-teamexpo2025-site {
  padding-bottom: 2.5rem
}

.p-teamexpo2025-site__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.25rem -1.25rem 0
}

.p-teamexpo2025-site__list.is-one {
  justify-content: center
}

.p-teamexpo2025-site__item {
  width: calc(33.3333333333% - 2.5rem);
  margin: 0 1.25rem 2.5rem;
  background-color: #fff;
  box-shadow: 20px 20px 25px rgba(24, 93, 68, .1)
}

.p-teamexpo2025-site__link {
  display: block;
  height: 100%;
  color: #333
}

.p-teamexpo2025-site__img img {
  width: 100%
}

.p-teamexpo2025-site__meta {
  padding: 1.25rem 1.25rem .9375rem
}

.p-teamexpo2025-site__meta__heading {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4222222222
}

.p-teamexpo2025-site__meta__read {
  margin-top: 10px;
  line-height: 1.75
}

.p-teamexpo2025-site__meta__detail {
  margin-top: 10px;
  font-weight: bold;
  text-align: right
}

.p-teamexpo2025-site__meta__detail:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 18px;
  margin: 0 0 -4px 10px;
  background: url("/assets/images/common/common_icon_blank.png") 0 0 no-repeat;
  background-size: cover
}

.p-teamexpo2025-bottomEgg {
  margin-top: 1.875rem
}

.is-big-size {
  flex-flow: column
}

.is-big-size .p-teamexpo2025-event__boxImg {
  width: 100%
}

.is-big-size .p-teamexpo2025-event__boxMeta {
  width: 100%;
  padding-left: 0
}

.p-top-mv {
  max-width: 85.375rem;
  margin: 0 auto;
  text-align: center
}

.p-top-mv img {
  width: 100%
}

.p-top-notice {
  padding: 3.75rem 0 4.4375rem 0
}

.p-top-notice__ul {
  padding-top: .625rem
}

.p-top-notice__li {
  margin-top: .625rem
}

.p-top-notice__li a {
  color: #333;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: underline
}

.p-top-notice__li a:hover {
  text-decoration: none
}

.p-top-commonHeading, .p-top-commonHeading--gray {
  padding-top: 2.625rem;
  position: relative
}

.p-top-commonHeading__en, .p-top-commonHeading__en--spMargin {
  width: 100%;
  margin: auto;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-size: 5.625rem;
  font-weight: 300;
  letter-spacing: .025em;
  text-align: center;
  position: absolute;
  top: .4375rem;
  left: 0;
  right: 0;
  z-index: 1
}

.p-top-commonHeading__ja {
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .3em;
  text-align: center;
  position: relative;
  z-index: 2
}

.p-top-commonHeading--gray .p-top-commonHeading__en, .p-top-commonHeading--gray .p-top-commonHeading__en--spMargin {
  color: #f2f2f2
}

.p-top-initiative {
  padding-bottom: 5.9375rem;
  background: #e9f4f0
}

.p-top-initiative__slider {
  margin-top: 5rem
}

.p-top-initiative__slider .slick-dots {
  display: flex;
  justify-content: flex-end;
  max-width: 65rem;
  padding: 0 6.875rem 0 0;
  margin: 1.75rem auto 0 auto;
  position: static
}

.p-top-initiative__slider .slick-dots li {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  margin: 0;
  opacity: 1
}

.p-top-initiative__slider .slick-dots li button {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0
}

.p-top-initiative__slider .slick-dots li button::before {
  width: .5rem;
  height: .5rem;
  padding: 0;
  margin: auto;
  background: #fff;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.p-top-initiative__slider .slick-dots li.slick-active {
  margin: 0;
  color: #28966e
}

.p-top-initiative__slider .slick-dots li.slick-active button::before {
  background: #28966e
}

.p-top-initiative__slider .slick-arrow__wrap {
  width: 100%;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5625rem
}

.p-top-initiative__slider .slick-arrow__prev, .p-top-initiative__slider .slick-arrow__next {
  width: 1.25rem;
  height: 1.09375rem;
  margin-top: .375rem;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: opacity .3s ease
}

.p-top-initiative__slider .slick-arrow__prev:hover, .p-top-initiative__slider .slick-arrow__next:hover {
  opacity: .7
}

.p-top-initiative__slider .slick-arrow__prev {
  background-image: url("/assets/images/page/top/initiative_icon_slider_prev.png");
  right: 4.625rem
}

.p-top-initiative__slider .slick-arrow__next {
  background-image: url("/assets/images/page/top/initiative_icon_slider_next.png");
  right: 1.25rem
}

.p-top-initiative__slider .slick-arrow__next::before {
  content: "";
  display: block;
  width: .125rem;
  height: 1.875rem;
  background: #28966e;
  position: absolute;
  top: -0.375rem;
  right: 2.25rem
}

.p-top-initiative__col {
  padding: 0 1.5625rem
}

.p-top-initiative__col__link {
  display: block
}

.p-top-initiative__col__link:hover .p-top-initiative__col__read::before {
  right: -0.625rem
}

.p-top-initiative__col__img {
  text-align: center
}

.p-top-initiative__col__img img {
  width: 100%
}

.p-top-initiative__col__meta {
  padding: 1.25rem 1.25rem .9375rem 1.25rem;
  background: #28966e
}

.p-top-initiative__col__heading {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3
}

.p-top-initiative__col__read {
  padding-right: 5rem;
  margin-top: .625rem;
  color: #fff;
  font-size: .875rem;
  line-height: 1.5714285714;
  position: relative
}

.p-top-initiative__col__read::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-white.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all .3s ease
}

.p-top-business {
  padding-bottom: 6.25rem;
  background: #f2f2f2
}

.p-top-business__box {
  position: relative
}

.p-top-business__box::before {
  content: "";
  display: block;
  width: 17.625rem;
  height: 26.0625rem;
  background: url("/assets/images/page/top/business_bg_even.png") no-repeat top left/100% 100%;
  position: absolute;
  top: -1.25rem;
  right: 0
}

.p-top-business__box__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 6.25rem auto 0 auto;
  position: relative
}

.p-top-business__box__img {
  width: 42.6875rem;
  position: relative;
  top: 0;
  left: -11.4375rem;
  z-index: 1
}

.p-top-business__box__img img {
  width: 100%
}

.p-top-business__box__meta {
  width: 34.375rem;
  height: 14.0625rem;
  padding: 1.125rem .625rem 4.5rem .625rem;
  margin: auto;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #333;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2
}

.p-top-business__box__meta::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  background: url("/assets/images/common/common_icon_arrow-red.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  transition: all .3s ease
}

.p-top-business__box__meta:hover::before {
  right: .625rem
}

.p-top-business__box__heading {
  color: #333;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: .1em
}

.p-top-business__box__read {
  margin-top: 4.5rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .025em
}

.p-top-business__box:nth-of-type(even)::before {
  display: none
}

.p-top-business__box:nth-of-type(even)::after {
  content: "";
  display: block;
  width: 13.75rem;
  height: 28.3125rem;
  background: url("/assets/images/page/top/business_bg_odd.png") no-repeat top left/100% 100%;
  position: absolute;
  top: -1.875rem;
  left: 0
}

.p-top-business__box:nth-of-type(even) .p-top-business__box__wrap {
  flex-direction: row-reverse
}

.p-top-business__box:nth-of-type(even) .p-top-business__box__img {
  left: auto;
  right: -11.4375rem
}

.p-top-business__box:nth-of-type(even) .p-top-business__box__meta {
  left: 0;
  right: auto
}

.p-top-company__img {
  margin-top: 6.5625rem;
  position: relative
}

.p-top-company__img img {
  width: 100%
}

.p-top-company__img__button {
  display: flex;
  justify-content: flex-end;
  position: relative
}

.p-top-company__img__button a {
  display: flex;
  align-items: center;
  width: 20.3125rem;
  height: 6.25rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .1em;
  position: absolute;
  right: 0;
  bottom: -1.875rem
}

.p-top-company__img__button a::before {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 1.09375rem;
  margin: auto;
  background: url("/assets/images/common/common_icon_arrow-red.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 1.25rem;
  bottom: 0;
  transition: all .3s ease
}

.p-top-company__img__button a:hover::before {
  right: .625rem
}

.p-top-egg {
  padding: 3.125rem 0;
  margin-top: 6.25rem;
  background: url("/assets/images/page/top/egg_bg.png") repeat-x center left/503px 477px, #e9f4f0
}

.p-top-egg__flex {
  display: flex;
  justify-content: space-between
}
@media (max-width: 767px) {
  .p-top-egg__flex {
    margin: 0 auto;
    width: 520px;
    justify-content: center;
    column-gap: 30px;
  }
}

.p-top-egg__col {
  position: relative;
  max-width: 300px;
  width: 30.5%;
}

@media (max-width: 767px) {
  .p-top-egg__col {
    width: 10rem;
  }
}

.p-top-egg__col__img {
  position: relative
}

.p-top-egg__col__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/assets/images/page/top/egg_bg_filter.png") no-repeat top left/100% 100%;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2
}

.p-top-egg__col__img img {
  width: 18.75rem;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1
}

.p-top-egg__col__meta {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.375rem;
  z-index: 3
}

.p-top-egg__col__heading {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.3333333333;
  text-align: center
}

.p-top-egg__col__read {
  padding-bottom: 3.75rem;
  margin-top: 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  position: relative
}

.p-top-egg__col__read::before {
  content: "";
  display: block;
  width: 2.84375rem;
  height: 1.21875rem;
  margin: auto;
  background: url("/assets/images/page/top/egg_icon_arrow.png") no-repeat top left/100% 100%;
  pointer-events: none;
  position: absolute;
  left: calc(50% - 22.75px);
  bottom: 0;
  transition: all .3s ease
}

.p-top-egg__col:hover .p-top-egg__col__read::before {
  left: calc(50% - 7.75px)
}

.p-top-news {
  padding-bottom: 5rem
}

.p-top-news__kv {
  text-align: center
}

.p-top-news__kv img {
  width: 100%
}

.p-top-news__list {
  margin-top: 6.25rem
}

.p-top-news__link {
  padding-top: .375rem
}

.p-top-news__link p {
  margin-top: 1.5rem;
  text-align: right
}

.p-top-news__link p a {
  display: inline-block;
  color: #28966e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: underline
}

.p-top-news__link p a:hover {
  text-decoration: none
}

.p-using {
  padding-bottom: 5rem
}

.p-using__heading {
  margin-top: 5rem;
  color: #333;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4814814815
}

.p-using__heading__text {
  margin-top: 3.75rem
}

.p-using__subHeading {
  margin-top: 1.25rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4
}

.p-using__read {
  margin-top: 1.25rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8
}

.p-using__read__subText {
  margin-top: 6.25rem
}

.p-using__read a {
  color: #333;
  text-decoration: underline
}

.p-using__read a:hover {
  text-decoration: none
}

.p-news-archive-column {
  display: flex;
  padding-top: 2.125rem
}

.p-news-archive-sidebar {
  width: 12.5rem;
  padding-right: 2.5rem
}

.p-news-archive-sidebar__heading {
  padding-bottom: .625rem;
  border-bottom: .0625rem solid #28966e;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .025em
}

.p-news-archive-sidebar__li {
  margin-top: 1.25rem
}

.p-news-archive-sidebar__li a {
  display: block;
  color: #333;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color .3s ease
}

.p-news-archive-sidebar__li a:hover {
  color: #28966e
}

.p-news-archive-sidebar__li a.is-active {
  color: #28966e
}

.p-news-archive-main {
  width: calc(100% - 200px);
  padding-top: 1.75rem
}

.p-news-archive-main__pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: .9375rem
}

.p-news-archive-main__pagenavi>* {
  margin: .9375rem .75rem 0 .75rem
}

.p-news-archive-main__pagenavi li span, .p-news-archive-main__pagenavi li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  font-family: Outfit, "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #28966e;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  transition: all .3s ease
}

.p-news-archive-main__pagenavi li span:hover, .p-news-archive-main__pagenavi li a:hover {
  background: #28966e;
  color: #fff
}

.p-news-archive-main__pagenavi li span.is-current, .p-news-archive-main__pagenavi li a.is-current {
  pointer-events: none
}

.p-news-archive-main__pagenavi li span {
  background: #28966e;
  color: #fff
}

.p-news-archive-main__pagenavi__prev, .p-news-archive-main__pagenavi__next {
  width: 1.75rem;
  height: 1.75rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.25rem 1.125rem;
  transition: all .3s ease
}

.p-news-archive-main__pagenavi__prev:hover, .p-news-archive-main__pagenavi__next:hover {
  background-color: #28966e
}

.p-news-archive-main__pagenavi__prev {
  background-image: url("/assets/images/post/news/pagenavi_bg_prev.png")
}

.p-news-archive-main__pagenavi__prev:hover {
  background-image: url("/assets/images/post/news/pagenavi_bg_prev-on.png")
}

.p-news-archive-main__pagenavi__next {
  background-image: url("/assets/images/post/news/pagenavi_bg_next.png")
}

.p-news-archive-main__pagenavi__next:hover {
  background-image: url("/assets/images/post/news/pagenavi_bg_next-on.png")
}

.p-news-archive-bottomEgg {
  margin-top: 5rem
}

.p-news-single {
  padding-bottom: 5rem
}

.p-news-single__thumbnail {
  margin-top: 1.875rem;
  text-align: center
}

.p-news-single__meta {
  display: flex;
  padding: .625rem 0 .9375rem 0;
  border-bottom: .0625rem solid #28966e
}

.p-news-single__meta__time {
  width: 7.1875rem;
  margin-top: .5625rem;
  color: #333;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.8
}

.p-news-single__meta__tags {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 115px)
}

.p-news-single__meta__li {
  margin: .625rem .625rem 0 0
}

.p-news-single__meta__li a {
  padding: .3125rem .625rem;
  background: #28966e;
  border-radius: .8125rem;
  cursor: default;
  pointer-events: none;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-size: .75rem;
  text-align: center
}

.p-news-single__editor {
  padding-top: .4375rem
}

.p-news-single__editor p {
  margin-top: 2.1875rem;
  color: #333;
  font-style: 1rem;
  line-height: 1.75
}

.p-news-single__editor p a {
  color: #28966e;
  text-decoration: underline
}

.p-news-single__editor p a:hover {
  text-decoration: none
}

.p-news-single__editor blockquote {
  display: block;
  padding-left: 1rem;
  margin-left: 1.5rem;
  border-left: 2px solid #ccc;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  -webkit-margin-end: 40px;
  -webkit-margin-start: 40px
}

.p-news-single__editor ul, .p-news-single__editor menu, .p-news-single__editor dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  margin-block-end: 1em;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  -webkit-margin-start: 0;
  padding-inline-start: 40px;
  -webkit-padding-start: 40px
}

.p-news-single__editor ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  margin-block-end: 1em;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  -webkit-margin-start: 0;
  padding-inline-start: 40px;
  -webkit-padding-start: 40px
}

.p-news-single__editor li {
  display: list-item;
  text-align: -webkit-match-parent
}

.p-news-single__editor ul ul, .p-news-single__editor ol ul {
  list-style-type: circle
}

.p-news-single__editor ol ol ul, .p-news-single__editor ol ul ul, .p-news-single__editor ul ol ul, .p-news-single__editor ul ul ul {
  list-style-type: square
}

.p-news-single__editor dd {
  display: block;
  -webkit-margin-start: 40px
}

.p-news-single__editor dl {
  display: block;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0
}

.p-news-single__editor dt {
  display: block
}

.p-news-single__editor ol ul, .p-news-single__editor ul ol, .p-news-single__editor ul ul, .p-news-single__editor ol ol {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0
}

.p-news-single__editor table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-color: #a1a1a1;
  border-spacing: 2px;
  border-width: 1px;
  @import"https://abashiri-dev-mc2b.movabletype.biz/mt-static/plugins/TinyMCE5/tiny_mce/skins/content/default/content.min.css?v=7.9.7"
}

.p-news-single__editor table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit
}

.p-news-single__editor table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit
}

.p-news-single__editor table tfoot {
  display: table-footer-group;
  vertical-align: middle;
  border-color: inherit
}

.p-news-single__editor table table>tr {
  vertical-align: middle
}

.p-news-single__editor table col {
  display: table-column
}

.p-news-single__editor table colgroup {
  display: table-column-group
}

.p-news-single__editor table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit
}

.p-news-single__editor table td, .p-news-single__editor table th {
  display: table-cell;
  vertical-align: inherit;
  width: auto;
  padding: .4rem;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px
}

.p-news-single__editor table th {
  font-weight: bold
}

.p-news-single__editor table caption {
  display: table-caption;
  text-align: -webkit-center
}

.p-news-single__editor table table {
  border-collapse: collapse
}

.p-news-single__button {
  margin-top: 1.25rem
}

.p-news-single__button a {
  margin: 0 auto
}

.p-store-archive-tagList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 52.5rem;
  padding-top: 1.5625rem;
  margin: 0 auto
}

.p-store-archive-tagList li {
  margin: .625rem .3125rem 0 .3125rem
}

.p-store-archive-tagList li a {
  padding: .5rem 1rem;
  background: #28966e;
  border-radius: 1.125rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center
}

.p-store-archive-tagMeta {
  display: flex;
  align-items: center;
  margin-top: 2rem
}

.p-store-archive-tagMeta__read {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #3b4043;
  font-size: 1.125rem;
  font-weight: 700
}

.p-store-archive-tagMeta__tag {
  padding: .5rem 1rem;
  margin-left: .625rem;
  background: #28966e;
  border-radius: 1.125rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center
}

.p-store-archive-card {
  display: flex;
  flex-wrap: wrap
}

.p-store-archive-card__col {
  width: calc(33.33% - 18px);
  margin-top: 3.125rem;
  margin-left: 1.4rem
}

.p-store-archive-card__col:nth-of-type(3n+1) {
  margin-left: 0
}

.p-store-archive-card__col:nth-of-type(-n+3) {
  margin-top: 2.5rem
}

.p-store-archive-card__img {
  width: 100%
}

.p-store-archive-card__meta {
  margin-top: 1.25rem
}

.p-store-archive-card__meta__heading a {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #3b4043;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4
}

.p-store-archive-card__meta__ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: .4375rem
}

.p-store-archive-card__meta__li {
  margin: .625rem .625rem 0 0
}

.p-store-archive-card__meta__li a {
  padding: .3125rem 1rem;
  background: #28966e;
  border-radius: .8125rem;
  color: #fff;
  font-size: .75rem;
  line-height: 1.3333333333;
  text-align: center
}

.p-store-archive-back {
  margin: 2.5rem 0 5rem 0;
  text-align: center
}

.p-store-archive-back a {
  display: inline-block;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #28966e;
  font-size: 1rem;
  line-height: 1.375;
  text-decoration: underline
}

.p-store-archive-back a:hover {
  text-decoration: none
}

.p-store-archive-inquiry {
  margin-top: 3.125rem
}

.p-store-single-detail {
  display: flex
}

.p-store-single-detail__left {
  width: 22.5rem;
  margin-top: 3.125rem
}

.p-store-single-detail__slider {
  margin-bottom: 0 !important
}

.p-store-single-detail__slider__img {
  text-align: center
}

.p-store-single-detail__slider__img img {
  width: 100%
}

.p-store-single-detail__slider .slick-dots {
  display: flex;
  justify-content: flex-end;
  max-width: 65rem;
  padding: 0 5.625rem 0 0;
  margin: 1.125rem auto 0 auto;
  position: static
}

.p-store-single-detail__slider .slick-dots li {
  display: inline-block;
  width: 1.125rem;
  height: 1.25rem;
  padding: 0;
  margin: 0;
  opacity: 1
}

.p-store-single-detail__slider .slick-dots li button {
  width: 1.125rem;
  height: 1.25rem;
  margin: 0
}

.p-store-single-detail__slider .slick-dots li button::before {
  width: .5rem;
  height: .5rem;
  padding: 0;
  margin: auto;
  background: #e9f4f0;
  opacity: 1;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0
}

.p-store-single-detail__slider .slick-dots li.slick-active {
  margin: 0;
  color: #28966e
}

.p-store-single-detail__slider .slick-dots li.slick-active button::before {
  background: #28966e
}

.p-store-single-detail__slider .slick-arrow__wrap {
  width: 100%;
  max-width: 65rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5625rem
}

.p-store-single-detail__slider .slick-arrow__prev, .p-store-single-detail__slider .slick-arrow__next {
  width: 1.25rem;
  height: 1.09375rem;
  margin-top: .375rem;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100% 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  transition: opacity .3s ease
}

.p-store-single-detail__slider .slick-arrow__prev:hover, .p-store-single-detail__slider .slick-arrow__next:hover {
  opacity: .7
}

.p-store-single-detail__slider .slick-arrow__prev {
  background-image: url("/assets/images/post/store/single/detail_icon_slider_prev.png");
  right: 3.375rem
}

.p-store-single-detail__slider .slick-arrow__next {
  background-image: url("/assets/images/post/store/single/detail_icon_slider_next.png");
  right: 0
}

.p-store-single-detail__slider .slick-arrow__next::before {
  content: "";
  display: block;
  width: .125rem;
  height: 1.875rem;
  background: #28966e;
  position: absolute;
  top: -0.375rem;
  right: 2.25rem
}

.p-store-single-detail__tags {
  display: flex;
  flex-wrap: wrap;
  padding: .625rem 0 1.25rem 0;
  margin-top: 1.25rem;
  border-top: .0625rem solid #28966e;
  border-bottom: .0625rem solid #28966e
}

.p-store-single-detail__tags__li {
  margin: .625rem .625rem 0 0
}

.p-store-single-detail__tags__li a {
  padding: .3125rem .625rem;
  background: #28966e;
  border-radius: .8125rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  font-size: .75rem;
  text-align: center
}

.p-store-single-detail__right {
  width: calc(100% - 360px);
  padding-left: 2.5rem;
  margin-top: 3.125rem
}

.p-store-single-detail__table {
  margin-top: .625rem
}

.p-store-single-detail__table table {
  width: 100%
}

.p-store-single-detail__table table blockquote {
  display: block;
  padding-left: 1rem;
  margin-left: 1.5rem;
  border-left: 2px solid #ccc;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  -webkit-margin-end: 40px;
  -webkit-margin-start: 40px
}

.p-store-single-detail__table table ul, .p-store-single-detail__table table menu, .p-store-single-detail__table table dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  margin-block-end: 1em;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  -webkit-margin-start: 0;
  padding-inline-start: 40px;
  -webkit-padding-start: 40px
}

.p-store-single-detail__table table ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  margin-block-end: 1em;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  -webkit-margin-start: 0;
  padding-inline-start: 40px;
  -webkit-padding-start: 40px
}

.p-store-single-detail__table table li {
  display: list-item;
  text-align: -webkit-match-parent
}

.p-store-single-detail__table table ul ul, .p-store-single-detail__table table ol ul {
  list-style-type: circle
}

.p-store-single-detail__table table ol ol ul, .p-store-single-detail__table table ol ul ul, .p-store-single-detail__table table ul ol ul, .p-store-single-detail__table table ul ul ul {
  list-style-type: square
}

.p-store-single-detail__table table dd {
  display: block;
  -webkit-margin-start: 40px
}

.p-store-single-detail__table table dl {
  display: block;
  -webkit-margin-after: 1em;
  -webkit-margin-before: 1__qem;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0
}

.p-store-single-detail__table table dt {
  display: block
}

.p-store-single-detail__table table ol ul, .p-store-single-detail__table table ul ol, .p-store-single-detail__table table ul ul, .p-store-single-detail__table table ol ol {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0
}

.p-store-single-detail__table table table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-color: #a1a1a1;
  border-spacing: 2px;
  border-width: 1px
}

.p-store-single-detail__table table table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit
}

.p-store-single-detail__table table table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit
}

.p-store-single-detail__table table table tfoot {
  display: table-footer-group;
  vertical-align: middle;
  border-color: inherit
}

.p-store-single-detail__table table table table>tr {
  vertical-align: middle
}

.p-store-single-detail__table table table col {
  display: table-column
}

.p-store-single-detail__table table table colgroup {
  display: table-column-group
}

.p-store-single-detail__table table table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit
}

.p-store-single-detail__table table table td, .p-store-single-detail__table table table th {
  display: table-cell;
  vertical-align: inherit;
  width: auto;
  padding: .4rem;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px
}

.p-store-single-detail__table table table th {
  font-weight: bold
}

.p-store-single-detail__table table table caption {
  display: table-caption;
  text-align: -webkit-center
}

.p-store-single-detail__table table table table {
  border-collapse: collapse
}

.p-store-single-detail__table tr th, .p-store-single-detail__table tr td {
  vertical-align: top;
  padding: 1.25rem 0;
  border-bottom: .0625rem solid #28966e
}

.p-store-single-detail__table tr th p, .p-store-single-detail__table tr td p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8
}

.p-store-single-detail__table tr th p a, .p-store-single-detail__table tr td p a {
  color: #28966e;
  text-decoration: underline
}

.p-store-single-detail__table tr th {
  width: 33.34%;
  padding-right: .9375rem
}

.p-store-single-detail__table tr th p {
  font-weight: 700
}

.p-store-single-detail__table tr td {
  width: 66.66%
}

.p-store-single-detail__table tr td p {
  font-weight: 500
}

.p-store-single-detail__table__small p {
  display: block !important;
  font-size: .75rem !important;
  line-height: 1.6 !important
}

.p-store-single-detail__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.1875rem
}

.p-store-single-detail__button a {
  max-width: 20.9375rem
}

.p-store-single-charm {
  padding-top: .625rem
}

.p-store-single-charm__box {
  display: flex;
  margin-top: 5rem
}

.p-store-single-charm__img {
  width: 21.25rem;
  text-align: center
}

.p-store-single-charm__meta {
  width: calc(100% - 340px);
  padding-left: 1.875rem
}

.p-store-single-charm__meta__heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4
}

.p-store-single-charm__meta__read {
  margin-top: .875rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75
}

.p-store-single-charm__meta__remark {
  margin-top: .25rem;
  color: #333;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.6
}

.p-store-single-inquiry {
  margin-top: 5rem
}

.p-store-single-bottomEgg {
  margin-top: 5rem
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 1.25rem
  }

  .l-footer__flex {
    flex-wrap: wrap;
    justify-content: space-between
  }

  .l-footer__col {
    padding-right: 0
  }

  .l-footer__col:nth-of-type(1) {
    width: 30%
  }

  .l-footer__col:nth-of-type(2) {
    width: 30%
  }

  .l-footer__col:nth-of-type(3) {
    width: 30%
  }

  .l-footer__col:nth-of-type(4) {
    width: 100%;
    margin-top: 1.875rem
  }

  .l-footer__li, .l-footer__li--parent {
    margin-top: .625rem
  }

  .l-footer__li a, .l-footer__li--parent a {
    font-size: .625rem;
    line-height: 1.4
  }

  .l-footer__copyright {
    padding: 1.875rem 0 .4375rem 0
  }

  .l-header {
    padding: .9375rem 0
  }

  .l-header__logo a img {
    max-width: 8.25rem
  }

  .l-header__right {
    padding-right: 2.625rem
  }

  .l-header__inquiry {
    padding-bottom: 4.6875rem
  }

  .l-header__inquiry a {
    width: 13.5625rem;
    height: 2.5rem;
    margin: 2.5rem auto 0 auto;
    border-radius: 1.25rem
  }

  .l-header__7i a img {
    max-width: 5.09375rem
  }

  .l-header__toggle {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    position: fixed;
    top: 1.125rem;
    right: 1.25rem;
    z-index: 12
  }

  .l-nav {
    display: flex;
    justify-content: center;
    height: calc(100vh - 50px);
    background: #e9f4f0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    top: 3.125rem;
    transition: opacity .3s ease
  }

  .l-nav.is-active {
    opacity: 1;
    pointer-events: all
  }

  .l-nav__wrap {
    display: block;
    padding-top: 4.6875rem
  }

  .l-nav__ul {
    display: block;
    width: 9.375rem;
    margin: 0 auto
  }

  .l-nav__li, .l-nav__li--parent {
    margin-top: 3.125rem;
    margin-left: 0 !important;
    text-align: left
  }

  .l-nav__li:first-of-type, .l-nav__li--parent:first-of-type {
    margin-top: 0
  }

  .l-nav__li:nth-of-type(2), .l-nav__li--parent:nth-of-type(2) {
    margin-left: 0
  }

  .l-nav__li>a span, .l-nav__li--parent>a span, .l-nav__li>p span, .l-nav__li--parent>p span {
    padding: 0
  }

  .l-nav__li>a span::before, .l-nav__li--parent>a span::before, .l-nav__li>p span::before, .l-nav__li--parent>p span::before {
    display: none;
    transition: none
  }

  .l-nav__li--parent>a span::after, .l-nav__li--parent>p span::after {
    right: -1rem;
    transform: rotate(0deg)
  }

  .l-nav__li--parent.is-active>a span::after, .l-nav__li--parent.is-active>p span::after {
    transform: rotate(-180deg)
  }

  .l-nav__sub {
    display: none
  }

  .l-nav__sub--sp {
    display: none;
    width: auto;
    height: auto;
    padding-top: .375rem;
    padding-left: 1.25rem;
    overflow: visible
  }

  .l-nav__sub--sp li {
    margin-top: 1.5rem;
    text-align: left
  }

  .l-nav__sub--sp li a, .l-nav__sub--sp li span {
    display: inline-block;
    padding-left: .5625rem;
    color: #585858;
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.5384615385;
    position: relative
  }

  .l-nav__sub--sp li a::before, .l-nav__sub--sp li span::before {
    content: "-";
    display: block;
    position: absolute;
    top: 0;
    left: 0
  }

  .l-nav__sub--sp li.heading a, .l-nav__sub--sp li.heading span {
    padding-left: 0
  }

  .l-nav__sub--sp li.heading a::before, .l-nav__sub--sp li.heading span::before {
    display: none
  }

  .l-pagebody {
    padding-top: 3.125rem
  }

  .c-mv-01, .c-mv-01--gray {
    padding-top: 3.625rem
  }

  .c-mv-01__wrap {
    height: 5.75rem
  }

  .c-mv-01__wrap::before {
    width: 4.875rem;
    height: 5.75rem;
    left: calc(50% - 119px)
  }

  .c-mv-01__heading {
    font-size: 1.75rem;
    line-height: 1.4
  }

  .c-mv-01__subHeading {
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .c-mv-02 {
    margin-top: 5.125rem
  }

  .c-mv-02__heading {
    font-size: 1.75rem;
    line-height: 1.4285714286
  }

  .c-mv-03 {
    margin-top: 5rem
  }

  .c-mv-03__heading {
    font-size: 1.75rem;
    line-height: 1.4285714286
  }

  .c-mv-04 {
    margin-top: .375rem
  }

  .c-mv-04::before {
    width: 1.9375rem;
    height: .125rem;
    background: #28966e;
    top: 15.1875rem
  }

  .c-mv-04::after {
    width: 10.6875rem;
    height: 15.875rem;
    background-image: url("/assets/images/common/c-mv-04_bg_after-sp.png")
  }

  .c-mv-04__wrap {
    height: 22.6875rem
  }

  .c-mv-04__img {
    width: 15.3125rem;
    height: 15.9375rem;
    top: .8125rem
  }

  .c-mv-04__img img {
    width: 7.5625rem;
    height: 12.375rem;
    top: 2.5625rem
  }

  .c-mv-04__img::before {
    width: 12rem;
    height: 15.9375rem;
    background-image: url("/assets/images/common/c-mv-04_bg_egg-sp.png");
    top: .8125rem;
    left: 3.375rem
  }

  .c-mv-04__meta {
    padding: 0;
    background: none;
    top: auto;
    left: 1.25rem;
    bottom: 0
  }

  .c-mv-04__meta__heading {
    font-size: 1.75rem;
    line-height: 1.4285714286
  }

  .c-mv-04__meta__subHeading {
    margin-top: .25rem;
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .c-news-list__flex {
    display: block;
    padding: 1.25rem 0
  }

  .c-news-list__meta {
    display: flex;
    align-items: center;
    width: 100%
  }

  .c-news-list__date {
    font-size: 1rem
  }

  .c-news-list__tag {
    padding: .25rem .5rem;
    margin-top: 0;
    margin-left: .5rem;
    font-size: .625rem
  }

  .c-news-list__read {
    width: auto;
    padding: 0 0 2.375rem 0;
    margin-top: .9375rem;
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .c-news-list__read::before {
    top: auto;
    bottom: 0
  }

  .c-bottomEgg, .c-bottomEgg--col3 {
    padding: 3.125rem 0 2.5rem 0;
    background: url("/assets/images/common/c-bottomEgg_bg-sp.png") repeat-x center center/634.5px 238.5px, #e9f4f0
  }

  .c-bottomEgg__flex {
    justify-content: center;
  }

  .c-bottomEgg__col {
    width: 7.9375rem
  }

  .c-bottomEgg__col:not(:last-child) {
    margin-right: 1.875rem
  }

  .c-bottomEgg__col::before {
    width: 1.8125rem;
    background-image: url("/assets/images/common/common_icon_arrow-white-sp.png");
    bottom: 1.25rem;
    transition: none
  }

  .c-bottomEgg__col__img::before {
    transition: none
  }

  .c-bottomEgg__col__img img {
    width: 100%
  }

  .c-bottomEgg__col__meta {
    height: 100%;
    padding-top: 5rem;
    top: 0
  }

  .c-bottomEgg__col__heading {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    transition: none
  }

  .c-bottomEgg__col__read {
    margin-top: .3125rem;
    font-size: .625rem;
    line-height: 1.4;
    position: static;
    transition: none
  }

  .c-bottomEgg__col:hover::before {
    left: calc(50% - 15.5px);
    filter: none
  }

  .c-bottomEgg__col:hover .c-bottomEgg__col__img::before {
    opacity: 1
  }

  .c-bottomEgg__col:hover .c-bottomEgg__col__img img {
    opacity: .75
  }

  .c-bottomEgg__col:hover .c-bottomEgg__col__heading, .c-bottomEgg__col:hover .c-bottomEgg__col__subHeading, .c-bottomEgg__col:hover .c-bottomEgg__col__read {
    text-shadow: none
  }

  .c-bottomEgg--col3 .c-bottomEgg__scroll {
    padding-bottom: 2rem;
    overflow: auto
  }

  .c-bottomEgg--col3 .c-bottomEgg__scroll::-webkit-scrollbar {
    height: .25rem
  }

  .c-bottomEgg--col3 .c-bottomEgg__scroll::-webkit-scrollbar-thumb {
    background: #28966e
  }

  .c-bottomEgg--col3 .c-bottomEgg__flex {
    width: 27.5rem
  }

  .c-message-box {
    padding: 3.75rem 0;
    background: url("/assets/images/common/c-message-box_bg-sp.png") repeat-x top 2.75rem left/327px 321px, #e9f4f0
  }

  .c-message-box__flex {
    display: block
  }

  .c-message-box__img {
    width: auto
  }

  .c-message-box__img img {
    width: 11rem
  }

  .c-message-box__meta {
    width: auto;
    padding-left: 0;
    margin-top: 2.1875rem
  }

  .c-message-box__meta__subHeading {
    max-width: inherit;
    margin-top: .9375rem;
    font-size: 1.125rem;
    line-height: 1.4
  }

  .c-message-box__meta__read, .c-message-box__meta__read--right {
    margin-top: .9375rem;
    font-size: .875rem;
    line-height: 1.8
  }

  .c-message-box__meta__read--right {
    font-size: .75rem;
    line-height: 1.7916666667
  }

  .c-heading-01--big {
    padding-left: 1rem;
    font-size: 1.5rem;
    line-height: 1.3333333333
  }

  .c-heading-01--big::before, .c-heading-01--big::after {
    width: .5rem;
    height: .5rem
  }

  .c-heading-01--big::before {
    top: calc(50% - 11px)
  }

  .c-heading-01--big::after {
    bottom: calc(50% - 11px)
  }

  .c-heading-02 {
    font-size: 1.25rem;
    line-height: 1.3333333333
  }

  .c-button-01, .c-button-01--back {
    padding-right: 4.375rem;
    font-size: .875rem
  }

  .c-button-01::before, .c-button-01--back::before {
    width: 1.9375rem;
    height: .8125rem;
    transition: none
  }

  .c-button-01:hover::before, .c-button-01--back:hover::before {
    right: 1.25rem
  }

  .c-button-01--back {
    padding-left: 4.375rem;
    padding-right: 1.25rem
  }

  .c-button-01--back:hover::before {
    left: 1.25rem;
    right: auto
  }

  .c-button-02 {
    height: 5.8125rem;
    font-size: .875rem;
    line-height: 1.8;
    letter-spacing: 0
  }

  .c-button-02::before {
    width: 1.8125rem;
    height: .8125rem;
    transition: none
  }

  .c-button-02:hover::before {
    right: 1.25rem
  }

  .c-button-inquiry {
    max-width: inherit;
    height: 3.75rem;
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .c-button-inquiry::before {
    transition: none
  }

  .c-button-inquiry:hover::before {
    right: 1.25rem
  }

  .c-button-more {
    max-width: inherit;
    height: 3.75rem;
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .c-button-more::before {
    transition: none
  }

  .u-hr {
    height: 1.875rem;
    margin: 1.25rem auto .9375rem auto
  }

  .u-nopc {
    display: inherit
  }

  .u-nosp {
    display: none
  }

  .u-hover--fade {
    transition: none
  }

  .u-hover--fade:hover {
    opacity: 1
  }

  .u-hover--fadeLong {
    transition: none
  }

  .u-hover--fadeLong:hover {
    opacity: 1
  }

  .u-hover--underline:hover {
    text-decoration: underline
  }

  .p-adr {
    padding-bottom: 3.75rem
  }

  .p-adr__heading {
    margin-top: 3.75rem;
    font-size: 1.4375rem;
    line-height: 1.3913043478
  }

  .p-adr__subHeading {
    font-size: 1.125rem;
    line-height: 1.4
  }

  .p-adr__read {
    margin-top: 1.875rem;
    font-size: .875rem;
    line-height: 1.8
  }

  .p-adr__read a:hover {
    text-decoration: underline
  }

  .p-asf {
    padding-bottom: 3.75rem
  }

  .p-asf__read, .p-asf__read--right {
    margin-top: 3.75rem;
    font-size: .875rem;
    line-height: 1.8
  }

  .p-asf__read--right {
    margin-top: 1.5rem;
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-archive__heading {
    margin-top: 2rem
  }

  .p-business-archive__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-archive__detail {
    padding-top: 0
  }

  .p-business-archive__box::before {
    display: none
  }

  .p-business-archive__box__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 3.75rem
  }

  .p-business-archive__box__heading {
    font-size: 1.5rem;
    line-height: 1.4583333333
  }

  .p-business-archive__box__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-archive__box__button {
    margin-top: 1.25rem
  }

  .p-business-archive__box__button a {
    max-width: inherit;
    height: 3.75rem;
    font-size: .875rem;
    line-height: 1.5714285714;
    letter-spacing: 0
  }

  .p-business-archive__box__button a::before {
    transition: none
  }

  .p-business-archive__box__button a:hover::before {
    right: 1.25rem
  }

  .p-business-archive__box:first-of-type .p-business-archive__box__wrap {
    margin-top: 3.75rem
  }

  .p-business-archive__box:nth-of-type(odd)::after {
    display: none
  }

  .p-business-archive__box:nth-of-type(odd) .p-business-archive__box__img {
    width: calc(100% + 6.5px);
    left: auto;
    right: -1.25rem
  }

  .p-business-archive__box:nth-of-type(odd) .p-business-archive__box__meta {
    left: 0
  }

  .p-business-archive__box:nth-of-type(odd) .p-business-archive__box__heading, .p-business-archive__box:nth-of-type(odd) .p-business-archive__box__subHeading, .p-business-archive__box:nth-of-type(odd) .p-business-archive__box__read {
    padding-left: .9375rem
  }

  .p-business-single-detail {
    margin-top: 1rem
  }

  .p-business-single-detail__flex {
    display: block
  }

  .p-business-single-detail__img {
    width: auto
  }

  .p-business-single-detail__meta {
    width: auto;
    padding: 1.5625rem 0 0 0
  }

  .p-business-single-detail__meta__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-single-charm {
    margin-top: 3.75rem
  }

  .p-business-single-charm__box {
    display: block;
    margin-top: 2.5rem
  }

  .p-business-single-charm__box:first-of-type {
    margin-top: 3.125rem
  }

  .p-business-single-charm__img {
    width: 8.75rem;
    height: 8.75rem;
    margin: 0 auto
  }

  .p-business-single-charm__img img {
    width: 3.75rem
  }

  .p-business-single-charm__meta {
    width: auto;
    padding-left: 0;
    margin-top: 1.875rem
  }

  .p-business-single-charm__meta__heading {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4
  }

  .p-business-single-charm__meta__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-single-case {
    padding: 3.75rem 0 4.25rem 0
  }

  .p-business-single-case__box {
    display: block;
    margin-top: 2.5rem
  }

  .p-business-single-case__box:first-of-type {
    margin-top: 1.875rem
  }

  .p-business-single-case__img {
    width: auto
  }

  .p-business-single-case__meta {
    width: auto;
    padding-left: 0;
    margin-top: 1.875rem
  }

  .p-business-single-case__meta__heading {
    font-size: 1.25rem;
    line-height: 1.4
  }

  .p-business-single-case__meta__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-business-single-inquiry {
    margin-top: 3.75rem
  }

  .p-business-single-relation {
    padding: 3.75rem 0;
    margin-top: 3.75rem
  }

  .p-business-single-relation__card {
    display: block;
    max-width: inherit
  }

  .p-business-single-relation__col {
    width: 100%;
    height: 5.8125rem;
    margin-top: 1.5rem;
    font-size: .9375rem;
    line-height: 1.68;
    letter-spacing: 0
  }

  .p-business-single-relation__col:first-of-type {
    margin-top: 1.875rem
  }

  .p-company-philosophy {
    margin-top: 3.75rem
  }

  .p-company-philosophy__flex {
    display: block
  }

  .p-company-philosophy__meta {
    width: auto;
    padding-right: 0
  }

  .p-company-philosophy__meta__subHeading {
    font-size: 1.25rem;
    line-height: 1.4
  }

  .p-company-philosophy__meta__read {
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-company-philosophy__meta__read+.p-company-philosophy__meta__read {
    margin-top: .625rem
  }

  .p-company-philosophy__img {
    width: auto;
    padding-top: 1.875rem
  }

  .p-company-overview {
    margin-top: 3.75rem
  }

  .p-company-overview__table {
    margin-top: .625rem
  }

  .p-company-overview__table table tr th, .p-company-overview__table table tr td {
    display: block
  }

  .p-company-overview__table table tr th p, .p-company-overview__table table tr td p {
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-company-overview__table table tr th {
    width: auto;
    padding-right: 0;
    padding-bottom: 0;
    border-bottom: none
  }

  .p-company-overview__table table tr td {
    width: auto;
    padding-top: .3125rem
  }

  .p-company-overview__table__name p {
    margin-top: .4375rem
  }

  .p-company-overview__table__name p a {
    padding-right: 1.375rem
  }

  .p-company-overview__table__name p a::before {
    width: 1.125rem;
    height: 1.25rem
  }

  .p-company-overview__table__member p:nth-of-type(odd) {
    width: 12.625rem;
    padding-right: .875rem
  }

  .p-company-overview__table__member p:nth-of-type(even) {
    width: calc(100% - 202px)
  }

  .p-company-overview__table__member p:last-of-type {
    text-align: left
  }

  .p-company-overview__table__historyCol {
    padding: .75rem 0;
    border-top: .0625rem solid #f2f2f2
  }

  .p-company-overview__table__historyCol:first-of-type {
    padding-top: .75rem;
    border-top: .0625rem solid #f2f2f2
  }

  .p-company-access {
    margin-top: 3.75rem
  }

  .p-company-access__table table tr th, .p-company-access__table table tr td {
    display: block
  }

  .p-company-access__table table tr th p, .p-company-access__table table tr td p {
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-company-access__table table tr th {
    width: auto
  }

  .p-company-access__table table tr td {
    width: auto;
    padding-top: .9375rem
  }

  .p-company-access__table__remark small {
    font-size: .625rem;
    line-height: 1.6
  }

  .p-company-access__table__map iframe {
    height: 10.375rem
  }

  .p-company-bottomEgg {
    margin-top: 3.75rem
  }

  .p-csr-task__read, .p-csr-task__read--right {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-csr-task__read--right {
    text-align: left
  }

  .p-csr-results {
    padding: 3.75rem 0
  }

  .p-csr-results__flex {
    display: block
  }

  .p-csr-results__heading {
    margin: 0 auto 1.5625rem
  }

  .p-csr-results__col {
    width: auto;
    margin-top: 2.5rem;
    margin-left: 0
  }

  .p-csr-results__col:nth-of-type(-n+2) {
    margin-top: 2.5rem
  }

  .p-csr-results__col:first-of-type {
    margin-top: 1.875rem
  }

  .p-csr-results__meta__heading {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center
  }

  .p-csr-results__meta__subHeading {
    line-height: 1.4;
    ont-size: 1.125rem
  }

  .p-csr-results__meta__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-csr-event {
    padding: 3.75rem 0
  }

  .p-csr-event__icons {
    margin-top: .625rem
  }

  .p-csr-event__box {
    display: block
  }

  .p-csr-event__boxImg {
    width: auto
  }

  .p-csr-event__boxMeta {
    width: auto;
    padding-left: 0;
    margin-top: .9375rem
  }

  .p-csr-event__slider-main .slick-arrow__prev, .p-csr-event__slider-main .slick-arrow__next, .p-csr-event__boxSlider .slick-arrow__prev, .p-csr-event__boxSlider .slick-arrow__next {
    transition: none
  }

  .p-csr-event__slider-main .slick-arrow__prev:hover, .p-csr-event__slider-main .slick-arrow__next:hover, .p-csr-event__boxSlider .slick-arrow__prev:hover, .p-csr-event__boxSlider .slick-arrow__next:hover {
    opacity: 1
  }

  .p-csr-site {
    padding-bottom: 1.25rem
  }

  .p-csr-site__list {
    display: block;
    margin: 2.25rem 0 0
  }

  .p-csr-site__item {
    width: 100%;
    margin: 0 0 2.5rem
  }

  .p-csr-site__meta__heading {
    font-size: 1rem;
    line-height: 1.6
  }

  .p-csr-site__meta__read {
    font-size: .875rem;
    line-height: 2
  }

  .p-csr-site__meta__detail {
    font-size: .875rem
  }

  .p-csr-detail {
    padding: 3.75rem 0
  }

  .p-csr-detail__subHeading {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4
  }

  .p-csr-detail__subHeading:last-of-type {
    margin-top: 2.5rem
  }

  .p-csr-detail__read {
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-csr-detail__box {
    display: block;
    padding: 1.875rem 1.25rem
  }

  .p-csr-detail__img {
    width: auto
  }

  .p-csr-detail__img::before {
    display: none
  }

  .p-csr-detail__meta {
    width: auto;
    padding-top: 1.5625rem;
    padding-left: 0
  }

  .p-csr-detail__meta__read {
    font-size: 1rem;
    line-height: 1.8
  }

  .p-csr-detail__policy {
    display: block;
    padding-top: .3125rem
  }

  .p-csr-detail__policyCol {
    width: auto;
    min-height: 5.1875rem;
    margin-top: .9375rem;
    margin-left: 0
  }

  .p-csr-detail__policyRead {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4
  }

  .p-csr-bottomEgg {
    margin-top: 0
  }

  .sp-order1 {
    order: 1
  }

  .sp-order2 {
    order: 2
  }

  .sp-order3 {
    order: 3
  }

  .p-privacy {
    padding-bottom: 3.75rem
  }

  .p-privacy__read, .p-privacy__read--right {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-privacy__read:first-of-type, .p-privacy__read--right:first-of-type {
    margin-top: 3.75rem
  }

  .p-privacy__heading {
    margin-top: 3.125rem;
    font-size: 1.5rem;
    line-height: 1.4
  }

  .p-privacy__number__heading {
    font-size: 1rem;
    line-height: 1.8
  }

  .p-privacy__number__li, .p-privacy__number__read {
    width: calc(100% - 10px);
    margin-left: .625rem;
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-privacy__number__li {
    margin-top: .625rem
  }

  .p-recruit-flow {
    padding: 3.75rem 0
  }

  .p-recruit-flow__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-recruit-flow__box {
    display: block;
    margin-top: 2.5rem
  }

  .p-recruit-flow__box:first-of-type {
    margin-top: 1.875rem
  }

  .p-recruit-flow__box__img {
    width: auto
  }

  .p-recruit-flow__box__img img {
    width: 7.5rem
  }

  .p-recruit-flow__box__meta {
    width: auto;
    padding: 0;
    margin-top: 1.375rem
  }

  .p-recruit-flow__box__metaHeading {
    font-size: 1.125rem;
    line-height: 1.4
  }

  .p-recruit-flow__box__metaSubHeading {
    font-size: .625rem;
    line-height: 1.3
  }

  .p-recruit-flow__box__metaRead {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-recruit-flow__movie {
    margin-top: 2.25rem
  }

  .p-recruit-flow__movie img {
    width: auto
  }

  .p-recruit-flow__movie iframe {
    width: 100%
  }

  .p-recruit-overview {
    margin-top: 3.75rem
  }

  .p-recruit-overview__table table tr th, .p-recruit-overview__table table tr td {
    display: block
  }

  .p-recruit-overview__table table tr th p, .p-recruit-overview__table table tr td p {
    font-size: .875rem;
    line-height: 1.7928571429
  }

  .p-recruit-overview__table table tr th {
    width: auto;
    padding-right: 0;
    padding-bottom: 0;
    border-bottom: none
  }

  .p-recruit-overview__table table tr td {
    width: auto;
    padding-top: .3125rem
  }

  .p-recruit-overview__table__time p:nth-of-type(odd) {
    width: 4.6875rem
  }

  .p-recruit-overview__table__time p:nth-of-type(even) {
    width: calc(100% - 75px)
  }

  .p-recruit-overview__inquiry {
    margin-top: 1.875rem
  }

  .p-recruit-results {
    margin: 3.75rem 0
  }

  .p-recruit-results__flex {
    display: block;
    padding-top: .4375rem
  }

  .p-recruit-results__col {
    width: auto;
    margin-top: 1.4375rem;
    margin-left: 0
  }

  .p-teamexpo2025 .c-mv-04__img.is-expo img {
    width: 9rem;
    height: auto;
    top: 5rem;
    left: -0.75rem
  }

  .p-teamexpo2025-archive__heading {
    margin-top: 2rem
  }

  .p-teamexpo2025-archive__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-teamexpo2025-event {
    padding: 3.75rem 0
  }

  .p-teamexpo2025-event__icons {
    margin-top: .625rem
  }

  .p-teamexpo2025-event__box {
    display: block
  }

  .p-teamexpo2025-event__boxImg {
    width: auto
  }

  .p-teamexpo2025-event__boxMeta {
    width: auto;
    padding-left: 0;
    margin-top: .9375rem
  }

  .p-teamexpo2025-event__slider-main .slick-arrow__prev, .p-teamexpo2025-event__slider-main .slick-arrow__next, .p-teamexpo2025-event__boxSlider .slick-arrow__prev, .p-teamexpo2025-event__boxSlider .slick-arrow__next {
    transition: none
  }

  .p-teamexpo2025-event__slider-main .slick-arrow__prev:hover, .p-teamexpo2025-event__slider-main .slick-arrow__next:hover, .p-teamexpo2025-event__boxSlider .slick-arrow__prev:hover, .p-teamexpo2025-event__boxSlider .slick-arrow__next:hover {
    opacity: 1
  }

  .p-teamexpo2025-site {
    padding-bottom: 1.25rem
  }

  .p-teamexpo2025-site__list {
    display: block;
    margin: 2.25rem 0 0
  }

  .p-teamexpo2025-site__item {
    width: 100%;
    margin: 0 0 2.5rem
  }

  .p-teamexpo2025-site__meta__heading {
    font-size: 1rem;
    line-height: 1.6
  }

  .p-teamexpo2025-site__meta__read {
    font-size: .875rem;
    line-height: 2
  }

  .p-teamexpo2025-site__meta__detail {
    font-size: .875rem
  }

  .p-teamexpo2025-bottomEgg {
    margin-top: 0
  }

  .p-top-notice {
    padding: 2.5rem 0
  }

  .p-top-notice__ul {
    padding-top: 0
  }

  .p-top-commonHeading, .p-top-commonHeading--gray {
    padding-top: 2.125rem
  }

  .p-top-commonHeading__en, .p-top-commonHeading__en--spMargin {
    font-size: 3.125rem;
    line-height: 1;
    top: -0.4375rem
  }

  .p-top-commonHeading__en--spMargin {
    top: 2.375rem
  }

  .p-top-commonHeading__ja {
    font-size: 1.1875rem;
    letter-spacing: .1em
  }

  .p-top-initiative {
    padding-bottom: .3125rem
  }

  .p-top-initiative__slider {
    padding-left: 1.875rem;
    margin-top: 3.375rem
  }

  .p-top-initiative__slider .slick-arrow__prev, .p-top-initiative__slider .slick-arrow__next {
    transition: none
  }

  .p-top-initiative__slider .slick-arrow__prev:hover, .p-top-initiative__slider .slick-arrow__next:hover {
    opacity: 1
  }

  .p-top-initiative__col__meta {
    padding: .875rem .8125rem .8125rem .8125rem
  }

  .p-top-initiative__col__heading {
    padding-right: 1.75rem;
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .p-top-initiative__col__read {
    padding-right: 3.25rem;
    font-size: .75rem;
    line-height: 1.6666666667
  }

  .p-top-initiative__col__read::before {
    width: 1.9375rem;
    height: .8125rem;
    right: .375rem;
    bottom: .625rem
  }

  .p-top-business {
    padding-bottom: 3.125rem
  }

  .p-top-business__box::before {
    display: none
  }

  .p-top-business__box__wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 4.6875rem;
    margin-top: 3.125rem
  }

  .p-top-business__box__img {
    width: calc(100% + 6.5px);
    left: -1.25rem
  }

  .p-top-business__box__meta {
    width: 17.625rem;
    height: auto;
    padding: .625rem .625rem 2.0625rem .625rem;
    margin: 0;
    top: auto;
    bottom: 0
  }

  .p-top-business__box__meta::before {
    width: 1.9375rem;
    height: .8125rem;
    right: .625rem;
    bottom: .625rem
  }

  .p-top-business__box__heading {
    font-size: 1.5rem;
    line-height: 1.4583333333
  }

  .p-top-business__box__read {
    margin-top: 1.75rem
  }

  .p-top-business__box:nth-of-type(even)::after {
    display: none
  }

  .p-top-business__box:nth-of-type(even) .p-top-business__box__img {
    right: 0
  }

  .p-top-business__box:nth-of-type(even) .p-top-business__box__meta {
    left: 0
  }

  .p-top-company__img {
    margin-top: 4.5rem
  }

  .p-top-company__img__button a {
    width: 17.5rem;
    height: auto;
    padding: 1.0625rem .9375rem;
    font-size: .9375rem;
    line-height: 1.2;
    bottom: -1.5625rem
  }

  .p-top-company__img__button a::before {
    width: 1.9375rem;
    height: .8125rem;
    right: .625rem
  }

  .p-top-egg {
    margin-top: 4.6875rem;
    padding: 3.125rem 1.25rem;
    background: url("/assets/images/page/top/egg_bg-sp.png") repeat-x center center/634.5px 238.5px, #e9f4f0
  }

  /* .p-top-egg__col:nth-of-type(even) {
    margin-left: 1.5rem
  } */

  .p-top-egg__col__meta {
    bottom: 1.5625rem
  }

  .p-top-egg__col__heading {
    font-size: 1.25rem;
    line-height: 1.25
  }

  .p-top-egg__col__read {
    padding-bottom: 1.75rem;
    margin-top: .625rem;
    font-size: .75rem;
    line-height: 1.4
  }

  .p-top-egg__col__read::before {
    width: 1.9375rem;
    height: .8125rem;
    left: calc(50% - 15.5px)
  }

  .p-top-news {
    padding-bottom: 3.5rem
  }

  .p-top-news__list {
    margin-top: 4.75rem
  }

  .p-top-news__link p a {
    font-size: .875rem;
    line-height: 1.2857142857
  }

  .p-using {
    padding-bottom: 3.75rem
  }

  .p-using__heading {
    margin-top: 3.75rem;
    font-size: 1.4375rem;
    line-height: 1.3913043478
  }

  .p-using__subHeading {
    font-size: 1.125rem;
    line-height: 1.4
  }

  .p-using__read {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-using__read a:hover {
    text-decoration: underline
  }

  .p-news-archive-column {
    display: block
  }

  .p-news-archive-sidebar {
    width: auto;
    padding-right: 0
  }

  .p-news-archive-sidebar__heading {
    display: flex;
    align-items: center;
    height: 3.75rem;
    padding: 0 3.4375rem 0 1.25rem;
    background: #28966e;
    cursor: pointer;
    color: #fff;
    position: relative
  }

  .p-news-archive-sidebar__heading::before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.25rem;
    margin: auto;
    background: url("/assets/images/post/news/sidebar_bg_arrow.png") no-repeat top left/100% 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 1.25rem;
    bottom: 0
  }

  .p-news-archive-sidebar__heading.is-active::before {
    transform: rotate(180deg)
  }

  .p-news-archive-sidebar__ul {
    display: none
  }

  .p-news-archive-sidebar__ul.is-active {
    display: block
  }

  .p-news-archive-sidebar__li {
    margin-top: 0;
    border-bottom: .0625rem solid #e9f4f0
  }

  .p-news-archive-sidebar__li a {
    padding: .75rem 1.4375rem;
    font-size: 1rem;
    line-height: 1.375;
    transition: none
  }

  .p-news-archive-sidebar__li a:hover {
    color: #333
  }

  .p-news-archive-main {
    width: auto;
    padding-top: 2.5rem
  }

  .p-news-archive-main__pagenavi {
    padding-top: 2.8125rem
  }

  .p-news-archive-main__pagenavi li span, .p-news-archive-main__pagenavi li a {
    transition: none
  }

  .p-news-archive-main__pagenavi li span:hover, .p-news-archive-main__pagenavi li a:hover {
    background: none;
    color: #28966e
  }

  .p-news-archive-main__pagenavi__prev, .p-news-archive-main__pagenavi__next {
    transition: none
  }

  .p-news-archive-main__pagenavi__prev:hover, .p-news-archive-main__pagenavi__next:hover {
    background-color: none
  }

  .p-news-archive-main__pagenavi__prev:hover {
    background-image: url("/assets/images/post/news/pagenavi_bg_prev.png")
  }

  .p-news-archive-main__pagenavi__next:hover {
    background-image: url("/assets/images/post/news/pagenavi_bg_next.png")
  }

  .p-news-archive-bottomEgg {
    margin-top: 3.75rem
  }

  .p-news-single {
    padding-bottom: 3.75rem
  }

  .p-news-single__heading {
    text-align: left
  }

  .p-news-single__thumbnail {
    width: calc(100% + 40px);
    margin-top: 3.125rem;
    margin-left: -1.25rem
  }

  .p-news-single__meta {
    padding-bottom: .625rem
  }

  .p-news-single__meta__time {
    width: 6.25rem;
    margin-top: .4375rem;
    font-size: .75rem;
    line-height: 1.6
  }

  .p-news-single__meta__tags {
    width: calc(100% - 100px)
  }

  .p-news-single__meta__li {
    margin: .375rem .375rem 0 0
  }

  .p-news-single__meta__li a {
    font-size: .625rem
  }

  .p-news-single__editor {
    padding-top: .875rem
  }

  .p-news-single__editor p {
    margin-top: 1.875rem;
    font-style: .875rem;
    line-height: 1.8
  }

  .p-news-single__editor p a:hover {
    text-decoration: underline
  }

  .p-news-single__button {
    margin-top: 2.5rem
  }

  .p-store-archive {
    padding-bottom: 3.75rem
  }

  .p-store-archive-tagMeta {
    margin-top: 2.1875rem
  }

  .p-store-archive-tagMeta__read {
    font-size: 1rem
  }

  .p-store-archive-tagMeta__tag {
    padding: .25rem .875rem;
    border-radius: .875rem
  }

  .p-store-archive-card {
    padding-top: 1.25rem
  }

  .p-store-archive-card__col {
    width: calc(50% - 11px);
    margin-top: 1.25rem;
    margin-left: 1.375rem
  }

  .p-store-archive-card__col:nth-of-type(3n+1) {
    margin-left: 1.375rem
  }

  .p-store-archive-card__col:nth-of-type(-n+3) {
    margin-top: 1.25rem
  }

  .p-store-archive-card__col:nth-of-type(odd) {
    margin-left: 0
  }

  .p-store-archive-card__meta {
    margin-top: 1rem
  }

  .p-store-archive-card__meta__heading a {
    font-size: 1rem;
    line-height: 1.4
  }

  .p-store-archive-card__meta__ul {
    padding-top: .25rem
  }

  .p-store-archive-card__meta__li {
    margin: .375rem .25rem 0 0
  }

  .p-store-archive-card__meta__li a {
    padding: .25rem .5rem;
    font-size: .625rem;
    line-height: 1.3
  }

  .p-store-archive-back {
    margin: 1.875rem 0 0 0
  }

  .p-store-archive-back a {
    font-size: .875rem;
    line-height: 1.4285714286
  }

  .p-store-archive-back a:hover {
    text-decoration: underline
  }

  .p-store-archive-inquiry {
    margin-top: 3.75rem
  }

  .p-store-single-detail {
    display: block
  }

  .p-store-single-detail__left {
    width: auto
  }

  .p-store-single-detail__slider .slick-arrow__prev, .p-store-single-detail__slider .slick-arrow__next {
    transition: none
  }

  .p-store-single-detail__slider .slick-arrow__prev:hover, .p-store-single-detail__slider .slick-arrow__next:hover {
    opacity: 1
  }

  .p-store-single-detail__tags {
    padding: .625rem 0 1rem 0
  }

  .p-store-single-detail__tags__li {
    margin: .375rem .375rem 0 0
  }

  .p-store-single-detail__right {
    width: auto;
    padding-left: 0;
    margin-top: 2.5rem
  }

  .p-store-single-detail__table {
    margin-top: 1.875rem
  }

  .p-store-single-detail__table tr:first-of-type th {
    padding-top: 0
  }

  .p-store-single-detail__table tr th, .p-store-single-detail__table tr td {
    display: block
  }

  .p-store-single-detail__table tr th p, .p-store-single-detail__table tr td p {
    font-size: .875rem;
    line-height: 1.8
  }

  .p-store-single-detail__table tr th {
    width: auto;
    padding-right: 0;
    padding-bottom: 0;
    border-bottom: none
  }

  .p-store-single-detail__table tr td {
    width: auto;
    padding-top: .625rem
  }

  .p-store-single-detail__button {
    margin-top: 2.5rem
  }

  .p-store-single-detail__button a {
    max-width: inherit
  }

  .p-store-single-charm {
    padding-top: 1.375rem
  }

  .p-store-single-charm__box {
    display: block;
    margin-top: 2.5rem
  }

  .p-store-single-charm__img {
    width: auto
  }

  .p-store-single-charm__meta {
    width: auto;
    padding-left: 0;
    margin-top: 1.875rem
  }

  .p-store-single-charm__meta__heading {
    font-size: 1.25rem;
    line-height: 1.4
  }

  .p-store-single-charm__meta__read {
    margin-top: 1.25rem;
    font-size: .875rem;
    line-height: 1.8
  }

  .p-store-single-inquiry {
    margin-top: 3.75rem
  }

  .p-store-single-bottomEgg {
    margin-top: 3.75rem
  }
}

@media screen and (max-width: 900px) {
  .l-nav__li, .l-nav__li--parent {
    margin-left: 2.8571428571vw
  }
}

@media screen and (max-width: 810px) {
  .l-nav__li>a, .l-nav__li--parent>a, .l-nav__li>p, .l-nav__li--parent>p {
    padding-bottom: 1.25rem;
    font-size: .75rem;
    line-height: 1.3333333333
  }
}

@media screen and (max-width: 810px)and (max-width: 767px) {
  .l-nav__li>a, .l-nav__li--parent>a, .l-nav__li>p, .l-nav__li--parent>p {
    padding: 0;
    font-size: 1rem;
    line-height: 1.375
  }
}

@media screen and (max-width: 1056px) {
  .p-business-archive__box__img {
    width: 64.68vw
  }

  .p-business-archive__box__meta {
    width: 42.71vw
  }
}

@media screen and (max-width: 1056px)and (max-width: 767px) {
  .p-business-archive__box__img {
    width: calc(100% + 6.5px);
    left: -1.25rem
  }

  .p-business-archive__box__meta {
    width: 100%;
    height: auto;
    margin-top: 1.875rem;
    position: static
  }
}

@media screen and (max-width: 940px) {
  .p-business-archive__box__read .is-940 {
    display: none
  }
}

@media screen and (max-width: 360px) {
  .p-top-commonHeading__ja {
    font-size: 4.2666666667vw
  }
}
/* みらいたうんロゴ */
.miraitown_logo{  
    margin-left: 1.2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: .875rem 0 1rem 0;
    line-height: 1.4285714286;
    letter-spacing: .15em;
  }
  @media screen and (max-width: 767px) {
    .miraitown_logo{
      margin: 3.125rem 0 0 !important;
      padding: 0 !important;
    }
  }
  /* 受賞歴 */
  .p-award{
    margin-top: 2.1875rem;
  }
  .p-award_02{
    margin-top: 5rem;
  }
  .p-award_flex {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-award_flex::after{
    content:"";
    display: block;
    width: 28%;
  }
  .p-award_col {
    width: 28%;
  }
  .p-award_col_mg33{
    margin-top:2.0625 rem;
  }
  .p-award_img {
    padding: 60px;
    object-fit: scale-down;
  }
  .p-award_title{
    margin-top: 0.625rem;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.75;
  }
  .p-award_read{
    margin-top: 0.625rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
  }
  @media screen and (max-width: 767px) {
    .p-award_02{
        margin-top: 3.75rem;
      }
    .p-award_col {
      width: 100%;
      margin-top: 1.25rem;
    }
    .p-award_col_mg33{
      margin-top:0 rem;
    }
    .p-award_col {
      margin-top: 1.25rem !important;
    }
  }
  /* 企業情報 受賞歴 */
  .p-company-award{
    margin-top: 5rem;
  }
  .p-company-detail__button {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 22.6875rem;
    height: 6.25rem;
    padding: 0 4.375rem 0 1.25rem;
    background: #fff;
    box-shadow: 1.25rem 1.25rem 1.5625rem rgba(24, 93, 68, .1);
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .1em;
    position: relative
  }
  
  .p-company-detail__button::before {
    content: "";
    display: block;
    width: 2.5625rem;
    height: 1.09375rem;
    margin: auto;
    background: url("/assets/images/common/common_icon_arrow-red.png") no-repeat top left/100% 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 1.25rem;
    bottom: 0;
    transition: all .3s ease
  }
  
  .p-company-detail__button:hover::before {
    right: .625rem
  }
  @media screen and (max-width: 767px) {
    .p-company-award{
      margin-top: 3.75rem;
    }
    .p-company-detail__button {
      margin: 0 auto;
      width: 17.5rem;
      height: auto;
      padding: 1.0625rem .9375rem;
      font-size: .9375rem;
      line-height: 1.2;
      letter-spacing: .1em;
    }
  
    .p-company-detail__button::before {
      width: 1.8125rem;
      height: .8125rem;
      transition: none
    }
  
    .p-company-detail__button:hover::before {
      right: 1.25rem
    }
  }
  /* 採用情報 受賞歴 */
  .p-csr-miraitown{
    padding-top: 5rem;
  }
  .miraitown_banner_pcon{
    margin-top : 3.125rem;
    text-align: center;
  }
  .miraitown_banner_spon{
    display: none;
  }
  @media screen and (max-width: 767px) {
    .p-csr-miraitown{
      padding-top: 3.75rem;
    }
    .miraitown_banner_pcon{
      display: none;
      }
      .miraitown_banner_spon{
        margin-top: 3.125rem;
        display: block;
      }
    }