@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/*
 * Function
 */
/*
* mixins
*/
/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

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

button {
    background-color: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-weight: 700;
    color: #0f2558;
    line-height: 1.35294117647;
}

h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0f2558;
}

h2 {
    font-size: 3.4rem;
}

h3 {
    font-size: 2.3rem;
}

.block-margins {
    margin: 1em 0;
}

.unordered-list {
    list-style-type: disc;
}

.ordered-list {
    list-style: decimal;
}

/* Components - Re-usable site elements.
========================================================================== */
a {
    color: #000;
    text-decoration: none;
}
a:visited {
    color: #000;
    text-decoration: none;
}
a:hover,
a:visited:hover {
    color: #0f2558;
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: 700;
}

.more {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.more-btn {
    display: inline-block;
    width: 100%;
    max-width: 29.6rem;
    line-height: 6.1rem;
    background: #fff;
    border: 3px solid #0f2558;
    border-radius: 3.1rem;
    text-align: center;
    font-size: 1.8rem;
    color: #0f2558 !important;
    font-weight: 700;
    position: relative;
}
.more-btn::after {
    content: "＞";
    right: 2rem;
    position: absolute;
}
.more-btn:hover {
    background: #0f2558;
    color: #fff !important;
}

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

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

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

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

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

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

.animate__animated.animate__delay-05s {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Attention seekers  */
@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
        transform: translate3d(0, 0, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}

.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

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

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

.animate__swing {
    -webkit-transform-origin: top center;
    -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);
    }
}

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

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

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.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);
    }
}

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

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

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

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

@keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(0.7);
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    20% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: 0.7;
    }
    100% {
        -webkit-transform: translateY(700px) scale(0.7);
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -5rem, 0);
        transform: translate3d(0, -5rem, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -5rem, 0);
        transform: translate3d(0, -5rem, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-5rem, 0, 0);
        transform: translate3d(-5rem, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-5rem, 0, 0);
        transform: translate3d(-5rem, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(5rem, 0, 0);
        transform: translate3d(5rem, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(5rem, 0, 0);
        transform: translate3d(5rem, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 5rem, 0);
        transform: translate3d(0, 5rem, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 5rem, 0);
        transform: translate3d(0, 5rem, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lightSpeedInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

@-webkit-keyframes lightSpeedInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes lightSpeedInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOutDownLeft {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

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

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

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

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

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Sliding exits */
@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.slick-slide {
    position: relative;
}
.slick-slide img {
    display: inline-block;
}
.slick-slide img.pc {
    display: inline-block;
}
.slick-slide img.sp {
    display: none;
}
/*.slick-slide::after {
    content: "";
    width: 100%;
    height: 1.515rem;
    background-image: url("../images/home_hiromi/spin-bg.png");
    background-position: repeat-x;
    background-repeat: 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
}*/

@media (max-width: 991px) {
    .slick-slide img.pc {
        display: none;
    }
    .slick-slide img.sp {
        display: inline-block;
    }
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    color: #0f2558;
    font-size: 1.6rem;
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
    width: 100%;
}

hr {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #000 -moz-use-text-color -moz-use-text-color;
    -o-border-image: none;
    border-image: none;
    border-style: solid none none;
    border-width: 0.2em 0 0 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 103rem;
    padding: 0 15px;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

input:focus {
    outline: none;
}

a > img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
a > img:hover {
    opacity: 0.7;
}

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

.thumb-box a {
    display: block;
}

.thumb-box img {
    width: 100%;
    height: auto;
}

.img-cover figure {
    display: block;
    width: 100%;
    height: 100%;
}

.img-cover img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.thumb-over figure {
    display: block;
    position: relative;
    overflow: hidden;
}
.thumb-over figure::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.thumb-over figure img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.thumb-over:hover figure::before {
    background: rgba(0, 0, 0, 0.5);
}

.thumb-over:hover figure img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.error {
    font-size: 1.2rem;
    color: #ff0000;
}

#result input.error {
    border-color: #e41919;
}

#result div.error {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(228, 25, 25, 0.75);
    color: #fff;
}

#result div.success {
    margin-top: 20px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(50, 178, 95, 0.75);
    color: #fff;
}

.loader_wrap {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: white;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hiddenb {
    opacity: 0;
}

.visibleb {
    opacity: 1;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.header__main {
    padding: 1.7rem 2.4rem;
}
.header__main .logo {
    width: 30rem;
}
.header__main--info {
    padding-left: 2rem;
}
.header__main--info a {
    display: block;
    margin-left: 0.6rem;
    width: 5.7rem;
}

@media (max-width: 991px) {
    .header__main {
        padding: 1rem;
    }
    .header__main .logo {
     width: 19rem;
 }
 .header__main--info {
    padding-left: 0;
}
.header.is_active {
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    align-items: start !important;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.slide-img {
    width: 100vw !important;
}
.slide-img img {
    width: 100%;
    height: auto;
}

.banner__main {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 80rem;
    background-image: url("../images/home_hiromi/banner-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #89dbff;
    overflow: hidden;
}
/*.banner__main::after {
    content: "";
    width: 100%;
    height: 1.515rem;
    background-image: url("../images/home_hiromi/spin-bg.png");
    background-position: repeat-x;
    background-repeat: 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
}*/
.banner__main .banner-img-items {
    z-index: 99;
}
.banner__main .banner-img-left {
    width: 58.9rem;
    position: absolute;
    right: calc(50% + 24.5rem);
    top: 50%;
    transform: translateY(-75%);
}
.banner__main .banner-img-left img:not(:first-child) {
    margin-top: -8rem;
}
.banner__main .banner-img-right {
    width: 59.3rem;
    position: absolute;
    top: 50%;
    left: calc(50% + 24.5rem);
    transform: translateY(-100%);
}
.banner__main .banner-img-right img:not(:first-child) {
    margin-top: -10rem;
}
.banner__main .banner-img-main {
    width: 72.1rem;
    position: absolute;
    left: 50%;
    bottom: 10rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.banner__main .rotation {
    display: inline-block;
    position: absolute;
    right: 4rem;
    bottom: 17.5rem;
}
.banner__main .rotation .banner-img-rotation {
    width: 15.8rem;
    height: 15.8rem;
    background-image: url("../images/home_hiromi/banner-img-rotation.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-animation: spin 8s linear infinite;
    animation: spin 8s linear infinite;
}
.banner__main .rotation img {
    width: 9rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -4.5rem;
    margin-top: -5rem;
}
.banner__main .scroll {
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 1rem;
}
.banner__main .scroll img {
    width: 21rem;
}

.head-box {
    text-align: center;
    margin-bottom: 4.5rem;
}
.head-box main {
    position: relative;
    display: inline-block;
    padding: 1rem 9.5rem;
}
.head-box main::before {
    content: "";
    background-image: url("../images/home_hiromi/head-2.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 8.1rem;
    height: 8.1rem;
    position: absolute;
    top: 0;
    left: 0;
}
.head-box main::after {
    content: "";
    background-image: url("../images/home_hiromi/head-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 8.1rem;
    height: 8.1rem;
    position: absolute;
    bottom: 0;
    right: 0;
}
.head-box .sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1rem;
}
.head-box .sub img {
    width: 40.7rem;
    padding-bottom: 10px;
}
.head-box .sub h3 {
    font-size: 3.3rem;
}
.head-box .sub h3 span {
    font-size: 2.2rem;
}
.head-box .sub h2 {
    font-size: 4.6rem;
}

.absolute-box {
    padding: 5.5rem 0 7rem;
    background-image: url("../images/home_hiromi/absolute-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
    position: relative;
}
.absolute-box::after {
    content: "";
    width: 100%;
    height: 7.9rem;
    background-image: url("../images/home_hiromi/absolute-bg-2.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    position: absolute;
    bottom: 0;
    left: 0;
}
.absolute-box__main .thumb-box {
    width: 36.9rem;
}
.absolute-box__main .text-box {
    width: calc(100% - 36.9rem);
    padding-right: 2.6rem;
    padding-top: 4.5rem;
}
.absolute-box__main .text-box h3 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.absolute-box__price {
    position: relative;
    z-index: 9;
}
.absolute-box__price .d-flex {
    margin: 0 -0.6rem;
}
.absolute-box__price .items {
    width: 50%;
    padding: 0 0.6rem;
}
.absolute-box__price .items main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    border: 3px solid #0e2558;
    border-radius: 10px;
    padding: 1.5rem;
    background: #ffffff;
}
.absolute-box__price .items .thumb-box {
    width: 12rem;
    position: relative;
}
.absolute-box__price .items .thumb-box::after {
    content: "";
    width: 4.5rem;
    height: 4.3rem;
    background-image: url("../images/home_hiromi/icon-3.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.absolute-box__price .items .text-box {
    width: calc(100% - 12rem);
    padding-left: 1rem;
}
.absolute-box__price .items .text-box h3 {
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed #0e2558;
}
.absolute-box__price .items .text-box p {
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 2.1rem;
    padding-top: 0.5rem;
    text-align: center;
}
.absolute-box__price .items .text-box p span {
    font-size: 5.3rem;
}
.absolute-box__price .items:nth-child(2) .thumb-box::after {
    background-image: url("../images/home_hiromi/icon-4.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.record-box {
    padding: 7.5rem 0 5.5rem;
    position: relative;
    background: #f5fcff;
    border-top: 1rem dashed #0e2558;
    border-bottom: 1rem dashed #0e2558;
}
.record-box__main {
    border: 3px solid #0f2558;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 2rem;
}
.record-box__main .thumb-box {
    width: 34.3rem;
    text-align: right;
    position: relative;
}
.record-box__main .thumb-box::after {
    content: "";
    width: 9.4rem;
    height: 8.9rem;
    background-image: url("../images/home_hiromi/record-2.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
}
.record-box__main .thumb-box p {
    font-weight: 700;
}
.record-box__main .thumb-box p:last-child {
    margin-bottom: 0;
}
.record-box__main .thumb-box p span {
    font-size: 1.2rem;
}
.record-box__main .text-box {
    width: calc(100% - 34.3rem);
    padding-left: 2.5rem;
}
.record-box__main .text-box h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
.record-box__main .text-box p:last-child {
    margin-bottom: 0;
}
.record-box__main:last-child {
    margin-bottom: 0;
}
.record-box__main:last-child .thumb-box::after {
    display: none;
}

.contact-box {
    padding: 2.5rem 0 5.5rem;
    background: #41589E;
}
.contact-box__main {
    padding: 0 2.5rem;
}
.contact-box__main .thumb-box {
    width: 44rem;
}
.contact-box__main .text-box {
    width: calc(100% - 44rem);
    padding-left: 2rem;
    padding-top: 4.3rem;
}
@media screen and (min-width:480px) {
    .kyushu_tokaibutton{
        padding-top: 9.3rem!important;
    }
}
.contact-box__main .text-box .more {
    display: block;
    margin-bottom: 1.2rem;
}
.contact-box__main .text-box .more:last-child {
    margin-bottom: 0;
}

.experienced-box {
    background-image: url("../images/home_hiromi/experienced-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
    background-color: #79c4eb;
    padding: 5rem 0;
}
.experienced-box .head-box {
    margin-bottom: 8.5rem;
}
.experienced-box__main .d-flex {
    margin: 0 -2.8rem;
}
.experienced-box__main .items {
    width: 50%;
    padding: 0 2.8rem;
    margin-bottom: 9rem;
}
.experienced-box__main .items main {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid #c26c6f;
    border-radius: 10px;
    background: #fff;
}
.experienced-box__main .items .head {
    border-bottom: 3px solid #c26c6f;
    text-align: center;
    padding-bottom: 2rem;
}
.experienced-box__main .items .head img {
    width: 16.1rem;
    margin-bottom: 1rem;
    margin-top: -5.7rem;
}
.experienced-box__main .items .head h3 {
    font-size: 2.5rem;
    color: #c46e71;
}
.experienced-box__main .items .head h3 span {
    position: relative;
    background-image: url("../images/home_hiromi/bd-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding-bottom: 0.5rem;
}
.experienced-box__main .items .main-box {
    padding: 1.5rem 2rem;
}
.experienced-box__main .items .main-box p {
    margin-bottom: 0.5rem;
}
.experienced-box__main .items .main-box p:last-child {
    margin-bottom: 0;
}
.experienced-box__main .items .main-box p span {
    font-size: 1.2rem;
}
.experienced-box__main .items .main-box .thumb-box {
    -webkit-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    transform: translateY(3rem);
}
.experienced-box__main .items:nth-child(2) main {
    border-color: #bc6ba2;
}
.experienced-box__main .items:nth-child(2) .head {
    border-color: #bc6ba2;
}
.experienced-box__main .items:nth-child(2) .head h3 {
    color: #bc6ba2;
}
.experienced-box__main .items:nth-child(3) main {
    border-color: #8568ab;
}
.experienced-box__main .items:nth-child(3) .head {
    border-color: #8568ab;
}
.experienced-box__main .items:nth-child(3) .head h3 {
    color: #8568ab;
}
.experienced-box__main .items:nth-child(4) main {
    border-color: #6f85b8;
}
.experienced-box__main .items:nth-child(4) .head {
    border-color: #6f85b8;
}
.experienced-box__main .items:nth-child(4) .head h3 {
    color: #6f85b8;
}

.point-box {
    padding: 14.5rem 0 4.5rem;
    background-image: url("../images/home_hiromi/experienced-arow.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: #89dbff;
}
.point-box .head {
    text-align: center;
    margin-bottom: 5.5rem;
    padding-bottom: 1.2rem;
    position: relative;
}
.point-box .head::after {
    content: "";
    width: 8.2rem;
    height: 5px;
    background: #0e2558;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.point-box .head p {
    font-size: 2.9rem;
    font-weight: 700;
    color: #0e2558;
    margin-bottom: 0;
}
.point-box .head h2 {
    font-size: 4.2rem;
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
}
.point-box .head h2::after {
    content: "";
    width: 1.7rem;
    height: 2.4rem;
    background-image: url("../images/home_hiromi/point-head.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: -1rem;
    right: 0;
}
.point-box__main {
    padding-left: 2.5rem;
}
.point-box__main .d-flex {
    margin: 0 -2.3rem;
}
.point-box__main .items {
    width: 50%;
    padding: 0 2.3rem;
    margin-bottom: 1.5rem;
}
.point-box__main .items main {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 3px solid #c97d7f;
    border-radius: 10px;
    padding: 3rem 5rem;
    position: relative;
}
.point-box__main .items main::after {
    content: "";
    width: 6.6rem;
    height: 6.4rem;
    background-image: url("../images/home_hiromi/point-1.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.point-box__main .items h3 {
    font-size: 2.4rem;
    color: #c97a78;
    margin-bottom: 1rem;
}
.point-box__main .items p {
    margin-bottom: 0;
}
.point-box__main .items:nth-child(1) main::before {
    content: "";
    width: 11.8rem;
    height: 9.1rem;
    background-image: url("../images/home_hiromi/point-icon-1.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 2.2rem;
    -webkit-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    transform: translateY(-90%);
}
.point-box__main .items:nth-child(2) {
    padding-left: 3.8rem;
}
.point-box__main .items:nth-child(2) main {
    border-color: #c47ba9;
}
.point-box__main .items:nth-child(2) main::before {
    content: "";
    width: 6.3rem;
    height: 12.2rem;
    background-image: url("../images/home_hiromi/point-icon-2.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    right: 1rem;
    -webkit-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    transform: translateY(-90%);
}
.point-box__main .items:nth-child(2) main::after {
    background-image: url("../images/home_hiromi/point-2.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.point-box__main .items:nth-child(2) main h3 {
    color: #c47ba9;
}
.point-box__main .items:nth-child(3) main {
    border-color: #9078b3;
}
.point-box__main .items:nth-child(3) main::after {
    background-image: url("../images/home_hiromi/point-3.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.point-box__main .items:nth-child(3) main::before {
    content: "";
    width: 6.2rem;
    height: 14.6rem;
    background-image: url("../images/home_hiromi/point-arow.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}
.point-box__main .items:nth-child(3) main h3 {
    color: #9078b3;
}
.point-box__main .items:nth-child(4) {
    max-width: 38.7rem;
    padding-top: 2.5rem;
}
.point-box__main .items:nth-child(4) main {
    padding: 0;
    border: none;
}
.point-box__main .items:nth-child(4) main::after {
    display: none;
}

.completely-box {
    padding: 7rem 0;
}
.completely-box__main .items {
    margin-bottom: 2rem;
    padding-right: calc((100% - 100rem) / 2);
    overflow: hidden;
    position: relative;
}
.completely-box__main .items main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    border-top: 3px solid #c26c6f;
    border-bottom: 3px solid #c26c6f;
    border-right: 3px solid #c26c6f;
    border-radius: 0 10px 10px 0;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    padding-left: calc((100% - 100rem) / 2);
    padding-right: 2.2rem;
    background: #f5f8ff;
}
.completely-box__main .items .thumb-box {
    width: 38rem;
}
.completely-box__main .items .text-box {
    width: calc(100% - 38rem);
    padding-right: 2rem;
}
.completely-box__main .items .text-box .head {
    margin-bottom: 2.5rem;
    position: relative;
    padding: 1.8rem 4rem 1.8rem 0;
    display: inline-block;
}
.completely-box__main .items .text-box .head::after {
    content: "";
    width: 10000%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: #c46e71;
    border-radius: 0 10px 10px 0;
}
.completely-box__main .items .text-box .head h3 {
    color: #fff;
}
.completely-box__main .items .text-box .head img {
    margin-right: 1rem;
}
.completely-box__main .items .text-box .head .main {
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.completely-box__main .items .text-box ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.completely-box__main .items .text-box ul li {
    width: 50%;
    margin-bottom: 1.5rem;
    padding: 0 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    background-image: url("../images/home_hiromi/check.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-position: left center;
    line-height: 1.5;
}
.completely-box__main .items:nth-child(even) {
    padding-right: 0;
    padding-left: calc((100% - 100rem) / 2);
}
.completely-box__main .items:nth-child(even) main {
    padding-right: calc((100% - 100rem) / 2);
    padding-left: 2.2rem;
    border-right: none;
    border-left: 3px solid #c26c6f;
    border-radius: 10px 0 0 10px;
}
.completely-box__main .items:nth-child(even) .thumb-box {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}
.completely-box__main .items:nth-child(even) .text-box {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-right: 0;
    padding-left: 2rem;
    text-align: right;
}
.completely-box__main .items:nth-child(even) .text-box .head {
    padding: 1.8rem 0 1.8rem 4rem;
}
.completely-box__main .items:nth-child(even) .text-box .head::after {
    left: 0;
    right: auto;
    border-radius: 10px 0 0 10px;
}
.completely-box__main .items:nth-child(even) .text-box .head h3 {
    color: #fff;
}
.completely-box__main .items:nth-child(even) .text-box .head img {
    margin-right: 1rem;
}
.completely-box__main .items:nth-child(even) .text-box .head .main {
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.completely-box__main .items:nth-child(even) .text-box ul {
    text-align: left;
}
.completely-box__main .items:nth-child(2) main {
    border-color: #bc6ba2;
}
.completely-box__main .items:nth-child(2) .text-box .head::after {
    background: #bc6ba2;
}
.completely-box__main .items:nth-child(3) main {
    border-color: #8568ab;
}
.completely-box__main .items:nth-child(3) .text-box .head::after {
    background: #8568ab;
}
.completely-box__main .items:nth-child(4) main {
    border-color: #6f85b8;
}
.completely-box__main .items:nth-child(4) .text-box .head::after {
    background: #6f85b8;
}

.case-box {
    margin-top: 5rem;
    padding-bottom: 4rem;
    background-image: url("../images/home_hiromi/absolute-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
}
.case-box .head {
    text-align: center;
    height: 13.7rem;
    background-image: url("../images/home_hiromi/case-head-bg.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 5rem;
}
.case-box .head img {
    width: 38.9rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.case-box__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.case-box__main .thumb-box {
    width: 39.4rem;
}
.case-box__main .text-box {
    width: calc(100% - 39.4rem);
    padding-left: 3.5rem;
    padding-top: 2.2rem;
}
.case-box__main .text-box main {
    display: block;
    width: 100%;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid #0e2558;
    border-top: 2px solid #0e2558;
}
.case-box__main .text-box p {
    margin-bottom: 0;
}
.case-box__main .text-box p b {
    color: #c30013;
    font-weight: 700;
}
.case-box__main .text-box p span {
    background: #ffd800;
}

.check-box {
    padding: 5.5rem 0 6.5rem;
    /* background-image: url("../images/home_hiromi/check-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover; */
    background: #89dbff;
}
.check-box .container {
    max-width: 79.6rem;
}

.waterproofing-box {
    padding-bottom: 5rem;
}
.waterproofing-box .container {
    max-width: 79.6rem;
}
.waterproofing-box .waterproofing-box__main {
    margin-top: -4.5rem;
}

.area-box {
    background: #41599e;
    padding: 6rem;
}
.area-box .container {
    max-width: 83rem;
}
.area-box__main {
    background: #fff;
    border-radius: 10px;
    border: 3px solid #bc6ba2;
    padding: 0 4.5rem 4.5rem;
}
.area-box__main .head {
    text-align: center;
    margin-bottom: 5.5rem;
}
.area-box__main .head h2 {
    display: inline-block;
    -webkit-clip-path: polygon(0 1%, 100% 0, 95% 100%, 5% 100%);
    clip-path: polygon(0 1%, 100% 0, 95% 100%, 5% 100%);
    background: #bc6ba2;
    padding: 0 10rem;
    line-height: 7.1rem;
    font-size: 2.6rem;
    color: #fff;
    margin-top: -1.2rem;
}
.area-box__main .main-box {
    margin-bottom: 3.5rem;
}
.area-box__main .main-box .thumb-box {
    width: 29.3rem;
}
.area-box__main .main-box .text-box {
    width: calc(100% - 29.3rem);
    padding-right: 2.5rem;
    position: relative;
    z-index: 9;
}
.area-box__main .main-box .area-head {
    margin-bottom: 1.5rem;
}
.area-box__main .main-box .area-head span {
    margin-right: 0.4rem;
    display: inline-block;
    width: 8.4rem;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #ceba42;
    color: #ceba42;
    font-size: 1.4rem;
    line-height: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.area-box__main .main-box .area-head span:nth-child(2) {
    color: #43d6af;
    border-color: #43d6af;
}
.area-box__main .main-box .area-head span:nth-child(3) {
    color: #8568ab;
    border-color: #8568ab;
}
.area-box__main .main-box .area-head span:nth-child(4) {
    color: #14add1;
    border-color: #14add1;
}
.area-box__main .main-box .area-head span:nth-child(5) {
    color: #bc6ba2;
    border-color: #bc6ba2;
}
.area-box__main .main-box .area-head span:nth-child(6) {
    color: #c26c6f;
    border-color: #c26c6f;
}
.area-box__main .main-box .area-head span:nth-child(7) {
    color: #6f85b8;
    border-color: #6f85b8;
}
.area-box__main .main-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.area-box__main .main-box h3 b {
    color: #14add1;
}
.area-box__main .main-box h3 span {
    position: relative;
}
.area-box__main .main-box h3 span::after {
    content: "";
    width: 100%;
    height: 0.7rem;
    background: #ffef3f;
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    z-index: -1;
}
.area-box__main .main-box p {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.qa-box .items {
    border: 3px solid #0e2558;
    margin-bottom: 0.5rem;
    background: #fff;
}
.qa-box .items h3 {
    font-size: 1.8rem;
    padding: 0 0 0 1.8rem;
    line-height: 5.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.qa-box .items h3::after {
    content: "＞";
    font-size: 2rem;
    font-weight: 900;
    border-bottom: 3px solid #0e2558;
    width: 5.7rem;
    height: 100%;
    text-align: center;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: #fffadb;
    margin-top: -1px;
    margin-right: 1px;
}
.qa-box .items .a {
    border-top: 3px solid #0e2558;
    background: #f0f5ff;
    padding: 1.5rem;
    display: none;
}
.qa-box .items .a p {
    margin-bottom: 1rem;
}
.qa-box .items .a p:last-child {
    margin-bottom: 0;
}
.qa-box .items .a p span {
    margin-bottom: 1rem;
    margin-right: 2rem;
    /* text-decoration: underline; */
}
.qa-box .items:nth-child(2) h3::after {
    background-color: #eafff9;
}
.qa-box .items:nth-child(3) h3::after {
    background-color: #efe3ff;
}
.qa-box .items:nth-child(4) h3::after {
    background-color: #d3f7ff;
}
.qa-box .items:nth-child(5) h3::after {
    background-color: #ffeaf8;
}
.qa-box .items:nth-child(6) h3::after {
    background-color: #ffdedf;
}
.qa-box .items:nth-child(7) h3::after {
    background-color: #f0f5ff;
}

.support-box {
    background: #5d74b7;
    padding: 2.5rem 0;
}
.support-box .container {
    max-width: 86rem;
}

.confident-box {
    padding: 5rem 0;
}
.confident-box .container {
    max-width: 82.5rem;
}
.confident-box__main .thumb-box {
    width: 38.9rem;
}
.confident-box__main .text-box {
    padding-left: 1rem;
    width: calc(100% - 38.9rem);
}
.confident-box__main .text-box .items {
    padding: 0 0.6rem;
    margin-bottom: 0.8rem;
}
.confident-box__main .text-box .items main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    border: 3px solid #0e2558;
    border-radius: 10px;
    padding: 1.5rem;
    background: #fefaea;
}
.confident-box__main .text-box .items .thumb-box {
    width: 12rem;
    position: relative;
}
.confident-box__main .text-box .items .thumb-box::after {
    content: "";
    width: 4.5rem;
    height: 4.3rem;
    background-image: url("../images/home_hiromi/icon-3.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.confident-box__main .text-box .items .text-box {
    width: calc(100% - 12rem);
    padding-left: 1rem;
}
.confident-box__main .text-box .items .text-box h3 {
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed #0e2558;
}
.confident-box__main .text-box .items .text-box p {
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 2.1rem;
    text-align: center;
    padding-top: 0.5rem;
}
.confident-box__main .text-box .items .text-box p span {
    font-size: 5.3rem;
}
.confident-box__main .text-box .items:nth-child(2) {
    margin-bottom: 0;
}
.confident-box__main .text-box .items:nth-child(2) .thumb-box::after {
    background-image: url("../images/home_hiromi/icon-4.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.confident-box__price {
    position: relative;
}
.confident-box__price h3 {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 2.9rem;
    margin-top: 4.5rem;
    width: 100%;
}

.price-box {
    padding: 4rem 0;
    background: #89dbff;
}
.price-box .thumb-box {
    margin-bottom: 1rem;
}
.price-box p {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #000000;
}

.construction-box {
    padding: 4.5rem 0;
    background-image: url("../images/home_hiromi/absolute-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
}
.construction-box .container {
    max-width: 81.7rem;
}
.construction-box__main .d-flex {
    margin: 0 -1rem;
}
.construction-box__main .items {
    width: 50%;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}
.construction-box__main .items main {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 1rem;
}

.qa-content {
    padding: 7rem 0;
}

.explanation-box {
    padding: 1.5rem 0;
    background: #f4f4f4;
}
.explanation-box__main {
    background: #fff;
    padding: 2.5rem;
}
.explanation-box__main h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.explanation-box__main p {
    font-size: 1.4rem;
    margin-bottom: 0;
}
.explanation-box__main .main {
    width: 100%;
    max-width: 68.5rem;
    margin: 0 auto;
}

.inquiry-box {
    padding: 5rem 0;
    background-image: url("../images/home_hiromi/absolute-bg.jpg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-repeat: repeat;
    position: relative;
}
.inquiry-box .head {
    text-align: center;
    margin-bottom: 3rem;
}
.inquiry-box .head h2 {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    position: relative;
}
.inquiry-box .head h2::after {
    content: "";
    width: 7.7rem;
    height: 3px;
    background: #0f2558;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.inquiry-box .head p {
    margin-bottom: 0;
}
.inquiry-box__main {
    background: #fff;
    padding: 2rem 1rem;
}
.inquiry-box__thanks {
    background: #fff;
    padding: 4rem 1rem;
    text-align: center;
}
.inquiry-box__thanks .more-box {
    padding-top: 5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid #bababa;
}
.contact-form .form-group .labels {
    width: 34.5%;
    padding-right: 3.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-form .form-group .labels::after {
    content: "任意";
    background: #707070;
    border-radius: 3.6rem;
    font-size: 1.4rem;
    color: #fff;
    line-height: 2.6rem;
    padding: 0;
    text-align: center;
    width: 6.1rem;
    font-weight: 300;
    display: none;
}
.contact-form .form-group .input {
    width: 65.5%;
    font-size: 1.8rem;
}
.contact-form .form-group .input .items {
    border: none;
    padding: 1rem 1.5rem;
    line-height: 1;
    font-size: 1.6rem;
}
.contact-form .form-group .input .items input {
    margin: 0 0.5rem 0 0;
}
.contact-form .form-group select,
.contact-form .form-group textarea,
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"] {
    width: 100%;
    max-width: 100%;
    height: 6.2rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background: #f1f4f8;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    padding: 0 1.5rem;
}
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="email"]:focus {
    outline: none;
    outline: 0;
}
.contact-form .form-group select::-webkit-input-placeholder,
.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input[type="text"]::-webkit-input-placeholder,
.contact-form .form-group input[type="email"]::-webkit-input-placeholder {
    font-size: 16px;
    color: #a3a3a3;
}
.contact-form .form-group select::-moz-placeholder,
.contact-form .form-group textarea::-moz-placeholder,
.contact-form .form-group input[type="text"]::-moz-placeholder,
.contact-form .form-group input[type="email"]::-moz-placeholder {
    font-size: 16px;
    color: #a3a3a3;
}
.contact-form .form-group select:-ms-input-placeholder,
.contact-form .form-group textarea:-ms-input-placeholder,
.contact-form .form-group input[type="text"]:-ms-input-placeholder,
.contact-form .form-group input[type="email"]:-ms-input-placeholder {
    font-size: 16px;
    color: #a3a3a3;
}
.contact-form .form-group select::-ms-input-placeholder,
.contact-form .form-group textarea::-ms-input-placeholder,
.contact-form .form-group input[type="text"]::-ms-input-placeholder,
.contact-form .form-group input[type="email"]::-ms-input-placeholder {
    font-size: 16px;
    color: #a3a3a3;
}
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder,
.contact-form .form-group input[type="text"]::placeholder,
.contact-form .form-group input[type="email"]::placeholder {
    font-size: 16px;
    color: #a3a3a3;
}
.contact-form .form-group label {
    margin-right: 2rem;
}
.contact-form .form-group textarea {
    min-height: 27.4rem;
    padding: 1.5rem;
}
.contact-form .form-group.required .labels::after {
    content: "必須";
    background: #c60505;
    display: block;
}
.contact-form .form-group.form-group-textarea {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    border: none;
}
.contact-form .form-group.form-group-textarea .labels {
    padding-top: 2rem;
}

.contact-form .contact-information {
    width: 100%;
    max-width: 85rem;
    margin: 0 auto 2.5rem;
    padding: 3rem;
    border: 1px solid #000;
    overflow-y: scroll;
    height: 26.2rem;
}
.contact-form .contact-information h3 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}
.contact-form .contact-information p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.contact-form .checks-box {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-form .more-box {
    text-align: center;
    padding-top: 2rem;
    min-height: 13rem;
}
.contact-form .more-box button {
    width: 100%;
    max-width: 36.5rem;
    cursor: pointer;
}
.contact-form .more-box button:hover {
    opacity: 0.7;
}
.contact-form .more-box .more-submit {
    display: inline-block;
    pointer-events: none;
}
.contact-form .more-box .more-submit img:last-child {
    display: none;
}
.contact-form .more-box .more-submit.is_active {
    pointer-events: all;
}
.contact-form .more-box .more-submit.is_active img:first-child {
    display: none;
}
.contact-form .more-box .more-submit.is_active img:last-child {
    display: block;
}

.contact-form .cf-box {
    display: none;
}

.contact-form .sm-input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-form .more-back {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
}

.banner-boot {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #0f2558;
    padding: 0 1rem 0 11rem;
    height: 8rem;
    width: 100%;
    z-index: 999;
}
.banner-boot .main-box .thumb-box {
    width: 7.3rem;
    position: absolute;
    left: 2.5rem;
    bottom: 0;
}
.banner-boot .main-box .text-box {
    padding: 0.5rem 0;
}
.banner-boot .main-box .text-box h3 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ", sans-serif;
}
.banner-boot .main-box .text-box .items {
    width: 4.6rem;
    margin-right: 0.5rem;
}
.banner-boot .main-box .text-box .items:last-child {
    width: 17.3rem;
}

.footer__main {
    padding-top: 4rem;
    background: #89dbff;
}
.footer__main--info {
    margin-bottom: 4.5rem;
}
.footer__main--info ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2.5rem;
}
.footer__main--info ul li {
    width: 50%;
    margin-bottom: 2.5rem;
    padding: 0 2.5rem;
}
.footer__main--info ul li main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #0e2558;
}
.footer__main--info ul li span {
    font-weight: 700;
    width: 14.5rem;
}
.footer__main--map {
    margin-bottom: 6.5rem;
}
.footer__main--map .d-flex {
    margin: 0 -1.7rem;
}
.footer__main--map .items {
    width: 50%;
    padding: 0 1.7rem;
    margin-bottom: 3.5rem;
}
.footer__main--map .items h3 {
    text-align: center;
    line-height: 4.8rem;
    background: #0e2558;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer__main--map .items p {
    margin-bottom: 1.5rem;
}
.footer__main--map .items .map iframe {
    width: 100%;
}
.footer__main--map .items .thumb-box {
    margin: 0 -0.75rem;
}
.footer__main--map .items .thumb-box figure {
    width: 50%;
    padding: 0 0.75rem;
}
.footer__main--map .items .thumb-box figure:first-child {
 /* width: 100%; */
 margin-bottom: 1.4rem;
}
.footer__main--nav {
    position: relative;
}
.footer__main--nav::after {
    content: "";
    width: 50%;
    height: 1px;
    background: #0e2558;
    position: absolute;
    top: 0;
    right: 0;
}
.footer__main--nav nav {
    padding: 1.5rem 0;
}
.footer__main--nav nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer__main--nav nav ul li a {
    font-size: 1.4rem;
    color: #0e2558;
    padding: 0 1.5rem;
    display: block;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer__main--nav nav ul li a::before {
    content: "";
    width: 0.756rem;
    height: 0.73rem;
    background-image: url("../images/home_hiromi/arow-icon.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-right: 0.5rem;
}

.footer__copyright {
    text-align: center;
    padding: 2rem 0;
}
.footer__copyright p {
    font-size: 1.6rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer__main {
        padding-top: 3rem;
    }
    .footer__main--info ul {
        margin: 0;
    }
    .footer__main--info ul li {
        width: 100%;
        padding: 0;
    }
    .footer__main--map {
        margin-bottom: 2.5rem;
    }
    .footer__main--map .d-flex {
        margin: 0;
    }
    .footer__main--map .items {
        width: 100%;
        padding: 0;
    }
    .footer__main--nav {
        position: relative;
    }
    .footer__main--nav::after {
        display: none;
    }
    .footer__main--nav nav {
        padding: 0;
    }
    .footer__main--nav nav ul {
        display: block;
        margin: 0 -1.5rem;
    }
    .footer__main--nav nav ul li a {
        border-top: 1px solid #0e2558;
        font-size: 2rem;
        padding: 1.5rem;
    }
    .footer__main--nav nav ul li:last-child a {
        border-bottom: 1px solid #0e2558;
    }
    .footer__copyright {
        text-align: center;
        padding: 0 0 15rem;
    }
    .footer__copyright p {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
}

/* layout - Responsive .
========================================================================== */
.sp {
    display: none;
}

@media screen and (max-width: 1180px) and (min-width: 992px) {
    html {
        font-size: 8px;
    }
    .header__main--info {
        width: 60%;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 2.4155vw;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    h2 {
        font-size: 2.9rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .banner__main {
        min-height: 80rem;
        background-image: url("../images/home_hiromi/banner-bg-sp.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center bottom;
        background-color: #89dbff;
        overflow: hidden;
    }
    .banner__main .banner-img-left {
        width: 40.7rem;
        right: auto;
        left: -22.8rem;
        -webkit-transform: translateY(-55%);
        -ms-transform: translateY(-55%);
        transform: translateY(-55%);
    }
    .banner__main .banner-img-left img:not(:first-child) {
        margin-top: -6rem;
    }
    .banner__main .banner-img-right {
        width: 41.6rem;
        left: auto;
        right: -23.6rem;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    .banner__main .banner-img-right img:not(:first-child) {
        margin-top: -7.2rem;
    }
    .banner__main .banner-img-main {
        width: 100%;
        padding: 0 1.5rem;
    }
    .banner__main .rotation {
        display: inline-block;
        position: absolute;
        right: 4rem;
        bottom: 17.5rem;
    }
    .banner__main .rotation .banner-img-rotation {
        width: 12.3rem;
        height: 12.3rem;
    }
    .banner__main .rotation img {
        width: 7.2rem;
        position: absolute;
        /*    margin-left: -3.1rem;*/
        margin-left: -35px;
        margin-top: -4rem;
    }
    .banner__main .scroll {
        padding-bottom: 2rem;
    }
    .banner__main .scroll img {
        width: 17rem;
    }
    .head-box {
        margin-bottom: 2.5rem;
    }
    .head-box main {
        display: block;
        padding: 1rem 0 4rem;
        width: 100%;
    }
    .head-box .sub img {
        width: 36.7rem;
    }
    .head-box .sub h3 {
        font-size: 2.9rem;
    }
    .head-box .sub h3 span {
        font-size: 2.2rem;
    }
    .head-box .sub h2 {
        font-size: 4.6rem;
    }
    .absolute-box {
        padding: 4rem 0;
    }
    .absolute-box__main .thumb-box {
        width: 100%;
    }
    .absolute-box__main .text-box {
        width: 100%;
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 1rem;
    }
    .absolute-box__main .text-box h3 {
        text-align: center;
    }
    .absolute-box__price .d-flex {
        margin: 0;
    }
    .absolute-box__price .items {
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }
    .record-box {
        padding: 5rem 0;
    }
    .record-box__main .thumb-box {
        width: 100%;
    }
    .record-box__main .text-box {
        width: 100%;
        padding-left: 0;
    }
    .contact-box {
        padding: 1.5rem 0 2.5rem;
    }
    .contact-box__main {
        padding: 0;
    }
    .contact-box__main .thumb-box {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .contact-box__main .text-box {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
    }
    .contact-box__main .text-box .more {
        margin-bottom: 1rem;
    }
    .experienced-box {
        padding: 3rem 0;
    }
    .experienced-box__main .d-flex {
        margin: 0;
    }
    .experienced-box__main .items {
        width: 100%;
        padding: 0;
    }
    .experienced-box__main .items .head {
        border-bottom: 3px solid #c26c6f;
        text-align: center;
        padding-bottom: 2rem;
    }
    .experienced-box__main .items .head img {
        width: 16.1rem;
        margin-bottom: 1rem;
        margin-top: -5.7rem;
    }
    .experienced-box__main .items .head h3 {
        font-size: 2.5rem;
        color: #c46e71;
    }
    .experienced-box__main .items .head h3 span {
        position: relative;
        background-image: url("../images/home_hiromi/bd-1.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-repeat: repeat-x;
        background-position: left bottom;
        padding-bottom: 0.5rem;
    }
    .experienced-box__main .items .main-box {
        padding: 1.5rem 2rem;
    }
    .experienced-box__main .items .main-box p {
        margin-bottom: 0.5rem;
    }
    .experienced-box__main .items .main-box p:last-child {
        margin-bottom: 0;
    }
    .experienced-box__main .items .main-box p span {
        font-size: 1.2rem;
    }
    .experienced-box__main .items .main-box .thumb-box {
        -webkit-transform: translateY(3rem);
        -ms-transform: translateY(3rem);
        transform: translateY(3rem);
    }
    .experienced-box__main .items:nth-child(2) main {
        border-color: #bc6ba2;
    }
    .experienced-box__main .items:nth-child(2) .head {
        border-color: #bc6ba2;
    }
    .experienced-box__main .items:nth-child(2) .head h3 {
        color: #bc6ba2;
    }
    .experienced-box__main .items:nth-child(3) main {
        border-color: #8568ab;
    }
    .experienced-box__main .items:nth-child(3) .head {
        border-color: #8568ab;
    }
    .experienced-box__main .items:nth-child(3) .head h3 {
        color: #8568ab;
    }
    .experienced-box__main .items:nth-child(4) main {
        border-color: #6f85b8;
    }
    .experienced-box__main .items:nth-child(4) .head {
        border-color: #6f85b8;
    }
    .experienced-box__main .items:nth-child(4) .head h3 {
        color: #6f85b8;
    }
    .point-box {
        padding: 11rem 0 5rem;
        background-image: url("../images/home_hiromi/experienced-arow-sp.png");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    .point-box__main {
        padding-left: 1.5rem;
    }
    .point-box__main .d-flex {
        margin: 0;
    }
    .point-box__main .items {
        width: 100%;
        padding: 0;
    }
    .point-box__main .items h3 {
        font-size: 2.4rem;
        color: #c97a78;
        margin-bottom: 1rem;
    }
    .point-box__main .items p {
        margin-bottom: 0;
    }
    .point-box__main .items p br {
        display: none;
    }
    .point-box__main .items main::after {
        width: 5.3rem;
        height: 5.1rem;
    }
    .point-box__main .items:nth-child(2) {
        padding-left: 0;
    }
    .point-box__main .items:nth-child(2) main::before {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        top: -34rem;
        right: 0;
    }
    .point-box__main .items:nth-child(3) main::before {
        content: "";
        width: 6.2rem;
        height: 14.6rem;
        background-image: url("../images/home_hiromi/point-arow.svg");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: auto;
        bottom: 0;
        right: 50%;
        -webkit-transform: translate(50%, 70%) rotate(90deg);
        -ms-transform: translate(50%, 70%) rotate(90deg);
        transform: translate(50%, 70%) rotate(90deg);
        z-index: 99;
    }
    .completely-box {
        padding: 5rem 0;
    }
    .completely-box__main .items {
        padding-right: 3.5rem;
    }
    .completely-box__main .items main {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 2.5rem;
        padding-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
    }
    .completely-box__main .items .thumb-box {
        width: 100%;
        padding-top: 2rem;
        padding-right: 1.5rem;
    }
    .completely-box__main .items .text-box {
        width: 100%;
        padding: 0 1.5rem;
    }
    .completely-box__main .items .text-box .head {
        padding: 1.8rem 0 1.8rem 0;
        display: block;
    }
    .completely-box__main .items .text-box .head::after {
        content: "";
        width: calc(100% + 6rem);
        height: 100%;
        right: auto;
        left: -1.5rem;
        display: block;
        width: 97vw;
    }
    .completely-box__main .items .text-box ul li {
        width: 100%;
        background-position: left center;
        font-size: 1.6rem;
    }
    .completely-box__main .items:nth-child(even) {
        padding-right: 0;
        padding-left: 3.5rem;
    }
    .completely-box__main .items:nth-child(even) main {
        padding-right: 0;
        padding-left: 0;
    }
    .completely-box__main .items:nth-child(even) .thumb-box {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .completely-box__main .items:nth-child(even) .text-box {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding: 0 1.5rem;
        text-align: left;
    }
    .completely-box__main .items:nth-child(even) .text-box .head {
        padding: 1.8rem 0 1.8rem 0;
    }
    .completely-box__main .items:nth-child(even) .text-box .head::after {
        left: auto;
        right: -2rem;
    }
    .completely-box__main .items:nth-child(even) .text-box .head h3 {
        color: #fff;
    }
    .completely-box__main .items:nth-child(even) .text-box .head img {
        margin-right: 1rem;
    }
    .completely-box__main .items:nth-child(even) .text-box .head .main {
        position: relative;
        z-index: 9;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .completely-box__main .items:nth-child(even) .text-box ul {
        text-align: left;
    }
    .case-box__main .thumb-box {
        width: 100%;
    }
    .case-box__main .text-box {
        width: 100%;
        padding-left: 0;
    }
    .case-box__main .text-box p {
        margin-bottom: 0;
    }
    .case-box__main .text-box p b {
        color: #c30013;
        font-weight: 700;
    }
    .case-box__main .text-box p span {
        background: #ffd800;
    }
    .check-box {
        padding: 4rem 0 9rem;
    }
    .check-box .head-box {
        padding: 0 1.5rem;
    }
    .check-box .container {
        padding: 0;
    }
    .waterproofing-box .container {
        padding: 0;
    }
    .waterproofing-box .waterproofing-box__main {
        margin-top: -4.5rem;
    }
    .area-box {
        padding: 3.5rem 0;
    }
    .area-box__main {
        padding: 0 2rem 4.5rem;
    }
    .area-box__main .head {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    .area-box__main .head h2 {
        padding: 0 7rem;
    }
    .area-box__main .main-box .thumb-box {
        width: 100%;
        margin-bottom: 2rem;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding: 0 1.5rem;
    }
    .area-box__main .main-box .text-box {
        width: 100%;
        padding-right: 0;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .area-box__main .main-box .area-head {
        margin-bottom: 1.5rem;
    }
    .area-box__main .main-box .area-head span {
        width: 8rem;
    }
    .support-box {
        padding: 3.5rem 0;
    }
    .confident-box {
        padding: 4rem 0;
    }
    .confident-box__main {
        margin-bottom: 4rem;
    }
    .confident-box__main .thumb-box {
        width: 100%;
    }
    .confident-box__main .text-box {
        padding-left: 0;
        width: 100%;
    }
    .confident-box__main .text-box .items {
        padding: 0 0.6rem;
        margin-bottom: 0.8rem;
    }
    .confident-box__main .text-box .items .text-box {
        width: calc(100% - 12rem);
        padding-left: 1rem;
    }
    .confident-box__main .text-box .items .text-box p span {
        font-size: 4.8rem;
    }
    .confident-box__price {
        position: relative;
    }
    .confident-box__price h3 {
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        font-size: 2.9rem;
        margin-top: 4.5rem;
        width: 100%;
    }
    .construction-box {
        padding: 3.5rem 0;
    }
    .construction-box__main .d-flex {
        margin: 0;
    }
    .construction-box__main .items {
        width: 1000%;
        padding: 0;
        margin-bottom: 2rem;
    }
    .qa-box .items h3 {
        line-height: 1.3;
        padding: 1rem 9rem 1rem 1.8rem;
        position: relative;
        display: block;
    }
    .qa-box .items h3::after {
        position: absolute;
        top: 0;
        right: -1px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        border-left: 3px solid #0e2558;
        border-bottom: none;
        height: 102%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        content: "";
        background-image: url("../images/home_hiromi/icon-arow-2.svg");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-position: center;
    }
    .inquiry-box .head p {
        font-size: 1.2rem;
    }
    .inquiry-box__main {
        padding: 2rem 1.5rem;
    }
    .contact-form .form-group {
        padding: 1.5rem 0;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .contact-form .form-group .labels {
        width: 100%;
        padding-right: 0;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .contact-form .form-group .labels::after {
        font-size: 1.2rem;
        line-height: 2.4rem;
        width: 5.5rem;
    }
    .contact-form .form-group .input {
        width: 100%;
    }
    .contact-form .contact-information {
        height: 18.6rem;
    }
    .contact-form .contact-information h3 {
        font-size: 1.8rem;
    }
    .contact-form .contact-information p {
        font-size: 1.2rem;
    }
    .contact-form .checks-box {
        font-size: 1.4rem;
    }
    .contact-form .more-box {
        text-align: center;
        padding-top: 2rem;
    }
    .contact-form .more-box button {
        width: 100%;
        max-width: 36.5rem;
        cursor: pointer;
    }
    .contact-form .more-box button:hover {
        opacity: 0.7;
    }
    .contact-form .cf-box {
        display: none;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .banner__main .banner-img-left {
        -webkit-transform: translateY(-35%);
        -ms-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

/* ipad Portrait */
/* ipad Landscape */

.campaign-content{
    position: relative;
    margin: 0 auto 3rem;
    width: 100%;
    max-width: 82.2rem;
    padding: 0 1.5rem;
}
.campaign-button{
    position: absolute;
    top: 240px;
    width: 80%;
    left: 10%;
}

.review-content{
    margin: 3rem auto;
    width: 100%;
    max-width: 82.2rem;
    padding: 0 1.5rem;
}
.colona-box{
    margin: 0 auto;
    margin-top:30px;
    margin-bottom: 30px;
    width: 1000px;
}
@media screen and (max-width:480px) {
    .campaign-content{
        position: relative;
        margin-bottom: 30px;
    }
    .campaign-button{
        position: absolute;
        top: 23rem;
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
    }

    .review-content{
        margin-bottom: 50px;
    }
    .colona-box{
        width: 95%;
        margin: 0 auto;
        margin-top:30px;
        margin-bottom: 30px;
    }
}

.absolute-box__form {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 3.5rem;
    position: relative;
    z-index: 9;
}
.absolute-box__form::after {
    content: '';
    display: block;
    width: calc(100% - 1.3rem);
    height: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 1rem;
    position: absolute;
    right: 0;
    top: 0;
}
.absolute-box__form--left {
    width: 56.5%;
}
.absolute-box__form--main {
    width: 43.5%;
    padding-left: 2rem;
    padding-right: 3.8rem;
    padding-top: 3rem;
}
.absolute-box .contact-form {
    border: 3px solid #0E2558;
    border-radius: 5px;
    overflow: hidden;
}
.absolute-box .contact-form .head {
    background: #0E2558;
    text-align: center;
    padding: .5rem 1rem 1.4rem;
}
.absolute-box .contact-form .head h3 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: .5rem;
}
.absolute-box .contact-form .head h3 span {
    color: #FFEB00;
    font-size: 2.7rem;
}
.absolute-box .contact-form .head p {
    margin-bottom: 0;
    text-align: center;
}
.absolute-box .contact-form .head p span {
    display: inline-block;
    line-height: 2.4rem;
    background: #fff;
    padding: 0 1.7rem;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0E2558;
}
.absolute-box .contact-form .main-box {
    padding: 1rem 1.2rem;
}
.absolute-box .contact-form .form-group {
    padding: .5rem 0;
    border: none;
}
.absolute-box .contact-form .form-group .labels {
    width: 11.4rem;
    padding-right: 1rem;
    font-size: 1.4rem;
}
.absolute-box .contact-form .form-group .labels::after {
    line-height: 1.9rem;
    width: 4.11rem;
    font-size: 1.2rem;
    border-radius: 36px;
}
.absolute-box .contact-form .form-group .input {
    font-size: 1.4rem;
    width: calc(100% - 11.4rem);
}
.contact-form .form-group label {
    margin-right: 1rem;
}
.absolute-box .contact-form .form-group select, 
.absolute-box .contact-form .form-group textarea, 
.absolute-box .contact-form .form-group input[type="text"], 
.absolute-box .contact-form .form-group input[type="email"] {
    height: 3.6rem;
}
.absolute-box .contact-form .checks-box {
    font-size: 1.4rem;
    padding-top: 2.5rem;
}
.absolute-box .contact-form .more-box {
    padding: 1.5rem 2.2rem 0;
}
@media (max-width: 991px) {
    .absolute-box__form {
        padding-bottom: 2.2rem;
    }
    .absolute-box__form--left {
        width: 100%;
        padding-right: 1.3rem;
    }
    .absolute-box__form--main {
        width: 100%;
        padding-left: .7rem;
        padding-right: 1.3rem;
        padding-top: 1rem;
    }
    .absolute-box__form::after {
        width: 100%;
    }
    .absolute-box .contact-form .form-group .labels {
        width: 10.4rem;
        padding-right: .3rem;
    }
    .absolute-box .contact-form .form-group .input {
        font-size: 1.4rem;
        width: calc(100% - 10.4rem);
    }
}


/*メディア*/

.relative {
  position: relative;
}
.absolute{
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 350px;
}
@media screen and (max-width: 1180px) {
    .absolute{
        position: absolute;
        right: 40px;
        bottom: 40px;
        width: 280px;
    }
}
@media screen and (max-width: 414px) {
    .absolute{
        position: absolute;
        right: 40px;
        bottom: 40px;
        width: 311px;
    }
}
@media screen and (max-width: 390px) {
    .absolute{
        position: absolute;
        right: 35px;
        bottom: 30px;
        width: 300px;
    }
}

.cta_tel {
    width: 43.6rem;
    height: 18.7rem;
    background: #FFFFFF;
    border: 3px solid #0E2558;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 4.3rem;
    border-radius: 2.3rem;
    position: relative;
    padding-top: 1rem;
}/*
.cta_tel::after {
    content: '';
    width: 6.6rem;
    height: 6.6rem;
    background: url('images/icon_cta_tel.png') no-repeat scroll 0 0 / 100% auto;
    position: absolute;
    right: -.5rem;
    top: -4.3rem;
}*/
.cta_tel .labels {
    width: 100%;
    border: 2px solid #0E2558;
    border-radius: 2rem;
    line-height: 4rem;
    margin-bottom: 1.9rem;
    font-size: 1.6rem;
    font-weight: 700;
}
.cta_tel span {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    color: #0E2558;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .4rem;
}/*
.cta_tel span::before {
    content: '';
    display: block;
    margin-right: .8rem;
    width: 3.5rem;
    height: 4.6rem;
    background: url('images/icon_tel.png') no-repeat scroll 0 0 / 100% auto;
}*/
.cta_tel spam {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    line-height: 2.4rem;
    color: #0E2558;
}
.cta_tel spam b {
    display: inline-block;
    width: 7.8rem;
    line-height: 2.4rem;
    background: #FF9300;
    text-align: center;
    margin-right: .6rem;
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: .3rem;
}
@media (max-width: 991px) {
    .cta_tel {
        width: 38.5rem;
        height: 16.5rem;
        padding-top: 2rem;
    }
    .cta_tel::after {
        width: 5.8rem;
        height: 5.8rem;
        top: -3.8rem;
    }
    .cta_tel .labels {
        line-height: 3.5rem;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }
    .cta_tel span {
        font-size: 4rem;
    }
    .cta_tel span::before {
        width: 3.1rem;
        height: 4.1rem;
    }
    .cta_tel spam {
        font-size: 1.5rem;
        line-height: 2.2;
    }
    .cta_tel spam b {
        width: 7rem;
        line-height: 2.2rem;
        font-size: 1.4rem;
    }
}
/*
スマホ固定スクロール*/

.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-top: 5px solid #003366; /* 上部の紺色ライン */
  display: flex;
}

.cta-item {
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}

.cta-item.phone {
  flex: 6; /* 電話の横幅を6に設定 */
  background-color: #f8f9fa;
  color: #003366;
  justify-content: flex-start; /* テキストとアイコンを左揃え */
  padding-left: 21px;
}

.cta-item.phone img {
/*    width: auto;
    height: 25px;
    margin-right: 4px;*/
    width: auto;
    height: 33px;
    margin-right: 4px;
    position: fixed;
    bottom: 8px;
    left: 6px;
}

.cta-item.phone .content {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align:left;
  padding-left: 33px;
}

.cta-item.phone .instruction {
  font-size: 10px;
  color: #666;
}

.cta-item.phone .text {
    font-size: 23px;
    font-weight: bold;
}

.cta-item.phone .subtext {
  font-size: 12px;
}

.cta-item.line {
  flex: 2; /* LINEの横幅を2に設定 */
  background-color: #00c300;
  color: #ffffff;
  flex-direction: column;
}

.cta-item.mail {
  flex: 2; /* メールの横幅を2に設定 */
  background-color: #ff9900;
  color: #ffffff;
  flex-direction: column;
}

.cta-item img {
  width: auto;
  height: 32px;
  margin-bottom: 5px;
}

.cta-item .text {
  font-size: 14px;
  line-height: 1.2;
  font-weight: bold;
}

.medal{
    background: url("../images/home/medal_bg.png") no-repeat center center;
    background-size: cover; /* 必要に応じて contain や auto に変更 */
}
.medal .medal_img{
    margin:0 auto;
    padding-top:30px;
    padding-bottom: 30px;
}
.medal .medal_img img{
    width:70%;
}
@media screen and (max-width: 480px), print {
    .medal .medal_img img{
    width:100%;
}
}
.medal .container{
    text-align:center;
    padding-top: 50px;
    padding-bottom: 50px;
}