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

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

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

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

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*-----------------------------------
base
-----------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Abel", sans-serif;
  font-weight: normal;
}

body {
  background-color: #fff;
}

article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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

img {
  max-width: 100%;
  max-height: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.mt40 {
  margin-top: 40px;
}

.js-block {
  display: block;
}

.js-none {
  display: none;
}

/*-----------------------------------
layout
-----------------------------------*/
#wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

#footer {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 70px 0 20px 0;
}

#footer .copyright {
  text-align: center;
  font-size: 12px;
}

#footer .logo {
  width: 194px;
  margin: 0 auto;
}

#footer img {
  width: 100%;
  margin-bottom: 30px;
}

#footer_sns {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 0 0 70px 0;
}

#footer_sns .logo {
  width: 200px;
  align: center;
  margin: 0 auto;
}

#footer_sns img {
  width: 32px;
  align: center;
  margin: 0px 10px;
}

@media screen and (max-width: 1000px) {
  #footer {
    padding: 40px 0 20px 0;
  }
  #footer .copyright {
    text-align: center;
    font-size: 9px;
  }
  #footer .logo {
    width: 129px;
    margin: 0 auto;
  }
  #footer img {
    margin-bottom: 15px;
  }
  #footer_sns {
    padding: 0 0 40px 0;
  }
  #footer_sns .logo {
    width: 129px;
    align: center;
    margin: 0 auto;
  }
  #footer_sns img {
    width: 20px;
    align: center;
    margin: 0px 10px;
  }
}
/*-----------------------------------
common
-----------------------------------*/
.right_inner h2 {
  font-family: "Abel", sans-serif;
  font-size: 48px;
  color: #009358;
  text-align: center;
}

.right_inner h3 {
  font-family: "Abel", sans-serif;
  font-size: 34px;
  color: #009358;
  text-align: center;
  margin: 50px 0 20px 0;
}

.right_inner h3.jp {
  font-size: 28px;
}

.message_text {
  font-size: 13px;
  color: #040000;
  line-height: 2.5;
}

.border {
  width: 28px;
  height: 2px;
  margin: 10px auto 50px auto;
  background-color: #009358;
}

.tl_c {
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .pc_co {
    display: block;
  }
  .sp_co {
    display: none;
  }
  #sp_menu_container {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .pc_co {
    display: none;
  }
  .sp_co {
    display: block;
  }
  .right_inner h2 {
    font-size: 32px;
  }
  .right_inner h3,
.right_inner h3.jp {
    font-size: 24px;
  }
  .border {
    width: 14px;
    height: 2px;
    margin: 5px auto 25px auto;
    background-color: #009358;
  }
  #sp_menu_container {
    display: block;
    width: 100%;
    height: auto;
    background-color: #009358;
  }
  #sp_menu_container ul {
    width: 100%;
    height: auto;
    border-top: 1px solid #fff;
  }
  #sp_menu_container li {
    width: 50%;
    height: 46px;
    float: left;
    border-bottom: 1px solid #fff;
  }
  #sp_menu_container li:nth-child(even) {
    border-right: 1px solid #fff;
  }
  #sp_menu_container a {
    position: relative;
    font-family: "Abel", sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
    display: block;
    padding: 12px 0;
    margin: 0px 10px;
    letter-spacing: 1px;
    background: url(../img/menu_icon.png) no-repeat center right;
    background-size: 10px 4px;
    -moz-background-size: 10px 4px;
  }
  #sp_menu_container li a span {
    font-size: 12px;
    display: block;
    margin-top: 2px;
  }
}
@media screen and (max-width: 320px) {
  #sp_menu_container li:nth-child(3) a span {
    margin-top: -7px;
  }
}
/*-----------------------------------
style
-----------------------------------*/
#logo_img {
  display: none;
}

/* logo */
.path01 {
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}

.path01_anime {
  animation: bganime 3s ease-in alternate forwards;
  -webkit-animation: bganime 3s ease-in 0s forwards;
}

@keyframes bganime {
  0% {
    stroke-dashoffset: 3000;
  }
  80% {
    fill: #009358;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
@-webkit-keyframes bganime {
  0% {
    stroke-dashoffset: 3000;
  }
  80% {
    fill: #009358;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}
.path02_p,
.path03_n {
  stroke: #fff;
  fill: #009358;
  stroke-width: 2;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}

.path0203_anime {
  animation: logo 4s ease-in alternate forwards;
  -webkit-animation: logo 4s ease-in 0s forwards;
}

@keyframes logo {
  0% {
    stroke-dashoffset: 3000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes logo {
  0% {
    stroke-dashoffset: 3000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.c_name {
  stroke: #009358;
  fill: #009358;
  stroke-width: 1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}

.c_name_anime {
  animation: company 4s ease-in alternate forwards;
  -webkit-animation: company 4s ease-in 0s forwards;
}

@keyframes company {
  90% {
    fill: #009358;
  }
  100% {
    fill: #fff;
  }
}
@-webkit-keyframes company {
  90% {
    fill: #009358;
  }
  100% {
    fill: #fff;
  }
}
#top_container {
  width: 100%;
  height: 100vh;
  background-color: #009358;
  position: relative;
}

.logo_container {
  width: 340px;
  height: 408px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.logo_container img {
  width: 100%;
}

.logo_container_min {
  width: 400px;
  height: 515px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.top_lang_nav > ul {
  display: flex;
  justify-content: center;
  font-size: 30px;
}
.top_lang_nav > ul > li:first-child:after {
  content: "/";
  color: #fff;
  margin: 0 1rem;
}
.top_lang_nav > ul a {
  color: #fff;
  padding-bottom: 10px;
  font-family: Abel, sans-serif;
  font-weight: lighter;
}
.top_lang_nav > ul a:hover, .top_lang_nav > ul a :visited {
  color: #fff;
  text-decoration: none;
}
.top_lang_nav > ul a.current {
  border-bottom: 2px solid #fff;
}

.arrow,
.arrow_h {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
  z-index: 999;
}

.arrow_h {
  width: 100vw;
}

#section_arrow {
  width: 62px;
  left: 50%;
  margin-left: -31px;
  text-align: center;
  position: absolute;
  z-index: 999;
}

#section_arrow.follow {
  position: fixed;
  bottom: 30px;
}

#scroll_section {
  width: 100%;
  height: auto;
  position: relative;
}

#left_container {
  width: 50%;
  height: 100vh;
  background-color: #009358;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
}

.left_lang_nav > ul {
  display: flex;
  justify-content: center;
  font-size: 20px;
}
.left_lang_nav > ul > li:first-child:after {
  content: "/";
  color: #fff;
  margin: 0 1rem;
}
.left_lang_nav > ul a {
  color: #fff;
  padding-bottom: 10px;
  font-family: Abel, sans-serif;
  font-weight: lighter;
}
.left_lang_nav > ul a:hover,
.left_lang_nav > ul a :visited {
  color: #fff;
  text-decoration: none;
}
.left_lang_nav > ul a.current {
  border-bottom: 2px solid #fff;
}

.page_left_container {
  position: fixed !important;
}

#left_container.follow {
  position: fixed;
  bottom: 0;
  left: 0;
}

#right_container {
  width: 50%;
  float: right;
  height: auto;
}

.right_inner {
  width: 100%;
}

#aboutus {
  height: 100vh;
  padding: 0px;
  position: relative;
}

#aboutus_inner {
  position: absolute;
  top: 50%;
  margin-top: -230px;
}

#profile {
  position: relative;
  padding: 50px 0px 150px;
}

.page_contents {
  position: static !important;
  top: auto !important;
  margin-top: 0px !important;
}

#recruit {
  /* padding: 0px;*/
  position: relative;
  padding: 50px 0px 150px;
}

#recruit_inner .message_text {
  text-align: center;
  margin-bottom: 60px;
}

#product {
  padding: 0px;
  position: relative;
  padding: 50px 0px 150px;
}

#product_inner {
  width: 450px;
  margin: 0 auto;
}

#product .product_read {
  font-size: 30px;
  margin: 45px 0px 30px;
}

.products_box {
  margin-bottom: 30px;
}

.products_box h4 {
  text-align: center;
  font-family: "Abel", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.products_box ul li {
  font-size: 13px;
  line-height: 100%;
  color: #040000;
  margin-bottom: 10px;
}
.products_box ul li .child-service-menu {
  margin: 1.5rem 0;
  padding-left: 1rem;
}
.products_box ul li .child-service-menu li {
  border-top: 1px solid #eee;
  margin: 0;
}
.products_box ul li .child-service-menu li:last-child {
  border-bottom: 1px solid #eee;
}
.products_box ul li .child-service-menu li a {
  padding: 1rem 2rem 1rem 0;
  text-decoration: none;
  position: relative;
  display: block;
}
.products_box ul li .child-service-menu li a:hover h5 {
  color: #009358;
  text-decoration: underline;
}
.products_box ul li .child-service-menu li a:before, .products_box ul li .child-service-menu li a:after {
  content: "";
  position: absolute;
  background: #009358;
}
.products_box ul li .child-service-menu li a:before {
  width: 20px;
  height: 1px;
  top: calc(50% + 2px);
  right: 0;
}
.products_box ul li .child-service-menu li a:after {
  width: 1.5px;
  height: 5px;
  bottom: calc(50% - 3px);
  right: -1px;
  transform: skewX(60deg);
  transform-origin: right bottom;
}
.products_box ul li .child-service-menu li a h5 {
  font-size: 16px;
  font-weight: bold;
  color: #040000;
  margin-bottom: 0.4rem;
  font-family: "Abel", sans-serif;
}
.products_box ul li .child-service-menu li a p {
  font-size: 11px;
  line-height: 1.8;
  color: #505050;
  margin: 0;
}
.products_box ul li .child-service-menu-en li {
  padding: 1rem 2rem 1rem 0;
}
.products_box ul li .child-service-menu-en li h5 {
  font-size: 16px;
  font-weight: 700;
  color: #040000;
  margin-bottom: 0.4rem;
  font-family: Abel, sans-serif;
}

.products_box ul li a {
  color: #009358;
  text-decoration: underline;
}

#demo {
  width: 495px;
  position: relative;
  padding: 120px 0px 150px;
}

.demo_box {
  margin-bottom: 30px;
}

.demo_box h4 {
  text-align: center;
  font-family: "Abel", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.demo_box ul li {
  text-align: center;
  font-size: 13px;
  line-height: 100%;
  color: #040000;
  margin-bottom: 10px;
}

.demo_box ul li img {
  width: 495px;
}

.demo_box ul li a {
  color: #009358;
  text-decoration: underline;
}

#projects {
  /* padding: 0px;*/
  position: relative;
  padding: 125px 0px 150px;
}

#projects_inner {
  width: 450px;
}

.projects_text {
  text-align: center;
  font-size: 13px;
}

#projects_ex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

#projects_ex li {
  width: 200px;
  margin: 50px 5px 0;
  font-size: 16px;
}

#projects_ex h4 {
  text-align: center;
  font-size: 15px;
  margin-bottom: 8px;
  background-color: #009358;
  padding: 3px;
  border-radius: 4px;
}

#projects_ex a {
  color: #fff;
}

#projects_ex li:hover {
  opacity: 0.7;
}

p.projects_ex_cap {
  font-size: 13px;
  line-height: 160%;
  color: #040000;
  height: 50px;
}

.projects_ex_img img {
  width: 200px;
}

.projects_border {
  height: 1px;
  margin: 30px auto 60px;
  background-color: #009358;
}

#projects_contents {
  padding-bottom: 40px;
}

.projects_example_box {
  padding-bottom: 30px;
}

.projects_example_box h4 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 22px;
}

.projects_example_box p {
  font-size: 13px;
  line-height: 200%;
  color: #040000;
  margin-bottom: 10px;
}

.projects_example_box dl {
  font-size: 13px;
  margin-top: 20px;
}

.projects_example_box dt {
  color: #009358;
  font-weight: bold;
  margin-bottom: 5px;
}

.projects_example_box dd {
  margin-left: 13px;
}

.projects_img_box {
  padding-top: 5px;
}

.projects_img_box img {
  width: 424px;
}

#news {
  width: 460px;
  padding: 0px;
  position: relative;
  padding: 125px 0px 150px;
}

#news_body dl {
  height: auto;
  font-size: 13px;
  line-height: 2;
  color: #040000;
}

#news_body dl dt {
  clear: both;
  margin-bottom: 10px;
}

#news_body dl dd {
  float: left;
  margin-bottom: 20px;
}

#news_body dl dd a {
  color: #009358;
  text-decoration: underline;
}

#news_body dl dd a:hover {
  color: #009358;
  text-decoration: none;
}

#news_body div {
  display: none;
}

#news_body div:first-child {
  display: block;
}

#news_body div.news_box > .news_box_inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.news_pagenation {
  text-align: center;
}

#js-news_prev {
  float: left;
  text-align: center;
  border: 1px solid #009358;
  border-radius: 4px;
  width: 70px;
}

#js-news_next {
  float: right;
  text-align: center;
  border: 1px solid #009358;
  border-radius: 4px;
  width: 70px;
}

#js-news_prev a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d9";
  font-weight: 900;
}

#js-news_next a::after {
  font-family: "Font Awesome 5 Free";
  content: " \f0da";
  font-weight: 900;
}

#js-news_prev a,
#js-news_next a {
  display: inline-block;
  color: #009358;
  font-size: 12px;
  margin: 5px auto;
}

#blog {
  width: 460px;
  padding: 0px;
  position: relative;
  padding: 125px 0px 150px;
}

#blog_body dl {
  height: auto;
  font-size: 13px;
  line-height: 2;
  color: #040000;
}

#blog_body dl dt {
  clear: both;
  margin-bottom: 10px;
}

#blog_body dl dd {
  float: left;
  margin-bottom: 20px;
}

#blog_body dl dd a {
  color: #009358;
  text-decoration: underline;
}

#blog_body dl dd a:hover {
  color: #009358;
  text-decoration: none;
}

#blog_body div {
  display: none;
}

#blog_body div:first-child {
  display: block;
}

#blog_body div.blog_box > .blog_box_inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.blog_pagenation {
  text-align: center;
}

#js-blog_prev {
  float: left;
  text-align: center;
  border: 1px solid #009358;
  border-radius: 4px;
  width: 70px;
}

#js-blog_next {
  float: right;
  text-align: center;
  border: 1px solid #009358;
  border-radius: 4px;
  width: 70px;
}

#js-blog_prev a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d9";
  font-weight: 900;
}

#js-blog_next a::after {
  font-family: "Font Awesome 5 Free";
  content: " \f0da";
  font-weight: 900;
}

#js-blog_prev a,
#js-blog_next a {
  display: inline-block;
  color: #009358;
  font-size: 12px;
  margin: 5px auto;
}

#access {
  height: auto;
  padding: 0px;
  position: relative;
}

#access .inner_article {
  padding-bottom: 2rem;
}

#access .l_access_content {
  text-align: center;
}

#access .access_content {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

#access .access_content .address {
  font-size: 13px;
  line-height: 1.75;
  color: #040000;
}

#access .access_content .link {
  color: #009358;
  font-size: 13px;
  text-decoration: underline;
}

#map {
  width: 100%;
  height: 640px;
  z-index: 1;
}

.inner_article {
  width: 100%;
  max-width: 482px;
  height: auto;
  padding: 144px 16px;
  margin: 0 auto;
}

#profile_list_container {
  width: 100%;
  height: auto;
}

#profile_list_container .list_item li a {
  color: #009358;
  text-decoration: underline;
}

.list_item {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.list_item .left {
  float: left;
  width: 80px;
  height: auto;
  font-size: 13px;
  color: #040000;
}

.list_item .right {
  float: right;
  width: calc(100% - 80px);
  height: auto;
  padding-left: 20px;
  box-sizing: border-box;
  font-size: 13px;
  color: #040000;
}

#recruit .list_item .right p {
  margin-bottom: 5px;
}

#recruit .list_item .right p a {
  color: #009358;
  text-decoration: underline;
}

#recruit .list_item .right p a:hover {
  text-decoration: none;
}

#recruit #recruit .list_item .right span {
  display: inline-block;
}

span.tel_link {
  display: inline-block;
}

.lang_nav {
  color: #fff;
}

#nav_container {
  text-align: center;
  margin-top: 40px;
}

#nav_container ul {
  display: inline-block;
}

#nav_container ul:not(last-child) {
  padding-bottom: 20px;
}

#nav_container li {
  float: left;
  margin-right: 25px;
}

#nav_container li:last-child {
  margin-right: 0;
}

#nav_container a {
  font-family: "Abel", sans-serif;
  font-size: 24px;
  font-weight: lighter;
  color: #fff;
  padding-bottom: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#nav_container a.active {
  border-bottom: 2px solid #fff;
}

#back_top {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 50;
}

.page_top_container {
  display: none;
}

@media screen and (max-width: 1000px) {
  #top_container {
    height: auto;
    padding: 30px 0;
  }
  .page_top_container {
    display: block;
  }
  .top_lang_nav > ul {
    font-size: 20px;
  }
  #right_container .page-article {
    padding: 40px 0px !important;
  }
  .logo_container {
    width: 170px;
    height: auto;
    position: static;
    margin: 0 auto;
  }
  .logo_container svg {
    width: 180px;
    height: 216px;
  }
  #right_container {
    width: 100%;
    float: none;
    background: #fff;
  }
  .right_inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: auto;
  }
  .inner_article {
    width: 100%;
    height: auto;
    padding: 40px 0 40px 0;
    margin: 0 auto;
  }
  #aboutus {
    height: auto;
    padding: 50px 0px;
    margin-bottom: 0px;
  }
  #profile {
    height: auto;
    padding: 0px 0px 50px 0px;
    margin-bottom: 0px;
  }
  #product {
    width: auto;
    height: auto;
    padding: 0px 0px 50px 0px;
    margin-bottom: 0px;
  }
  #demo {
    width: auto;
    height: auto;
    padding: 0px 0px 50px 0px;
    margin-bottom: 0px;
  }
  #projects {
    width: auto;
    height: auto;
    padding: 0px 0px 50px 0px;
    margin-bottom: 0px;
  }
  #news {
    width: auto;
    height: auto;
    padding: 50px 0px;
    margin-bottom: 0px;
  }
  #blog {
    width: auto;
    height: auto;
    padding: 50px 0px;
    margin-bottom: 0px;
  }
  #recruit {
    height: auto;
    padding: 0px 0px 50px 0px;
    margin-bottom: 0px;
  }
  #access {
    height: auto;
    padding: 0px 0px 40px 0px;
  }
  #aboutus_inner,
#news_inner,
#blog_inner,
#product_inner,
#demo_inner,
#projects_inner,
#profile_inner,
#recruit_inner {
    width: 100%;
    position: static;
    top: 0;
    margin-top: 0;
  }
  #product .product_read {
    margin: 5px 0px 15px;
  }
  .demo_box ul li {
    line-height: 1.6;
  }
  .demo_box ul li img {
    max-width: 280px;
  }
  .projects_box ul li {
    line-height: 1.6;
  }
  ul#projects_ex {
    display: flex;
    justify-content: center;
  }
  .list_item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .list_item .left {
    width: 80px;
  }
  .list_item .right {
    width: calc(100% - 80px);
    padding-left: 10px;
  }
  .tel_link {
    color: #040000;
    text-decoration: none;
    display: inline-block;
  }
  span.tel_link {
    display: none;
  }
  .list_item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .list_item .left {
    width: 80px;
  }
  .list_item .right {
    width: calc(100% - 80px);
    padding-left: 10px;
  }
  .tel_link {
    color: #040000;
    text-decoration: none;
    display: inline-block;
  }
  span.tel_link {
    display: none;
  }
  #map {
    width: calc(100% + 40px);
    margin: 0 -20px;
    height: 240px;
    z-index: 1;
  }
  #back_top {
    bottom: 20px;
    right: 10px;
  }
  #back_top img {
    width: 40px;
  }
  .projects_img_box img {
    width: 100%;
  }
}
/* page */
/* profile */
.page-profile {
  height: auto !important;
  padding: 70px 0px !important;
}

#page-profile_contents {
  padding-bottom: 20px;
}

.page-profile_box {
  padding-top: 20px;
  margin-bottom: 30px;
}

.page-profile_box h3 {
  text-align: left;
  font-weight: bold;
  font-size: 13px;
  color: #040000;
  line-height: 100%;
  margin: 0px 0px 15px 0px;
}

.page-profile_box__message p {
  font-size: 13px;
  line-height: 1.8;
}

.back_index_link {
  text-align: right;
}

.back_index_link a {
  color: #009358;
  text-decoration: underline;
  font-size: 13px;
}

.lh-middle {
  line-height: 1.8 !important;
}

/* system */
.page-system {
  height: auto !important;
  padding: 70px 0px !important;
}

#system_n_contents > h3 {
  text-align: center;
  margin: 0px 0px 55px 0px;
}

#system_n_contents > h3 img {
  width: 450px;
}

#system_n_info {
  padding-bottom: 30px;
}

.system_n_box {
  margin-bottom: 55px;
  font-size: 13px;
}

.system_n_box h4 {
  font-family: "Abel", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 100%;
  margin-bottom: 20px;
}

.system_n_box dd {
  text-indent: -1em;
}

.system_n_box p {
  text-align: center;
}

.system_n_box img {
  width: 400px;
}

p.btn_img_modal {
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}

p.btn_img_modal a {
  text-decoration: underline;
  color: #009358;
}

@media screen and (max-width: 1000px) {
  #system_n_contents > h3 {
    text-align: center;
    margin: 0px 0px 35px 0px;
  }
  #system_n_contents > h3 img {
    width: 100%;
  }
  #system_n_info {
    padding-bottom: 15px;
  }
  .system_n_box {
    margin-bottom: 30px;
  }
  .system_n_box h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .system_n_box img {
    width: 100%;
  }
}
.mg_bt20 {
  margin-bottom: 20px !important;
}

body.template-demo-n-monitoring-iot-index {
  background-color: #f5f5f5;
}
body.template-demo-n-monitoring-iot-index .box {
  position: relative;
  background: linear-gradient(135deg, transparent 0, #ffffff 0) top left, linear-gradient(225deg, transparent 0, #ffffff 0) top right, linear-gradient(315deg, transparent 15px, #ffffff 0) bottom right, linear-gradient(45deg, transparent 0, #ffffff 0) bottom left;
  width: calc(33.3333333333% - 10px);
  height: 320px;
  margin: 15px 0 0 0;
  border: 1px solid #ddd;
}
body.template-demo-n-monitoring-iot-index .header {
  padding: 15px;
  display: flex;
}
body.template-demo-n-monitoring-iot-index .icon-area {
  padding-top: 2px;
}
body.template-demo-n-monitoring-iot-index .label-area {
  margin-left: 10px;
}
body.template-demo-n-monitoring-iot-index .label {
  color: #8BA2C9;
  font-size: 14px;
  font-weight: bold;
}
body.template-demo-n-monitoring-iot-index .description {
  font-size: 12px;
  color: #8BA2C9;
}
body.template-demo-n-monitoring-iot-index .current-temp {
  margin-top: 60px;
  padding: 0 20px;
}
body.template-demo-n-monitoring-iot-index .current-request-count {
  margin-top: 80px;
  padding: 0 20px;
}
body.template-demo-n-monitoring-iot-index .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  color: #6fc688;
  opacity: 0.85;
  /* color: #6FADC6; */
}
body.template-demo-n-monitoring-iot-index .icon-bulb {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-droplet {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-smile {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-thermometer-quarter {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-person2 {
  width: 0.5em;
  font-size: 100px;
  color: #ddd;
  margin: 0 10px;
}
body.template-demo-n-monitoring-iot-index .icon-person2.active {
  -webkit-animation: quake 0.4s linear infinite;
          animation: quake 0.4s linear infinite;
  color: #009358;
}
body.template-demo-n-monitoring-iot-index .icon-volume-medium {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-leaf {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .icon-mic {
  font-size: 36px;
}
body.template-demo-n-monitoring-iot-index .person-area {
  text-align: center;
  padding: 50px 0 0;
}
body.template-demo-n-monitoring-iot-index .container-sensors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.template-demo-n-monitoring-iot-index .page-top {
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.5);
  height: 66px;
  width: 100%;
  background-color: #1C2B36;
  padding: 0 20px;
}
body.template-demo-n-monitoring-iot-index .logo {
  font-size: 16px;
  line-height: 60px;
  color: white;
  display: inline-block;
}
body.template-demo-n-monitoring-iot-index .logo .nsum {
  color: #209e91;
  font-weight: bold;
  font-size: 20px;
}
body.template-demo-n-monitoring-iot-index .h1-tile {
  color: #666;
  font-weight: bold;
  font-size: 20px;
  opacity: 0.9;
  margin-top: 10px;
}
body.template-demo-n-monitoring-iot-index .h1-description {
  color: #777;
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center;
}
body.template-demo-n-monitoring-iot-index .wrapper {
  padding: 20px;
}
body.template-demo-n-monitoring-iot-index .profile {
  float: right;
  line-height: 66px;
  font-size: 14px;
  color: white;
  opacity: 0.9;
}
body.template-demo-n-monitoring-iot-index .top-link {
  text-decoration: underline;
  font-size: 13px;
  text-align: right;
  margin-top: 20px;
}
body.template-demo-n-monitoring-iot-index .top-link a {
  color: #009358;
}
body.template-demo-n-monitoring-iot-index .detecting {
  color: #ddd;
  margin-top: 15px;
}
body.template-demo-n-monitoring-iot-index .detecting.active {
  color: #009358;
}
@-webkit-keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes quake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(4px, 4px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 4px) rotateZ(0deg);
  }
  75% {
    transform: translate(4px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@keyframes quake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(4px, 4px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 4px) rotateZ(0deg);
  }
  75% {
    transform: translate(4px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
body.template-demo-n-monitoring-iot-index .realtime-chart {
  height: 250px;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  body.template-demo-n-monitoring-iot-index .box {
    width: 100%;
  }
  body.template-demo-n-monitoring-iot-index .page-top {
    padding: 0 20px;
  }
  body.template-demo-n-monitoring-iot-index .wrapper {
    padding: 20px;
  }
  body.template-demo-n-monitoring-iot-index .profile {
    display: none;
  }
}

body.template-system-index .demo-btn {
  display: inline-block;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  border-radius: 0.25rem;
  color: #009358;
  background-color: transparent;
  border-color: #009358;
}
body.template-system-index .demo-btn:hover {
  color: #fff;
  background-color: #009358;
  border-color: #009358;
}
body.template-system-index #recruit_inner .message_text {
  text-align: center;
  margin-bottom: 60px;
}
body.template-system-index #recruit_content .c-additional-footer-navigation {
  border-top: none;
  padding: 0 2.5rem 4rem;
  max-width: 640px;
  margin: 0 auto;
}
body.template-system-index #recruit_content a {
  color: #009358;
}
body.template-system-index #recruit_content a:hover {
  text-decoration: underline;
}
body.template-system-index #recruit_content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #009358;
  border-radius: 4px;
  background: #fff;
  color: #009358;
  line-height: 1;
  padding: 0 1.5rem;
  position: relative;
  height: 48px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.2s;
}
body.template-system-index #recruit_content .btn:hover {
  text-decoration: none;
  background: rgba(0, 147, 88, 0.1);
}
body.template-system-index #recruit_content .btn.size-l {
  height: 56px;
  font-size: 15px;
}
body.template-system-index #recruit_content .btn.primary {
  color: #fff;
  background: #009358;
}
body.template-system-index #recruit_content .btn.primary:hover {
  background: #006039;
}
body.template-system-index #recruit_content .note_text {
  font-size: 12px;
  color: #555;
  line-height: 150%;
}
body.template-system-index #recruit_content .description_text {
  font-size: 13px;
  line-height: 175%;
  color: #434345;
}
body.template-system-index #recruit_content .page_header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
body.template-system-index #recruit_content .page_header:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}
body.template-system-index #recruit_content .page_header_description {
  font-size: 14px;
  color: #333;
  line-height: 200%;
  text-align: center;
  margin-bottom: 3rem;
}
body.template-system-index #recruit_content .recruit_vision_item {
  padding: 3rem 0;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  text-align: center;
}
body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title .ornament {
  color: #009358;
  font-size: 14px;
}
body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title .main {
  font-size: 22px;
  color: #2A2B2C;
  line-height: 140%;
}
body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_description {
  font-size: 13px;
  line-height: 200%;
  color: #444;
}
body.template-system-index #recruit_content .inner_article {
  max-width: 640px;
  padding: 4rem 2.5rem;
}
body.template-system-index #recruit_content .inner_article_title {
  color: #009358;
  font-size: 28px;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
}
body.template-system-index #recruit_content .inner_article_title:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}
body.template-system-index #recruit_content .inner_article_footer {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
body.template-system-index #recruit_content .inner_article_footer .btn {
  min-width: 144px;
}
body.template-system-index #recruit_content .inner_article_footer a:hover {
  text-decoration: none;
}
body.template-system-index #recruit_content .speaker_deck_note_text {
  padding-top: 1rem;
}
body.template-system-index #recruit_content .inner_article_section {
  padding: 4rem 0 0;
}
body.template-system-index #recruit_content .inner_article_section .inner_article_section_title {
  font-size: 22px;
  color: #2A2B2C;
  line-height: 150%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
body.template-system-index #recruit_content .inner_article_section .inner_article_section_title:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: 0;
  bottom: 0;
}
body.template-system-index #recruit_content .inner_article_section_child {
  margin-bottom: 3rem;
}
body.template-system-index #recruit_content .inner_article_section_child .inner_article_section_child_title {
  font-size: 18px;
  color: #2A2B2C;
  line-height: 150%;
  margin-bottom: 1.25rem;
}
body.template-system-index #recruit_content .inner_article_section_child .thumb {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
}
body.template-system-index #recruit_content .inner_article_section_child .thumb img {
  display: block;
  width: 100%;
  height: auto;
}
body.template-system-index #recruit_content .product_item {
  display: flex;
  padding: 0 0 2rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
body.template-system-index #recruit_content .product_item .thumb {
  width: 200px;
  height: auto;
  margin-left: -40px;
}
body.template-system-index #recruit_content .product_item .thumb img {
  width: 100%;
  height: auto;
}
body.template-system-index #recruit_content .product_item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
body.template-system-index #recruit_content .product_item .text .title {
  font-size: 18px;
  font-weight: bold;
}
body.template-system-index #recruit_content .product_item .text .title img {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 0.25rem;
}
body.template-system-index #recruit_content .product_item .link_lists {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
body.template-system-index #recruit_content .product_item .link_lists a {
  display: inline-block;
  padding-right: 16px;
  position: relative;
}
body.template-system-index #recruit_content .product_item .link_lists a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1px solid #009358;
  border-bottom: 1px solid #009358;
  position: absolute;
  right: 2px;
  top: 6px;
}
body.template-system-index #recruit_content .product_item .link_lists a:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #009358;
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 0;
  box-sizing: border-box;
}
body.template-system-index #recruit_content .culture_lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem auto;
}
body.template-system-index #recruit_content .culture_lists dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  padding: 1.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}
body.template-system-index #recruit_content .culture_lists dl dt {
  max-width: 40px;
}
body.template-system-index #recruit_content .culture_lists dl dt img {
  width: 100%;
  height: auto;
  display: block;
}
body.template-system-index #recruit_content .culture_lists dl dd {
  font-size: 12px;
  font-weight: bold;
  color: #009358;
  line-height: 150%;
  text-align: center;
}
body.template-system-index #recruit_content .inner_article_lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 3rem;
}
body.template-system-index #recruit_content .inner_article_item {
  width: 100%;
}
body.template-system-index #recruit_content .inner_article_item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  row-gap: 1rem;
}
body.template-system-index #recruit_content .inner_article_item .thumb {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
body.template-system-index #recruit_content .inner_article_item .thumb img {
  width: 100%;
  height: auto;
  display: block;
}
body.template-system-index #recruit_content .inner_article_item .inner_article_item_text {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
body.template-system-index #recruit_content .inner_article_item .inner_article_item_text .inner_article_item_title {
  color: #2A2B2C;
  font-size: 15px;
  line-height: 150%;
  font-weight: bold;
}
body.template-system-index #recruit_content .inner_article_item .inner_article_item_text .inner_article_item_description {
  font-size: 11px;
  color: #666;
  line-height: 175%;
}
body.template-system-index #recruit_content .recruit_jobList .job_item {
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .job_category {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  color: #2A2B2C;
  margin-bottom: 0.5rem;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .job_category_description {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #434345;
  margin-bottom: 0.25rem;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links {
  display: flex;
  flex-wrap: wrap;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item {
  margin: 0.25rem 0.5rem 0.25rem 0;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  border: 1px solid #009358;
  color: #009358;
  font-size: 0.875rem;
  border-radius: 4px;
  padding: 0 1.5rem 0 0.675rem;
  position: relative;
}
body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #009358;
  border-right: 1px solid #009358;
  transform: rotate(45deg);
  position: absolute;
  right: 0.75rem;
  top: calc(50% - 3px);
}
body.template-system-index #recruit_content .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.template-system-index #recruit_content .sns_list > li:not(:last-child) {
  margin-right: 2rem;
}
body.template-system-index #recruit_content .sns_list > li a {
  display: flex;
  align-items: center;
}
body.template-system-index #recruit_content .sns_list > li a img {
  margin-right: 0.5rem;
}
@media screen and (max-width: 640px) {
  body.template-system-index #recruit_content .recruit_vision_item {
    padding: 3rem 0;
    row-gap: 1rem;
  }
  body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title {
    row-gap: 0.5rem;
  }
  body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title .ornament {
    font-size: 14px;
  }
  body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_title .main {
    font-size: 22px;
  }
  body.template-system-index #recruit_content .recruit_vision_item .recruit_vision_item_description {
    font-size: 13px;
  }
  body.template-system-index #recruit_content .inner_article {
    max-width: 400px;
    padding: 4rem 2rem;
  }
  body.template-system-index #recruit_content .inner_article_title {
    font-size: 28px;
  }
  body.template-system-index #recruit_content .speaker_deck_note_text {
    padding-top: 1rem;
  }
  body.template-system-index #recruit_content .inner_article_section {
    padding: 2.5rem 0;
  }
  body.template-system-index #recruit_content .inner_article_section .inner_article_section_title {
    font-size: 20px;
    color: #2A2B2C;
    line-height: 150%;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    position: relative;
  }
  body.template-system-index #recruit_content .inner_article_section .inner_article_section_title:after {
    content: "";
    width: 40px;
    height: 2px;
    background: #009358;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  body.template-system-index #recruit_content .inner_article_section_child {
    margin-bottom: 3rem;
  }
  body.template-system-index #recruit_content .inner_article_section_child .inner_article_section_child_title {
    font-size: 18px;
    color: #2A2B2C;
    line-height: 150%;
    margin-bottom: 1.25rem;
  }
  body.template-system-index #recruit_content .product_item {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  body.template-system-index #recruit_content .product_item .thumb {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }
  body.template-system-index #recruit_content .product_item .thumb img {
    width: 100%;
    height: auto;
  }
  body.template-system-index #recruit_content .product_item .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  body.template-system-index #recruit_content .product_item .text .title {
    font-size: 20px;
  }
  body.template-system-index #recruit_content .product_item .text .title img {
    height: 24px;
    width: auto;
    display: block;
  }
  body.template-system-index #recruit_content .culture_lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem auto;
  }
  body.template-system-index #recruit_content .culture_lists dl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
  }
  body.template-system-index #recruit_content .culture_lists dl dt {
    max-width: 40px;
  }
  body.template-system-index #recruit_content .culture_lists dl dt img {
    width: 100%;
    height: auto;
    display: block;
  }
  body.template-system-index #recruit_content .culture_lists dl dd {
    font-size: 12px;
    font-weight: bold;
    color: #009358;
    line-height: 150%;
    text-align: center;
  }
  body.template-system-index #recruit_content .inner_article_lists {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 3rem;
  }
  body.template-system-index #recruit_content .inner_article_item {
    width: 100%;
  }
  body.template-system-index #recruit_content .inner_article_item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    row-gap: 1rem;
  }
  body.template-system-index #recruit_content .inner_article_item .thumb {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
  }
  body.template-system-index #recruit_content .inner_article_item .thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  body.template-system-index #recruit_content .inner_article_item .inner_article_item_text {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
  }
  body.template-system-index #recruit_content .inner_article_item .inner_article_item_text .inner_article_item_title {
    color: #2A2B2C;
    font-size: 15px;
    line-height: 150%;
    font-weight: bold;
  }
  body.template-system-index #recruit_content .inner_article_item .inner_article_item_text .inner_article_item_description {
    font-size: 11px;
    color: #666;
    line-height: 175%;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .job_category {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4;
    color: #2A2B2C;
    margin-bottom: 0.5rem;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .job_category_description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #434345;
    margin-bottom: 0.25rem;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links {
    display: flex;
    flex-wrap: wrap;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item {
    margin: 0.25rem 0.5rem 0.25rem 0;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
    border: 1px solid #009358;
    color: #009358;
    font-size: 0.875rem;
    border-radius: 4px;
    padding: 0 1.5rem 0 0.675rem;
    position: relative;
  }
  body.template-system-index #recruit_content .recruit_jobList .job_item .jobList_links .link_item a:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #009358;
    border-right: 1px solid #009358;
    transform: rotate(45deg);
    position: absolute;
    right: 0.75rem;
    top: calc(50% - 3px);
  }
  body.template-system-index #recruit_content .sns_list > li {
    font-size: 12px;
  }
  body.template-system-index #recruit_content .sns_list > li:not(:last-child) {
    margin-right: 1rem;
  }
  body.template-system-index #recruit_content .sns_list > li a img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
  }
}

body.template-news #news-article p {
  margin-bottom: 20px;
}
body.template-news #news-article .page-profile_box h3 {
  line-height: 150%;
  font-size: 15px;
}
body.template-news #news-article .page-profile_box h4 {
  font-size: 14px;
}
body.template-news #news-article .page-news {
  padding: 70px 0;
}
body.template-news #news-article .news_headline {
  margin: 20px 0 50px;
}
body.template-news #news-article .hl-sm {
  font-size: 26px;
}
body.template-news #news-article .time {
  color: #797979;
  font-size: 12px;
  font-weight: normal;
  line-height: 17px;
  float: right;
  position: relative;
  display: inline-block;
  padding-right: 22px;
}
body.template-news #news-article .img_box {
  margin-bottom: 20px;
  text-align: center;
}
body.template-news #news-article .page-profile_box__message a {
  color: #009358;
  text-decoration: underline;
}
body.template-news .terms_table {
  border: 1px solid #a6a6a6;
  font-size: 11px;
  line-height: 1.8;
  width: 100%;
  margin-bottom: 20px;
}
body.template-news .terms_table th, body.template-news .terms_table td {
  border: 1px solid #a6a6a6;
  padding: 5px;
}
body.template-news .terms_table .text__break-all {
  word-break: break-all;
}
body.template-news .headline_link {
  text-align: center;
  margin: 0 auto 20px;
  display: block;
  color: #009358;
  text-decoration: underline;
}
body.template-news .privacy_headline {
  margin-bottom: 10px !important;
}
body.template-news .bold {
  font-weight: bold;
}
body.template-news .en-headline {
  font-family: sans-serif;
}

body.template-member #member_content {
  padding-top: 2rem;
}
body.template-member #member_content .inner_article {
  margin: 0 auto;
  max-width: 720px;
  padding: 4rem 40px 80px;
}
body.template-member #member_content .c-additional-footer-navigation {
  border-top: none;
  padding: 4rem 0;
  max-width: 100%;
  margin: 0 auto;
}
body.template-member #member_content .page_header {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
body.template-member #member_content .page_header:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}
body.template-member #member_content .page_header_description {
  font-size: 14px;
  color: #333;
  line-height: 200%;
  text-align: center;
  margin-bottom: 3rem;
}
body.template-member #member_content .l-member-filter {
  margin-bottom: 4rem;
}
body.template-member #member_content .c-member-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  padding: 4px;
}
body.template-member #member_content .c-member-filter .member-filter-item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--gray-soft, #CACBCC);
  white-space: nowrap;
  color: var(--gray-dull, #626466);
  text-align: center;
  font-size: 12px;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}
body.template-member #member_content .c-member-filter .member-filter-item:hover {
  box-shadow: 0 0 0 3px rgba(0, 20, 30, 0.05);
}
body.template-member #member_content .c-member-filter .member-filter-item.current {
  border-color: var(--prime-number, #009358);
  color: var(--prime-number, #009358);
}
body.template-member #member_content .c-member-filter .member-filter-item.current:hover {
  box-shadow: 0 0 0 3px rgba(0, 147, 88, 0.05);
}
body.template-member #member_content .l-member-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 56px;
}
body.template-member #member_content .l-member-items .member-item {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  position: relative;
  transition: 0.2s;
  opacity: 1;
}
body.template-member #member_content .l-member-items .member-item.hide {
  display: none;
  opacity: 0;
}
body.template-member #member_content .l-member-items .member-item > a {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
body.template-member #member_content .l-member-items .member-item > a:hover + .member-thumb:after {
  opacity: 1;
}
body.template-member #member_content .l-member-items .member-item .member-thumb {
  width: 120px;
  height: 120px;
  border-radius: 400px;
  overflow: hidden;
  background: #ccc;
  position: relative;
}
body.template-member #member_content .l-member-items .member-item .member-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.template-member #member_content .l-member-items .member-item .member-thumb:after {
  content: "Interview +";
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 147, 88, 0.5);
  text-shadow: 0 0 24px rgba(0, 147, 88, 0.5);
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  font-family: "Abel";
  opacity: 0;
  transition: 0.2s;
}
body.template-member #member_content .l-member-items .member-item .member-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  padding: 12px 0 0 0;
}
body.template-member #member_content .l-member-items .member-item .member-text {
  display: flex;
  flex-direction: column;
}
body.template-member #member_content .l-member-items .member-item .member-text .department,
body.template-member #member_content .l-member-items .member-item .member-text .role {
  font-size: 10px;
  color: #555;
  line-height: 1.5;
}
body.template-member #member_content .l-member-items .member-item .member-text .name {
  font-weight: bold;
  color: #222;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 4px;
}
body.template-member #member_content .l-member-items .member-item .social-link-list {
  display: flex;
  gap: 10px;
  z-index: 2;
}
body.template-member #member_content .l-member-items .member-item .social-link-list a {
  transition: 0.2s;
}
body.template-member #member_content .l-member-items .member-item .social-link-list a:hover {
  opacity: 0.6;
}
body.template-member #member_content .l-member-items .member-item .social-link-list .icon {
  display: inline-block;
}
body.template-member #member_content .l-member-items .member-item .social-link-list .icon.note {
  border-radius: 4px;
  border: 0.5px solid #ddd;
}
body.template-member #member_content .l-member-items .member-item .social-link-list .icon img {
  height: 16px;
  width: auto;
  display: block;
}
@media screen and (max-width: 720px) {
  body.template-member #member_content {
    width: 100%;
    margin: 0 auto;
  }
  body.template-member #member_content .inner_article {
    padding: 16vw 6vw !important;
  }
  body.template-member #member_content .l-member-filter {
    width: calc(100% + 12vw);
    margin: 0 -6vw 12vw;
    overflow-x: auto;
    padding: 0.5rem 0 0.5rem 6vw;
  }
  body.template-member #member_content .l-member-filter .c-member-filter {
    flex-wrap: nowrap;
    padding-right: 1rem;
  }
  body.template-member #member_content .l-member-filter .c-member-filter .member-filter-item {
    padding: 8px 12px;
    font-size: 13px;
  }
  body.template-member #member_content .l-member-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 12vw;
  }
  body.template-member #member_content .l-member-items .member-item {
    align-items: center;
  }
  body.template-member #member_content .l-member-items .member-item .member-thumb {
    width: 104px;
    height: 104px;
  }
  body.template-member #member_content .l-member-items .member-item .member-content {
    padding: 0;
  }
  body.template-member #member_content .l-member-items .member-item .member-text .department,
body.template-member #member_content .l-member-items .member-item .member-text .role {
    font-size: 11px;
  }
  body.template-member #member_content .l-member-items .member-item .member-text .name {
    font-size: 17px;
  }
  body.template-member #member_content .l-member-items .member-item .social-link-list {
    gap: 14px;
  }
  body.template-member #member_content .l-member-items .member-item .social-link-list .icon img {
    height: 16px;
  }
}

body.template-blog #blog-article p {
  margin-bottom: 20px;
}
body.template-blog #blog-article .page-profile_box h3 {
  line-height: 150%;
  font-size: 15px;
}
body.template-blog #blog-article .page-profile_box h4 {
  font-size: 14px;
}
body.template-blog #blog-article .page-blog {
  padding: 70px 0;
}
body.template-blog #blog-article .blog_headline {
  margin: 20px 0 50px;
}
body.template-blog #blog-article .hl-sm {
  font-size: 26px;
}
body.template-blog #blog-article .time {
  color: #797979;
  font-size: 12px;
  font-weight: normal;
  line-height: 17px;
  float: right;
  position: relative;
  display: inline-block;
  padding-right: 22px;
}
body.template-blog #blog-article .img_box {
  margin-bottom: 20px;
  text-align: center;
}
body.template-blog #blog-article .page-profile_box__message a {
  color: #009358;
  text-decoration: underline;
}

body.template-office-access #office_access_content {
  padding-top: 3rem;
}
body.template-office-access #office_access_content #map {
  width: 100%;
  height: 400px;
}
body.template-office-access #office_access_content .inner_article {
  margin: 0 auto;
  max-width: 720px;
  padding: 3rem 40px;
}
body.template-office-access #office_access_content .c-additional-footer-navigation {
  border-top: none;
  padding: 4rem 0;
  max-width: 100%;
  margin: 0 auto;
}
body.template-office-access #office_access_content .page_header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
body.template-office-access #office_access_content .page_header:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}
body.template-office-access #office_access_content .page_header_description {
  text-align: center;
}
body.template-office-access #office_access_content .page_header_description p {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  font-size: 14px;
  color: #333;
  line-height: 200%;
}
body.template-office-access #office_access_content .l-office-access {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 1.5rem 0;
}
body.template-office-access #office_access_content .c-office-access-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
body.template-office-access #office_access_content .c-office-access-items .access-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .thumb {
  border-radius: 4px;
  background: #ccc;
  width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .thumb img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  padding: 8px 0;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .text .title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  text-align: left;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .text .title .step-num {
  font-size: 0.75rem;
  color: #009358;
  line-height: 150%;
  font-family: sans-serif;
  font-weight: bold;
}
body.template-office-access #office_access_content .c-office-access-items .access-item .text .title .main {
  font-weight: bold;
  color: #222;
  line-height: 150%;
  font-size: clamp(1rem, 6vw, 1.125rem);
}
body.template-office-access #office_access_content .c-office-access-items .access-item .text .description {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #434345;
  line-height: 175%;
}
body.template-office-access #office_access_content .office-floor-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.template-office-access #office_access_content .office-floor-map .office-floor-map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body.template-office-access #office_access_content .office-floor-map .floor-map-title {
  color: #009358;
  font-size: 0.75rem;
  font-weight: bold;
}
body.template-office-access #office_access_content .office-floor-map .dialog-btn-open {
  font-size: 0.75rem;
  color: #009358;
  border: 1px solid #009358;
  border-radius: 4px;
  padding: 4px 8px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: 0.2s;
}
body.template-office-access #office_access_content .office-floor-map .dialog-btn-open:hover {
  background: rgba(0, 147, 88, 0.1);
}
body.template-office-access #office_access_content .office-floor-map .c-floor-map-image {
  padding: clamp(8px, 3vw, 16px);
  border: 1px solid #e8e8e8;
}
body.template-office-access #office_access_content .office-floor-map img {
  display: block;
  width: 100%;
  height: auto;
}
body.template-office-access #office_access_content .office-floor-modal-dialog {
  width: calc(100vw - 16px);
  max-width: 1008px;
  max-height: calc(100% - 16px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  border: 0px;
}
body.template-office-access #office_access_content .office-floor-modal-dialog::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
body.template-office-access #office_access_content .office-floor-modal-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
body.template-office-access #office_access_content .office-floor-modal-dialog .dialog-inner {
  overflow: auto;
  padding: clamp(8px, 3vw, 16px);
}
body.template-office-access #office_access_content .office-floor-modal-dialog .dialog-inner img {
  width: 100%;
  min-width: 720px;
  height: auto;
  display: block;
}
body.template-office-access #office_access_content .office-floor-modal-dialog .dialog-btn-close {
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0 0 0 4px;
  background: #009358;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.2s;
}
body.template-office-access #office_access_content .office-floor-modal-dialog .dialog-btn-close:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1000px) {
  body.template-office-access #office_access_content #map {
    width: calc(100% + 40px);
    margin: 0 -20px;
    height: 240px;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  body.template-office-access #office_access_content .c-office-access-items {
    max-width: 400px;
    margin: 0 auto;
  }
  body.template-office-access #office_access_content .c-office-access-items .access-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  body.template-office-access #office_access_content .c-office-access-items .access-item .thumb {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

.l-basic-page {
  max-width: 648px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 32px;
}
.l-basic-page .page-header {
  margin-bottom: 64px;
  padding-bottom: 20px;
  position: relative;
}
.l-basic-page .page-header:after {
  content: "";
  width: 28px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: calc(50% - 14px);
  bottom: 0;
}
.l-basic-page .page-title {
  text-align: center;
}
.l-basic-page .page-title .ornament {
  display: block;
  color: #009358;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.4;
  font-family: Abel, Roboto, Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.l-basic-page .page-title .main {
  padding-top: 8px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #33383a;
}
.l-basic-page .basic-page-content .lead-text {
  margin-bottom: 2rem;
}
.l-basic-page .basic-page-content section {
  padding: 32px 0;
  margin-bottom: 32px;
}
.l-basic-page .basic-page-content h2 {
  font-size: 18px;
  color: #202428;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 0.75rem;
  margin: 1rem 0 1.5rem;
  position: relative;
  border-bottom: 2px solid #eee;
  font-weight: bold;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Abel", sans-serif;
}
.l-basic-page .basic-page-content h2:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #009358;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.l-basic-page .basic-page-content p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #242526;
  margin-bottom: 1rem;
}
.l-basic-page .basic-page-content .basic-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  height: 40px;
  font-size: 0.875rem;
  line-height: 1;
  color: #009358;
  border: 1px solid #009358;
  border-radius: 4px;
  transition: 0.2s;
}
.l-basic-page .basic-page-content .basic-btn i {
  font-size: 16px;
  margin: 0 2px;
}
.l-basic-page .basic-page-content .basic-btn:hover {
  background: #009358;
  color: #fff;
}
.l-basic-page .basic-page-content .col2 {
  display: flex;
  flex-wrap: wrap;
}
.l-basic-page .basic-page-content .col2 > * {
  width: 50%;
}
.l-basic-page .basic-page-content .col2 > *.left {
  padding-right: 0.75rem;
}
.l-basic-page .basic-page-content .col2 > *.right {
  padding-left: 0.75rem;
}
.l-basic-page .basic-page-content .img-wrapper {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}

.c-additional-footer-navigation {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid #eee;
  display: flex;
}
.c-additional-footer-navigation a {
  color: #009358;
  font-size: 0.875rem;
  text-decoration: none;
  position: relative;
  display: inline-flex;
}
.c-additional-footer-navigation a:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #009358;
  position: absolute;
  top: calc(50% + 2px);
}
.c-additional-footer-navigation a:after {
  content: "";
  width: 1.5px;
  height: 5px;
  background: #009358;
  position: absolute;
  bottom: calc(50% - 3px);
}
.c-additional-footer-navigation a.back {
  padding-left: 1.75rem;
  margin-right: auto;
}
.c-additional-footer-navigation a.back:before {
  left: 0;
}
.c-additional-footer-navigation a.back:after {
  left: -1px;
  transform: skewX(-60deg);
  transform-origin: left bottom;
}
.c-additional-footer-navigation a.next {
  padding-right: 1.75rem;
  margin-left: auto;
}
.c-additional-footer-navigation a.next:before {
  right: 0;
}
.c-additional-footer-navigation a.next:after {
  right: -1px;
  transform: skewX(60deg);
  transform-origin: right bottom;
}

@media screen and (max-width: 1000px) {
  .l-basic-page {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0px;
  }
}
@media screen and (max-width: 560px) {
  .l-basic-page .basic-page-content section {
    border-top: 1px solid #eee;
    margin-bottom: 0;
  }
  .l-basic-page .basic-page-content .col2 {
    flex-direction: column;
  }
  .l-basic-page .basic-page-content .col2 > * {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 1rem;
  }
  .l-basic-page .basic-page-content .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-notification-banner {
  position: fixed;
  right: 1rem;
  bottom: 0.5rem;
  width: 240px;
  height: 240px;
  z-index: 9999;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.c-notification-banner.hide-popup {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-notification-banner .popup-close {
  box-sizing: border-box;
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
  width: 24px;
  height: 24px;
  border-radius: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  line-height: 1;
  padding-bottom: 0.25rem;
  cursor: pointer;
  z-index: 1;
}
.c-notification-banner .notification-inner {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}
.c-notification-banner .notification-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

@media (hover: hover) {
  .c-notification-banner .popup-close {
    transition: 0.2s;
  }
  .c-notification-banner .popup-close:hover {
    background: rgba(0, 0, 0, 0.95);
  }
  .c-notification-banner .notification-inner {
    transition: 0.2s;
  }
  .c-notification-banner .notification-inner:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 640px) {
  .c-notification-banner {
    width: 160px;
    height: 160px;
  }
}
#recruit_list_container {
  text-align: center;
}

.button {
  float: center;
  text-align: center;
  border-radius: 4px;
  width: 200px;
  cursor: pointer;
  padding: 20px;
  font-size: 15px;
  background-color: #009358;
  color: #ffffff;
}

.button_recruit {
  text-align: center;
  border-radius: 4px;
  max-width: 200px;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: 20px;
  font-size: 15px;
  background-color: #009358;
  color: #ffffff;
}

.underline {
  text-decoration: underline;
}

.security {
  text-align: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.security a {
  color: #000000;
}
.security a:hover {
  text-decoration: underline;
}

.pull-right {
  text-align: right;
}

#zeroone_inner .message_text {
  text-align: center;
  margin-bottom: 60px;
}

#zeroone_list_container, .button {
  text-align: center;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1000px) {
  #sp_menu_container li:nth-child(3) a span {
    font-size: 12px;
    display: block;
    margin-top: 2px;
  }
  #sp_menu_container .gnav li:first-child {
    width: 100% !important;
  }
}