/*
Theme Name: ライオンブログの子テーマ
Template:lionblog
Version:3.0.0
Description: 2021.09 ヘッダー/レイアウト変更（ブルーフォグ・ソリューション）
*/


/*
fadein.js css code
*/

.fadein {
    opacity: 0;
    visibility: hidden;
    transform: translateY(150px);
    transition: opacity 3s, transform 3s;
}
.fadein.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {

  20%,
  53%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

@keyframes bounce {

  20%,
  53%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

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

@-webkit-keyframes flash {

  50%,
  from,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

@keyframes flash {

  50%,
  from,
  to {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

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

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

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

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

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

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

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

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

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

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

@-webkit-keyframes jello {

  11.1%,
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

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

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

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

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

@keyframes jello {

  11.1%,
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {

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

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

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

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

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

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

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

@keyframes bounceIn {

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

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

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

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

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

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

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

@keyframes bounceInDown {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInLeft {

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

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

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

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

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

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

@keyframes bounceInLeft {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInRight {

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

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

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

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

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

@keyframes bounceInRight {

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0)
  }

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

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

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

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

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

@-webkit-keyframes bounceInUp {

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

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

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

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

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

@keyframes bounceInUp {

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0)
  }

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

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

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

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

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

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 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;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1
  }

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

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

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -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 {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

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

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

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

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

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

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

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

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

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

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

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

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

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

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

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

.flipOutX {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important
}

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

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

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

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

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

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

.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY
}

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

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

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

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

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

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

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

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

.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 {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    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 {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight
}

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

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

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

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

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1
  }

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

@keyframes rollOut {
  from {
    opacity: 1
  }

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

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

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

  50% {
    opacity: 1
  }
}

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

  50% {
    opacity: 1
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

@keyframes zoomOut {
  from {
    opacity: 1
  }

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

  to {
    opacity: 0
  }
}

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

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

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

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

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight
}

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

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

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

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

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

.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.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s
}

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

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

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

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s
}

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: .8s
}

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s
}

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

.morphext > .animated {
  display: inline-block
}

#div-loading-texts {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff
}

#div-loading-texts #loading-texts {
  font-size: 5vw;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%)
}

#div-loading-texts #loading-texts span {
  display: inline-block;
  margin: 0 -.05em;
  animation: loading 1.4s infinite alternate;
  color: #081084
}

#div-loading-texts #loading-texts span:nth-child(2) {
  animation-delay: .1s
}

#div-loading-texts #loading-texts span:nth-child(3) {
  animation-delay: .15s
}

#div-loading-texts #loading-texts span:nth-child(4) {
  animation-delay: .2s
}

#div-loading-texts #loading-texts span:nth-child(5) {
  animation-delay: .25s
}

#div-loading-texts #loading-texts span:nth-child(6) {
  animation-delay: .35s
}

#div-loading-texts #loading-texts span:nth-child(7) {
  animation-delay: .4s
}

#div-loading-texts #loading-texts span:nth-child(8) {
  animation-delay: .45s
}

#div-loading-texts #loading-texts span:nth-child(9) {
  color: #e0a30c;
  animation-delay: .5s
}

#div-loading-texts #loading-texts span:nth-child(10) {
  color: #e0a30c;
  animation-delay: .55s
}

#div-loading-texts #loading-texts span:nth-child(11) {
  color: #e0a30c;
  animation-delay: .6s
}

#div-loading-texts #loading-texts span:nth-child(12) {
  color: #e0a30c;
  animation-delay: .65s
}

#div-loading-texts #loading-texts span:nth-child(13) {
  color: #e0a30c;
  animation-delay: .7s
}

@keyframes loading {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

/*レイアウト
/************************************************************/

/*ヘッダー 202109追加*/
.l-header {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
}

/*ヘッダーエクストラ*/
.l-hExtra {
  position: relative;
  width: 100%;
  background: #f2f2f2;/*  #191919 */
  padding-top: 10px;
}

.l-hExtra::after {
  content: "";
  display: block;
  clear: both;
}

.l-hExtra .socialSearch {
  width: 30%;
  margin-bottom: 5px;
}

.l-hExtra .marquee {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  width: 70%;
  width: calc(70% - 10px);
}

@media only screen and (max-width:900px) {

  .l-hExtra .marquee,
  .l-hExtra .socialSearch {
    float: none;
    width: 100%;
  }

  .l-hExtra .marquee {
    line-height: 1.4;
  }
}

/*ヘッダーメイン*/
.l-hMain {
  width: 100%;
  background: #fff;
}

.l-hMain::after {
  content: "";
  display: block;
  clear: both;
}

.t-color .l-hMain::before {
  content: none;
}

.l-hMain .container {
  display: flex;
  align-content: flex-end;
  width: 100%;
  max-width: 100%;
  position: inherit;
}

.l-hMain {
  background: #ffffff;
  position: unset;
  order: 2;
}

.l-hExtra {
  order: 1;
  padding-top: 5px;
}

.l-hExtra .container {
  width: 100%;
  padding: 0 5%;
  max-width: 100%;
}

.siteTitle {
  padding: 8px 0 28px 0;
}

.siteTitle__logo img {
  max-width: 190px;
}

.siteTitle__link:hover::after {
  content: none;
}

.siteTitle.siteTitle-noneAd {
  order: 1;
  float: none;
  padding-right: 0px;
  align-self: flex-end;
  padding-left: 5%;
}

.contact-box {
  order: 3;
  align-self: flex-end;
  flex-basis: 25%;
  padding-right: 5%;
}

.adHeader {
  float: none;
  height: unset;
  width: auto;
  padding: 0;
  margin: 0;
}

.adHeader img {
  height: 50px;
  padding: 12px 0;
}

.adHeader#div-sub-logo-header ul {
  list-style-type: none;
}

.adHeader#div-sub-logo-header ul li {
  position: relative;
  display: block;
  float: left;
  height: 100px;
  width: 104px;
}

.adHeader#div-sub-logo-header ul li p {
  position: absolute;
  top: 40px;
  left: 14.5px;
  text-align: center;
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-family: "M PLUS 1p";
  line-height: 16px;
}

.adHeader#div-sub-logo-header ul #li-text-google-ai {
  background-image: url(img/bg-google-ai.png?20191017);
  background-repeat: no-repeat;
  background-size: 100%
}

.adHeader#div-sub-logo-header ul #li-text-my-site {
  background-image: url(img/bg-my-site.png?20191017);
  background-repeat: no-repeat;
  background-size: 100%
}

.adHeader#div-sub-logo-header ul #li-text-road-map {
  background-image: url(img/bg-road-map.png?20191017);
  background-repeat: no-repeat;
  background-size: 100%
}

.adHeader#div-tel-header {
  background: #000;
  color: #fff;
  padding: 8px 5px;
  box-sizing: border-box;
  text-align: center;
}

.adHeader #ul-tel {
  list-style-type: none;
  cursor: default;
  pointer-events: none;
}

.adHeader #ul-tel #li-tel {
  font-size: 1.5vw;
  font-weight: bold;
}

.adHeader #ul-tel #li-tel-text {
  font-size: 10px;
  color: #ffcd00;
  margin-bottom: 5px;
}

.adHeader.div-btn-header {
  position: inherit;
  right: 0;
  top: 0;
  margin: 0;
  width: 100%;
}

.btn-header-contact {
  display: block;
  position: relative;
  font-size: 18px;
  padding: .6em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid #0189ff;
  background: #0189ff;
  overflow: hidden;
  z-index: 1 !important
}

.btn-header-contact:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1
}

.btn-header-contact:hover {
  color: #081084
}

.btn-header-contact:hover:after {
  height: 250%;
  opacity: 1
}

.btn-header-contact:active:after {
  height: 350%;
  opacity: 1
}

.btn-header-contact-color {
  font-weight: bold;
  background-color: #ffcd00 !important;
  border: 1px solid #ffcd00 !important;
  color: #00004b;
}

.btn-header-contact-color:hover {
  font-weight: bold;
}

.globalNavi {
  float: none;
  order: 2;
  align-self: flex-end;
  flex-basis: 65%;
  position: inherit;
}

.globalNavi__list {
  background-color: #fff !important;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}

.globalNavi__list a {
  font-size: 16px;
}

.globalNavi__list > li {
  color: #000;
}

.globalNavi__list > li:first-child,
.globalNavi__list > li {
  border-left: none;
  border-right: none;
  position: initial;
}

.globalNavi__list > li:last-child::after {
  content: none;
}

.globalNavi__list > li:first-child::before {
  content: none;
}

.globalNavi__list > li a {
  text-shadow: 0 0 black;
}

/* グロナビ エフェクト */
#menu-item-11328:after,
#menu-item-11365:after,
#menu-item-10357:after,
#menu-item-10369:after,
#menu-item-10374:after,
#menu-item-10385:after,
#menu-item-10393:after,
#menu-item-10409:after,
#menu-item-10371:after {
  border-bottom: 2px solid #2623D0;
  content: '';
  display: block;
  transition: all .4s ease;
  width: 0;
}

#menu-item-10357:hover:after,
#menu-item-10369:hover:after,
#menu-item-10374:hover:after,
#menu-item-10385:hover:after,
#menu-item-10393:hover:after,
#menu-item-10409:hover:after,
#menu-item-10371:hover:after {
  width: 100%;
}

/* #menu-item-10357,
#menu-item-10369,
#menu-item-10374,
#menu-item-10385,
#menu-item-10393,
#menu-item-10409,
#menu-item-10371 {
  padding: 0 16px;
} */

#menu-item-10357 a,
#menu-item-10369 a,
#menu-item-10374 a,
#menu-item-10385 a,
#menu-item-10393 a,
#menu-item-10409 a,
#menu-item-10371 a {
  height: 70%;
}

.globalNavi__list>li:last-child:after {
  position: relative!important;/*グロナビバグ回避用*/
}

.globalNavi__list a {
  padding: 0 14px!important;
}

.globalNavi__list > li.page_item_has_children::before,
.globalNavi__list > li.menu-item-has-children::before {
  content: none;
}

.globalNavi__list > li.page_item_has_children > a,
.globalNavi__list > li.menu-item-has-children > a {
  padding: 0 20px;
}

.globalNavi__list > li .children,
.globalNavi__list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  text-shadow: none;
  width: 100%;
  background: #fff;
  padding: 0px 13vw;
  display: flex;
  flex-wrap: wrap;
}


.globalNavi__list>li .sub-menu>li a{

padding:0px;

}

.globalNavi__list > li .children > li,
.globalNavi__list > li .sub-menu > li {
  background-color: #32323200;
}

.globalNavi__list > li:hover .children li,
.globalNavi__list > li:hover .sub-menu li {
  border: none;
  display: inline-block;
  min-width: unset;
  /* width: 169px; */
  width: 192px;
  margin: 0 2vw 30px;
  white-space: break-spaces;
  line-height: 1.5;
  vertical-align: top;
  height: auto;
}

.globalNavi__list > li:hover .children li a,
.globalNavi__list > li:hover .sub-menu li a {
  height: auto;
}

.globalNavi__list > li:hover .children li a img,
.globalNavi__list > li:hover .sub-menu li a img {
  padding-bottom: 0 !important;
  width: 100% !important;
}

.globalNavi__list > li:hover .children li a span,
.globalNavi__list > li:hover .sub-menu li a span {
  line-height: 1.5;
  background: #fafafa;
  padding: 10px;
  display: block;
  font-size: 10.5px;
}

.globalNavi__list > li:hover .children li:nth-child(2n) a span,
.globalNavi__list > li:hover .sub-menu li:nth-child(2n) a span {
  background: #e6e6e6;
}

.globalNavi__list > li:hover .sub-menu .menu-title {
  display: block;
  width: 100%;
  margin: 0 0 4px 30px;
}

.globalNavi__list > li:hover .sub-menu .menu-title a {
  pointer-events: none;
  font-size: 24px;
  color: #1b1464;
  font-weight: bold;
}

.globalNavi__list > li:hover .sub-menu .menu-title .en {
  display: inline-block;
  background: #1b1464;
  color: #fff;
  font-size: 85%;
  padding: 0 20px 2px;
  margin: 0 0 0 10px;
}

@media only screen and (max-width:1600px) {
  .globalNavi__list a {
    /*font-size: 1.05vw;*/
    font-size: 14px;
  }

  .globalNavi__list > li .children,
  .globalNavi__list > li .sub-menu {
    padding: 0 8vw;
  }
}

@media only screen and (max-width:1560px) {

  .globalNavi__list > li .children,
  .globalNavi__list > li .sub-menu {
    padding: 0 5vw;
  }
}

@media only screen and (max-width:1300px) {

  .globalNavi__list > li .children,
  .globalNavi__list > li .sub-menu {
    padding: 0;
  }

  .globalNavi__list > li.page_item_has_children > a,
  .globalNavi__list > li.menu-item-has-children > a {
    padding: 0 16px;
  }
}

@media only screen and (max-width:1165px) {
  .l-hMain {
    padding-bottom: 0;
  }

  .adHeader {
    margin: 0;
  }

  .adHeader img {
    height: 40px;
    padding: 18px 0;
  }

  .adHeader#div-tel-header {}

  .adHeader.div-btn-header {
    font-size: 18px;
    right: 70px;
    top: 62px;
  }

  /*.btn-header-contact {
    width: 91%;
  }*/
  .adHeader #ul-tel #li-tel {
    font-size: 24px;
  }

  .adHeader #ul-tel #li-tel-text {
    font-size: 11px;
    text-align: center;
  }

  .siteTitle.siteTitle-noneAd {
    padding-left: 0;
    flex-basis: 33.3%;
  }

  .siteTitle__logo {
    max-width: 220px;
    height: 50px;
    margin: auto;
  }

  .contact-box {
    order: 2;
    padding-right: 0;
    flex-basis: 33.3%;
  }

  .globalNavi {
    order: 3;
    flex-basis: 33.3%;
    padding: 24px 0 65px 0;
  }

  .globalNavi__switch {
    margin: auto;
  }

  .globalNavi__list > li a {
    padding: 0 30px 0 20px;
    color: #fff;
  }

  .globalNavi__list > li .children,
  .globalNavi__list > li .sub-menu {
    position: static;
    display: block;
    background: #323232;
    padding: 0;
  }

  .globalNavi__list {
    background-color: #323232 !important;
    display: block;
  }

  .globalNavi__list > li.page_item_has_children > a,
  .globalNavi__list > li.menu-item-has-children > a {
    color: #fff;
  }

  .globalNavi__list > li .sub-menu .menu-title,
  .globalNavi__list > li:hover .sub-menu .menu-title {
    display: none;
  }

  .globalNavi__list > li .sub-menu a {
    color: #fff;
  }

  .menu-image-title-below.menu-image-not-hovered > img,
  .menu-image-hovered.menu-image-title-below .menu-image-hover-wrapper,
  .menu-image-title-below .menu-image-hover-wrapper {
    display: none;
  }

  .globalNavi__list > li .sub-menu a span {
    text-align: left;
  }

  .globalNavi__list > li:hover .children li,
  .globalNavi__list > li:hover .sub-menu li {
    display: block;
    margin: 0;
    width: auto;
    height: 54px;
    line-height: 54px;
  }

  .globalNavi__list > li:hover .children li a,
  .globalNavi__list > li:hover .sub-menu li a {
    height: 54px;
    line-height: 54px;
  }

  .globalNavi__list > li:hover .children li a span,
  .globalNavi__list > li:hover .sub-menu li a span,
  .globalNavi__list > li:hover .children li:nth-child(2n) a span,
  .globalNavi__list > li:hover .sub-menu li:nth-child(2n) a span {
    background: #32323200;
    padding: 0;
    height: 54px;
    line-height: 54px;
  }
}

@media only screen and (max-width:1024px) {
  .adHeader#div-sub-logo-header {
    display: none
  }

  .adHeader#div-tel-header {
    padding-top: 10px
  }

  .siteTitle__logo img {
    max-width: 170px
  }

  .adHeader.div-btn-header {
    font-size: 18px;
    right: 70px;
    top: 26px
  }
}

@media only screen and (max-width:700px) {
  .adHeader.div-btn-header {
    display: none
  }

  .siteTitle.siteTitle-noneAd {
    padding: 24px 0 20px 0;
  }

  .siteTitle__logo img {
    max-width: 130px;
  }

  .contact-box {
    flex-basis: 55%;
    margin: 0 10px;
    align-self: center;
  }

  .adHeader #ul-tel #li-tel {
    font-size: 4.5vw;
  }

  .globalNavi {
    flex-basis: 12%;
    padding: 24px 0 65px 0;
  }
}

@media only screen and (max-width:480px) {
  .adHeader #ul-tel {
    pointer-events: auto
  }
}

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

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

.clearfix {
  display: block;
}

#div-top-front {
  background: url(img/seotop.jpg) no-repeat;
  background-size: cover;
  background-position-y: center;
  position: relative;
}
#div-top-front .div-top-front_wrap{
    display: flex;
    justify-content: center;
    max-width: 1260px;
    padding: 3% 20px;
    margin: 0 auto;
}
@media only screen and (min-width:1500px) {
	#div-top-front .div-top-front_wrap{
	justify-content: space-between;
  }
}
#div-top-front .seo-box {
  width: 50%;
  color: #fff;
  position: relative;/*追加*/
  right: -5rem;/*追加*/
}

#div-top-front .seo-box .top-maintitle {
  font-size: 6.5rem;
  margin-top: 3.5vw;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
} 

#div-top-front .seo-box .top-maintitle .h2-text {
 font-size: 2rem;
 margin: 1.2em 0;/*追加*/
 margin-left: 0.8em;
  line-height: 1.5;
  display: block;
  font-weight: normal;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
} 

#div-top-front .seo-box .top-maintitle img {
 width: 70rem;
 vertical-align: bottom;
}

@media only screen and (max-width:1024px) {
  #div-top-front .seo-box .top-maintitle {
    font-size: 5.8rem;
  } 

  #div-top-front .seo-box .top-maintitle .h2-text {
  font-size: 1.5rem;
  margin-left: 0.8em;    
　line-height: 1.8;
  } 

  #div-top-front .seo-box .top-maintitle img {
     width: 55rem;
  }
}

#div-top-front .seo-box .top-btn,#div-top-front .seo-box .top-btn02 {
  /* margin-top: -21%; */
  margin-top: 8%;
  /* margin-left: 25%;*/
}

#div-top-front .seo-box .top-btn a{
　　display: block;
    position: relative;
    border-radius: 20px;
    width: calc(60% / 2);
    max-width: 200px;
    padding: 3% 2%;
    background-color: #ffcd00;
    box-sizing: border-box;
    text-align: center;
    margin: 5px auto 0 0.9em;
    font-weight: bold;
    color: #000;
    font-size: 1.3em;
   overflow: hidden !important;
    z-index: 1 !important;
}


#div-top-front .seo-box .top-btn a{


float:left;

}

#div-top-front .seo-box .top-btn a:after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1; 
}

#div-top-front .seo-box .top-btn a:hover{

  color: #081084 !important;

}

#div-top-front .seo-box .top-btn02 a{

   float:left;
   margin-left:30px;
　   display: block;
    position: relative;
    border-radius: 20px;
    width: calc(60% / 2);
    max-width: 200px;
    padding: 3% 2%;
    background-color: #ffcd00;
    box-sizing: border-box;
    text-align: center;
    margin: 5px auto 0 0.9em;
    font-weight: bold;
    color: #000;
    font-size: 1.3em;
    overflow: hidden !important;
    z-index: 2 !important;

}

#div-top-front .seo-box .top-btn02 a:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0;
transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: .3s;
    z-index: -2 !important;
}

#div-top-front .seo-box .top-btn02 a:hover{

  color: #081084 !important;

}


/*#div-top-front .seo-box .top-btn a .SEO_achievement{

  border-bottom:2px solid #fff;
  /* padding:0.2em 0; */
  width: 64%;
  display: block;

}*/


#div-top-front .seo-box .top-btn a .SEO_achievement:hover{

  border-bottom:none;
  
  }

#div-top-front .seo-box .top-btn02 a .SEO_achievement:hover{

  border-bottom:none;
  
  }

 /* #div-top-front .seo-box .top-btn a .SEO_achievement:after {
   border-bottom:2px solid #fff;   
　content: '';
  display: block;
  transition: all .4s ease;
  width: 100%;
  padding:0.2em 0;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
} */

#div-top-front .seo-box .top-btn a .SEO_achievement:hover:after {
  border-bottom:2px solid #fff;
  width: 100%;
  padding:0.2em 0;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}


#div-top-front .seo-box .top-btn02 a .SEO_achievement:hover:after {
  border-bottom:2px solid #fff;
  width: 100%;
  padding:0.2em 0;
  transform: translate(0, 0);
  transition: transform cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}


#div-top-front .seo-box .top-btn a:hover {
  color: #fff;
}

#div-top-front .seo-box .top-btn02 a:hover {
  color: #fff;
}


#div-top-front .seo-box .top-btn a:hover::after {
  height: 250%;
  opacity: 1;
}

#div-top-front .seo-box .top-btn02 a:hover::after {
  height: 250%;
  opacity: 1;
}


#div-top-front .top-contact {
  width: 100%;
  margin-top: 50px;
}

#div-top-front .top-contact img{

width: 38vw;
position: relative;
    right: -8rem;
    top: 4rem;

}

#div-top-front .label-box {
  border: 2px solid #bcc6d4;
  border-radius: 5px;
  background: #f6f8fa;
  box-sizing: border-box;
  margin-bottom: 12px;
}

#div-top-front .label-box label {
  display: flex;
}

#div-top-front .label-box .title {
  width: 39%;
  background: #000;
  color: #fff;
  padding: 15px 10px;
  border-radius: 4px 0 0 4px;
  text-align: left;
  align-items: center;
  justify-content: center;
}

#div-top-front .label-box.email .title {
  padding: 9px 10px;
}

#div-top-front .label-box .title span {
  display: block;
  font-size: 10px;
  letter-spacing: -1.5px;
}

#div-top-front .label-box p:nth-of-type(2) {
  align-items: center;
  justify-content: center;
}

#div-top-front .label-box input {
  border: none;
  background: #f6f8fa;
  padding: 13px;
  border-radius: 0 5px 5px 0;
  /*color: #bcc6d4;
  font-weight: bold;*/
  width: 100%;
  font-size: 12px;
}

#div-top-front .pp-text {
  text-align: center;
  color: #f00;
  font-size: 12px;
}

#div-top-front .pp-text a {
  text-decoration: underline;
}

#div-top-front .top-contact .wpcf7-form-control.wpcf7-submit {
  margin-top: 10px;
  margin-bottom: -15px;
  border: none;
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  background-color: #ff6e0000;
  color: #fff;
  cursor: pointer;
}

#div-top-front .top-contact .wpcf7-form-control.wpcf7-submit:hover {
  color: #000;
}

#div-top-front .top-contact .submit {
  position: relative;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
  background-color: #2e3092;
  border: 1px solid #2e3092;
  margin: 20px auto 0;
  border-radius: 4px;
  width: 100%;
  max-width: 270px;
}

#div-top-front .top-contact .submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

#div-top-front .top-contact .submit:hover::after {
  height: 250%;
  opacity: 1;
}

#div-top-front .top-contact span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 10px;
  font-weight: normal;
  display: block;
  text-align: left;
  margin: -10px 0 10px 13px;
}

#div-top-front .top-contact div.wpcf7-validation-errors,
#div-top-front .top-contact div.wpcf7-acceptance-missing {
  border: 2px solid #bcc6d4;
  background: #f6f8fa;
  padding: 15px;
  border-radius: 7px;
  text-align: left;
  font-size: 13px;
  color: #f00;
}

#div-top-front-list {
  position: relative;
  background-color: #f8f8f8
}

#div-top-front-list #title-top-front-list {
  text-align: center;
  font-size: 2vw
}

#div-top-front-list #top-front-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  text-align: center
}

#div-top-front-list #top-front-list .front-list_btn {
  display: block;
  position: relative;
  background: #000;
  color: #fff;
  max-width: 200px;
  margin: 10px auto;
  padding: 15px;
  font-size: 16px;
  background-color: #000000;
  border: 1px solid #000000;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
}

#div-top-front-list #top-front-list .front-list_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

#div-top-front-list #top-front-list .front-list_btn:hover {
  color: #000;
}

#div-top-front-list #top-front-list .front-list_btn:hover::after {
  height: 250%;
  opacity: 1;
}

#div-top-front-list #top-front-list .top-front-list-item {
  height: auto;
  width: 25%;
  padding: 30px
}

#radialIndicator1 canvas,
#radialIndicator2 canvas {
  max-width: 110px;
  max-height: 110px;
}

#div-top-front-list #top-front-list .radialIndicator {
  height: 130px;
  max-width: 300px;
  margin: 0 auto;
}


@media only screen and (max-width:1200px) {
  #div-top-front-list #top-front-list .radialIndicator {
    height: auto;
  }

  #div-top-front {
    background-position-x: 30%;
  }
  #div-top-front .seo-box .top-maintitle {
    margin-top: 0.1vh;
  }

#div-top-front .top-contact img {
    right: 0rem;
    top:0rem;
}

  #div-top-front .seo-box {
    bottom: 5%;
    /* left: -1vw; */
    left: 0vw;
    width: 50%;
  }

  #div-top-front .label-box label {
    flex-direction: column;
  }

  #div-top-front .label-box .title {
    width: 100%;
    border-radius: 4px 4px 0 0;
    text-align: center;
    font-size: 14px;
    padding: 7px;
  }

  .wpcf7-form-control-wrap span {
    margin-top: 0;
    margin-left: 6px;
  }

  #div-top-front .label-box input {
    padding: 6px;
    border-radius: 0 0 5px 5px;
  }

  #div-top-front .top-contact .wpcf7-form-control.wpcf7-submit {
    margin-top: 10px;
    font-size: 75%;
  }

}

@media only screen and (max-width:1024px) {
  #div-top-front .seo-box .top-btn {
    width: 100%;
    text-align: center;
  }

  #div-top-front .seo-box .top-btn {
    margin: 16% 0 0;
  }

#div-top-front .seo-box .top-btn a{

font-size:0.8em;

}
#div-top-front .seo-box .top-btn02 a{

font-size:0.8em;

}


}

@media only screen and (max-width:768px) {
  #div-top-front {
    background-position-x: 15%;
  }
	#div-top-front .top-contact{
		width: 100%;
                text-align:center;
	}

#div-top-front .top-contact img {
    display: none;
}

  #div-top-front .seo-box .top-maintitle {
    text-align: left;
  }

  #div-top-front .seo-box {
    bottom: 0;
    left: 0;
    width: 100%;
    position: static;
    margin-bottom: 6%;
    text-align: center;
  }

	#div-top-front .div-top-front_wrap {
		display: block;
	}

  /* #div-top-front .seo-box .top-maintitle {
    text-align: left;
    margin-top: 54px;
    margin-bottom: 137px;
  } */


  #div-top-front .seo-box .top-btn {
    text-align: right;
  }

  #div-top-front .seo-box {
    margin-bottom: 127px;
  }

  #div-top-front .seo-box .top-maintitle {
    text-align: center;
    margin-top: 80px;    
    margin-bottom: 22px;
    padding-left: 0;
  }

  #div-top-front .seo-box .top-btn {
    text-align: center;
    margin: 16px 0;
  }

#div-top-front .seo-box .top-btn a {
    width: 100%;
    /* max-width: 500px; */
    margin: 0 auto;
    float: none;
    clear: both;
    display: block;
    position: static;
    font-size: 1.3em;
}
#div-top-front .seo-box .top-btn02 a {
    width: 100%;
    margin: 0 auto;
    float: none;
    clear: both;
    display: block;
    position: static;
    font-size: 1.3em;
}
#div-top-front .seo-box .top-btn02{

margin-top:0%;

}
#div-top-front .seo-box .top-maintitle .h2-text{


font-size:2rem;

}


}


  @media only screen and (max-width:480px) {
    #div-top-front .seo-box .top-maintitle {
      padding-top: 0;
　　　 margin-top: 100px;
    }
    #div-top-front .seo-box .top-maintitle .h2-text {
     /* font-size: 3.5vw; */
     font-size: 3.2vw;
     margin-top: 5vw;
     margin-bottom:5vw;
	  }
	  #div-top-front .label-box input{
		  font-size:16px;
	  }
  }


#div-top-front .top-contact .wpcf7-form-control.wpcf7-submit {
    font-size: 115%;
}


#div-top-front-list #top-front-list .top-front-list-item h3,
#div-top-front-list #top-front-list .top-front-list-item p {
  padding: 10px
}

#div-top-front-list #top-front-list .top-front-list-item h3 {
  font-size: 1.8vw;
}

#div-top-front-list #top-front-list .top-front-list-item p {
  font-size: 1.5vw;
  line-height: 2vw;
}

#div-top-front-list #top-front-list .top-front-list-item .top-front-list-item-highlight {
  font-size: 195%;
}

@media only screen and (max-width:992px) {
  #div-top-front-list #top-front-list .top-front-list-item h3 {
    font-size: 5vw
  }

  #div-top-front-list #top-front-list .top-front-list-item p {
    font-size: 3vw;
    line-height: 3vw
  }
}

@media only screen and (max-width:500px) {
  #div-top-front-list #top-front-list .radialIndicator {
    height: auto;
  }

  #div-top-front-list #top-front-list .top-front-list-item h3 {
    font-size: 30px
  }

  #div-top-front-list #top-front-list .top-front-list-item p {
    font-size: 20px;
    line-height: 20px
  }
}

#div-top-front-list #top-front-list #radialIndicator3-wrap .img-radialIndicator3 {
  width: 12%;
  max-width: 40px;
}

@media only screen and (max-width:1500px) {
  #div-top-front-list #top-front-list .top-front-list-item {
    width: 28%;
  }

  #div-top-front-list #top-front-list #radialIndicator3-wrap .img-radialIndicator3 {
    width: 12%
  }
}

@media only screen and (max-width:1024px) {
  #div-top-front-list #top-front-list .top-front-list-item {
    width: 33%;
    font-size: 5vw;
  }

  #div-top-front-list #top-front-list .top-front-list-item h3 {
    font-size: 2.8vw;
  }
}

@media only screen and (max-width:992px) {

  #div-top-front-list #top-front-list .top-front-list-item:nth-child(1),
  #div-top-front-list #top-front-list .top-front-list-item:nth-child(3) {
    background-color: #fff
  }
}

@media only screen and (max-width:768px) {
  #div-top-front-list #top-front-list .top-front-list-item {
    width: 100%;
  }

  #div-top-front-list #top-front-list #radialIndicator3-wrap .img-radialIndicator3 {
    width: 10%
  }

  #div-top-front-list #top-front-list .top-front-list-item h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width:480px) {
  #div-top-front-list #top-front-list #radialIndicator3-wrap .img-radialIndicator3 {
    width: 11%
  }

  #div-top-front-list #top-front-list .top-front-list-item {
    font-size: 8vw
  }
}

#div-top-front-list .div-btn-feature {
  padding-bottom: 30px;
  margin-top: 30px
}

#div-top-front-list .div-btn-feature .btn-header-contact {
  width: 250px;
  left: 0;
  right: 0;
  margin: auto
}

@media screen and (min-width:992px) {
  .br-pc {
    display: block;
  }

  .br-sp {
    display: none;
  }
}

.l-hExtra .container .marquee .marquee__item a {
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 15s;
  animation-iteration-count: infinite
}

.l-hExtra .container .marquee .marquee__item a:after {
  content: "";
  white-space: nowrap;
  padding-right: 50px
}

#btn-contact {
  display: none;
  position: fixed;
  bottom: -3px;
  z-index: 999;
  left: 50%;
  -webkit-font-smoothing: none;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  transform: translate(-50%, 0)
}

#btn-contact img {
  max-width: none;
  height: 65px;
  width: 350px
}

div#js-contact-modal {
  background-color: #85abec
}

div#js-contact-modal h4 {
  margin-bottom: 30px
}

div#js-contact-modal div#div-js-contact-modals {
  display: flex;
  text-align: center
}

div#js-contact-modal div#div-js-contact-modals div#div-js-contact-modal-mail,
div#js-contact-modal div#div-js-contact-modals div#div-js-contact-modal-tel {
  width: 50%;
  margin: 0 auto
}

div#js-contact-modal img {
  height: 100px;
  padding-bottom: 20px
}

div#div-js-contact-modals a {
  color: #000;
  font-size: 20px
}

#pc-contact-box {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3f98ef;
  opacity: .6
}

#pc-contact-box div {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none
}

#tablepress-6 .row-1 .column-1 {
  width: 20% !important
}

#tablepress-6 .row-1 .column-2 {
  width: 25% !important
}

#tablepress-6 .row-1 .column-3 {
  width: 55% !important
}

#div-btn-flooring {
  position: fixed;
  bottom: 2px;
  right: 100px;
  z-index: 999;
  text-align: center;
  width: 340px;
  height: 80px;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
  background-color: #ffcd00;
  transform: scale(0);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out
}

div#div-btn-flooring.toTop-show {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}

div#div-btn-flooring.div-btn-flooring-close {
  display: none
}

div#div-btn-flooring ul {
  font-size: 30px;
  color: #000;
  list-style: none
}

div#div-btn-flooring #img-flooring-x {
  position: absolute;
  height: 32px;
  right: -10px;
  top: -10px;
  z-index: 1000
}

div#div-btn-flooring #img-flooring-tel {
  height: 40px;
  padding-top: 6px;
  padding-right: 10px
}

div#div-btn-flooring #contact-soudan-text {
  font-size: 20px;
  margin-top: 6px
}

@media (max-width:960px) {
  div#div-btn-flooring {
    display: none
  }
}

.text-blue {
  color: #0189ff
}


/*だれかが入れたやつ20191025*/

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, .75);
  text-align: center
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -.05em
}

.blocker.behind {
  background-color: transparent
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==)
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  100%,
  40% {
    -webkit-transform: scaleY(.5)
  }

  20% {
    -webkit-transform: scaleY(1)
  }
}

@keyframes sk-stretchdelay {

  0%,
  100%,
  40% {
    transform: scaleY(.5);
    -webkit-transform: scaleY(.5)
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1)
  }
}

.wp-image-3614,
.wp-image-3618,
.wp-image-3628,
.wp-image-3629,
.wp-image-3630,
.wp-image-3632 {
  height: 250px;
}

.top-toku1 {
  position: absolute;
  font-size: 1.6em;
  top: 1.2em;
  left: 10em;
  color: white;
}

.top-toku2 {
  position: absolute;
  font-size: 1.6em;
  top: 1.2em;
  left: 7em;
  color: white;
}

.top-toku3 {
  position: absolute;
  font-size: 1.6em;
  top: 1.2em;
  left: 6.5em;
  color: white;
}

.top-toku4 {
  position: absolute;
  font-size: 1.6em;
  top: 1.2em;
  left: 1.8em;
  color: white;
}

.top-toku5 {
  position: absolute;
  font-size: 1.6em;
  top: 1.2em;
  left: 10.5em;
  color: white;
}

@media screen and (max-width: 1165px) {
  .top-toku1 {
    font-size: 2.5em;
    top: 1em;
    left: 35%;
  }

  .top-toku2 {
    font-size: 2.5em;
    top: 1em;
    left: 23%;
  }

  .top-toku3 {
    font-size: 2.5em;
    top: 1em;
    left: 22%;
  }

  .top-toku4 {
    font-size: 2.5em;
    top: 1em;
    left: calc(50% - 11.6em);
  }

  .top-toku5 {
    font-size: 2.5em;
    top: 1em;
    left: 36%;
  }
}

@media screen and (max-width: 1036px) {
  .top-toku1 {
    font-size: 3.7vw;
    top: 1em;
    left: 35%;
  }

  .top-toku2 {
    font-size: 3.7vw;
    top: 1em;
    left: 23%;
  }

  .top-toku3 {
    font-size: 3.7vw;
    top: 1em;
    left: 22%;
  }

  .top-toku4 {
    font-size: 3.7vw;
    top: 1em;
    left: calc(50% - 11.6em);
  }

  .top-toku5 {
    font-size: 3.7vw;
    top: 1em;
    left: 36%;
  }
}

@media screen and (max-width: 650px) {
  .top-sample-img {
    width: 60%;
    height: auto;
    margin: 0 20% 10px 20% !important;
  }
}

/*記事一覧ページのレイアウト調整（タブレット・PC以上）*/
@media screen and (min-width: 601px) {
  .archive .eyecatch {
    width: 165px;
    float: left;
    margin-right: 15px;
  }

  .eyecatch__cat a {
    padding: 10px;
    font-size: 85%;
  }
}

/*スマホ時のトップページ上部*/
#div-top-front-text {
  padding: 3%;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.75;
  background: #fff;
}

#div-top-front-list-sp {
  background: #f8f8f8;
}

#div-top-front-list-sp li {
  list-style: none;
  padding: 5%;
  clear: both;
  font-size: 1.6rem;
}

#div-top-front-list-sp .indicator-img {
  max-width: 100px;
  float: left;
  margin-right: 20px;
}

#div-top-front-list-sp #top-front-list .top-front-list-item h3 {
  font-size: 5vw;
  margin-bottom: 15px;
	text-align:center;
}

#div-top-front-list-sp #top-front-list .top-front-list-item .top-front-list-item-highlight {
  font-size: 150%;
}

#div-top-front-list-sp .div-btn-feature {
  padding: 20px 0;
}

#div-top-front-list-sp .btn-header-contact {
  width: 80%;
  margin: 0 auto;
}


/*body 202109*/
body {
  background: #fff;
}

.l-wrapper {
  width: 1200px;
}

/* top-wrapper */
.l-main::before {
  content: none;
}

.l-wrapper.top-wrapper {
  width: 1160px;
}

.top-wrapper .breadcrumb {
  display: none;
}

.l-main {
  order: 2;
  padding: 0 20px;
  margin: 20px auto;
  width: 86%;
  max-width: 681px;
}

.left-sidebar {
  order: 1;
  width: 25.06%;
  background: #f2f2f2;
  margin-top: 20px;
}

.top-wrapper .left-sidebar {
  padding: 20px 0;
  margin-top: 0;
}

.left-sidebar ul,
.left-sidebar li {
  list-style: none;
}

.left-sidebar .display_cat-list h3 {
  background: #00004b;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: 15px;
}

.left-sidebar .display_cat-list ul {
  padding: 0 20px;
}

.left-sidebar .display_cat-list li {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #00004b;
}

.left-sidebar .display_cat-list li:first-of-type {
  border-top: 0;
}

.left-sidebar .widget {
  position: unset;
  border: 0;
  padding-top: 0;
  margin-bottom: 0;
}

.left-sidebar .widget .widgettitle {
  background: #00004b;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  padding: 15px;
}

.left-sidebar .imgListWidget__borderBox {
  float: none;
  width: 113px;
  text-align: center;
  margin: auto;
  height: 113px;
}

.left-sidebar .imgListWidget__borderBox img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

.left-sidebar .imgListWidget__title {
  display: none;
}

.left-sidebar .imgListWidget {
  padding: 0 20px;
}

.left-sidebar .imgListWidget__item {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #00004b;
}

.left-sidebar .imgListWidget__item:first-of-type {
  border-top: 0;
}

.left-sidebar .morebtn {
  display: block;
  position: relative;
  color: #00004b;
  width: 110px;
  margin: 0 auto 15px;
  text-align: center;
  border-radius: 2px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  background-color: #fff;
  border: 1px solid #00004b;
  color: #00004b;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
}

.left-sidebar .morebtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #00004b;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

.left-sidebar .morebtn:hover {
  color: #fff !important;
}

.left-sidebar .morebtn:hover::after {
  height: 250%;
  opacity: 1;
}

.left-sidebar .widget::before {
  content: none;
}

.l-sidebar {
  order: 3;
  padding: 0;
  width: 34.37%;
  background: #f2f2f2;
  padding: 20px;
  margin-top: 20px;
}

.top-wrapper .l-sidebar {
  margin-top: 0;
}

.heading.heading-widget {
  font-size: 1.6rem;
}

@media only screen and (max-width: 1165px) {
  .l-main {
    margin: 72px auto;
    width: 100%;
  }

  .left-sidebar,
  .l-sidebar {
    width: 95%;
    margin: 0 auto 5%;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width:1150px) {
  .display_cat-list {
    display: none;
  }

  .left-sidebar,
  .l-sidebar {
    /*background: #fff;*/
  }

  .left-sidebar .widget {
    max-width: 100%;
  }

  .left-sidebar .widget .widgettitle {
    font-size: 20px;
  }

  .left-sidebar .imgListWidget {
    position: relative;
  }

  .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0%, -50%);
  }

  .slick-arrow.slick-prev {
    left: 10px;
  }

  .slick-arrow.slick-next {
    right: 10px;
  }

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

  .left-sidebar .imgListWidget__item {
    border-top: none;
    padding: 20px 0 10px;
  }

  .left-sidebar .imgListWidget__borderBox {
    width: 150px;
    height: 150px;
  }

  .left-sidebar .imgListWidget__title {
    display: block;
    width: 150px;
    float: none;
    margin: 5px auto 0;
    text-align: left;
    font-size: 14px;
  }

  .left-sidebar .morebtn {
    width: 40%;
    margin: 0 auto 15px;
    padding: 10px 10px;
    font-size: 14px;
  }
}

/*div-top-point*/
#div-top-point {
  background: #000023;
  color: #fff;
}

#div-top-point .div-top-point-inner {
  max-width: 1160px;
  margin: auto;
  padding: 3% 0;
  width: 95%;
}

.div-top-point-title {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-size: 2vw;
  line-height: 1.5;
}

.div-top-point-title .icatch-text01 span {
  font-size: 140%;
}

.div-top-point-title .b-text {
  color: #ffbe00;
}

.div-top-point-title .y-text {
  color: #ffbe00;
}

/* .div-top-point-title .icatch-text02 {
  margin-top: 25px;
} */

.div-top-point-title .icatch-text02 span {
  display: inline-block;
  /* vertical-align: text-bottom; */
  /* margin-left: 10px; */
}

.div-top-point-google {
  font-size: min(18px, 2.2vw);
  line-height: 1.8;
}

.div-top-point-google .google-text {
  display: inline-block;
  width: 80%;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px;
  padding-right: 20%;
  vertical-align: middle;
}

.div-top-point-google .google-text .o-text {
  color: #ffbe00;
  font-weight: bold;
}

.div-top-point-google .google-text .big-text {
  font-weight: bold;
}

.div-top-point-google .google-img.pc {
  display: inline-block;
  width: 34.7%;
  margin-left: -21%;
  margin-top: -15%;
  vertical-align: middle;
}

.div-top-point-google .google-img.sp {
  display: none;
}

@media only screen and (max-width:500px) {
  #div-top-point .div-top-point-inner {
    padding: 8% 0 2%;
  }

  .div-top-point-title {
    font-size: 4.2vw;
  }

  .div-top-point-title .icatch-text02 img {
    width: 60%;
  }

  .div-top-point-google {
    font-size: 4vw;
    margin: auto;
    text-align: center;
    position: relative;
  }

  .div-top-point-google .google-text {
    width: 90%;
    border-right: 1px solid #fff;
    padding: 20px;
    padding-right: 20px;
    margin: 20px auto;
    text-align: left;
    background: rgb(0 0 35 / 58%);
    margin-top: -74%;
  }

  .div-top-point-google .google-img.pc {
    display: none;
  }

  .div-top-point-google .google-img.sp {
    display: inline-block;
    width: 60%;
    margin-left: 28%;
    margin-top: 50px;
  }
}

/*スマホの時の表示*/
#div-top-front-sp a img {
  width: 100%;
}

#div-top-front-sp {
  position: relative;
}

#div-top-front-sp .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}

#div-top-front-sp .top-btn_sp {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 100%;
  text-align: center;
}

#div-top-front-sp .top-btn_sp .top-btn {
  display: inline-block;
  position: relative;
  font-size: 24px;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  font-weight: bold;
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
}

#div-top-front-sp .top-btn_sp .top-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

#div-top-front-sp:hover .top-btn_sp .top-btn {
  color: #000;
}

#div-top-front-sp:hover .top-btn_sp .top-btn::after {
  height: 405%;
  opacity: 1;
}

#div-top-front-list-sp #top-front-list .top-front-list-item .front-list_btn {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  max-width: 200px;
  margin: auto;
  padding: 15px;
  font-size: 19px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

#div-top-front-list-sp #top-front-list .top-front-list-item .front-list_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

#div-top-front-list-sp #top-front-list .top-front-list-item .front-list_btn:hover {
  color: #000;
}

#div-top-front-list-sp #top-front-list .top-front-list-item .front-list_btn:hover::after {
  height: 250%;
  opacity: 1;
}

/*TOPのcontents*/
@media only screen and (max-width: 1165px) {
  .l-wrapper.top-wrapper {
    display: flex;
    flex-direction: column;
  }

  .top-wrapper .l-main {
    margin: 20px auto;
  }
}


/*ダウンロードページ*/

.dl-btn {
  text-align: center;
  margin-top: 30px !important;
}

.dl-btn a {
  display: inline-block;
  position: relative;
  padding: 15px;
  border-radius: 5px;
  width: 140%;
  max-width: 270px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  font-weight: bold;
  background-color: #ff6e00;
  border: 1px solid #ff6e00;
  color: #fff !important;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
}

.dl-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

.dl-btn a:hover {
  color: #000 !important;
  border-color: #ff6e00 !important;
}

.dl-btn a:hover::after {
  height: 250%;
  opacity: 1;
}

.dl-content {
  margin-top: 35px !important;
}

.dl-content table {
  margin-bottom: 30px;
  margin-top: 50px !important;
}

.content .dl-content table {
  border-left: none;
}

.content .dl-content table td {
  border-right: none;
}


/*プロフィール枠*/
#author_profile {
  border: 1px solid #194c80;
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
}

#author_profile p {
  margin-bottom: 7px;
  line-height: 1.8;
}

/*この記事を書いた人の見出し*/
#author_profile p.label {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #194c80;
  padding: 10px 15px;
}

/*名前*/
#author_profile p.author_name {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

/*名前下の下線*/
#author_profile p.author_name::after {
  content: "";
  border-bottom: solid 3px #194c80;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
}

/*左側画像ブロック*/
#author_profile .left {
  width: 14%;
  float: left;
  margin: 10px 0 15px 30px;
}

/*画像サイズ*/
#author_profile .left img {
  width: 100%;
}

#author_profile .left img {
  border-radius: 50%;
  /* 角丸半径を50%にする(=円形にする) */

}

/*右側テキストブロック*/
#author_profile .right {
  width: 74%;
  float: left;
  font-size: 12px;
  line-height: 1.6;
  padding: 5px 0 20px 30px;
}


/*SP時の挙動（画面サイズが小さい時）*/
@media (max-width: 480px) {
  #author_profile p.author_name {
    text-align: center;
  }

  #author_profile .left {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
  }

  #author_profile .left img {
    width: 33%;
  }

  #author_profile .right {
    width: 100%;
    float: none;
    padding: 10px 20px 0;
  }

  #author_profile .right ul.author_sns li {
    margin-bottom: 20px;
  }
}

/*固定ページ用ボタンデザイン*/
.outline_btn {
  width: 32%;
  margin: 0 auto;
}

.outline_btn__link {
  display: block;
  position: relative;
  font-size: 20px;
  padding: .8em;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  overflow: hidden;
  z-index: 1 !important;
  font-weight: 700;
  background-color: orange !important;
  border: 1px solid orange !important;
}

.outline_btn__link:hover {
  color: #FFA500 !important;
}

.outline_btn__link:hover:after {
  height: 250%;
  opacity: 1;
}

.outline_btn__link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .outline_btn {
    width: 50%;
  }
}

@media screen and (max-width: 375px) {
  .outline_btn {
    width: 100%;
  }
}


/*************
以下20211130追加
*************/

/*ダウンロードページ*/

.dl-btn {
  text-align: center;
  margin-top: 30px !important;
}

.dl-btn a {
  display: inline-block;
  position: relative;
  padding: 15px;
  border-radius: 5px;
  width: 140%;
  max-width: 270px;
  box-sizing: border-box;
  text-align: center;
  margin: auto;
  font-weight: bold;
  background-color: #ff6e00;
  border: 1px solid #ff6e00;
  color: #fff !important;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
}

.dl-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

.dl-btn a:hover {
  color: #000 !important;
  border-color: #ff6e00 !important;
}

.dl-btn a:hover::after {
  height: 250%;
  opacity: 1;
}

.dl-content {
  margin-top: 35px !important;
}

.dl-content table {
  margin-bottom: 30px;
  margin-top: 50px !important;
}

.content .dl-content table {
  border-left: none;
}

.content .dl-content table td {
  border-right: none;
}

/*ホワイトペーパーページ*/
#div-wh-paper .label-box {
  border: 2px solid #bcc6d4;
  border-radius: 5px;
  background: #f6f8fa;
  box-sizing: border-box;
  margin-bottom: 12px;
}

#div-wh-paper .label-box label {
  display: flex;
}

#div-wh-paper .label-box .title {
  width: 39%;
  background: #000;
  color: #fff;
  padding: 18px 10px;
  border-radius: 4px 0 0 4px;
  text-align: left;
  align-items: center;
  justify-content: center;
}

#div-wh-paper .label-box.email .title {
  padding: 9px 10px;
}

#div-wh-paper .label-box .title span {
  display: block;
  font-size: 10px;
  letter-spacing: -1.5px;
}

#div-wh-paper .label-box p:nth-of-type(2) {
  align-items: center;
  justify-content: center;
  width: 90%;
}

#div-wh-paper .label-box input {
  border: none;
  background: #f6f8fa;
  padding: 25px;
  border-radius: 0 5px 5px 0;
  /*color: #bcc6d4;
  font-weight: bold;*/
  width: 100%;
  font-size: 12px;
}

#div-wh-paper .pp-text {
  text-align: center;
  color: #f00;
  font-size: 12px;
}

#div-wh-paper .pp-text a {
  text-decoration: underline;
}

#div-wh-paper .white-paper .wpcf7-form-control.wpcf7-submit {
  margin-top: 10px;
  margin-bottom: -15px;
  border: none;
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  background-color: #ff6e0000;
  color: #fff;
  cursor: pointer;
}

#div-wh-paper .white-paper .wpcf7-form-control.wpcf7-submit:hover {
  color: #000;
}

#div-wh-paper .white-paper .submit {
  position: relative;
  transition: all .2s;
  z-index: 1;
  overflow: hidden;
  background-color: #ff6e00;
  border: 1px solid #ff6e00;
  margin: 20px auto 0;
  border-radius: 4px;
  width: 100%;
  max-width: 270px;
  height: 53px;
}

#div-wh-paper .white-paper .submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

#div-wh-paper .white-paper .submit:hover::after {
  height: 250%;
  opacity: 1;
}

#div-wh-paper .white-paper span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 10px;
  font-weight: normal;
  display: block;
  text-align: left;
  margin: -10px 0 10px 13px;
}

#div-wh-paper .white-paper div.wpcf7-validation-errors,
#div-wh-paper .white-paper div.wpcf7-acceptance-missing {
  border: 2px solid #bcc6d4;
  background: #f6f8fa;
  padding: 15px;
  border-radius: 7px;
  text-align: left;
  font-size: 13px;
  color: #f00;
}

.content #div-wh-paper p {
  margin-top: 0;
}

#div-wh-paper .txt,
#contents_dl .txt {
  margin-bottom: 20px;

}

/*日付を非表示にする*/
.single-contents_dl .dateList,
.single-contents_dl .breadcrumb {
  display: none;
}

/*SNSシェアボタンを非表示にする*/
.single-contents_dl .socialList {
  display: none;
}

/*送信完了ページ*/
#contents_dl .outline_btn.content-dl-btn {
  width: 70%;
  margin: 0 auto;
}

#contents_dl .outline_btn__link {
  display: block;
  position: relative;
  font-size: 18px;
  padding: .8em;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  overflow: hidden;
  z-index: 1 !important;
  font-weight: 700;
  background-color: #1f99ef !important;
  border: 1px solid #1f99ef !important;
}

#contents_dl .content-dl-btn .outline_btn__link a:hover {
  color: #000 !important;
}

#contents_dl .content-dl-btn .outline_btn__link:hover:after {
  height: 250%;
  opacity: 1;
}

#contents_dl .content-dl-btn .outline_btn__link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .3s;
  z-index: -1;
}

@media (max-width: 768px) {
  #contents_dl .outline_btn.content-dl-btn {
    width: 80%;
  }
}

@media (max-width: 480px) {
  #contents_dl .outline_btn.content-dl-btn {
    width: 100%;
  }
}

#contents_dl .outline_btn:not(.content-dl-btn),
#contents_dl .outline {
  display: none;
}

#contents_dl h1 {
  font-size: 1.5em;
  margin-bottom: 50px;
  text-align: center;
}

#contents_dl .txt {
  text-align: center;
}

#contents_dl .content-dl-btn a {
  color: #fff !important;
  border: none;
}

#contents_dl .content-dl-btn a:hover {
  color: #1f99ef !important;
}

@media (max-width:480px) {

  #div-wh-paper .label-box .title {
    width: 45%;
    padding: 20px 10px;
  }

}

/*************
修正版
*************/
.big-text {
  font-size: 140%;
}

@media screen and (min-width:2000px) and (max-width: 2560px) {
    .seo-box {
      right: 12rem!important;
    }
}

html,
body {
	overflow-x: hidden!important;
}



/*
カスタムCSSより移設
*/

/*自社調整ですのでこのままでお願いします*/
.siteTitle__logo img {
  height: auto;
}
.img_wrap2{
  transition-duration: 0.5s;
}
.img_wrap2 img{
  width: 100%;
  cursor: pointer;
}
.img_wrap2:hover{
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

.content h2{	
	
	background:#fff !important;
		color:#2e3092 !important;
	 text-shadow:none !important;
	border:none !important;
	font-size:2.8rem !important;
		padding:0px !important;
		box-shadow:none !important;
	
}
.content h3{
	
	font-size:2.4rem !important;
	border:none !important;
	background:none !important;
	box-shadow:none !important;
	position: static!important;
	padding:0px 0px 5px 15px !important;
	border-left:6px solid #2e3092 !important;
	line-height:1 !important;
	
}

/*
.content h3::before{
	
	  content: "" !important;
    position: relative !important;
    bottom: -40px !important;
    left: -20px !important;
    display: block !important;
    width: calc(100% + 20px) !important;
    height: 2px !important;
    background: #2e3092 !important;
	
}
*/
.content h3::after {
    content: none!important;
}

.content h4{
	
	position:static !important;
	padding:7px 20px !important;
	text-align:left !important;
	border-top:none !important;
	border-bottom:none !important;
	font-size:1.8rem !important;
	color:#fff !important;
	background-color:#969696 !important;
	
}

.content h4::before, .content h4::after{
	
	content: none !important;
	
}

.content h5{
	padding-bottom:2px !important;
	border-bottom: solid 2px #e5e5e5 !important;
	
}

.eyecatch__cat.u-txtShdw{
	
	display:none !important;
	
}

#twitter-widget-0.twitter-timeline.twitter-timeline-rendered{
   height: 980px !important;
   overflow-y: scroll !important;
}

.fb_iframe_widget {
    width:100% !important;
	  text-align:center;
}

/*自社調整--END--*/

.list-family ol{
  list-style: none;
  counter-reset: cnt;
  padding-left: 0;
}
.list-family ol li{
  margin-bottom: 8px;
}
.list-family ol li::before{
  content: counters(cnt, ".") ". ";
  counter-increment: cnt;
}
.list-family ol ol{
  counter-reset: cnt;
  margin-left: 20px;
  margin-top: 8px;
  margin-bottom: 0;
}

@media only screen and (min-width:1166px) {
	.left-sidebar .slick-sidebar ol li:nth-child(1),.left-sidebar .slick-sidebar ol li:nth-child(2){
		display:none;
	}
	.left-sidebar .slick-sidebar ol li:nth-child(3){
		border-top:none;
	}	
}
@media only screen and (max-width: 768px){
	#menu-item-10371 #menu-item-10403{
		display:none;
	}
}