@charset "UTF-8";
/* Josh's Custom CSS Reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6em;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-optical-sizing: auto;
  background-color: #fff;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  opacity: 1;
  -webkit-transition: 0.32s opacity;
  transition: 0.32s opacity;
}
a:hover {
  opacity: 0.72;
}

img {
  display: inline;
  height: auto;
  vertical-align: bottom;
}

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

picture {
  display: block;
}

summary {
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

i, em, address {
  font-style: normal;
}

hr {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

.root {
  position: relative;
}

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

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

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

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

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 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);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-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);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -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);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(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);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: none;
    transform: none;
  }
}
@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: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(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;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-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;
  }
}
.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-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -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);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@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);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(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);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@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);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(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-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

.p-real {
  position: relative;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
}

.p-real__outer {
  padding: 0 48px;
}
@media (max-width: 767px) {
  .p-real__outer {
    padding: 0 3.8461538462%;
  }
}

.p-real__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.p-real__br--phaBegin {
  display: none;
}
@media (max-width: 767px) {
  .p-real__br--phaBegin {
    display: inline;
  }
}

.p-real__button--brown, .p-real__button--red {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}

.p-real__button--red {
  max-width: 600px;
  min-height: 92px;
  border-radius: 48px;
  background-color: #c62900;
}
@media (max-width: 767px) {
  .p-real__button--red {
    max-width: 340px;
    min-height: 68px;
  }
}
.p-real__button--brown {
  max-width: 672px;
  min-height: 92px;
  border-radius: 48px;
  background-color: #fff;
  border: 2px solid #8a652c;
}
@media (max-width: 767px) {
  .p-real__button--brown {
    max-width: 340px;
    min-height: 68px;
    padding-right: 4.7058823529%;
  }
}

.p-real__buttonLabel--brown, .p-real__buttonLabel {
  color: #fff;
  letter-spacing: 0.08em;
}

.p-real__buttonLabel {
  font-size: 2.7rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-real__buttonLabel {
    font-size: 1.7rem;
  }
}
.p-real__buttonLabel--brown {
  color: #8a652c;
  font-size: 2.36rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-real__buttonLabel--brown {
    font-size: 1.6rem;
    font-size: min(1.6rem, 4.7058823529cqw);
  }
}
@media (max-width: 389px) {
  .p-real__buttonLabel--brown {
    font-size: min(1.52rem, 4.4705882353cqw);
  }
}

.p-real__buttonArw--brown, .p-real__buttonArw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 50%;
  position: absolute;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-real__buttonArw--brown i, .p-real__buttonArw i {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.p-real__buttonArw {
  width: 8.3333333333%;
  border: 1px solid #fff;
  right: 4%;
}
@media (max-width: 767px) {
  .p-real__buttonArw {
    width: 9.4117647059%;
  }
}
.p-real__buttonArw i {
  background-image: url("../../../images/real/arw_down.svg");
  width: 9px;
  height: 18px;
}
@media (max-width: 767px) {
  .p-real__buttonArw i {
    width: 6px;
    height: 10px;
  }
}
.p-real__buttonArw--brown {
  width: 7.4404761905%;
  border: 1px solid #8a652c;
  right: 4%;
}
@media (max-width: 767px) {
  .p-real__buttonArw--brown {
    width: 8.8235294118%;
  }
}
.p-real__buttonArw--brown i {
  background-image: url("../../../images/real/arw_right.svg");
  width: 19px;
  height: 9px;
}
@media (max-width: 767px) {
  .p-real__buttonArw--brown i {
    width: 11px;
    height: 6px;
  }
}

.p-real__header {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  width: 100%;
  z-index: 3;
  max-width: 282px;
}
@media (max-width: 767px) {
  .p-real__header {
    max-width: 152px;
  }
}

.p-real__headerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  min-height: 84px;
  background-color: #fff;
  border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
  .p-real__headerHead {
    min-height: 45px;
    border-radius: 0 0 10px 0;
  }
}

@media (max-width: 767px) {
  .p-real__headerImg {
    width: 119px;
  }
}

.p-real__fv {
  background-color: #a18456;
  padding: 20px;
}
@media (max-width: 767px) {
  .p-real__fv {
    padding: 12px;
  }
}

.p-real__fvOuter {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.p-real__fvBg {
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-real__fvBg {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-radius: 10px;
  }
}

.p-real__fvBgImg {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-real__fvBgImg {
    aspect-ratio: 1/1;
    height: auto;
    max-height: 368px;
  }
}

.p-real__fvInner {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .p-real__fvInner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-real__fvHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  padding-left: 28px;
}
@media (max-width: 767px) {
  .p-real__fvHead {
    position: relative;
    row-gap: 9px;
    padding-left: 0px;
    top: 26.7759562842%;
  }
}

@media (max-width: 767px) {
  .p-real__fvImg--title {
    width: 292px;
  }
}

.p-real__fvDesc {
  display: inline-block;
  text-align: left;
  font-size: 0;
}

.p-real__fvDescPhr {
  position: relative;
  display: inline-block;
  background-color: #c62900;
  color: #fff;
  font-size: 2.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.76;
  padding: 0 12px 0 16px;
}
@media (max-width: 767px) {
  .p-real__fvDescPhr {
    font-size: 1.65rem;
    padding: 0 6px 0 10px;
  }
}
.p-real__fvDescPhr:nth-of-type(1) {
  top: 2px;
}
.p-real__fvDescPhr:nth-of-type(3) {
  top: -2px;
}

.p-real__intro {
  padding: 112px 0 108px;
}
@media (max-width: 767px) {
  .p-real__intro {
    padding: 44px 0 56px;
  }
}

.p-real__introOrder {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 84px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: (19.4444444444%)[4];
  grid-template-columns: repeat(4, 19.4444444444%);
}
@media (max-width: 767px) {
  .p-real__introOrder {
    max-width: 292px;
    margin: 0 auto 40px;
    row-gap: 38px;
    -ms-grid-columns: (44.5205479452%)[2];
    grid-template-columns: repeat(2, 44.5205479452%);
  }
}

.p-real__introList {
  text-align: center;
}

.p-real__introItemFig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  background-color: #f4f1ef;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .p-real__introItemImg--1 {
    width: 53.8461538462%;
  }
}
@media (max-width: 767px) {
  .p-real__introItemImg--2 {
    width: 53.8461538462%;
  }
}
@media (max-width: 767px) {
  .p-real__introItemImg--3 {
    width: 57.6923076923%;
  }
}
@media (max-width: 767px) {
  .p-real__introItemImg--4 {
    width: 52.3076923077%;
  }
}

.p-real__introDesc {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 9px 0 0;
}
@media (max-width: 767px) {
  .p-real__introDesc {
    font-size: 1.4rem;
  }
}

.p-real__introText {
  font-size: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.76;
}
@media (max-width: 767px) {
  .p-real__introText {
    line-height: 1.6;
  }
}

.p-real__introTextPhr {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.084em;
  display: inline-block;
}
@media (max-width: 767px) {
  .p-real__introTextPhr {
    font-size: 1.9rem;
  }
}

.p-real__introCta {
  text-align: center;
  margin: 44px 0 0;
}

.p-real__heading {
  text-align: center;
  font-size: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-real__heading {
    line-height: 1.48;
    container-type: inline-size;
  }
}
.p-real__heading.mod--order1 {
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-real__heading.mod--order1 {
    line-height: 1.36;
  }
}

.p-real__headingText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-real__headingChar--n2, .p-real__headingChar--s, .p-real__headingChar--m, .p-real__headingChar, .p-real__headingChar--em {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.mod--blue.p-real__headingChar--n2, .mod--blue.p-real__headingChar--s, .mod--blue.p-real__headingChar--m, .mod--blue.p-real__headingChar, .mod--blue.p-real__headingChar--em {
  color: #005478;
}

.p-real__headingChar--em {
  font-size: 5.7rem;
  color: #8a652c;
  line-height: 1.44;
}
@media (max-width: 767px) {
  .p-real__headingChar--em {
    font-size: 3.4rem;
    line-height: 1.28;
  }
}
@media (max-width: 389px) {
  .p-real__headingChar--em {
    font-size: min(3.4rem, 9.4444444444cqw);
  }
}
.p-real__headingChar {
  font-size: 3.8rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-real__headingChar {
    font-size: 2.5rem;
  }
}
@media (max-width: 389px) {
  .p-real__headingChar {
    font-size: min(2.5rem, 6.9444444444cqw);
  }
}
.p-real__headingChar--m {
  font-size: 3.6rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-real__headingChar--m {
    font-size: 2.3rem;
  }
}
@media (max-width: 389px) {
  .p-real__headingChar--m {
    font-size: min(2.3rem, 6.3888888889cqw);
  }
}
.p-real__headingChar--s {
  font-size: 3.6rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-real__headingChar--s {
    font-size: 1.9rem;
  }
}
@media (max-width: 389px) {
  .p-real__headingChar--s {
    font-size: min(1.9rem, 5.2777777778cqw);
  }
}
.p-real__headingChar--n2 {
  font-size: 3.8rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  .p-real__headingChar--n2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 389px) {
  .p-real__headingChar--n2 {
    font-size: min(2.2rem, 6.1111111111cqw);
  }
}

.p-real__kai {
  background-color: #f4f1ef;
  padding: 86px 0 108px;
}
@media (max-width: 767px) {
  .p-real__kai {
    padding: 36px 0 50px;
  }
}

.p-real__kaiDesc {
  font-size: 0;
  text-align: center;
  line-height: 1.72;
  margin: 25px 0 46px;
}
@media (max-width: 767px) {
  .p-real__kaiDesc {
    margin: 16px 0 38px;
  }
}

.p-real__kaiDescPhr {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-real__kaiDescPhr {
    font-size: 1.4rem;
  }
}

.p-real__kaiInner {
  background-color: #fff;
  overflow: hidden;
  border-radius: 18px;
  padding: 80px 3.75% 84px;
}
@media (max-width: 767px) {
  .p-real__kaiInner {
    border-radius: 8px;
    padding: 44px 4.4444444444% 50px;
  }
}
.p-real__kaiInner--clear {
  padding: 80px 3.75% 84px;
}
@media (max-width: 767px) {
  .p-real__kaiInner--clear {
    padding: 44px 4.4444444444% 50px;
  }
}

.p-real__kaiNum {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 16px;
}
.p-real__kaiNum.mod--adjust1 {
  margin: 0 0 24px;
}

.p-real__kaiNumText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 36px;
  font-family: bebas-neue-pro-expanded, sans-serif;
  border: 2px solid #8a652c;
  border-right: none;
  color: #8a652c;
  font-weight: 700;
  letter-spacing: 0.07em;
}
@media (max-width: 767px) {
  .p-real__kaiNumText {
    min-height: 28px;
  }
}
.p-real__kaiNumText span {
  line-height: 1;
  display: block;
  font-size: 2.2rem;
  padding: 0 22px;
}
@media (max-width: 767px) {
  .p-real__kaiNumText span {
    font-size: 1.9rem;
    padding: 0 14px;
  }
}
.p-real__kaiNumText p {
  background-color: #8a652c;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 11px;
}
@media (max-width: 767px) {
  .p-real__kaiNumText p {
    padding: 0 9px;
  }
}
.p-real__kaiNumText p i {
  line-height: 1;
  display: block;
  font-style: normal;
  font-size: 2.6rem;
  color: #fff;
}
@media (max-width: 767px) {
  .p-real__kaiNumText p i {
    font-size: 2rem;
  }
}

.p-real__kaiFig {
  text-align: center;
  margin: 46px 0 0;
}
@media (max-width: 767px) {
  .p-real__kaiFig {
    margin: 24px 0 0;
  }
}

.p-real__kaiWaku {
  position: relative;
  border: 2px solid #8a652c;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: -1px auto 0;
  background-color: #fff;
  padding: 44px 0 64px;
}
@media (max-width: 767px) {
  .p-real__kaiWaku {
    max-width: 328px;
    border-radius: 10px;
    padding: 26px 3.0487804878% 26px;
  }
}
.p-real__kaiWaku.mod--blue {
  border-color: #254f78;
}

.p-real__kaiWakuHead {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 480px;
  width: 100%;
  min-height: 54px;
  border-radius: 28px;
  background-color: #c2905b;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.07em;
  margin: 0 0 44px;
}
@media (max-width: 767px) {
  .p-real__kaiWakuHead {
    min-height: 34px;
    max-width: 292px;
    margin: 0 0 22px;
    container-type: inline-size;
  }
}
.p-real__kaiWakuHead:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 20px;
  bottom: -19px;
  background-color: #c2905b;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .p-real__kaiWakuHead:after {
    width: 17px;
    height: 11px;
    bottom: -10px;
  }
}
.p-real__kaiWakuHead span {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-real__kaiWakuHead span {
    font-size: 1.2rem;
  }
}
@media (max-width: 389px) {
  .p-real__kaiWakuHead span {
    font-size: 4.1095890411cqw;
  }
}
.p-real__kaiWakuHead b {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .p-real__kaiWakuHead b {
    font-size: 1.4rem;
  }
}
@media (max-width: 389px) {
  .p-real__kaiWakuHead b {
    font-size: 4.7945205479cqw;
  }
}
.p-real__kaiWakuHead em {
  position: relative;
  top: -1px;
  display: inline-block;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .p-real__kaiWakuHead em {
    font-size: 2rem;
  }
}
@media (max-width: 389px) {
  .p-real__kaiWakuHead em {
    font-size: 6.8493150685cqw;
  }
}
.p-real__kaiWakuHead.mod--blue {
  background-color: #317dac;
}
.p-real__kaiWakuHead.mod--blue:after {
  background-color: #317dac;
}

.p-real__kaiWakuText {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.84;
}
.p-real__kaiWakuText span {
  display: inline-block;
}
@media (max-width: 767px) {
  .p-real__kaiWakuText {
    font-size: 1.5rem;
    line-height: 1.44;
    max-width: 288px;
    margin: 0 auto;
  }
}

.p-real__kaiWakuMark {
  text-align: center;
  row-gap: 20px;
  margin: 18px 0 0;
}
@media (max-width: 767px) {
  .p-real__kaiWakuMark {
    container-type: inline-size;
    margin: 12px 0 0;
  }
}

.p-real__kaiWakuMarkPhr {
  position: relative;
  display: inline-block;
  font-size: 3.7rem;
  letter-spacing: 0.08em;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-real__kaiWakuMarkPhr {
    font-size: 2.6rem;
    font-size: min(2.6rem, 8.5526315789cqw);
  }
}
.p-real__kaiWakuMarkPhr:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 16px);
  height: 100%;
  top: 0;
  left: -8px;
  background-color: #fff455;
}
@media (max-width: 767px) {
  .p-real__kaiWakuMarkPhr:before {
    left: -2px;
    width: calc(100% + 4px);
  }
}
.p-real__kaiWakuMarkPhr:nth-child(n+2) {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .p-real__kaiWakuMarkPhr:nth-child(n+2) {
    margin-top: 4px;
  }
}
.p-real__kaiWakuMarkPhr span {
  position: relative;
}

.p-real__kaiImg--p4, .p-real__kaiImg--p3, .p-real__kaiImg--p2, .p-real__kaiImg--p1 {
  position: absolute;
}

.p-real__kaiImg--p1 {
  left: -5.3333333333%;
  bottom: -86px;
  width: 14.8888888889%;
}
@media (max-width: 767px) {
  .p-real__kaiImg--p1 {
    width: 21.9512195122%;
    left: -1.2195121951%;
    bottom: -52px;
  }
}
.p-real__kaiImg--p2 {
  left: -6.2222222222%;
  bottom: -86px;
  width: 27.1111111111%;
}
@media (max-width: 767px) {
  .p-real__kaiImg--p2 {
    width: 39.0243902439%;
    left: -3.6585365854%;
    bottom: -52px;
  }
}
.p-real__kaiImg--p3 {
  left: -8.8888888889%;
  bottom: -86px;
  width: 18.8888888889%;
}
@media (max-width: 767px) {
  .p-real__kaiImg--p3 {
    width: 28.3536585366%;
    left: -7.3170731707%;
    bottom: -52px;
  }
}
@media (max-width: 767px) {
  .p-real__kaiImg--tk3 {
    width: 240px;
  }
}
.p-real__kaiImg--p4 {
  left: -6.6666666667%;
  bottom: -86px;
  width: 27.3333333333%;
}
@media (max-width: 767px) {
  .p-real__kaiImg--p4 {
    width: 39.0243902439%;
    left: -4.2682926829%;
    bottom: -70px;
  }
}

.p-real__kaiCta {
  text-align: center;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .p-real__kaiCta {
    margin: 60px 0 0;
  }
}

.p-real__kaiCtaSub {
  font-size: 2.9rem;
  font-weight: 900;
  color: #8a652c;
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin: 0 0 14px;
}
@media (max-width: 767px) {
  .p-real__kaiCtaSub {
    font-size: 2rem;
    margin: 0 0 12px;
  }
}
.p-real__kaiCtaSub.mod--2 {
  margin: 0;
  padding: 0 0 18px;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__kaiCtaSub.mod--2 {
    margin: 0 auto;
    padding: 0 0 2px;
    text-align: right;
    max-width: 332px;
    padding-right: 3.6144578313%;
  }
}
.p-real__kaiCtaSub span {
  position: relative;
  display: inline-block;
  text-align: center;
}
.p-real__kaiCtaSub span:before, .p-real__kaiCtaSub span:after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 90%;
  background-color: #8a652c;
  bottom: -1px;
}
.p-real__kaiCtaSub span:before {
  -webkit-transform: translateX(-100%) rotate(-28deg);
      -ms-transform: translateX(-100%) rotate(-28deg);
          transform: translateX(-100%) rotate(-28deg);
  left: 0;
}
.p-real__kaiCtaSub span:after {
  -webkit-transform: translateX(100%) rotate(28deg);
      -ms-transform: translateX(100%) rotate(28deg);
          transform: translateX(100%) rotate(28deg);
  right: 0;
}
.p-real__kaiCtaSub span.mod--1 {
  padding: 0 22px;
}
.p-real__kaiCtaSub span.mod--2 {
  padding: 0 32px;
  font-size: 3.2222222222cqw;
}
@media (max-width: 767px) {
  .p-real__kaiCtaSub span.mod--2 {
    font-size: 1.4rem;
    font-size: 4.2168674699cqw;
    line-height: 1.44;
    padding: 0 14px;
  }
}

.p-real__insert {
  display: -ms-grid;
  display: grid;
}

.p-real__insertBg {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
}

.p-real__insertBgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-real__insertBgImg {
    max-height: none;
  }
}

.p-real__insertInner {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 120px 48px;
}
@media (max-width: 767px) {
  .p-real__insertInner {
    padding: 56px 6.1538461538%;
  }
}

.p-real__insertIn {
  background-color: #fff;
  padding: 16px;
  max-width: 948px;
  width: 100%;
}
@media (max-width: 767px) {
  .p-real__insertIn {
    max-width: 308px;
    padding: 8px;
  }
}

.p-real__insertInBox {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 6.9868995633% 42.7947598253%;
  grid-template-columns: 1fr 42.7947598253%;
  -webkit-column-gap: 6.9868995633%;
     -moz-column-gap: 6.9868995633%;
          column-gap: 6.9868995633%;
}
@media (max-width: 767px) {
  .p-real__insertInBox {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
    container-type: inline-size;
  }
}

.p-real__insertFig {
  position: relative;
}

.p-real__insertImg {
  width: 100%;
}

.p-real__insertImg--adsk, .p-real__insertImg--reform {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-real__insertImg--reform {
  width: 57.9081632653%;
}
@media (max-width: 767px) {
  .p-real__insertImg--reform {
    width: 150px;
  }
}
.p-real__insertImg--adsk {
  width: 82.3979591837%;
}
@media (max-width: 767px) {
  .p-real__insertImg--adsk {
    width: 248px;
  }
}

.p-real__insertStr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  padding: 0 0 0 11.7391304348%;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__insertStr {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2.7397260274%;
  }
}

.p-real__insertSub {
  font-size: 2.3rem;
  font-size: 5.6650246305cqw;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin: 0 0 7px;
}
@media (max-width: 767px) {
  .p-real__insertSub {
    font-size: 1.6rem;
    padding: 16px 0 0;
    margin: 0 0 2px;
  }
}

.p-real__insertTitle {
  font-size: 3.9rem;
  font-size: 9.60591133cqw;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.36;
  text-align: left;
  margin: 0 0 40px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-real__insertTitle {
    font-size: 2.6rem;
    font-size: min(2.6rem, 9.4202898551cqw);
    margin: 0 0 10px;
    text-align: center;
  }
}

.p-real__insertText {
  font-size: 1.7rem;
  font-size: 4.1871921182cqw;
  line-height: 1.92;
  letter-spacing: 0.08em;
  text-align: left;
}
@media (max-width: 767px) {
  .p-real__insertText {
    font-size: 1.3rem;
    max-width: 252px;
    margin: 0 auto;
    letter-spacing: 0.03em;
    line-height: 1.76;
  }
}

.p-real__insertCta {
  width: 100%;
  text-align: center;
  margin: 88px 0 0;
}
@media (max-width: 767px) {
  .p-real__insertCta {
    margin: 54px 0 0;
  }
}

.p-real__supOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 34px;
  padding: 66px 0;
}
@media (max-width: 767px) {
  .p-real__supOuter {
    row-gap: 18px;
    padding: 26px 0 40px;
  }
}

.p-real__supInner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background-color: #f4f1ef;
  padding: 90px 3.75% 100px;
  border-radius: 18px;
}
@media (max-width: 767px) {
  .p-real__supInner {
    padding: 44px 3.8888888889% 48px;
    border-radius: 8px;
  }
}

.p-real__supVoice {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 900px;
  margin: 52px auto 86px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: 71.6666666667% 20.3333333333%;
  grid-template-columns: 71.6666666667% 20.3333333333%;
}
@media (max-width: 767px) {
  .p-real__supVoice {
    display: block;
    max-width: 332px;
    margin: 22px auto 4px;
  }
}

.p-real__supVoiceText {
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  container-type: inline-size;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .p-real__supVoiceText {
    border-radius: 11px;
    padding: 14px 0;
  }
}
.p-real__supVoiceText:before, .p-real__supVoiceText:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  aspect-ratio: 1/1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .p-real__supVoiceText:before, .p-real__supVoiceText:after {
    top: auto;
    bottom: 0px;
  }
}
.p-real__supVoiceText:before {
  width: 4.9689440994%;
  right: -2.4844720497%;
}
@media (max-width: 767px) {
  .p-real__supVoiceText:before {
    width: 6.6265060241%;
    right: 26.5060240964%;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.p-real__supVoiceText:after {
  width: 3.1055900621%;
  right: -8.3850931677%;
}
@media (max-width: 767px) {
  .p-real__supVoiceText:after {
    width: 3.9156626506%;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    right: 22.2891566265%;
    bottom: -9px;
  }
}
.p-real__supVoiceText span {
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  font-size: 5.4263565891cqw;
}
@media (max-width: 767px) {
  .p-real__supVoiceText span {
    font-size: 1.6rem;
    font-size: min(16px, 4.8192771084cqw);
  }
}

@media (max-width: 767px) {
  .p-real__supVoiceFig {
    position: relative;
    margin-top: -24px;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .p-real__supVoiceImg {
    position: relative;
    width: 20.4819277108%;
    right: -2.1084337349%;
  }
}

.p-real__supWrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-real__supWrap {
    max-width: 332px;
  }
}

.p-real__supImg--psn1 {
  position: absolute;
  left: 2.2222222222%;
  width: 14.7777777778%;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-real__supImg--psn1 {
    left: 3.6144578313%;
  }
}

.p-real__supWrapHead {
  position: relative;
  text-align: center;
}

.p-real__supWaku {
  position: relative;
  background-color: #fff;
  border: 2px solid #8a652c;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  padding: 0 2.6666666667% 92px;
}
@media (max-width: 767px) {
  .p-real__supWaku {
    border-radius: 10px;
    padding: 0 3.6144578313% 30px;
  }
}

.p-real__supWakuIn {
  max-width: 784px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-real__supWakuIn {
    max-width: 294px;
  }
}

.p-real__supDuo {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: (46.9387755102%)[2];
  grid-template-columns: repeat(2, 46.9387755102%);
  padding: 68px 0 0;
}
@media (max-width: 767px) {
  .p-real__supDuo {
    padding: 24px 0 0;
    -ms-grid-columns: (47.619047619%)[2];
    grid-template-columns: repeat(2, 47.619047619%);
  }
}

.p-real__supDuoFig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .p-real__supDuoFig {
    row-gap: 12px;
  }
}

.p-real__supDuoFigcap {
  position: relative;
  background-color: #c2905b;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 60px;
  border-radius: 30px;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__supDuoFigcap {
    min-height: 30px;
  }
}
.p-real__supDuoFigcap span {
  font-size: 2.5rem;
  font-size: 6.7934782609cqw;
  font-weight: 800;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-real__supDuoFigcap span {
    font-size: 1.5rem;
    font-size: 10.7142857143cqw;
  }
}
.p-real__supDuoFigcap:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 29px;
  height: 17px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #c2905b;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media (max-width: 767px) {
  .p-real__supDuoFigcap:before {
    width: 11px;
    height: 8px;
    bottom: -7px;
  }
}
@media (max-width: 767px) {
  .p-real__supDuoFigcap {
    font-size: 1.5rem;
  }
}

.p-real__supDuoImg {
  border-radius: 12px;
}
@media (max-width: 767px) {
  .p-real__supDuoImg {
    border-radius: 5px;
  }
}

.p-real__supOrder {
  width: 100%;
  margin: 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 18px;
}
@media (max-width: 767px) {
  .p-real__supOrder {
    margin: 32px 0 0;
    row-gap: 10px;
  }
}

.p-real__supList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 105px;
  border-radius: 54px;
  background-color: #f4f1ef;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__supList {
    min-height: 54px;
  }
}
.p-real__supList:nth-child(even) {
  background-color: #ebe5db;
}

.p-real__supItem {
  width: 100%;
  font-weight: 700;
  font-size: 2.6rem;
  font-size: 3.3163265306cqw;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20.4081632653%;
  -webkit-column-gap: 2.5510204082%;
     -moz-column-gap: 2.5510204082%;
          column-gap: 2.5510204082%;
}
@media (max-width: 767px) {
  .p-real__supItem {
    font-size: 1.4rem;
    font-size: 4.7619047619cqw;
    padding-left: 8.843537415%;
    -webkit-column-gap: 2.0408163265%;
       -moz-column-gap: 2.0408163265%;
            column-gap: 2.0408163265%;
  }
}
.p-real__supItem:before {
  position: relative;
  content: "";
  display: block;
  top: 2px;
  width: 4.1666666667%;
  aspect-ratio: 1/1;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url("../../../images/real/ico_check.svg");
}
@media (max-width: 767px) {
  .p-real__supItem:before {
    width: 4.8507462687%;
  }
}

.p-real__supFoot {
  text-align: center;
  margin: 56px 0 0;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__supFoot {
    margin: 30px 0 0;
  }
}

.p-real__supLead {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #8a652c;
  line-height: 1.56;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .p-real__supLead {
    line-height: 1.6;
    font-size: 1.5rem;
    font-size: 5.1020408163cqw;
    letter-spacing: 0.06em;
    margin: 0 0 15px;
  }
}
.p-real__supLead.mod--2 {
  margin: 0 0 22px;
}
@media (max-width: 767px) {
  .p-real__supLead.mod--2 {
    margin: 0 0 16px;
    font-size: 5.9523809524cqw;
  }
}

.p-real__supQue {
  max-width: 900px;
  width: 100%;
  margin: 56px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 26px;
}
@media (max-width: 767px) {
  .p-real__supQue {
    max-width: 330px;
    row-gap: 8px;
    margin: 20px auto 0;
  }
}

.p-real__supQueList {
  background-color: #fff;
  padding: 18px 4%;
  border-radius: 18px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7.2463768116%;
     -moz-column-gap: 7.2463768116%;
          column-gap: 7.2463768116%;
  -ms-grid-columns: 15.7004830918% 7.2463768116% 1fr;
  grid-template-columns: 15.7004830918% 1fr;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__supQueList {
    padding: 11px 4.8484848485%;
    -ms-grid-columns: 18.4848484848% 8.4848484848% 1fr;
    grid-template-columns: 18.4848484848% 1fr;
    -webkit-column-gap: 8.4848484848%;
       -moz-column-gap: 8.4848484848%;
            column-gap: 8.4848484848%;
  }
}

.p-real__supQueText {
  font-size: 2.9rem;
  font-size: 3.5024154589cqw;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.56;
}
@media (max-width: 767px) {
  .p-real__supQueText {
    font-size: 1.5rem;
    font-size: 5.033557047cqw;
  }
}

.p-real__supGraph {
  text-align: center;
  margin: 64px 0;
}
@media (max-width: 767px) {
  .p-real__supGraph {
    margin: 48px 0 56px;
  }
}

.p-real__supTwin {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 59.9489795918% 7.6530612245% 1fr;
  grid-template-columns: 59.9489795918% 1fr;
  -webkit-column-gap: 7.6530612245%;
     -moz-column-gap: 7.6530612245%;
          column-gap: 7.6530612245%;
  padding: 50px 0 0;
  container-type: inline-size;
}
@media (max-width: 767px) {
  .p-real__supTwin {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 18px 0 0;
    row-gap: 14px;
  }
}

.p-real__supTwinImg {
  border-radius: 9px;
}
@media (max-width: 767px) {
  .p-real__supTwinImg {
    border-radius: 6px;
  }
}

.p-real__supTwinText {
  font-size: 0;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-real__supTwinText {
    text-align: center;
    line-height: 1.68;
  }
}

.p-real__supTwinPhr {
  display: inline-block;
  font-size: 2.2rem;
  font-size: 2.806122449cqw;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-real__supTwinPhr {
    font-size: 1.6rem;
    font-size: 5.4421768707cqw;
    letter-spacing: 0.06em;
  }
}

.p-real__supFootArw {
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .p-real__supFootArw {
    margin: 0 0 16px;
  }
}

@media (max-width: 767px) {
  .p-real__supFootArwImg {
    width: 152px;
  }
}

.p-real__biz {
  background-color: #e6f0f7;
  padding: 84px 0 106px;
}
@media (max-width: 767px) {
  .p-real__biz {
    padding: 42px 0 48px;
  }
}

.p-real__bizHr {
  outline: none;
  width: 100%;
  padding-top: 48px;
}
@media (max-width: 767px) {
  .p-real__bizHr {
    padding-top: 40px;
  }
}

.p-real__giftOuter {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .p-real__giftOuter {
    padding: 60px 0 0;
  }
}

.p-real__giftInner {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.p-real__giftFig {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-real__giftOverlay {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.p-real__giftLink {
  position: relative;
  bottom: 8.6021505376%;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  color: #23232d;
}
.p-real__giftLink:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-real__giftLink {
    font-size: 1.1rem;
    bottom: 8.253968254%;
  }
}

.p-real__bc {
  background-color: #f4f1ef;
  padding: 128px 0 104px;
}
@media (max-width: 767px) {
  .p-real__bc {
    padding: 48px 0 60px;
  }
}

.p-real__bcHead {
  text-align: center;
  font-size: 0;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .p-real__bcHead {
    margin: 0 0 34px;
  }
}

.p-real__bcHeadPhr {
  position: relative;
  font-size: 2.7rem;
  letter-spacing: 0.09em;
  font-weight: 900;
  color: #8a652c;
  border-bottom: 1px;
  line-height: 1;
  padding: 0 0 8px;
  display: inline-block;
}
@media (max-width: 767px) {
  .p-real__bcHeadPhr {
    font-size: 2.2rem;
    max-width: 230px;
    width: 100%;
  }
  .p-real__bcHeadPhr:nth-child(n+2) {
    margin-top: 8px;
  }
}
.p-real__bcHeadPhr:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #8a652c;
}
@media (max-width: 767px) {
  .p-real__bcHeadPhr:after {
    height: 1px;
  }
}

.p-real__bcDesc {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-real__bcDesc {
    font-size: 1.4rem;
  }
}

.p-real__bcOrder {
  max-width: 900px;
  width: 100%;
  margin: 54px auto 0;
  display: -ms-grid;
  display: grid;
  row-gap: 64px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: (46.4444444444%)[2];
  grid-template-columns: repeat(2, 46.4444444444%);
}
@media (max-width: 767px) {
  .p-real__bcOrder {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 36px auto 0;
    row-gap: 32px;
    max-width: 360px;
  }
}

.p-real__bcList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55.980861244% 5.7416267943% 1fr;
  grid-template-columns: 55.980861244% 1fr;
  -webkit-column-gap: 5.7416267943%;
     -moz-column-gap: 5.7416267943%;
          column-gap: 5.7416267943%;
}
@media (max-width: 767px) {
  .p-real__bcList {
    -ms-grid-columns: 55.5555555556% 2.5% 1fr;
    grid-template-columns: 55.5555555556% 1fr;
    -webkit-column-gap: 2.5%;
       -moz-column-gap: 2.5%;
            column-gap: 2.5%;
  }
}

.p-real__bcItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  container-type: inline-size;
}

.p-real__bcArea {
  background-color: #8a652c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 26px;
  border-radius: 13px;
  width: 100%;
  color: #fff;
  font-weight: 900;
  padding: 0 0 1px;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-size: 9.375cqw;
}
@media (max-width: 767px) {
  .p-real__bcArea {
    font-size: 1.3rem;
    font-size: 8.6092715232cqw;
    margin: 0 0 16px;
  }
}

.p-real__bcTitle {
  font-size: 1.92rem;
  font-size: 12.5cqw;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.32;
}
@media (max-width: 767px) {
  .p-real__bcTitle {
    font-size: 1.52rem;
    font-size: 10.5960264901cqw;
  }
}

.p-real__bcLink {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  min-height: 36px;
}
.p-real__bcLink:after {
  content: "";
  position: relative;
  top: 1px;
  display: block;
  width: 13px;
  height: 13px;
  background-image: url("../../../images/real/bc_arw.svg");
}
@media (max-width: 767px) {
  .p-real__bcLink:after {
    width: 11px;
    height: 11px;
  }
}
.p-real__bcLink span {
  font-weight: 700;
  font-size: 1.38rem;
  letter-spacing: 0.08em;
  color: #8a652c;
}
@media (max-width: 767px) {
  .p-real__bcLink span {
    font-size: 1.3rem;
  }
}

.p-real__bcTel {
  display: block;
  font-size: 2rem;
  font-size: 12.5cqw;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: bebas-neue-pro-expanded, sans-serif;
  color: #000;
  margin: 4px 0 0;
}
@media (max-width: 767px) {
  .p-real__bcTel {
    font-size: 1.7rem;
    font-size: 11.2582781457cqw;
    margin: 3px 0 0;
  }
}

.p-real__footer {
  text-align: center;
  padding: 66px 0 16px;
}
@media (max-width: 767px) {
  .p-real__footer {
    padding: 44px 0 12px;
  }
}

@media (max-width: 767px) {
  .p-real__footerHeadImg {
    width: 196px;
  }
}

.p-real__footerCopyright {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  display: block;
  margin: 44px 0 0;
}
@media (max-width: 767px) {
  .p-real__footerCopyright {
    font-size: 0.9rem;
    margin: 32px 0 0;
  }
}

.p-real__form {
  padding: 80px 0 112px;
}
@media (max-width: 767px) {
  .p-real__form {
    padding: 28px 0 60px;
  }
}

.p-real__formInner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.p-real__formAtte {
  border: 2px solid #e33300;
  border-radius: 10px;
  color: #e33300;
  text-align: center;
  font-size: 1.84rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 2.6666666667% 22px;
  line-height: 1.52;
  row-gap: 3px;
}
@media (max-width: 767px) {
  .p-real__formAtte {
    border-radius: 7px;
    font-size: 1.44rem;
    font-size: min(1.44rem, 4cqw);
    min-height: 30px;
    padding: 14px 3.3333333333% 16px;
    row-gap: 2px;
  }
}
.p-real__formAtte span {
  display: block;
  font-size: 2.16rem;
}
@media (max-width: 767px) {
  .p-real__formAtte span {
    font-size: 1.68rem;
  }
}

.p-real__formGuide {
  color: #6c6c6c;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-align: center;
  padding: 0 0 12px;
  margin: 44px 0 0;
}
@media (max-width: 767px) {
  .p-real__formGuide {
    font-size: 1rem;
  }
}
.p-real__formGuide em {
  color: #c62900;
}

.p-real__mw dl {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 30.2222222222% 1fr;
  grid-template-columns: 30.2222222222% 1fr;
  border-top: 1px dashed #bfc0c0;
}
.p-real__mw dl:last-child {
  border-bottom: 1px dashed #bfc0c0;
}
@media (max-width: 767px) {
  .p-real__mw dl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 14px 1.9444444444% 22px;
  }
}
.p-real__mw dt {
  padding: 26px 0 26px 3.4246575342%;
}
@media (max-width: 767px) {
  .p-real__mw dt {
    padding: 0;
  }
}
.p-real__mw dt p {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: #434446;
}
@media (max-width: 767px) {
  .p-real__mw dt p {
    font-size: 1.4rem;
  }
}
.p-real__mw dt p i {
  font-style: normal;
  color: #c62900;
}
.p-real__mw dd {
  padding: 26px 1.5923566879% 26px 0;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .p-real__mw dd {
    padding: 0;
  }
}
.p-real__mw dd .note {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #23232d;
  letter-spacing: 0.06em;
  font-weight: 550;
}
@media (max-width: 767px) {
  .p-real__mw dd .note {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
  }
}
.p-real__mw dd .note.mod--red {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #bf2020;
}
@media (max-width: 767px) {
  .p-real__mw dd .note.mod--red {
    font-size: 1rem;
  }
}
.p-real__mw dd .error {
  color: #c62900;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.p-real__mw select,
.p-real__mw input[type=text],
.p-real__mw input[type=date],
.p-real__mw textarea {
  width: 100%;
  max-width: 600px;
  border-radius: 0 !important;
  outline: none;
  border: 1px solid #828282;
  padding: 0 12px;
  color: #434446;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none !important;
}
.p-real__mw select::-webkit-input-placeholder, .p-real__mw input[type=text]::-webkit-input-placeholder, .p-real__mw input[type=date]::-webkit-input-placeholder, .p-real__mw textarea::-webkit-input-placeholder {
  color: #9d9d9e;
}
.p-real__mw select::-moz-placeholder, .p-real__mw input[type=text]::-moz-placeholder, .p-real__mw input[type=date]::-moz-placeholder, .p-real__mw textarea::-moz-placeholder {
  color: #9d9d9e;
}
.p-real__mw select:-ms-input-placeholder, .p-real__mw input[type=text]:-ms-input-placeholder, .p-real__mw input[type=date]:-ms-input-placeholder, .p-real__mw textarea:-ms-input-placeholder {
  color: #9d9d9e;
}
.p-real__mw select::-ms-input-placeholder, .p-real__mw input[type=text]::-ms-input-placeholder, .p-real__mw input[type=date]::-ms-input-placeholder, .p-real__mw textarea::-ms-input-placeholder {
  color: #9d9d9e;
}
.p-real__mw select::placeholder,
.p-real__mw input[type=text]::placeholder,
.p-real__mw input[type=date]::placeholder,
.p-real__mw textarea::placeholder {
  color: #9d9d9e;
}
@media (max-width: 767px) {
  .p-real__mw select,
  .p-real__mw input[type=text],
  .p-real__mw input[type=date],
  .p-real__mw textarea {
    padding: 0 8px;
  }
}
.p-real__mw select,
.p-real__mw input[type=text],
.p-real__mw input[type=date] {
  height: 36px;
}
.p-real__mw textarea {
  padding: 8px 12px;
}
.p-real__mw .select {
  position: relative;
  max-width: 356px;
  width: 100%;
}
.p-real__mw .select:after {
  position: absolute;
  display: block;
  content: "";
  top: calc(50% - 2px);
  width: 9px;
  height: 9px;
  border-right: 1px solid #b5b5b6;
  border-bottom: 1px solid #b5b5b6;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 3.9325842697%;
}
@media (max-width: 767px) {
  .p-real__mw .select {
    max-width: 232px;
  }
}
.p-real__mw .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
}
.p-real__mw .more {
  text-align: center;
  padding: 46px 0;
  line-height: 1;
  font-size: 0;
}
@media (max-width: 767px) {
  .p-real__mw .more {
    padding: 34px 0;
  }
}
.p-real__mw .more-state {
  display: none;
}
.p-real__mw .more-state:checked ~ .more-label .more-cb {
  background-color: #633728;
}
.p-real__mw .more-state:checked ~ .more-label .more-cb:after {
  opacity: 1;
}
.p-real__mw .more-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-real__mw .more-label {
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
}
.p-real__mw .more-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #434446;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 1;
  -webkit-transition: 0.32s opacity;
  transition: 0.32s opacity;
}
.p-real__mw .more-text:hover {
  opacity: 0.72;
}
@media (max-width: 767px) {
  .p-real__mw .more-text {
    font-size: 1.3rem;
  }
}
.p-real__mw .more-cb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 19px;
  height: 19px;
  -webkit-transition: 0.24s background-color;
  transition: 0.24s background-color;
  background-color: #ebe5db;
}
@media (max-width: 767px) {
  .p-real__mw .more-cb {
    width: 15px;
    height: 15px;
  }
}
.p-real__mw .more-cb:after {
  position: relative;
  top: 0.5px;
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  opacity: 0;
  -webkit-transition: 0.24s opacity;
  transition: 0.24s opacity;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../../../images/real/ico_cb.svg");
}
@media (max-width: 767px) {
  .p-real__mw .more-cb:after {
    width: 10px;
    height: 7px;
  }
}
.p-real__mw .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .p-real__mw .submit {
    margin: 44px 0 0;
  }
}
.p-real__mw .submit input[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
  position: relative;
  background-color: #8a652c;
  outline: none;
  border: none;
  height: 78px;
  border-radius: 40px !important;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0 0 2px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.32s opacity;
  transition: 0.32s opacity;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-real__mw .submit input[type=submit]:hover {
  opacity: 0.72;
}
@media (max-width: 767px) {
  .p-real__mw .submit input[type=submit] {
    font-size: 1.7rem;
    height: 68px;
  }
}
.p-real__mw .submit-button {
  position: relative;
  width: 100%;
  max-width: 488px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-real__mw .submit-button {
    max-width: 340px;
  }
}
.p-real__mw .submit-button:after {
  content: "";
  position: absolute;
  display: block;
  width: 7.3770491803%;
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4.0983606557%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../../../images/real/submit_arw.svg");
}
@media (max-width: 767px) {
  .p-real__mw .submit-button:after {
    background-image: url("../../../images/real/submit_arw_sp.svg");
    width: 9.4117647059%;
    right: 5.5882352941%;
  }
}

.mw_wp_form_confirm .more {
  pointer-events: none;
  opacity: 0.32;
}

.mw_wp_form_confirm .select:after {
  content: none;
}