*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  background-color: inherit;
  padding: 0;
  border: none;
}

iframe {
  border: none;
  width: 100%;
}

figure {
  margin: 0;
}

* {
  word-wrap: break-word;
}
@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  font: 500 1.6rem/1.42857143 "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ",
    "Meiryo", verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  color: #333;
}

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

.hide {
  display: none;
}

[class*="inview-"] {
  opacity: 0;
}

@media (min-width: 576px) {
  .xs-br {
    display: none;
  }
}
.tab-menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.tab_class {
  flex-basis: 50%;
  height: 50px;
  line-height: 50px;
  font-size: 1rem;
  text-align: center;
  background: #f5f5f5;
  cursor: pointer;
  padding: 0 20px;
}

input[name="tab_name"] {
  display: none;
}

input:checked + .tab_class {
  background-color: #397fcc;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .tab-menu {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .tab_class {
    flex-basis: 25%;
    padding: 0;
    font-size: 1.3rem;
  }
  .tab_class:hover {
    background: #397fcc;
    color: #fff;
  }
}
/* .product-header */
.product-header {
  max-width: 660px;
  margin: 0 auto 2em;
}
.product-header .product-header-title {
  font-size: 1.8rem;
  background: #397fcc;
  text-align: center;
  color: #fff;
  padding: 0.2em 0;
  font-weight: bold;
}
.product-header .product-header-lead {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1em;
  text-align: center;
}
.product-header .product-header-info {
  border: solid 2px #397fcc;
  padding: 1em 0.5em;
}
.product-header .product-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1em;
}
.product-header .product-header-wrap .product-header-text {
  flex-basis: 70%;
  font-size: 1.2rem;
  line-height: 1.75;
}
.product-header .product-header-wrap .product-header-img {
  flex-basis: 25%;
  text-align: right;
}
.product-header table {
  border-collapse: collapse;
  width: 90%;
}
.product-header table td {
  border: solid 1px #999;
  padding: 0.2em 0.4em;
}
/*!
 * animate.css - https://animate.style/
 * Version - 4.0.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 0.1s;
  --animate-repeat: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  /*  
    .animate__animated {
      -webkit-animation-duration: 1ms !important;
      animation-duration: 1ms !important;
      -webkit-transition-duration: 1ms !important;
      transition-duration: 1ms !important;
      -webkit-animation-iteration-count: 1 !important;
      animation-iteration-count: 1 !important;
    }
  */
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.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, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: 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);
  }
}
.animate__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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.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);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  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(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exists */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.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(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

/* Flippers */
@-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(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.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;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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 lightSpeedInRight {
  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);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  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 lightSpeedInLeft {
  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);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.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(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

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

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

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

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

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

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

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

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

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

/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@keyframes curtain {
  0% {
    transform-origin: right;
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
    opacity: 1;
  }
  51% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
}
.inview-curtain::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #397fcc;
  content: "";
  z-index: 2;
  transition: all 0.3s ease;
}

.animate__curtain {
  position: relative;
  overflow: hidden;
  -webkit-animation-name: curtain;
  animation-name: curtain;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.animate__curtain::after {
  transition-delay: 1s;
  transform-origin: right;
  width: 0;
}
.siteHeader {
  min-height: 45px;
  height: 100px;
  background: #000;
  position: sticky;
  top: 40px;
  left: 0;
  width: 100%;
  min-width: 1366px;
  z-index: 100;
}
.siteHeader .logo {
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  position: relative;
  z-index: 999;
}
.siteHeader .logo a {
  color: #444;
  transition: opacity 0.3s ease;
}
.siteHeader .logo a:hover {
  opacity: 0.8;
}
.siteHeader .siteDesc {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
body.menu_active .siteHeader {
  background-color: #fff;
}
.siteHeader .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 4% 0 4%;
  overflow: visible;
}

.headerNav {
  display: flex;
  height: 100%;
}

.siteNav {
  height: 100%;
  margin-left: auto;
}
.siteNav ul {
  height: 100%;
  display: flex;
}
.siteNav ul li {
  height: 100%;
}
.siteNav ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
  font-weight: bold;
  position: relative;
}

.subNav {
  height: 100%;
}
.subNav ul {
  height: 100%;
}
.subNav ul li {
  height: 100%;
}
.subNav a {
  background: #397fcc;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
  width: 300px;
}
.subNav a:hover {
  background: #28619f;
}

.menu_btn {
  display: none;
}

.NV001 {
  display: flex;
  position: static;
  background: transparent;
  height: 100%;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .NV001 {
    font-weight: bold;
    letter-spacing: 0.12em;
    position: fixed;
    width: 80%;
    right: 0;
    top: 0;
    transition: all 0.3s ease;
    transform: translateX(100%);
    height: 100vh;
    z-index: 300;
    display: none;
    background: transparent;
    justify-content: flex-end;
    height: 100%;
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.8);
  }
  .NV001.on {
    display: block;
  }
}
.NV001 .menu {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .NV001 .menu {
    display: block;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    padding: 40px 0;
    flex-wrap: nowrap;
  }
}
.NV001 .menu > li {
  display: flex;
  height: 100%;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s linear;
  flex-direction: column;
  border-top: none;
  position: relative;
  width: auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .NV001 .menu > li {
    padding: 10px 0;
    height: auto;
  }
}
.NV001 .menu > li > a {
  padding: 18px;
  color: #fff;
  font-size: 13px;
  display: flex;
  color: #231815;
  padding: 18px;
  background-image: none;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .NV001 .menu > li > a {
    color: #fff;
  }
}
.NV001 .menu > li > a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.menu > li > ul {
  position: absolute;
  left: 0px;
  top: 120%;
  width: 240px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0px 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.menu > li.menu-item-has-children:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.menu > li > ul,
.menu > li > ul > li > ul {
  display: block !important;
  visibility: hidden;
  opacity: 0;
}
.menu > li > ul > li a,
.menu > li > ul > li > ul > li a {
  padding: 10px;
  font-size: 12px;
  display: block;
  border-bottom: solid 1px #ccc;
  color: #555;
}
.menu > li > ul > li a:hover,
.menu > li > ul > li > ul > li a:hover {
  background: #aaa;
}

/*
.menu-item-has-children > a {
  &::after {
    content: "▼";
  }
}
*/
body.menu_active .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.menuOpen {
  display: none;
}
.menuOpen span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  opacity: 1;
  display: inline-block;
  transition: all 0.2s;
}
.menuOpen span:nth-of-type(1) {
  top: 0;
}
.menuOpen span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menuOpen span:nth-child(3) {
  bottom: 0;
}

/**
 * MEDIA QUERY
 * タブレット以下バーガーメニュー */
@media all and (max-width: 1025px) {
  .siteHeader {
    height: 45px;
    min-width: 100%;
  }
  .siteHeader .logo img {
    width: 130px;
  }
  .siteHeader .siteDesc {
    font-size: 10px;
    transform: scale(0.8);
    padding: 12px 0 0;
  }

  .headerNav {
    transition: all 0.3s ease;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    z-index: 888;
    /* padding-top: 45px; */
    padding-top: 80px;
  }

  .siteNav {
    height: auto;
    margin: 0;
    width: 100%;
    padding: 0;
    display: block;
    background: #000;
  }
  .siteNav ul {
    height: auto;
    display: block;
  }
  .siteNav ul li {
    height: auto;
  }
  .siteNav ul li a {
    height: auto;
    padding: 20px;
    border-bottom: solid 1px #444;
    font-size: 14px;
  }

  .subNav {
    height: auto;
    margin: 0;
    width: 100%;
    padding: 0;
    display: block;
    background: #f00;
  }
  .subNav ul {
    height: auto;
    display: block;
  }
  .subNav ul li {
    height: auto;
  }
  .subNav ul li a {
    height: auto;
    width: 100%;
    max-width: initial;
    padding: 20px;
    justify-content: flex-start;
    font-size: 14px;
  }

  .menu_btn {
    display: block;
    width: 45px;
    height: 45px;
    background: #397fcc;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
  }

  .menuOpen {
    transition: 0.5s ease;
    width: 22px;
    height: 16px;
    position: absolute;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    top: 15px;
    right: 12px;
    display: block;
  }

  body.menu-on {
    overflow: hidden;
  }
  body.menu-on .headerNav {
    left: 0;
  }
  body.menu-on .menuOpen {
    transform: rotate(45deg);
  }
  body.menu-on .menuOpen span:nth-of-type(1) {
    transform: rotate(90deg);
    transform-origin: center;
    top: calc(50% - 1px);
  }
  body.menu-on .menuOpen span:nth-child(3) {
    display: none;
  }
}
/**
 * PCのみ（ホバーアクション系）
 */
@media all and (min-width: 1100px) {
  .siteNav a:hover::after {
    width: 80%;
  }
  .siteNav a::after {
    position: absolute;
    bottom: 30px;
    left: 50%;
    content: "";
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .siteNav li ul.sub-menu li a::after {
    content: none;
  }
}
/**
 * Fixed Adjust
 * ヘッダーを固定する場合の上部パディングを設定する。
 */
.header-fixed-adjust {
  padding-top: 55px;
}
@media screen and (max-width: 767px) {
  .header-fixed-adjust {
    padding-top: 100px;
  }
}
.siteFooter .footer_info {
  text-align: center;
}
.siteFooter .footer_logo {
  margin-bottom: 16px;
}

.siteFooter .footer_company_name {
  font-weight: bold;
  margin-bottom: 6px;
}
.siteFooter .footer_desc {
  font-size: 10px;
  margin-bottom: 28px;
}
.siteFooter .footer_addr {
  font-size: 13px;
  margin-bottom: 6px;
}
.siteFooter .footer_tel {
  font-size: 13px;
}
.siteFooter .footer_bnr {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  max-width: 960px;
  margin: 0 auto;
}
.siteFooter .footer_bnr_item {
  max-width: 440px;
  width: 440px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.siteFooter .footer_sec {
  letter-spacing: 0.6em;
  font-weight: bold;
  margin-bottom: 1em;
}
.siteFooter .footer_sec_tel {
  font-size: 13px;
}
.siteFooter .footer_bnr_item.koji {
  background: url(../images/bg_tile_blue.jpg) no-repeat top center;
}
.siteFooter .footer_bnr_item.kenzai {
  background: url(../images/bg_tile_purple.jpg) no-repeat top center;
}
.siteFooter .footer_nav {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto;
}
.siteFooter .footer_nav li {
  font-size: 13px;
  line-height: 1.8;
}
.siteFooter .footer_nav li.nest {
  text-indent: 1em;
}
.siteFooter .footer_nav li a {
  font-size: 13px;
  transition: color 0.3s ease;
}
.siteFooter .footer_nav li a:hover {
  color: #397fcc;
  text-decoration: underline;
}
.siteFooter .copyright {
  display: block;
  text-align: center;
  padding: 3em 0 1em;
}

@media all and (max-width: 565px) {
  .siteFooter .footer_logo img {
    width: 120px;
  }
  .siteFooter .footer_desc {
    margin-bottom: 20px;
  }
  .siteFooter .footer_addr {
    font-size: 10px;
  }
  .siteFooter .footer_tel {
    font-size: 10px;
  }
  .siteFooter .footer_sec_tel {
    text-align: center;
  }
  .siteFooter .footer_bnr {
    width: calc(100% + 20px);
    margin-left: -10px;
    padding: 30px 0 10px;
  }
  .siteFooter .footer_bnr span {
    display: block;
  }
  .siteFooter .footer_bnr span.t {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .siteFooter .footer_bnr span.f {
    font-size: 10px;
  }
  .siteFooter .footer_bnr i {
    display: none;
  }
  .siteFooter .footer_nav {
    width: calc(100% + 20px);
    margin-left: -10px;
    display: block;
  }
  .siteFooter .footer_nav li {
    border-bottom: solid 1px #dddddd;
    padding: 0 0 0 20px;
  }
  .siteFooter .footer_nav li a {
    display: block;
    padding: 10px;
  }
}
.page_body {
  overflow: hidden;
  min-width: 1366px;
}

.container {
  width: 1366px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.container.short {
  max-width: 960px;
}
.container:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .full-block {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}

@media all and (max-width: 1025px) {
  .page_body {
    width: 100%;
    min-width: inherit;
  }

  .container {
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
  .container.xs-full {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}
.breadcrumb {
  padding: 10px 0;
  font-size: 12px;
  margin-bottom: 20px;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:not(:last-child)::after {
  font-size: 10px;
  padding: 0 10px;
  content: ">";
}
.mainvisual {
  height: 850px;
  background: url(../images/top_cover_bg.jpg) top center no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.mainvisual .bottom-info {
  position: absolute;
  bottom: -20px;
  width: 100%;
  z-index: 2;
}
.mainvisual .bottom-info h2 {
  font-size: 13px;
  margin-bottom: 30px;
  font-family: "Hind";
}
.mainvisual .bottom-info h2::before {
  content: "";
  width: 400px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: calc(100% + 20px);
  top: 5px;
}
.mainvisual .bottom-info p {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.3em;
}
.mainvisual .s {
  font-size: 62px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.mainvisual .l {
  font-size: 115px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  display: inline-block;
}
.mainvisual .m {
  font-size: 57px;
  font-family: serif;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-left: 0.2em;
}

@media all and (max-width: 1025px) {
  .mainvisual {
    height: 100vh;
    background: url(../images/top_cover_bg_sp.jpg) top center no-repeat;
    background-size: cover;
  }
  .mainvisual .bottom-info {
    bottom: -20px;
  }
  .mainvisual .bottom-info h2 {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .mainvisual .bottom-info p {
    font-size: 18px;
    letter-spacing: inherit;
  }
  .mainvisual p {
    padding-left: 10px;
    margin-bottom: 5px;
  }
  .mainvisual .s {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
  }
  .mainvisual .l {
    font-size: 70px;
  }
  .mainvisual .m {
    font-size: 22px;
  }
}
.iframe-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* CSS Document */
.fixed_bnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: right;
  z-index: 10;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.fixed_bnr.on {
  transform: translateY(0);
}
.fixed_bnr.off {
  transform: translateY(calc(100% - 25px));
}
.fixed_bnr .toggle-btn {
  display: inline-block;
  width: 30px;
  cursor: pointer;
  background: url(../images/bnr-arw.png) no-repeat center center
    rgba(57, 127, 204, 0.9);
  height: 15px;
  background-size: 8px;
  vertical-align: bottom;
}
.fixed_bnr .toggle-btn.open {
  transform: rotate(180deg);
}
.fixed_bnr a {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(57, 127, 204, 0.9);
  color: #fff;
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
}
.fixed_bnr a img {
  height: 45px;
}
.IM001 {
  display: flex;
  flex-wrap: wrap;
}
.IM001 .box {
  flex-basis: 20%;
  margin: 0 10px 50px;
  min-width: 190px;
}
@media screen and (max-width: 767px) {
  .IM001 .box {
    flex-basis: 44%;
    margin: 0 10px 50px;
    min-width: inherit;
  }
}
.IM001 .thumb {
  border: solid 1px #eee;
  margin-bottom: 20px;
  padding: 20px;
}
.IM001 .title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.IM001 .price {
  font-size: 1.6rem;
  color: #0059b2;
}
.IM002 .topcol {
  display: flex;
}
@media screen and (max-width: 767px) {
  .IM002 .topcol {
    display: block;
  }
}
.IM002 .thumb {
  flex-basis: 40%;
  min-width: 250px;
  margin-right: 5%;
}
.LI001 {
  margin-bottom: 40px;
}
.LI001 li {
  margin-bottom: 6px;
}
.LI001 li a {
  font-size: 1.4rem;
  color: #777;
}
.LI002 li {
  margin-bottom: 15px;
}
.LI003 a {
  color: #777;
  padding: 7px 0;
  display: block;
  border-bottom: dotted 1px #ccc;
}
.LI003 time {
  margin-right: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .LI003 time {
    display: block;
  }
}
.LI003 .title {
  font-size: 1.4rem;
}
.list-05 li {
  display: flex;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
.list-05 .thumb {
  flex-basis: 25%;
}
.list-05 .info {
  flex-basis: 75%;
  padding-left: 2%;
}
.list-05 .info .title {
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}
.list-05 .info p {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}
.list-05 .link {
  width: 100%;
  margin-top: 0.5em;
}
.list-05 .link a {
  font-size: 1.2rem;
  padding: 0.4em 0.4em;
  color: #397fcc;
  display: inline-block;
  line-height: 1;
  border: solid 1px #397fcc;
  border-radius: 4px;
  margin: 0 0.4em 0.4em 0;
}
@media screen and (min-width: 768px) {
  .list-05 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .list-05 li {
    flex-basis: 48%;
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: solid 2px #ccc;
  }
  .list-05 .info .title {
    font-size: 2.4rem;
    margin-bottom: 0.4em;
  }
  .list-05 .info p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0.4em;
  }
  .list-05 .link {
    margin-top: 1em;
  }
  .list-05 .link a:hover {
    color: #fff;
    background: #397fcc;
  }
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .en {
  font-size: 64px;
  font-weight: 700;
  color: #397fcc;
  display: block;
  font-family: "Hind";
  line-height: 1;
}
.section-title .ja {
  font-size: 28px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-bottom: solid 2px;
}
.section-title.white .en {
  color: #fff;
}
.section-title.white .ja {
  color: #fff;
}

@media (max-width: 1024px) {
  .section-title {
    margin-bottom: 25px;
  }
  .section-title .en {
    font-size: 32px;
  }
  .section-title .ja {
    font-size: 14px;
    border-bottom: solid 1px;
  }
}
.TB001 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.TB001 th {
  background: #eee;
  padding: 10px;
}
.TB001 td {
  padding: 10px;
}
.btnArea {
  text-align: center;
}
.btnArea.left {
  text-align: left;
}
.btnArea.right {
  text-align: right;
}

.btn {
  width: 300px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  position: relative;
  transition: all 0.6s ease;
  outline: none;
  border: none;
  cursor: pointer;
}
.btn::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 40px;
  right: 0;
  top: 50%;
  margin-top: -1px;
  transition: all 0.3s ease;
}
.btn.white {
  background: #fff;
  color: #397fcc;
}
.btn.white::after {
  background: #397fcc;
}
.btn.blue {
  background: #397fcc;
  color: #fff;
}
.btn.blue::after {
  background: #fff;
}

@media (max-width: 1024px) {
  .btn {
    width: 250px;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
  }
}
@media (min-width: 1025px) {
  .btn:hover {
    background: #000;
    color: #fff;
  }
  .btn:hover::after {
    width: 0;
  }
}
.AA001 .article {
  border-bottom: solid 1px #dedede;
  background: #fff;
  overflow: hidden;
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  /*
    .post-meta {
      margin-bottom: 30px;
      li {
        position: relative;
        color: #777777;
        font-size: $fontsize_xs;
        line-height: 1em;
        margin-right: 15px;
        display: inline-block;
        text-transform: uppercase;
        .i-clock {
          width: 10px;
          height: 10px;
          margin-right: 6px;
          fill: #666;
        }
        .i-eye {
          width: 10px;
          height: 10px;
          margin-right: 6px;
          fill: #666;
        }
      }
    }
    .required_read_time {
      font-size: 1.3rem;
      margin: .4em;
    }
  */
}
.AA001 .article .post-thumbnail {
  max-width: 280px;
}
.AA001 .article .info {
  width: 100%;
  margin-left: 15px;
}
.section-desc {
  font-size: 18px;
}

.txt-center {
  text-align: center;
}

.txt-bold {
  font-weight: bold;
}
.hover_line::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #2ecc71;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hover_line::after:hover {
  width: 100%;
}
/* CSS Document */
.overscroll {
  width: 100%;
  overflow-x: auto;
}
.BL001 {
  display: flex;
  background: transparent;
  justify-content: space-around;
}
.BL001 .box {
  flex-basis: calc(100% / 3);
  text-align: center;
  background: #fff;
  padding: 20px;
}
.BL001 .box:nth-child(even) {
  background: #f7f7f7;
}
.BL001 .image {
  max-width: 120px;
  margin: 0 auto 25px;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
}
.BL001 .title {
  font-size: 18px;
  margin: 10px 0;
  font-weight: bold;
}
.BL001 .title .en {
  font-size: 1.2rem;
  color: #e24994;
  display: block;
}
.BL001 .text {
  font-size: 1.4rem;
  line-height: 2;
  text-align: justify;
}

@media all and (max-width: 565px) {
  .BL001 {
    display: block;
  }
  .BL001 .title {
    font-size: 14px;
    text-align: center;
  }
}
.BL002 {
  display: flex;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .BL002 {
    display: block;
  }
}
.BL002 .box {
  flex-basis: calc(100% / 3);
  text-align: center;
  background: #fff;
  padding: 20px;
}
.BL002 .box:nth-child(even) {
  background: #f7f7f7;
}
.BL002 .image {
  max-width: 120px;
  margin: 0 auto 25px;
  min-height: 170px;
  display: flex;
  align-items: flex-end;
}
.BL002 .title {
  font-size: 1.6rem;
  margin: 0 0 10px;
}
.BL002 .title .en {
  font-size: 1.2rem;
  color: #e24994;
  display: block;
}
.BL002 .text {
  font-size: 1.4rem;
  line-height: 2;
  text-align: justify;
}
.BL003 {
  margin: 0 0 50px;
}
.BL003 .title {
  font-size: 2.4rem;
  margin: 0 0 10px;
  color: #e24994;
}
.BL003 .text {
  font-size: 1.6rem;
  line-height: 1.6;
}
.BL004 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.BL004 .box {
  flex-basis: 23%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .BL004 .box {
    flex-basis: 48%;
    margin: 0 0 20px;
  }
}
.BL004 .thumb {
  margin: 0 0 20px;
}
.BL004 .thumb img {
  border-radius: 50%;
}
.BL004 .title {
  font-size: 2rem;
  margin: 0 0 15px;
}
.BL004 .text {
  font-size: 1.4rem;
  text-align: justify;
  line-height: 1.8;
}
.BL005 .title {
  font-size: 2rem;
  font-weight: normal;
  margin: 0 0 6px;
}
.BL005 .text {
  font-size: 1.4rem;
  padding: 10px 20px;
  border-radius: 6px;
  background: #ffece5;
  line-height: 1.7;
  margin: 0 0 25px;
}
.BL006 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.BL006 li {
  flex-basis: 48%;
  position: relative;
  margin-bottom: 30px;
}
.BL006 .thumb {
  position: relative;
}
.BL006 .thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  top: 0;
}
.BL006 .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}
.BL006 .title {
  font-size: 28px;
  padding: 10px 20px;
  border-radius: 6px;
  line-height: 1;
  margin: 0 0 16px;
  color: #fff;
  position: relative;
  letter-spacing: 0.3em;
}
.BL006 .text {
  font-size: 1.4rem;
  padding: 10px 20px;
  border-radius: 6px;
  background: #ffece5;
  line-height: 1.7;
  margin: 0 0 25px;
}

@media all and (max-width: 565px) {
  .BL006 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .BL006 li {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .BL006 .title {
    font-size: 24px;
  }
}
.BL007 .info {
  background: #fff;
  position: absolute;
  right: 30px;
  padding: 50px 40px;
  width: 600px;
  top: 0;
  height: 300px;
  z-index: 4;
}
.BL007 .thumb {
  max-width: 890px;
  display: inline-block;
}
.BL007 .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.BL007 .text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.BL007 .row {
  position: relative;
  padding: 60px 0;
}
.BL007 .row:nth-child(even) {
  text-align: right;
}
.BL007 .row:nth-child(even) .info {
  right: inherit;
  left: 30px;
  text-align: left;
  top: 120px;
}

@media all and (max-width: 1025px) {
  .BL007 li {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .BL007 .info {
    width: 80%;
    position: relative;
    padding: 20px;
    margin-top: -40px;
    height: auto;
    right: 0;
  }
  .BL007 .title {
    font-size: 18px;
  }
  .BL007 .text {
    font-size: 14px;
  }
  .BL007 .row {
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .BL007 .row:nth-child(even) {
    align-items: flex-start;
  }
  .BL007 .row:nth-child(even) .info {
    width: 80%;
    position: relative;
    padding: 20px;
    margin-top: -40px;
    height: auto;
    top: 0;
    left: 0;
    right: inherit;
  }
}
.block-content-01 li {
  display: block;
  margin-bottom: 20px;
}
.block-content-01 .thumb {
  margin-bottom: 10px;
}
.block-content-01 .title {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .block-content-01 {
    display: flex;
    flex-wrap: wrap;
  }
  .block-content-01 li {
    width: calc(96% / 3);
    margin-right: 2%;
    margin-bottom: 40px;
  }
  .block-content-01 li:nth-child(3n) {
    margin-right: 0;
  }
  .block-content-01 .title {
    font-size: 18px;
  }
}
.block-content-03 {
  margin-top: 40px;
}


.block-content-03 li {
  font-size: 1.2rem;
  border-bottom: solid 1px #ccc;
  padding: 0.5em;
  display: flex;
  flex-wrap: wrap;
}
.block-content-03 li.heading {
  background: #eee;
}
.block-content-03 li .work_title {
  flex-basis: 60%;
  font-weight: bold;
  padding-bottom: 0.5em;
  padding-right: 0.5em;
  order: 1;
}
.block-content-03 li .work_client {
  flex-basis: 60%;
  order: 3;
}
.block-content-03 li .work_area {
  flex-basis: 40%;
  order: 2;
}
.block-content-03 li .work_amount {
  flex-basis: 40%;
  order: 4;
}
@media screen and (min-width: 768px) {
  .block-content-03 li {
    font-size: 1.4rem;
  }
  .block-content-03 li .work_title {
    flex-basis: 25%;
    padding-bottom: 0;
    padding-right: 0;
  }
  .block-content-03 li .work_client {
    flex-basis: 25%;
  }
  .block-content-03 li .work_area {
    flex-basis: 25%;
  }
  .block-content-03 li .work_amount {
    flex-basis: 25%;
  }
}
.contact-form {
  font-size: 14px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="image"],
.contact-form input[type="button"],
.contact-form input[type="submit"],
.contact-form textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  background: #ececec;
  border: solid 1px #d7d8d7;
}
.contact-form .form-item {
  margin: 0 0 1em;
}
.contact-form .form-item-Label {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .contact-form {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-form .form-item {
    display: flex;
  }
  .contact-form .form-item-Label {
    flex-basis: 30%;
  }
}
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  opacity: 1;
  filter: alpha(opacity=100);
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-top: 32px;
  overflow: visible;
  background: #000;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  background: #000;
  padding: 1px;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

#cboxLoadingOverlay {
  background: #000;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #000;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -20px;
  background: url(images/controls.png) no-repeat 0 0;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  background-position: 0px 0px;
  right: 44px;
}

#cboxPrevious:hover {
  background-position: 0px -25px;
}

#cboxNext {
  background-position: -25px 0px;
  right: 22px;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

#cboxClose {
  background-position: -50px 0px;
  right: 0;
}

#cboxClose:hover {
  background-position: -50px -25px;
}

.cboxSlideshow_on #cboxPrevious,
.cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}
.product-categories {
  margin-bottom: 40px;
}
.product-categories li {
  margin-bottom: 6px;
}
.product-categories li a {
  font-size: 1.4rem;
  color: #777;
}
.widget--title {
  font-size: 2rem;
  margin: 10px 0;
}
.searchform {
  margin-bottom: 16px;
}
.searchform div {
  display: flex;
}
.searchform input[type="text"] {
  flex-grow: 1;
  padding: 13px;
  font-size: 16px;
  border: solid 1px #ccc;
  border-right: none;
  max-width: calc(100% - 40px);
  min-width: calc(100% - 40px);
}
.searchform button[type="submit"] {
  width: 40px;
  text-align: center;
  border: solid 1px #ccc;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-left: none;
  cursor: pointer;
}
.searchform .i-search {
  width: 20px;
  height: 20px;
  fill: #ccc;
}
.profile {
  /* max-width: 680px; */
  max-width: 1000px;

  margin: 0 auto;
}
.profile .single-profile-title {
  font-size: 16px;
  padding: 10px;
  background: #444;
  color: #fff;
  margin-bottom: 10px;
}
.profile .profile__author {
  display: flex;
}
.profile .avatar {
  max-width: 50px;
}
.profile .avatar img {
  border-radius: 50%;
}
.profile .profile__contents {
  margin: 0 0 0 10px;
}
.profile .profile__contents .profile__name {
  font-size: 16px;
}
.profile button[type="submit"] {
  width: 40px;
  text-align: center;
  border: solid 1px #ccc;
  outline: none;
  box-shadow: none;
  background: transparent;
  border-left: none;
  cursor: pointer;
}
.profile .i-search {
  width: 20px;
  height: 20px;
  fill: #ccc;
}
.single-relation {
  /* max-width: 680px; */
  max-width: 1000px;
  margin: 30px auto;
}
.single-relation h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .single-relation h2 {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
}
.single-relation .single-relation-title {
  font-size: 16px;
  padding: 10px;
  background: #444;
  color: #fff;
}
.single-relation .loop {
  /* display: flex; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .single-relation .loop {
    display: block;
  }
}
.single-relation .article {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .single-relation .article {
    display: flex;
    padding: 10px 0;
  }
}
.single-relation .article .info {
  max-width: inherit;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .single-relation .article .info {
    flex-basis: 75%;
    padding: 0 0 0 10px;
  }
}
.single-relation .article .info .post-content {
  display: none;
}
@media screen and (max-width: 767px) {
  .single-relation .article .info .post-content {
    display: none;
  }
}
.single-relation figure {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .single-relation figure {
    flex-basis: 25%;
    margin-bottom: 0;
  }
}
.single-relation .content {
  display: none;
}
@media screen and (max-width: 767px) {
  .single-relation .post-date {
    font-size: 1.2rem;
  }
}
.wp-block-code {
  overflow: scroll;
  font-size: 14px;
  background: #f2f2f2;
  padding: 10px;
  max-height: 200px;
}
.post-outline {
  display: inline-block;
  padding: 1em;
  background: #f2f2f2;
  border: solid 1px #ccc;
  margin: 0 0 2em;
  font-size: 1.4rem;
}
.post-outline .outline__number {
  color: #999;
}
.post-outline .post-outline__list {
  list-style: none;
}
.post-outline .post-outline__list .post-outline__list {
  padding-left: 1em;
}
.post-outline .post-outline__list a {
  padding: 2px 0;
  display: block;
}
.pagination {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination {
    padding: 70px 0;
  }
}
.pagination .page-numbers {
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #efefef;
  color: #333;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    font-size: 15px;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.pagination .page-numbers.current {
  text-decoration: underline;
  background: #ddd;
}
.pagination .page-numbers:hover {
  background: #cccccc;
  color: #333;
}


.section-intro {
  background: #7e92cb;
  background: url("../images/top_intro_bg.png"),
    linear-gradient(215deg, #7e92cb 0%, #397fcc 100%);
  background-repeat: no-repeat;
  background-position: bottom left;
  padding: 120px 0;
  color: #fff;
  position: relative;
  margin-bottom: 120px;
}
.section-intro .inner {
  margin-left: calc((100% - 1366px) / 2);
  padding: 0 0 0 20px;
}
.section-intro .section-desc {
  margin-bottom: 50px;
}
.section-intro .img {
  position: absolute;
  left: 50%;
  top: 120px;
}
.section-intro .img img {
  max-width: inherit;
}

.section-work {
  padding: 80px 0;
}
.section-work .section-desc {
  margin-bottom: 100px;
  text-align: center;
}
.section-work .work_list {
  margin: 0 40px 60px;
  justify-content: center;
}
.section-work .work_list li {
  padding: 0 20px;
  text-align: center;
}
.section-work .work_list li .thumb {
  max-width: 510px;
}

.section-project {
  background: url(../images/project_bg.jpg) top center repeat;
  padding: 120px 0;
  overflow: hidden;
}

.section-about {
  margin-bottom: 60px;
  overflow: hidden;
}

.section-movie {
  background: url(../images/top_movie_bg.jpg) no-repeat top center;
  margin-bottom: 60px;
  background-size: cover;
  padding: 130px 0;
}
.section-movie .movie-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.section-movie .btnArea {
  text-align: center;
  padding: 40px 0;
}

.section-cta {
  background: #015cbc;
  background: linear-gradient(121deg, #015cbc 10%, #4a9ffe 90%);
  padding: 70px 0;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
.section-cta .section-desc {
  margin-bottom: 40px;
}

.taxonomy_cond {
  text-align: center;
}
.taxonomy_cond dt {
  display: inline-block;
  padding: 0 1em;
  border-right: 1px solid #ccc;
  font-weight: bold;
}
.taxonomy_cond dd {
  display: inline-block;
  padding: 0 0.3em;
  margin: 0;
}
.taxonomy_cond dd.active a {
  font-weight: bold;
}

.bambitious-nara {
  padding: 20px 0 20px;
  text-align: center;
  background: #f5f5f5;
  margin-top: 40px;
  border-top: solid 5px #397fcc;
}
.bambitious-nara .click_desc {
  display: block;
  margin-bottom: 7px;
}
.bambitious-nara .chara {
  font-size: 1.2rem;
}
.bambitious-nara .chara-wrap {
  max-width: 120px;
  margin: 0 auto;
}
.bambitious-nara .chara-wrap span {
  display: block;
}
.bambitious-nara .bn-desc {
  font-size: 1.5rem;
  padding: 1em 0;
  color: #397fcc;
  font-weight: bold;
}
.bambitious-nara .bn-desc a {
  color: #397fcc;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .section-intro {
    background-size: 100%;
    padding: 50px 0;
    color: #fff;
    position: relative;
    margin-bottom: 0px;
  }
  .section-intro .inner {
    margin: 0;
    padding: 0 10px;
  }
  .section-intro .info {
    margin: 0 0 30px;
  }
  .section-intro .section-desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .section-intro .btnArea {
    text-align: center;
  }
  .section-intro .img {
    position: static;
    text-align: center;
  }
  .section-intro .img img {
    max-width: 100%;
  }

  .section-work {
    padding: 60px 0;
  }
  .section-work .section-desc {
    margin-bottom: 40px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 10px;
  }
  .section-work .work_list {
    margin: 0 20px 30px;
  }
  .section-work .work_list li {
    margin-bottom: 40px;
  }

  .section-project {
    background-size: 50%;
    padding: 50px 0;
  }

  .section-movie {
    margin-bottom: 40px;
    padding: 50px 0;
  }
  .section-movie .movie-wrapper {
    max-width: 80%;
  }

  .section-cta {
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .section-cta .section-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.page.page-id-26 {
  /* accordion */
  /* faq-box */
  /* medium screen */
  /* large screen */
}
.page.page-id-26 .post-content .lead {
  text-align: center;
  margin-bottom: 3em;
  font-size: 1.4rem;
}
.page.page-id-26 .faq-container {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.4rem;
}
.page.page-id-26 .accbox {
  margin: 2em 0;
  padding: 0;
  max-width: 400px;
}
.page.page-id-26 label {
  display: block;
  margin: 1.5px 0;
  padding: 11px 12px;
  color: #fff;
  font-weight: bold;
  background: #3399ff;
  cursor: pointer;
}
.page.page-id-26 label:hover {
  background: #0066cc;
}
.page.page-id-26 input {
  display: none;
}
.page.page-id-26 .faq-q-box {
  transition: all 0.3s ease;
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
.page.page-id-26 .cssacc:checked + .faq-q-box {
  height: auto;
  opacity: 1;
}
.page.page-id-26 .faq-box {
  margin-bottom: 60px;
  line-height: 1.8;
}
.page.page-id-26 .faq-t {
  padding-top: 60px;
}
.page.page-id-26 .faq-t p {
  line-height: 1.7;
}
.page.page-id-26 .faq-title {
  background-color: #0066cc;
  color: white;
  padding: 5px 10px;
}
.page.page-id-26 .faq-title h1 {
  font-size: 20px;
}
.page.page-id-26 .faq-q-box {
  background-color: #f5f5f5;
  /* padding: 30px; */
}
.page.page-id-26 .faq-a {
  display: flex;
}
.page.page-id-26 .faq-a-icon {
  margin-right: 15px;
}
.page.page-id-26 .faq-a-info {
  /* padding-bottom: 50px; */
  font-size: 1.4rem;
}
.page.page-id-26 .faq-method,
.page.page-id-26 .faq-a,
.page.page-id-26 .faq-caution {
  padding: 0 20px;
  margin: 20px 0;
}
.page.page-id-26 .faq-method-title h2 {
  font-size: 2rem;
  color: #3399ff;
  padding-bottom: 20px;
  margin: 0;
}
.page.page-id-26 .faq-method-ol {
  list-style-type: decimal;
  /* list-style-position: inside; */
  padding-left: 20px;
}
.page.page-id-26 .faq-method-ol li {
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 1.4rem;
  list-style-position: outside;
}
.page.page-id-26 .faq-caution-title h2 {
  font-size: 20px;
  color: red;
  padding-bottom: 20px;
}
.page.page-id-26 .senzai-example {
  padding-bottom: 30px;
}
.page.page-id-26 .senzai-example3 {
  padding-bottom: 30px;
}
.page.page-id-26 .faq-caution-li {
  list-style-type: disc;
  padding-left: 20px;
  list-style-position: outside;
  font-size: 1.4rem;
}
.page.page-id-26 .faq-caution-li li {
  padding-left: 10px;
  padding-bottom: 15px;
}
.page.page-id-26 .komejirushi {
  padding-left: 10px;
}
@media (max-width: 600px) {
  .page.page-id-26 .faq-t {
    margin: 0 auto;
  }
  .page.page-id-26 .faq-method,
  .page.page-id-26 .faq-a,
  .page.page-id-26 .faq-caution {
    padding: 0 10px;
    margin: 10px 0;
  }
  .page.page-id-26 .post-content .lead br {
    display: none;
  }
}
@charset "UTF-8";
.page-id-29 {
  /* 繝ｬ繧ｹ繝昴Φ繧ｷ繝� */
  /* medium screen */
}
.page-id-29 .equipment {
  text-align: center;
  font-size: 30px;
  padding-top: 60px;
}
.page-id-29 .row {
  display: flex;
}
.page-id-29 .row-second {
  margin-bottom: 100px;
}
.page-id-29 .equipment-container {
  max-width: 80%;
  width: 100%;
  margin: 0 auto;
}
.page-id-29 .equipment-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  font-size: 2.2rem;
}
.page-id-29 .equipment-title::before {
  content: "";
  position: absolute;
  bottom: 5px;
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
  left: 50%;
  top: 65%;
}
.page-id-29 .desc {
  margin-bottom: 30px;
  text-align: center;
  line-height: 2;
  font-size: 1.5rem;
}
.page-id-29 .toilet {
  background: #efefef;
  padding: 100px 0;
  flex-basis: 50%;
}
.page-id-29 .toilet .equipment-images {
  /* display: flex; */
  /* justify-content: center; */
}
.page-id-29 .toilet .equipment-images .equipment-images-item:not(:first-child) {
  margin-left: 40px;
}
.page-id-29 .bathroom-vanity {
  padding: 100px 0;
  flex-basis: 50%;
}
.page-id-29 .equipment-images {
  display: flex;
  justify-content: center;
}
.page-id-29 .equipment-images .equipment-images-item:not(:first-child) {
  margin-left: 40px;
}
.page-id-29 .unit-bus {
  padding: 100px 0;
  flex-basis: 50%;
}
.page-id-29 .System-kitchen {
  padding: 100px 0;
  background: #efefef;
  flex-basis: 50%;
}
@media (max-width: 667px) {
  .page-id-29 .row {
    flex-direction: column;
  }
  .page-id-29 .equipment-images {
    flex-direction: column;
    text-align: center;
  }
  .page-id-29 .equipment-container {
    max-width: 100%;
  }
  .page-id-29 .toilet,
  .page-id-29 .bathroom-vanity,
  .page-id-29 .unit-bus,
  .page-id-29 .System-kitchen {
    padding: 40px 10px;
  }
  .page-id-29 .equipment-images .equipment-images-item:not(:first-child) {
    margin-left: 0px;
  }
  .page-id-29
    .toilet
    .equipment-images
    .equipment-images-item:not(:first-child) {
    margin-left: 0px;
  }
  .page-id-29 .equipment-images-first {
    margin-bottom: 30px;
  }
  .page-id-29 .desc {
    text-align: left;
    font-size: 1.4rem;
  }
  .page-id-29 .unit-bus {
    background: #efefef;
  }
  .page-id-29 .System-kitchen {
    background: #fff;
  }
  .page-id-29 .br-sp {
    display: none;
  }
}
@charset "UTF-8";
/* CSS Document */
.page-id-7 {
  /* companyセクション */
  /* map */
  /* philosophy */
  /* history */
  /* レスポンシブ対応 */
}
.page-id-7 .post-content {
  font-size: 1.4rem;
  line-height: 1.75;
}
.page-id-7 .box {
  margin-bottom: 60px;
}
.page-id-7 .company-t {
  width: 100%;
  margin: 0 auto;
}
.page-id-7 .container-company {
  max-width: 760px;
  margin: 0 auto;
}
.page-id-7 .company-t tr th {
  text-align: left;
  background-color: #397fcc;
  padding: 10px;
  color: #fff;
  margin: 0px;
  font-size: 1.3rem;
  line-height: 130%;
  width: 30%;
}
.page-id-7 .name_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.page-id-7 .name_list li {
  flex-basis: 50%;
  margin-bottom: 0.2em;
  text-indent: 1em;
  font-size: 1.4rem;
}
.page-id-7 .company-t td {
  padding: 10px;
}
.page-id-7 .map {
  display: flex;
  justify-content: center;
  /* padding-top: 60px; */
}
.page-id-7 .ggmap-honsya {
  width: 48%;
  text-align: center;
}
.page-id-7 .ggmap-souko {
  margin-left: 15px;
  width: 48%;
  text-align: center;
}
.page-id-7 .philosophy-container {
  display: flex;
  justify-content: center;
}
.page-id-7 .philosophy-img img {
  width: 30%;
  display: inline-block;
  width: 100%;
}
.page-id-7 .philosophy-info {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.page-id-7 .philosophy-info h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.page-id-7 .philosophy-info p {
  font-size: 16px;
}

.page-id-7 .history-t tr th {
  background-color: #f0f0f0;
  text-align: left;
  font-weight: normal;
  color: #333333;
  vertical-align: top;
  margin: 0px;
  padding: 7px;
  font-size: 12px;
  line-height: 130%;
  width: 30%;
}
.page-id-7 .history-t {
  border-spacing: 2px;
  border-collapse: collapse;
  box-sizing: border-box;
  margin: 0 auto;
}
.page-id-7 .history-t th,
.page-id-7 .history-t td {
  border: 1px solid gray;
}
.page-id-7 .history-t td {
  padding: 7px;
}
.page-id-7 .ceo_name {
  display: block;
  text-align: right;
}
@media (max-width: 600px) {
  .page-id-7 .container-company {
    max-width: 100%;
    width: 100%;
  }
  .page-id-7 .company-t {
    font-size: 12px;
  }
  .page-id-7 .map {
    flex-direction: column;
    align-items: center;
  }
  .page-id-7 .ggmap-honsya {
    margin-bottom: 20px;
    width: 100%;
  }
  .page-id-7 .ggmap-souko {
    width: 100%;
    margin-left: 0;
  }
  .page-id-7 .philosophy-container {
    flex-direction: column;
    align-items: center;
  }
  .page-id-7 .philosophy-img {
    margin-bottom: 50px;
  }
  .page-id-7 .philosophy-info {
    margin: 0 auto;
    width: 100%;
  }
  .page-id-7 .history-t {
    font-size: 12px;
    width: 100%;
  }
  .page-id-7 .name_list {
    display: block;
  }
  .page-id-7 .name_list li {
    flex-basis: 50%;
    margin-bottom: 0.2em;
    text-indent: 1em;
    font-size: 1.2rem;
  }
}
.page-id-17 .post-content h3 {
  text-align: center;
  margin-bottom: 1em;
}
.page-id-17 .post-content p {
  text-align: left;
  font-size: 13px;
  margin-bottom: 0.6em;
}
.page-id-17 .post-content .required {
  color: #f00000;
}
.page-id-17 .contact-form {
  padding: 20px 0;
}
.page-id-17 .contact-form p {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-id-17 .post-content h3 br {
    display: none;
  }
  .page-id-17 .post-content p {
    font-size: 16px;
    text-align: center;
  }
  .page-id-17 .contact-form {
    padding: 40px 0;
  }
  .page-id-17 .contact-form p {
    text-align: left;
  }
}
@charset "UTF-8";
.page-id-9 .post-content {
  /* eco-effect */
}
.page-id-9 .post-content h2 {
  margin: 0 0 0.8em;
}
.page-id-9 .post-content h3 {
  border-left: solid 5px #397fcc;
  padding-left: 0.8em;
  margin-bottom: 0.6em;
}
.page-id-9 .post-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1em;
}
.page-id-9 .post-content .lead {
  border-radius: 10px;
  border: solid 3px;
  color: #397fcc;
  font-weight: bold;
  padding: 1em;
  margin-bottom: 2em;
}
.page-id-9 .post-content figure {
  margin: 0 auto 1em;
  text-align: center;
}
.page-id-9 .post-content .row {
  margin-bottom: 2em;
}
.page-id-9 .post-content .row.before-after {
  display: flex;
  justify-content: space-between;
}
.page-id-9 .post-content .row.before-after .col {
  flex-basis: 46%;
  position: relative;
}
.page-id-9 .post-content .row.before-after .col:first-child::after {
  position: absolute;
  content: "▶";
  color: #397fcc;
  font-size: 12px;
  top: 50%;
  right: -13%;
}
.page-id-9 .post-content .row.row-1 {
  display: block;
}
.page-id-9 .post-content .eco-effect {
  background-color: #f5f5f5;
  padding-bottom: 40px;
  width: calc(100% + 20px);
  margin-left: -10px;
  padding: 0 10px 40px;
}
.page-id-9 .post-content .tile-tt h2 {
  font-size: 18px;
  padding: 30px 0;
  text-align: center;
}
.page-id-9 .post-content .row {
  display: flex;
  justify-content: center;
}
.page-id-9 .post-content .eco-effect-info {
  background-color: #fff;
  padding: 30px 15px;
  padding: 30px 15px;
  margin-bottom: 20px;
}
.page-id-9 .post-content .eco-effect-info h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 2em;
  position: relative;
  border-left: none;
  padding-left: 0;
}
.page-id-9 .post-content .eco-effect-info h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-id-9 .post-content .eco-effect-info p {
  font-size: 1.3rem;
  line-height: 1.75;
}
.page-id-9 .post-content .img-list {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.page-id-9 .post-content .img-list > * {
  flex-basis: calc((100% - 6%) / 3);
  margin: 0 1% 32px;
}
@media screen and (min-width: 768px) {
  .page-id-9 .post-content {
    max-width: 960px;
    margin: 0 auto;
  }
  .page-id-9 .post-content h2 {
    font-size: 30px;
    text-align: center;
  }
  .page-id-9 .post-content p.l {
    font-size: 16px;
    line-height: 2;
    margin: 20px 0;
  }
  .page-id-9 .post-content .row {
    display: flex;
    justify-content: space-between;
  }
  .page-id-9 .post-content .row.row-1 {
    display: flex;
  }
  .page-id-9 .post-content .row.row-1 > .col:first-child {
    flex-basis: calc(100% - 540px);
    margin-right: 40px;
  }
  .page-id-9 .post-content .row.row-1 > .col:nth-child(2) {
    flex-basis: 500px;
  }
  .page-id-9 .post-content .row.row-2 .col,
  .page-id-9 .post-content .row.row-3 .col {
    flex-basis: 46%;
  }
  .page-id-9 .post-content .lead {
    padding: 2em;
    max-width: 700px;
    margin: 0 auto 3em;
    font-size: 16px;
  }
  .page-id-9 .post-content .eco-effect {
    width: auto;
    margin: 0 0 30px;
  }
  .page-id-9 .post-content .eco-effect p {
    font-size: 1.5rem;
  }
  .page-id-9 .post-content .tile-tt h2 {
    font-size: 22px;
  }
  .page-id-9 .post-content .eco-effect-info {
    flex-basis: 48%;
  }
  .page-id-9 .post-content .eco-effect-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@charset "UTF-8";
.page-id-15 .post-content .table-wrap {
  overflow: scroll;
  max-width: 100%;
  margin-bottom: 30px;
}
.page-id-15 .post-content table {
  font-size: 13px;
  margin-bottom: 5px;
}
.page-id-15 .post-content table th {
  background: #f0f0f0;
  border: solid 1px #ccc;
  padding: 1em;
}
.page-id-15 .post-content table th.tiny {
  min-width: 3em;
}
.page-id-15 .post-content table td {
  border: solid 1px #ccc;
  padding: 1em;
}
.page-id-15 .post-content h2 {
  margin: 0 0 0.8em;
}
.page-id-15 .post-content h3 {
  border-left: solid 5px #397fcc;
  padding-left: 0.8em;
  margin-bottom: 0.6em;
}
.page-id-15 .post-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1em;
}
.page-id-15 .post-content .lead {
  border-radius: 10px;
  border: solid 3px;
  color: #397fcc;
  font-weight: bold;
  padding: 1em;
  margin-bottom: 2em;
}
.page-id-15 .post-content .notice ul,
.page-id-15 .post-content .method ul,
.page-id-15 .post-content .caution ul {
  margin-bottom: 2em;
  font-size: 14px;
}
.page-id-15 .post-content .notice ul li,
.page-id-15 .post-content .method ul li,
.page-id-15 .post-content .caution ul li {
  list-style: disc;
  list-style: disc;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.page-id-15 .post-content figure {
  margin: 0 auto 1em;
  text-align: center;
}
.page-id-15 .post-content .color-variation span {
  font-size: 10px;
}
.page-id-15 .post-content .color-variation ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-id-15 .post-content .color-variation ul li {
  flex-basis: 48%;
  text-align: center;
  margin-bottom: 20px;
}
.page-id-15 .post-content .color-variation ul span {
  font-size: 10px;
  display: block;
  margin: 5px 0 0;
}
.page-id-15 .post-content .row {
  margin-bottom: 2em;
}
.page-id-15 .post-content .row.before-after {
  display: flex;
  justify-content: space-between;
}
.page-id-15 .post-content .row.before-after .col {
  flex-basis: 46%;
  position: relative;
}
.page-id-15 .post-content .row.before-after .col:first-child::after {
  position: absolute;
  content: "▶";
  color: #397fcc;
  font-size: 12px;
  top: 50%;
  right: -13%;
}
@media screen and (min-width: 768px) {
  .page-id-15 .post-content {
    max-width: 960px;
    margin: 0 auto;
  }
  .page-id-15 .post-content h2 {
    font-size: 30px;
    text-align: center;
  }
  .page-id-15 .post-content p.l {
    font-size: 16px;
    line-height: 2;
    margin: 20px 0;
  }
  .page-id-15 .post-content .color-variation span {
    font-size: 10px;
  }
  .page-id-15 .post-content .color-variation ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .page-id-15 .post-content .color-variation ul li {
    flex-basis: auto;
    text-align: center;
    margin: 0 10px 30px;
  }
  .page-id-15 .post-content .color-variation ul span {
    font-size: 10px;
    display: block;
    margin: 5px 0 0;
  }
  .page-id-15 .post-content .row {
    display: flex;
    justify-content: space-between;
  }
  .page-id-15 .post-content .row.row-1 > .col:first-child {
    flex-basis: calc(100% - 540px);
    margin-right: 40px;
  }
  .page-id-15 .post-content .row.row-1 > .col:nth-child(2) {
    flex-basis: 500px;
  }
  .page-id-15 .post-content .row.row-2 .col,
  .page-id-15 .post-content .row.row-3 .col {
    flex-basis: 46%;
  }
  .page-id-15 .post-content .lead {
    padding: 2em;
    max-width: 700px;
    margin: 0 auto 3em;
    font-size: 16px;
  }
}
@charset "UTF-8";
.page-id-10,
.page-id-15,
.parent-pageid-10 {
  /* .product-header */
  /* eco-effect */
  /* product-introduction */
  /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ繝舌�縺ｮ霆碁％*/
  /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ繝舌�縺ｮ蜍輔￥驛ｨ蛻�*/
  /* product-caution */
  /* sotokage */
  /* sekou-caution */
  /* interior-tile */
  /* floor繧ｯ繝ｩ繧ｹ */
  /* 繧､繝ｳ繝�Μ繝｢繧ｶ繧､繧ｯ */
  /* medium screen */
}
.page-id-10 .tile-t,
.page-id-15 .tile-t,
.parent-pageid-10 .tile-t {
  padding-top: 60px;
  padding-bottom: 30px;
}
.page-id-10 .content_class,
.page-id-15 .content_class,
.parent-pageid-10 .content_class {
  /* display: none; */
  width: 100%;
}
.page-id-10 .product-header,
.page-id-15 .product-header,
.parent-pageid-10 .product-header {
  max-width: 660px;
  margin: 0 auto 2em;
}
.page-id-10 .product-header .product-header-title,
.page-id-15 .product-header .product-header-title,
.parent-pageid-10 .product-header .product-header-title {
  font-size: 1.8rem;
  background: #397fcc;
  text-align: center;
  color: #fff;
  padding: 0.2em 0;
  font-weight: bold;
}
.page-id-10 .product-header .product-header-lead,
.page-id-15 .product-header .product-header-lead,
.parent-pageid-10 .product-header .product-header-lead {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1em;
  text-align: center;
}
.page-id-10 .product-header .product-header-info,
.page-id-15 .product-header .product-header-info,
.parent-pageid-10 .product-header .product-header-info {
  border: solid 2px #397fcc;
  padding: 1em 0.5em;
}
.page-id-10 .product-header .product-header-wrap,
.page-id-15 .product-header .product-header-wrap,
.parent-pageid-10 .product-header .product-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1em;
}
.page-id-10 .product-header .product-header-wrap .product-header-text,
.page-id-15 .product-header .product-header-wrap .product-header-text,
.parent-pageid-10 .product-header .product-header-wrap .product-header-text {
  flex-basis: 70%;
  font-size: 1.2rem;
  line-height: 1.75;
}
.page-id-10 .product-header .product-header-wrap .product-header-img,
.page-id-15 .product-header .product-header-wrap .product-header-img,
.parent-pageid-10 .product-header .product-header-wrap .product-header-img {
  flex-basis: 25%;
  text-align: right;
}
.page-id-10 .product-header table,
.page-id-15 .product-header table,
.parent-pageid-10 .product-header table {
  border-collapse: collapse;
  width: 90%;
}
.page-id-10 .product-header table.full,
.page-id-15 .product-header table.full,
.parent-pageid-10 .product-header table.full {
  width: 100%;
}
.page-id-10 .product-header table th,
.page-id-15 .product-header table th,
.parent-pageid-10 .product-header table th {
  border: solid 1px #ccc;
  padding: 0.2em 0.4em;
  background: #f0f0f0;
  font-size: 1.4rem;
}
.page-id-10 .product-header table td,
.page-id-15 .product-header table td,
.parent-pageid-10 .product-header table td {
  border: solid 1px #ccc;
  padding: 0.2em 0.4em;
  font-size: 1.4rem;
}
.page-id-10 .img-list,
.page-id-15 .img-list,
.parent-pageid-10 .img-list {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.page-id-10 .img-list > *:not(:last-child),
.page-id-15 .img-list > *:not(:last-child),
.parent-pageid-10 .img-list > *:not(:last-child) {
  margin-right: 5px;
  display: inline-block;
}
.page-id-10 .eco-effect,
.page-id-15 .eco-effect,
.parent-pageid-10 .eco-effect {
  background-color: #f5f5f5;
  padding-bottom: 40px;
}
.page-id-10 .tile-tt h2,
.page-id-15 .tile-tt h2,
.parent-pageid-10 .tile-tt h2 {
  font-size: 18px;
  padding: 30px 0;
  text-align: center;
}
.page-id-10 .row,
.page-id-15 .row,
.parent-pageid-10 .row {
  display: flex;
  justify-content: center;
}
.page-id-10 .eco-effect-info,
.page-id-15 .eco-effect-info,
.parent-pageid-10 .eco-effect-info {
  background-color: #fff;
  padding: 30px 15px;
  max-width: 330px;
}
.page-id-10 .eco-effect-info h3,
.page-id-15 .eco-effect-info h3,
.parent-pageid-10 .eco-effect-info h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 2em;
  position: relative;
}
.page-id-10 .eco-effect-info h3::after,
.page-id-15 .eco-effect-info h3::after,
.parent-pageid-10 .eco-effect-info h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-id-10 .eco-effect-info p,
.page-id-15 .eco-effect-info p,
.parent-pageid-10 .eco-effect-info p {
  font-size: 1.3rem;
  line-height: 1.75;
}
.page-id-10 .eco-effect-info:not(:first-child),
.page-id-15 .eco-effect-info:not(:first-child),
.parent-pageid-10 .eco-effect-info:not(:first-child) {
  margin-left: 30px;
}
.page-id-10 .row-top,
.page-id-15 .row-top,
.parent-pageid-10 .row-top {
  margin-bottom: 30px;
  padding: 0 10px;
}
.page-id-10 .product-introduction,
.page-id-15 .product-introduction,
.parent-pageid-10 .product-introduction {
  text-align: center;
}
.page-id-10 .product-type h3,
.page-id-15 .product-type h3,
.parent-pageid-10 .product-type h3 {
  padding-bottom: 25px;
}
.page-id-10 .product-type p,
.page-id-15 .product-type p,
.parent-pageid-10 .product-type p {
  line-height: 1.8;
  padding-bottom: 25px;
  font-size: 1.3rem;
}
.page-id-10 .product-type-panel,
.page-id-15 .product-type-panel,
.parent-pageid-10 .product-type-panel {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.page-id-10 .panel-img img,
.page-id-15 .panel-img img,
.parent-pageid-10 .panel-img img {
  /*	border-radius: 50%; */
}
.page-id-10 .panel-img:not(:first-child),
.page-id-15 .panel-img:not(:first-child),
.parent-pageid-10 .panel-img:not(:first-child) {
  margin-left: 50px;
}
.page-id-10 .wd480,
.page-id-15 .wd480,
.parent-pageid-10 .wd480 {
  max-width: 480px;
  margin: 0 auto;
}
.page-id-10 .gaiso-tile,
.page-id-15 .gaiso-tile,
.parent-pageid-10 .gaiso-tile {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.4rem;
}
.page-id-10 .gaiso-tile table,
.page-id-15 .gaiso-tile table,
.parent-pageid-10 .gaiso-tile table {
  border-collapse: collapse;
}
.page-id-10 .gaiso-tile table th,
.page-id-15 .gaiso-tile table th,
.parent-pageid-10 .gaiso-tile table th {
  font-size: 1.2rem;
  line-height: 130%;
  background-color: #f0f0f0;
  padding: 5px;
  color: #000000;
  font-weight: normal;
  width: 20%;
  border: solid 1px #ccc;
}
.page-id-10 .gaiso-tile table td,
.page-id-15 .gaiso-tile table td,
.parent-pageid-10 .gaiso-tile table td {
  font-size: 1.2rem;
  line-height: 130%;
  padding: 5px;
  color: #666666;
  background-color: #ffffff;
  border: solid 1px #ccc;
}
.page-id-10 .gaiso-tt h1,
.page-id-15 .gaiso-tt h1,
.parent-pageid-10 .gaiso-tt h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 50px;
}
.page-id-10 .tile-box,
.page-id-15 .tile-box,
.parent-pageid-10 .tile-box {
  border: 4px solid #ccc;
  padding: 30px;
  /* max-width: 660px; */
}
.page-id-10 .tile-box-container,
.page-id-15 .tile-box-container,
.parent-pageid-10 .tile-box-container {
  display: flex;
  padding-bottom: 30px;
  border-bottom: dotted 2px #efefef;
}
.page-id-10 .tt,
.page-id-15 .tt,
.parent-pageid-10 .tt {
  font-size: 20px;
  padding-bottom: 25px;
}
.page-id-10 .text,
.page-id-15 .text,
.parent-pageid-10 .text {
  margin-left: 30px;
}
.page-id-10 .list-image,
.page-id-15 .list-image,
.parent-pageid-10 .list-image {
  display: flex;
  padding-top: 30px;
}
.page-id-10 .list,
.page-id-15 .list,
.parent-pageid-10 .list {
  margin-left: 30px;
}
.page-id-10 .table-container,
.page-id-15 .table-container,
.parent-pageid-10 .table-container {
  overflow: hidden;
}
.page-id-10 .table-wrap,
.page-id-15 .table-wrap,
.parent-pageid-10 .table-wrap {
  overflow-x: scroll;
}
.page-id-10 ::-webkit-scrollbar,
.page-id-15 ::-webkit-scrollbar,
.parent-pageid-10 ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.page-id-10 ::-webkit-scrollbar-track,
.page-id-15 ::-webkit-scrollbar-track,
.parent-pageid-10 ::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.page-id-10 ::-webkit-scrollbar-thumb,
.page-id-15 ::-webkit-scrollbar-thumb,
.parent-pageid-10 ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.page-id-10 th,
.page-id-15 th,
.parent-pageid-10 th {
  padding: 5px;
}
.page-id-10 .variation-wrap,
.page-id-15 .variation-wrap,
.parent-pageid-10 .variation-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-id-10 .variation-wrap .variation,
.page-id-15 .variation-wrap .variation,
.parent-pageid-10 .variation-wrap .variation {
  flex-basis: 48%;
  text-align: center;
}
.page-id-10 .variation p,
.page-id-15 .variation p,
.parent-pageid-10 .variation p {
  padding: 10px 0;
}
.page-id-10 .product-caution ul,
.page-id-15 .product-caution ul,
.parent-pageid-10 .product-caution ul {
  /* padding-left: 5px; */
  padding-left: 15px;
  font-size: 1.3rem;
}
.page-id-10 .product-caution li,
.page-id-15 .product-caution li,
.parent-pageid-10 .product-caution li {
  list-style-type: disc;
  line-height: 1.5;
  /* list-style-position: inside; */
}
.page-id-10 .product-caution li:not(:last-child),
.page-id-15 .product-caution li:not(:last-child),
.parent-pageid-10 .product-caution li:not(:last-child) {
  padding-bottom: 10px;
}
.page-id-10 .sotokage ul,
.page-id-15 .sotokage ul,
.parent-pageid-10 .sotokage ul {
  padding-left: 15px;
  padding-bottom: 10px;
}
.page-id-10 .sotokage li,
.page-id-15 .sotokage li,
.parent-pageid-10 .sotokage li {
  list-style-type: disc;
}
.page-id-10 .sotokage p,
.page-id-15 .sotokage p,
.parent-pageid-10 .sotokage p {
  text-align: left;
}
.page-id-10 .sekou-caution,
.page-id-15 .sekou-caution,
.parent-pageid-10 .sekou-caution {
  margin-bottom: 100px;
}
.page-id-10 .sekou-caution ul,
.page-id-15 .sekou-caution ul,
.parent-pageid-10 .sekou-caution ul {
  padding-left: 15px;
}
.page-id-10 .sekou-caution li,
.page-id-15 .sekou-caution li,
.parent-pageid-10 .sekou-caution li {
  list-style-type: disc;
  line-height: 1.5;
}
.page-id-10 .sekou-caution li:not(:last-child),
.page-id-15 .sekou-caution li:not(:last-child),
.parent-pageid-10 .sekou-caution li:not(:last-child) {
  padding-bottom: 10px;
}
.page-id-10 .interior-tile,
.page-id-15 .interior-tile,
.parent-pageid-10 .interior-tile {
  max-width: 660px;
  margin: 0 auto;
}
.page-id-10 .interior-tile .interior-tile-tt h1,
.page-id-15 .interior-tile .interior-tile-tt h1,
.parent-pageid-10 .interior-tile .interior-tile-tt h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 60px;
  padding-top: 50px;
}
.page-id-10 .floor-tile,
.page-id-15 .floor-tile,
.parent-pageid-10 .floor-tile {
  width: 660px;
  margin: 0 auto;
}
.page-id-10 .floor-tile-tt h1,
.page-id-15 .floor-tile-tt h1,
.parent-pageid-10 .floor-tile-tt h1 {
  text-align: center;
  padding-bottom: 60px;
  padding-top: 50px;
}
.page-id-10 .floor-tile .tile-box .list-image .list-image-img img,
.page-id-15 .floor-tile .tile-box .list-image .list-image-img img,
.parent-pageid-10 .floor-tile .tile-box .list-image .list-image-img img {
  margin-bottom: 15px;
}
.page-id-10 .tile-table,
.page-id-15 .tile-table,
.parent-pageid-10 .tile-table {
  width: 660px;
  margin: 0 auto;
  margin-top: 50px;
  overflow-x: scroll;
}
.page-id-10 .tile-table th,
.page-id-15 .tile-table th,
.parent-pageid-10 .tile-table th {
  background-color: #f0f0f0;
  text-align: center;
  width: 20%;
}
.page-id-10 .tile-table tr th,
.page-id-15 .tile-table tr th,
.parent-pageid-10 .tile-table tr th {
  padding: 10px;
}
.page-id-10 .tile-table tr td,
.page-id-15 .tile-table tr td,
.parent-pageid-10 .tile-table tr td {
  padding: 10px;
}
.page-id-10 .detail,
.page-id-15 .detail,
.parent-pageid-10 .detail {
  margin-bottom: 100px;
}
.page-id-10 .spec-description,
.page-id-15 .spec-description,
.parent-pageid-10 .spec-description {
  font-size: 1.8rem;
  padding-top: 1.5em;
  padding-bottom: 0.8em;
  position: relative;
}
.page-id-10 .spec-description::before,
.page-id-15 .spec-description::before,
.parent-pageid-10 .spec-description::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 30px;
  background-color: black;
  /* position: absolute; */
  vertical-align: middle;
  margin-right: 10px;
}
.page-id-10 .detail-container,
.page-id-15 .detail-container,
.parent-pageid-10 .detail-container {
  display: flex;
}
.page-id-10 .detail-info:not(:first-child),
.page-id-15 .detail-info:not(:first-child),
.parent-pageid-10 .detail-info:not(:first-child) {
  margin-left: 30px;
}
.page-id-10 .detail-info p,
.page-id-15 .detail-info p,
.parent-pageid-10 .detail-info p {
  padding: 10px 0;
  font-size: 12px;
  max-width: 90px;
}
.page-id-10 .detail-tt .detail-container ul,
.page-id-15 .detail-tt .detail-container ul,
.parent-pageid-10 .detail-tt .detail-container ul {
  padding-left: 15px;
  padding-bottom: 10px;
}
.page-id-10 .detail-tt .detail-container li,
.page-id-15 .detail-tt .detail-container li,
.parent-pageid-10 .detail-tt .detail-container li {
  list-style-type: disc;
  line-height: 1.5;
}
.page-id-10 .detail-tt .detail-container li:not(:last-child),
.page-id-15 .detail-tt .detail-container li:not(:last-child),
.parent-pageid-10 .detail-tt .detail-container li:not(:last-child) {
  padding-bottom: 10px;
}
.page-id-10 .interior-text,
.page-id-15 .interior-text,
.parent-pageid-10 .interior-text {
  /* max-width: 360px; */
}
.page-id-10 .interior-text > p,
.page-id-15 .interior-text > p,
.parent-pageid-10 .interior-text > p {
  text-align: left;
  margin-right: 30px;
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  .page-id-10 .post-content,
  .page-id-15 .post-content,
  .parent-pageid-10 .post-content {
    max-width: 960px;
    margin: 0 auto;
  }
  .page-id-10 .product-header .product-header-lead,
  .page-id-15 .product-header .product-header-lead,
  .parent-pageid-10 .product-header .product-header-lead {
    font-size: 1.6rem;
  }
  .page-id-10 .product-header .product-header-info,
  .page-id-15 .product-header .product-header-info,
  .parent-pageid-10 .product-header .product-header-info {
    padding: 1em 1em;
  }
  .page-id-10 .variation-wrap,
  .page-id-15 .variation-wrap,
  .parent-pageid-10 .variation-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page-id-10 .variation-wrap .variation,
  .page-id-15 .variation-wrap .variation,
  .parent-pageid-10 .variation-wrap .variation {
    flex-basis: auto;
    text-align: center;
  }
}
@media (max-width: 667px) {
  .page-id-10,
  .page-id-15,
  .parent-pageid-10 {
    /* 蛛･蠎ｷ蟒ｺ譚� */
    /* 螟冶｣�ち繧､繝ｫ */
    /* 蜀�｣�ち繧､繝ｫ */
    /* 蠎翫ち繧､繝ｫ */
  }
  .page-id-10 main,
  .page-id-15 main,
  .parent-pageid-10 main {
    box-sizing: border-box;
  }
  .page-id-10 .tile-t,
  .page-id-15 .tile-t,
  .parent-pageid-10 .tile-t {
    font-size: 18px;
  }
  .page-id-10 .row,
  .page-id-15 .row,
  .parent-pageid-10 .row {
    flex-direction: column;
    height: 100%;
    padding: 0 10px;
  }
  .page-id-10 .tile-tt h2,
  .page-id-15 .tile-tt h2,
  .parent-pageid-10 .tile-tt h2 {
    font-size: 16px;
  }
  .page-id-10 .eco-effect-container,
  .page-id-15 .eco-effect-container,
  .parent-pageid-10 .eco-effect-container {
    margin: 0 auto;
  }
  .page-id-10 .eco-effect-info:not(:first-child),
  .page-id-15 .eco-effect-info:not(:first-child),
  .parent-pageid-10 .eco-effect-info:not(:first-child) {
    margin-left: 0px;
  }
  .page-id-10 .eco-effect-info,
  .page-id-15 .eco-effect-info,
  .parent-pageid-10 .eco-effect-info {
    margin-bottom: 20px;
  }
  .page-id-10 .row-top,
  .page-id-15 .row-top,
  .parent-pageid-10 .row-top {
    margin-bottom: 0px;
  }
  .page-id-10 .product-type,
  .page-id-15 .product-type,
  .parent-pageid-10 .product-type {
    margin: 0 auto;
  }
  .page-id-10 .product-type-panel,
  .page-id-15 .product-type-panel,
  .parent-pageid-10 .product-type-panel {
    flex-wrap: wrap;
  }
  .page-id-10 .panel-img,
  .page-id-15 .panel-img,
  .parent-pageid-10 .panel-img {
    width: 40%;
    padding-bottom: 15px;
  }
  .page-id-10 .panel-img:not(:first-child),
  .page-id-15 .panel-img:not(:first-child),
  .parent-pageid-10 .panel-img:not(:first-child) {
    margin-left: 0px;
  }
  .page-id-10 .wd480,
  .page-id-15 .wd480,
  .parent-pageid-10 .wd480 {
    margin: 0 auto;
  }
  .page-id-10 .gaiso-tile,
  .page-id-15 .gaiso-tile,
  .parent-pageid-10 .gaiso-tile {
    font-size: 1.4rem;
  }
  .page-id-10 .gaiso-tt h1,
  .page-id-15 .gaiso-tt h1,
  .parent-pageid-10 .gaiso-tt h1 {
    font-size: 20px;
  }
  .page-id-10 .list,
  .page-id-15 .list,
  .parent-pageid-10 .list {
    margin: 0 auto;
  }
  .page-id-10 .text p,
  .page-id-15 .text p,
  .parent-pageid-10 .text p {
    font-size: 12px;
    text-align: left;
  }
  .page-id-10 .interior-tile .interior-tile-tt h1,
  .page-id-15 .interior-tile .interior-tile-tt h1,
  .parent-pageid-10 .interior-tile .interior-tile-tt h1 {
    font-size: 20px;
  }
  .page-id-10 .interior-text .tt,
  .page-id-15 .interior-text .tt,
  .parent-pageid-10 .interior-text .tt {
    font-size: 18px;
  }
  .page-id-10 .floor-tile,
  .page-id-15 .floor-tile,
  .parent-pageid-10 .floor-tile {
    margin: 0 auto;
  }
  .page-id-10 .floor-tile-tt h1,
  .page-id-15 .floor-tile-tt h1,
  .parent-pageid-10 .floor-tile-tt h1 {
    font-size: 20px;
  }
  .page-id-10 .detail-container,
  .page-id-15 .detail-container,
  .parent-pageid-10 .detail-container {
    flex-wrap: wrap;
  }
  .page-id-10 .detail .detail-info,
  .page-id-15 .detail .detail-info,
  .parent-pageid-10 .detail .detail-info {
    width: 40%;
    margin-left: 0;
  }
}
@charset "UTF-8";
.page-id-32 .post-content {
  padding-bottom: 3em;
}
.page-id-32 .post-content h2 {
  margin: 0 0 0.8em;
  font-size: 2rem;
  text-align: center;
}
.page-id-32 .post-content .recruit_step {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.page-id-32 .post-content .recruit_step:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  color: #397fcc;
}
.page-id-32 .post-content .recruit_step .recruit_step_year {
  background: #eee;
  padding: 0.5em 1em;
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 0.5em;
  flex-basis: calc(25% - 0.5em);
  text-align: center;
  font-weight: bold;
}
.page-id-32 .post-content .recruit_step:nth-child(2) .recruit_step_year {
  background: #e5e5e5;
}
.page-id-32 .post-content .recruit_step:nth-child(3) .recruit_step_year {
  background: #dddddd;
}
.page-id-32 .post-content .recruit_step:nth-child(4) .recruit_step_year {
  background: #d2d2d2;
}
.page-id-32 .post-content .recruit_step:nth-child(5) .recruit_step_year {
  background: #c7c7c7;
}
.page-id-32 .post-content .recruit_step:nth-child(6) .recruit_step_year {
  background: #b4b4b4;
}
.page-id-32 .post-content .recruit_step .recruit_step_cap {
  background: #397fcc;
  color: #fff;
  flex-basis: 55%;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  padding: 0.5em 1em;
  text-align: left;
}
.page-id-32 .post-content .recruit_step .recruit_step_desc {
  padding: 0.5em 1em;
  font-size: 1.3rem;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 6px;
  margin: 10px 0 0;
}
.page-id-32 .post-content .recruit_step .recruit_step_desc a {
  color: #397fcc;
  text-decoration: underline;
  font-size: 1.3rem;
}
.page-id-32 .post-content .recruit_finish {
  margin-bottom: 20px;
}
.page-id-32 .post-content .recruit_finish ul {
  display: flex;
  justify-content: space-between;
}
.page-id-32 .post-content .recruit_finish ul li {
  flex-basis: 32%;
  padding: 0.5em;
  font-size: 1.3rem;
  text-align: center;
  background: #ff5c26;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  position: relative;
}
.page-id-32 .post-content .recruit_finish ul li::before {
  content: "▼";
  position: absolute;
  top: -2em;
  width: 100%;
  text-align: center;
  color: #ff5c26;
  left: 0;
}
.page-id-32 .post-content .movie {
  max-width: 600px;
  margin: 60px auto 40px;
}
.page-id-32 .post-content .movie .iframe-wrapper {
  margin-bottom: 20px;
}
.page-id-32 .post-content .entry_form_section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-id-32 .post-content {
    max-width: 960px;
    margin: 0 auto;
  }
  .page-id-32 .post-content h2 {
    font-size: 30px;
    text-align: center;
  }
  .page-id-32 .post-content .recruit_step {
    flex-wrap: nowrap;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .page-id-32 .post-content .recruit_step .recruit_step_year {
    flex-basis: calc(10% - 0.5em);
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-id-32 .post-content .recruit_step .recruit_step_cap {
    flex-basis: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-id-32 .post-content .recruit_step .recruit_step_desc {
    flex-basis: 60%;
    margin: 0 0 0 1em;
    font-size: 1.6rem;
  }
  .page-id-32 .post-content .recruit_finish ul li {
    font-size: 1.8rem;
  }
  .page-id-32 .post-content .movie {
    margin: 120px auto 40px;
  }
  .page-id-32 .post-content .entry_form_section {
    margin-top: 120px;
  }
}
.post-type-archive-work .section-desc,
.tax-work_cat .section-desc {
  font-size: 1.3rem;
}
.post-type-archive-work .section-desc p,
.tax-work_cat .section-desc p {
  line-height: 1.75;
  margin-bottom: 0.5em;
}
.post-type-archive-work .section-work-nav-list,
.tax-work_cat .section-work-nav-list {
  display: flex;
  justify-content: flex-start;
  padding: 20px 0;
  flex-wrap: wrap;
}
.post-type-archive-work .section-work-nav-list li,
.tax-work_cat .section-work-nav-list li {
  flex-basis: 50%;
  padding: 2px;
}
.post-type-archive-work .section-work-nav-list li a,
.tax-work_cat .section-work-nav-list li a {
  color: #397fcc;
  padding: 0.5em;
  border: solid 2px #397fcc;
  display: block;
  font-weight: bold;
}
.post-type-archive-work .section-work-nav-list li a:hover,
.tax-work_cat .section-work-nav-list li a:hover {
  color: #fff;
  background: #397fcc;
}
.post-type-archive-work .tax_title,
.tax-work_cat .tax_title {
  text-align: center;
  margin-bottom: 1em;
}
.post-type-archive-work .project_list_gallery,
.tax-work_cat .project_list_gallery {
  margin-bottom: 3em;
  display: flex;
  flex-wrap: wrap;
}
.post-type-archive-work .project_list_gallery li,
.tax-work_cat .project_list_gallery li {
  text-align: center;
  flex-basis: 50%;
  padding: 0 10px;
}
.post-type-archive-work .project_list_gallery li h3,
.tax-work_cat .project_list_gallery li h3 {
  font-size: 1.4rem;
  padding: 0.3em 0;
  font-weight: bold;
}
.post-type-archive-work .term-tile_sekou .project_list_gallery,
.tax-work_cat .term-tile_sekou .project_list_gallery {
  margin-bottom: 3em;
}
.post-type-archive-work .term-tile_sekou .project_list_gallery li,
.tax-work_cat .term-tile_sekou .project_list_gallery li {
  text-align: center;
}
.post-type-archive-work .term-tile_sekou .project_list_gallery li h3,
.tax-work_cat .term-tile_sekou .project_list_gallery li h3 {
  font-size: 1.4rem;
  padding: 0.3em 0;
  font-weight: bold;
}
.project_list_gallery li a img {
  aspect-ratio: 422 / 281;
  width: 442px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-work .section-desc,
  .tax-work_cat .section-desc {
    font-size: 1.4rem;
  }
  .post-type-archive-work .section-work-nav-list li,
  .tax-work_cat .section-work-nav-list li {
    flex-basis: calc(100% / 3);
  }
  .post-type-archive-work .section-work-nav-list li a,
  .tax-work_cat .section-work-nav-list li a {
    padding: 1em;
  }
  .post-type-archive-work .project_list_gallery li,
  .tax-work_cat .project_list_gallery li {
    flex-basis: 100%;
  }
  .post-type-archive-work.term-tile_sekou .project_list_gallery li,
  .post-type-archive-work.term-bath .project_list_gallery li,
  .tax-work_cat.term-tile_sekou .project_list_gallery li,
  .tax-work_cat.term-bath .project_list_gallery li {
    flex-basis: calc(100% / 3);
    padding: 0 10px;
    margin-bottom: 50px;
  }
  .post-type-archive-work.term-tile_sekou .project_list_gallery li h3,
  .post-type-archive-work.term-bath .project_list_gallery li h3,
  .tax-work_cat.term-tile_sekou .project_list_gallery li h3,
  .tax-work_cat.term-bath .project_list_gallery li h3 {
    font-size: 1.6rem;
    padding: 0.3em 0;
    font-weight: bold;
    margin-bottom: .5em;
  }
}

/* header-add  */
.header-add {
  background-color: #0068b7;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  padding: clamp(7.5px, 0.78125vw, 10px) clamp(18px, 1.875vw, 24px);
  height: 40px;
  z-index: 1000000;
  position: sticky;
  top: 0;
}
.header-add .inner-add {
  display: flex;
}
.header-add .inner-add .link-ainavo {
  width: clamp(70.4px, 22.564102564102566vw, 88px);
  flex: 0 0 auto;
}

.siteNav ul.menu > li {
  position: relative;
}

.siteNav ul.menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  height: 45px;
  width: 150px;
  margin: 0 auto;
}
.siteNav ul.menu li ul.sub-menu li a {
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease;
  height: auto;
}

.siteNav ul.menu li:hover > ul.sub-menu {
  display: block;
}

.siteNav ul.menu li ul.sub-menu li a:hover {
  background: #397fcc;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header-add {
    height: 40px;
    justify-content: flex-start;
  }
  .siteNav ul.menu li ul.sub-menu {
    width: 100%;
  }
  .siteNav ul.menu li ul.sub-menu li a {
    padding: 20px;
    font-size: 14px;
  }
}

/* section-news  */
.section-news {
  margin-top: 60px;
  margin-bottom: 120px;
}
.section-news .news-date {
  margin-right: 30px;
  font-size: 14px;
  white-space: nowrap;
}
.section-news .news-category {
  font-size: 12px;
  padding: 4px 8px;
  background: #167ac6;
  color: #fff;
}


.c-news__02 .news-list {
  margin-bottom: 32px;
  max-width: 800px;
  margin-inline: auto;
}

.c-news__02 .news-list li .news-list-inner {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
@media screen and (min-width: 835px) {
  .c-news__02 .news-list li .news-list-inner {
    flex-direction: row;
    gap: 10px;
    padding: 12px 8px;
    border-bottom: dotted 1px #CCC;
  }
}
.c-news__02 .news-list li .news-list-inner .date {
  flex-shrink: 0;
  width: 110px;
  font-weight: 600;
}
.c-news__02 .news-list li .news-list-inner .title {
  flex-grow: 1;
  line-height: 1.6;
}
.c-news__02 .btn-wrap {
  text-align: right;
}
.back_list {
  margin-bottom: 60px;
}
/* ニュースここまで */
.article {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.article .news-img img {
  width: 100%;
}
.article .post-meta {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.article .post-title {
  line-height: 1.6;
}
.article .post-content {
  padding: 40px 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section-news {
    margin-bottom: 60px;
  }
  .section-news .news-list {
    grid-template-columns: 1fr;
  }
}

/* section-links */
.section-links {
  margin-bottom: 60px;
  overflow: hidden;
}
.section-links .links-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-links .links-list li {
  border: 1px solid #336699;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background: #fff;
}

.section-links .links-list li a {
  padding: 16px 26px 16px 10px;
  display: block;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  position: relative;
}

.section-links .links-list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/ueno-t/images/icon-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-links .links-list li a.no-link {
  cursor: default;
  pointer-events: none;
}
.section-links .links-list li a.no-link::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .section-links .links-list {
    grid-template-columns: 1fr;
  }
  .section-links .container {
    padding: 30px;
  }
}
.error-404 {
  text-align: center;
  margin: 100px 0;
  padding: 0 2vh;
}
.error-404 h1 {
  font-size: 5rem;
  color: #333;
}

.error-404 p {
  margin: 3rem 0;
}

.error-404 a {
  border: #333 dotted 1px;
  padding: 1rem;
  margin: 0 auto;
  width: 30%;
}

.section-sustainability .row .col p {
  text-align: center;
  margin-top: 6px;
}
@media screen and (min-width: 835px) {
.section-sustainability .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 120px;
}
}

.recruit_nav ul {
display: flex
;
    justify-content: center;
    gap: 10px;
    position: relative;
    margin: 0 0 60px;
}
.recruit_nav ul::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    background: #397fcc;
    left: 0;
    bottom: -10px;
    z-index: 0;
}
.recruit_nav ul li {
    padding: 3px 20px;
    border: solid 2px #397fcc;
    border-radius: 7px 7px 0 0;
    border-bottom: none;
    color: #FFF;
    background: #397fcc;
    position: relative;
    z-index: 1;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

.recruit_nav ul li.nop {
  z-index: 0;
  background: #FFF;
  color: #397fcc;
}

.recruit_tab_content h1 {
 text-align: center;
 margin-bottom: 2em;
}

.recruit_tab_content .row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.recruit_tab_content .row p {
  font-size: 14px;
  text-align: center;
}

.pseudo-dot {
font-family: monospace;
    font-size: 12px;
    display: inline-block;
    margin: 0 .2em;
}
.goto_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 80;
}
.goto_top a {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background: #397fcc;
    color: #FFF;
    border-radius: 50%;
}
