@charset "UTF-8";
/*foundation base*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: bottom;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

ul,
li {
    list-style: none;
}

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

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

@font-face {
    font-family: "NotoSans-M";
    src: local("NotoSans-M"),
        url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf");
}

@font-face {
    font-family: "NotoSans-R";
    src: local("NotoSans-R"),
        url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf");
}

@font-face {
    font-family: "NotoSans-L";
    src: local("NotoSans-L"),
        url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf");
}

@media print {
    body {
        min-width: 1400px;
        -webkit-print-color-adjust: exact;
        zoom: 1;
    }
}

/**
 * initiallize
 * タグ自体のstyleを記述
 */
html {
    font-family: "NotoSans-R", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    color: #58595b;
    word-wrap: break-word;
    font-size: 62.5%;
    line-height: 1.4;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration: none;
    transition: opacity 0.2s;
    color: #58595b;
}
@media print, screen and (min-width: 768px) {
    a:hover {
        transition: opacity 0.2s;
        text-decoration: none;
        opacity: 0.5;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

img {
    vertical-align: bottom;
}
@media screen and (max-width: 767px) {
    /*img {
      width: 100%; }*/
}

input {
    padding: 0;
    border: none;
    background: none;
}

* {
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="submit"],
select,
textarea {
    border-radius: 0;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 0;
    vertical-align: -1px;
}

input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: "NotoSans-L";
    vertical-align: bottom;
}

textarea {
    resize: vertical;
    vertical-align: bottom;
}

/*foundation vender*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("./fonts/slick.eot");
    src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
        url("./fonts/slick.woff") format("woff"),
        url("./fonts/slick.ttf") format("truetype"),
        url("./fonts/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}
[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}
.slick-prev:before {
    content: "←";
}
[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}
[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}
.slick-next:before {
    content: "→";
}
[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}

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

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

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

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

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

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

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

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

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
        transform: skewX(0.39063deg) skewY(0.39063deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-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);
    }
}

.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: none;
        transform: none;
    }
}
@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*object*/
/*　共有CSS　*/
.c {
    /*--- breadcrumb ---*/
    /*--- page title ---*/
    /*--- page content ---*/
}
.c-breadcrumb {
    margin: 18px 0;
}
@media screen and (max-width: 767px) {
    .c-breadcrumb {
        margin: 2.66667% auto 0;
        width: 92%;
    }
}
.c-breadcrumb__cont {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 1030px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-breadcrumb__cont {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.c-breadcrumb__cont-item {
    font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
    .c-breadcrumb__cont-item {
        font-size: 10rem;
        font-size: 2.60756vw;
        line-height: 1.4;
        white-space: nowrap;
    }
}
.c-breadcrumb__cont-item:nth-of-type(n + 2) {
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .c-breadcrumb__cont-item:nth-of-type(n + 2) {
        margin-left: 5.7971%;
        position: relative;
    }
}
.c-breadcrumb__cont-item:nth-of-type(n + 2):before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url("/assets/img/common/arrow2.svg") no-repeat;
    background-size: contain;
    margin-right: 6px;
    vertical-align: baseline;
}
@media screen and (max-width: 767px) {
    .c-breadcrumb__cont-item:nth-of-type(n + 2):before {
        width: 5px;
        width: 1.33333vw;
        height: 10px;
        height: 2.66667vw;
        position: absolute;
        left: -3.33333vw;
        top: 50%;
        -webkit-transform: translateY(-36%);
        transform: translateY(-36%);
    }
}
@media print {
    .c-breadcrumb__cont-item:nth-of-type(n + 2):before {
        background: none;
        content: url(/assets/img/common/arrow2.svg);
    }
}
.c-breadcrumb__cont-item .current {
    border-bottom: solid 1px #58595b;
    pointer-events: none;
}
.c-pageTop {
    min-width: 1030px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .c-pageTop {
        min-width: 100%;
    }
}
.c-pageTop__inner {
    background: url("../assets/img/common/title_bg.jpg") no-repeat top center;
    background-size: 100% auto;
    min-width: 1400px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .c-pageTop__inner {
        background: url("../assets/img/common/title_bg--sp.jpg") no-repeat top
            center;
        background-size: 100% auto;
        min-width: 100%;
        position: static;
        -webkit-transform: none;
        transform: none;
    }
}
.c-pageTop__ttl {
    width: 1030px;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
    padding: 56px 0;
}
@media screen and (max-width: 767px) {
    .c-pageTop__ttl {
        width: 100%;
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 6% 0 4.66667% 4%;
    }
    .c-pageTop__ttl--no2 {
        padding: 3.73333% 0 2.53333% 4%;
    }
}
.c-pageTop__ttl-eng {
    margin-left: 26px;
    color: #a6a6a7;
    font-family: "Marcellus SC", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    font-weight: normal;
    vertical-align: baseline;
}
@media screen and (max-width: 767px) {
    .c-pageTop__ttl-eng {
        display: block;
        font-size: 14rem;
        font-size: 3.65059vw;
        margin-left: 0;
        line-height: 1.2;
        margin-top: 2%;
    }
}
.c-content {
    width: 1030px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*--- main content ---*/
    /*--- side nav only PC ---*/
}
@media screen and (max-width: 767px) {
    .c-content {
        width: 100%;
    }
}
.c-content__main {
    width: 765px;
}
@media screen and (max-width: 767px) {
    .c-content__main {
        width: 100%;
    }
}
.c-content__sideNav {
    width: 215px;
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .c-content__sideNav {
        display: none;
    }
}
.c-content__sideNav .navBox__ttl {
    background: #0e6d46;
    opacity: 0.6;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 14px 0 14px 20px;
}
.c-content__sideNav .navBox__item:nth-of-type(n + 2) {
    border-bottom: solid 1px #dedfdf;
}
.c-content__sideNav .navBox__item a {
    font-size: 1.4rem;
    display: block;
    background: #f6f7f7;
    padding: 14px 0 14px 20px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.c-content__sideNav .navBox__item-more {
    position: relative;
}
.c-content__sideNav .navBox__item-more:before {
    content: "";
    display: block;
    width: 11px;
    height: 6px;
    background: url("/assets/img/common/arrow2_b.svg");
    background-size: contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
@media print {
    .c-content__sideNav .navBox__item-more:before {
        background: none;
        content: url(/assets/img/common/arrow2_b.svg);
    }
}
.c-content__sideNav .navBox__item-more.is-open:before {
    -webkit-transform: translateY(-50%) rotateZ(180deg);
    transform: translateY(-50%) rotateZ(180deg);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-content__sideNav .navBox__item-blank {
    position: relative;
}
.c-content__sideNav .navBox__item-blank:before {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    background: url("/assets/img/common/icon_blank.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
}
@media print {
    .c-content__sideNav .navBox__item-blank:before {
        background: none;
        content: url("/assets/img/common/icon_blank_s.png");
        width: 10px;
        height: 8px;
    }
}
.c-content__sideNav .navBox__item.is-current a {
    background: #fff;
    pointer-events: none;
    color: #0e6d46;
}
.c-content__sideNav .navBox__more {
    display: none;
}
.c-content__sideNav .navBox__more .navBox__item {
    border-top: solid 1px #dedfdf;
    border-bottom: none;
}
.c-content__sideNav .navBox__more .navBox__item a {
    background: #eee;
}
.c-content__sideNav .navBox__more .navBox__item.is-current a {
    background: #fff;
}
.c-content__sideNav .navBox--no2 {
    margin-top: 45px;
    border-top: solid 1px #dedfdf;
}
.c-content__sideNav .navBox--no2 .navBox__item {
    background: #fff;
    border-bottom: solid 1px #dedfdf;
}
.c-content__sideNav .navBox--no2 .navBox__item a {
    background: #fff;
}

.u-mt00 {
    margin-top: 0;
}

.u-pci {
    display: inline-block;
}
@media screen and (max-width: 767px) {
    .u-pci {
        display: none;
    }
}

.u-spi {
    display: none;
}
@media screen and (max-width: 767px) {
    .u-spi {
        display: inline-block;
    }
}

.u-pc {
    display: block;
}
@media screen and (max-width: 767px) {
    .u-pc {
        display: none;
    }
}

.u-sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .u-sp {
        display: block;
    }
}

.u-lsMin {
    letter-spacing: normal;
}

@media screen and (max-width: 767px) {
    .u-lsMin_sp {
        letter-spacing: normal;
    }
}

.u-ti {
    text-indent: -1em;
    padding-left: 1em;
}

.u-ti1_7 {
    text-indent: -1.7em;
    padding-left: 1.7em;
}

.u-ti2 {
    text-indent: -2em;
    padding-left: 2em;
}

.u-ti2_7 {
    text-indent: -2.7em;
    padding-left: 2.7em;
}

.u-noLink {
    pointer-events: none;
}

/*layout*/
@media print {
    body {
        padding-top: 0px !important;
    }
}

body.is-fixed {
    position: fixed;
}

.l-header {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
@media screen and (max-width: 767px) {
    .l-header {
        position: fixed;
    }
}
@media print {
    .l-header {
        position: relative !important;
        top: 0 !important;
    }
}
.l-header.set1 {
    /*only pc*/
    position: absolute;
    top: -93px;
}
.l-header.set1 .l-header__top {
    height: 55px;
    padding-top: 0;
}
.l-header.set1 .l-header__top-logo img {
    width: 218px;
}
.l-header.set1 .l-header__nav-tab .tabItem {
    padding: 12px 0;
}
.l-header.set2 {
    /*only pc*/
    position: fixed;
    top: -93px;
    transition: top 0.5s;
}
.l-header.is-fixed {
    /*only pc*/
    position: fixed;
    top: 0;
    opacity: 1;
    transition: top 0.5s;
}
.l-header__top {
    width: 1030px;
    height: 100px;
    padding-top: 10px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
}
@media screen and (max-width: 767px) {
    .l-header__top {
        width: 100%;
        height: 62px;
        height: 16.53333vw;
        padding-top: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        border-bottom: solid 10px #0e6d46;
        border-bottom: solid 2.66667vw #0e6d46;
    }
}
@media screen and (max-width: 767px) {
    .l-header__top-logo {
        width: 50%;
    }
}
.l-header__top-logo img {
    width: 262px;
}
@media screen and (max-width: 767px) {
    .l-header__top-logo img {
        width: 77.33333%;
        padding-left: 8%;
    }
}
@media screen and (max-width: 767px) {
    .l-header__top-right {
        width: 50%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }
    .l-header__top-right .corpoLink {
        margin-left: 21.33333%;
        width: 49.33333%;
    }
    .l-header__top-right .spMenu {
        width: 14.66667%;
        margin-left: 7.46667%;
        transition: margin 0.3s;
    }
    .l-header__top-right .spMenu__line {
        width: 100%;
        padding-top: 9.09091%;
        background: #0e6d46;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
    .l-header__top-right .spMenu__line:nth-of-type(n + 2) {
        margin-top: 25.45455%;
    }
    .l-header__top-right .spMenu__line--no2 {
        transition: opacity 0.3s;
    }
    .l-header__top-right .spMenu.on {
        margin-left: 9.06667%;
        transition: margin 0.3s;
    }
    .l-header__top-right .spMenu.on .spMenu__line--no1 {
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
    .l-header__top-right .spMenu.on .spMenu__line--no2 {
        opacity: 0;
        transition: opacity 0.3s;
    }
    .l-header__top-right .spMenu.on .spMenu__line--no3 {
        -webkit-transform: rotateZ(-45deg);
        transform: rotateZ(-45deg);
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
}
.l-header__nav {
    background: #0e6d46;
}
@media screen and (max-width: 767px) {
    .l-header__nav {
        background: none;
        position: fixed;
        top: 52px;
        top: 13.86667vw;
        width: 100%;
        z-index: 2;
        display: none;
    }
}
.l-header__nav-tab {
    width: 1030px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .l-header__nav-tab {
        width: 100%;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #fff;
    }
}
.l-header__nav-tab .tabItem {
    width: 140px;
    text-align: center;
    border-right: solid 1px #095633;
    font-weight: bold;
    display: block;
    padding: 20px 0;
    color: #fff;
    font-size: 1.4rem;
    cursor: default;
}
@media screen and (max-width: 767px) {
    .l-header__nav-tab .tabItem {
        width: 48.66667%;
        border: none;
        background: #b3b3b3;
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 4% 0;
    }
}
.l-header__nav-tab .tabItem:first-child {
    border-left: solid 1px #095633;
}
@media screen and (max-width: 767px) {
    .l-header__nav-tab .tabItem:first-child {
        border: none;
    }
}
.l-header__nav-tab .tabItem.on {
    background: #095633;
}
@media screen and (max-width: 767px) {
    .l-header__nav-tab .tabItem.on {
        background: #0e6d46;
    }
}
.l-header__nav-megaMenu {
    position: absolute;
    z-index: 5;
    background: rgba(216, 217, 227, 0.8);
    height: 305px;
    width: 100%;
    left: 0;
    padding-top: 22px;
    display: none;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu {
        position: static;
        height: auto;
        padding-top: 0;
        border-top: solid 4px #0e6d46;
        height: 574px;
        height: 86vh;
        overflow: scroll;
    }
}
.l-header__nav-megaMenu.on {
    display: block;
}
@media print, screen and (min-width: 768px) {
    .l-header__nav-megaMenu:hover {
        display: block;
    }
}
.l-header__nav-megaMenu .megaMenu {
    width: 1030px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu {
        width: 100%;
        background: #f6f7f7;
        padding-bottom: 13.33333%;
    }
}
.l-header__nav-megaMenu .megaMenu__item {
    width: 230px;
    margin-left: 10px;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item {
        margin: 0;
        width: 100%;
    }
}
@media print, screen and (min-width: 768px) {
    .l-header__nav-megaMenu
        .megaMenu__item:nth-of-type(n + 7)
        .megaMenu__item-link {
        font-size: 1.4rem;
        height: 50px;
    }
}
@media print, screen and (min-width: 768px) {
    .l-header__nav-megaMenu
        .megaMenu__item:nth-of-type(7)
        .megaMenu__item-link {
        letter-spacing: 0.01em;
    }
}
.l-header__nav-megaMenu .megaMenu__item:nth-of-type(9) .megaMenu__item-link {
    letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu
        .megaMenu__item:nth-of-type(9)
        .megaMenu__item-link {
        letter-spacing: 0.1em;
        border-bottom: solid 2px #dedfdf;
    }
}
.l-header__nav-megaMenu .megaMenu__item-link {
    font-family: "NotoSans-R", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    height: 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    color: #0e6d46;
    font-size: 1.6rem;
    line-height: 1.4;
    position: relative;
    background: #fff;
    box-shadow: 1px 1px 0 #797e78;
    z-index: 2;
    transition: all 0.3s;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item-link {
        white-space: normal;
        font-family: "NotoSans-M", sans-serif, "ヒラギノ角ゴ ProN W3",
            "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
            "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
            "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
            "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
            "MS PGothic";
        height: auto;
        font-size: 13rem;
        font-size: 3.38983vw;
        color: #58595b;
        padding: 5.6% 0 5.33333% 7.33333%;
        border-bottom: solid 2px #dedfdf;
        box-shadow: none;
        background: none;
    }
}
.l-header__nav-megaMenu .megaMenu__item-link .icon {
    width: 40px;
    position: relative;
    text-align: center;
    margin-right: 14px;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item-link .icon {
        display: none;
    }
}
.l-header__nav-megaMenu .megaMenu__item-link .icon__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.l-header__nav-megaMenu .megaMenu__item-link .icon__img--on {
    opacity: 0;
    transition: all 0.3s;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no1 img {
    width: 35px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no2 img {
    width: 38px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no3 img {
    width: 40px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no4 img {
    width: 38px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no5 img {
    width: 40px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no6 img {
    width: 34px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no7 {
    width: 24px;
    margin-right: 10px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no7 img {
    width: 22px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no8 {
    width: 24px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no8 img {
    width: 24px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no9 {
    width: 24px;
    margin-right: 10px;
}
.l-header__nav-megaMenu .megaMenu__item-link .icon--no9 img {
    width: 14px;
}
.l-header__nav-megaMenu .megaMenu__item-link .arrow {
    position: absolute;
    right: 10px;
    top: 46%;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item-link .arrow {
        display: none;
    }
}
.l-header__nav-megaMenu .megaMenu__item-link .arrow path {
    transition: all 0.3s;
}
@media print, screen and (min-width: 768px) {
    .l-header__nav-megaMenu .megaMenu__item-link:hover {
        opacity: 1;
        color: #fff;
        background: #0e6d46;
        transition: all 0.3s;
    }
    .l-header__nav-megaMenu .megaMenu__item-link:hover .icon__img--on {
        opacity: 1;
        transition: all 0.3s;
    }
    .l-header__nav-megaMenu .megaMenu__item-link:hover .arrow path {
        stroke: #fff;
        transition: all 0.3s;
    }
    .l-header__nav-megaMenu .megaMenu__item-link:hover.blank::after {
        opacity: 1;
        transition: opacity 0.3s;
    }
}
.l-header__nav-megaMenu .megaMenu__item-link.blank::before {
    content: "";
    display: block;
    width: 12px;
    padding-top: 10px;
    background: url("/assets/img/common/icon_blank.png") no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item-link.blank::before {
        width: 3.2%;
        padding-top: 3.06667%;
        right: 4%;
        -webkit-transform: translateY(-46%);
        transform: translateY(-46%);
    }
}
.l-header__nav-megaMenu .megaMenu__item-link.blank::after {
    content: "";
    display: block;
    width: 12px;
    padding-top: 10px;
    background: url("/assets/img/common/icon_blank_on.png") no-repeat center
        center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu .megaMenu__item-link.more {
        border-bottom: solid 2px #dedfdf;
    }
    .l-header__nav-megaMenu .megaMenu__item-link.more::before {
        content: "";
        display: block;
        width: 4.53333%;
        padding-top: 2.66667%;
        background: url("/assets/img/header/icon_more.png") no-repeat center
            center;
        background-size: 100% auto;
        position: absolute;
        top: 50%;
        right: 4%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
    }
    .l-header__nav-megaMenu .megaMenu__item-link.more.on::before {
        -webkit-transform: translateY(-50%) rotateZ(180deg);
        transform: translateY(-50%) rotateZ(180deg);
        transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
    }
}
.l-header__nav-megaMenu .megaMenu__item-more {
    background: #eee;
    display: none;
}
.l-header__nav-megaMenu .megaMenu__item-more .moreLink {
    font-size: 13rem;
    font-size: 3.38983vw;
    padding-left: 4.66667%;
}
.l-header__nav-megaMenu .megaMenu__item-more .moreLink:last-child a {
    border-bottom: none;
}
.l-header__nav-megaMenu .megaMenu__item-more .moreLink a {
    display: block;
    text-align: left;
    padding: 5.87413% 0 5.59441% 7.69231%;
    border-bottom: solid 2px #dedfdf;
}
.l-header__nav-megaMenu .megaMenu__item-more.on {
    border-bottom: solid 2px #dedfdf;
}
.l-header__nav-megaMenu--no2 .megaMenu {
    padding-left: 130px;
}
@media screen and (max-width: 767px) {
    .l-header__nav-megaMenu--no2 .megaMenu {
        padding-left: 0;
        padding-bottom: 37.33333%;
    }
}

.l-header.is-min .l-header__top {
    height: 55px;
    padding-top: 0;
    transition: all 0.3s;
}
.l-header.is-min .l-header__top-logo img {
    width: 218px;
    transition: all 0.3s;
}

.l-header.is-min .l-header__nav-tab .tabItem {
    padding: 12px 0;
    transition: all 0.3s;
}

.l-footer {
    background: #0e6d46;
    min-width: 1030px;
    position: relative;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .l-footer {
        min-width: 100%;
    }
}
.l-footer__map {
    padding: 38px 0 50px;
    width: 1030px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
@media screen and (max-width: 767px) {
    .l-footer__map {
        width: 80%;
        display: block;
        padding: 10% 0 6.66667%;
    }
}
.l-footer__map-item {
    width: 140px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item {
        width: 100%;
    }
}
.l-footer__map-item .itemTtl {
    color: #fff;
    font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemTtl {
        font-size: 14rem;
        font-size: 3.65059vw;
    }
}
.l-footer__map-item .itemList {
    color: #fff;
    border-top: solid 1px #87b6a3;
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList {
        margin-top: 2.5%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.l-footer__map-item .itemList__link {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link {
        margin-top: 6.66667%;
    }
}
@media print, screen and (min-width: 768px) {
    .l-footer__map-item .itemList__link:first-child {
        margin-top: 18px;
    }
}
.l-footer__map-item .itemList__link a {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    line-height: 1.5;
    text-indent: -10px;
    padding-left: 10px;
}
.l-footer__map-item .itemList__link a:nth-of-type(n + 2) {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link a:nth-of-type(n + 2) {
        margin-top: 0;
    }
}
.l-footer__map-item .itemList__link a.blank {
    text-indent: -16px;
    padding-left: 16px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link a.blank {
        text-indent: 0;
        padding-left: 0;
    }
}
.l-footer__map-item .itemList__link a.blank img {
    width: 12px;
    vertical-align: baseline;
    margin-left: 5px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link a.blank img {
        width: 3.33333%;
        margin-left: 2%;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link a {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        text-indent: 0;
        padding-left: 0;
    }
}
.l-footer__map-item .itemList__link a:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    /* background: url("/assets/img/footer/icon_link.png"); */
    background-size: contain;
    margin-right: 6px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item .itemList__link a:before {
        display: none;
    }
}
.l-footer__map-item .itemList__link-more {
    margin-left: 18px;
}
.l-footer__map-item .itemList__link-more a {
    margin-top: 10px;
}
.l-footer__map-item .itemList__link-more a:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 8px;
    background: url("/assets/img/footer/icon_link2.png");
    background-size: contain;
    margin-right: 6px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no1 .itemList__link:nth-of-type(n + 2) {
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no1 .itemList__link:nth-of-type(n + 4) {
        width: 100%;
        margin-left: 0;
    }
}
.l-footer__map-item--no2 {
    width: 688px;
    margin-left: 26px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no2 {
        width: 100%;
        margin-left: 0;
        margin-top: 13.33333%;
    }
}
.l-footer__map-item--no2 .itemList {
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no2 .itemList {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no2 .itemList--pc {
        display: none;
    }
}
@media print, screen and (min-width: 768px) {
    .l-footer__map-item--no2 .itemList--sp {
        display: none;
    }
}
.l-footer__map-item--no2 .itemList__link {
    margin-top: 18px;
}
@media print, screen and (min-width: 768px) {
    .l-footer__map-item--no2 .itemList__link:nth-of-type(n + 2) {
        margin-left: 18px;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no2 .itemList__link {
        margin-top: 6.66667%;
        width: 51.66667%;
    }
    .l-footer__map-item--no2 .itemList__link a.blank img {
        width: 6.06061%;
        margin-left: 3.63636%;
    }
    .l-footer__map-item--no2 .itemList__link:nth-of-type(n + 3) {
        margin-top: 8.33333%;
    }
    .l-footer__map-item--no2 .itemList__link:nth-of-type(even) {
        width: 48.33333%;
    }
    .l-footer__map-item--no2 .itemList__link:nth-of-type(even) a.blank img {
        width: 7.40741%;
        margin-left: 4.44444%;
    }
}
.l-footer__map-item--no3 {
    width: 140px;
    margin-top: 16px;
    margin-left: 26px;
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no3 {
        width: 100%;
        margin-top: 13.33333%;
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no3 .itemList {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .l-footer__map-item--no3 .itemList__link:nth-of-type(n + 2) {
        margin-top: 8.33333%;
    }
}
@media print, screen and (min-width: 768px) {
    .l-footer__map-item--no3 .itemList__link a {
        text-indent: -15px;
        padding-left: 15px;
    }
}
.l-footer__sns {
    position: absolute;
    bottom: 18px;
    right: 0;
    width: 178px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .l-footer__sns {
        position: static;
        width: 69.16667%;
        margin: 0 auto 0;
    }
}
.l-footer__sns-item {
    width: 32px;
}
@media screen and (max-width: 767px) {
    .l-footer__sns-item {
        width: 18.07229%;
    }
}
.l-footer__sns-item img {
    width: 100%;
}
.l-footer__cr {
    background: #0e6d46;
    color: white;
    display: block;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
}
@media screen and (max-width: 767px) {
    .l-footer__cr {
        font-size: 10rem;
        font-size: 2.60756vw;
        padding: 5.33333% 0;
        letter-spacing: normal;
    }
}
.l-footer .backTop {
    position: fixed;
    z-index: 10;
    opacity: 0;
    right: 20px;
    bottom: 20px;
}
@media screen and (max-width: 767px) {
    .l-footer .backTop {
        width: 14.66667%;
        right: 10px;
        right: 2.66667vw;
        bottom: 10px;
        bottom: 2.66667vw;
    }
}
.l-footer .backTop.is-hide {
    -webkit-animation: fade_o 0.5s forwards;
    animation: fade_o 0.5s forwards;
}

@-webkit-keyframes fade_o {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        display: block;
    }
    100% {
        display: none;
    }
}

@keyframes fade_o {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        display: block;
    }
    100% {
        display: none;
    }
}
.l-footer .backTop.is-show {
    display: block;
    -webkit-animation: fade_i 0.5s forwards;
    animation: fade_i 0.5s forwards;
}

@-webkit-keyframes fade_i {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade_i {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.l-footer .backTop.is-stop {
    position: absolute;
    right: 20px;
    top: -43px;
}
@media screen and (max-width: 767px) {
    .l-footer .backTop.is-stop {
        top: -70px;
        top: -18.66667vw;
        right: 10px;
        right: 2.66667vw;
    }
}

.bread {
    color: #656d73;
    font-size: 12px;
    min-width: 1280px;
}
@media screen and (max-width: 767px) {
    .bread {
        display: none;
    }
}
.bread__list {
    display: -ms-flexbox;
    display: flex;
    width: 1200px;
    margin: 0 auto 0;
    padding-top: 20px;
}
.bread__list-item {
    padding-right: 21px;
    position: relative;
    white-space: nowrap;
}
.bread__list-item a {
    color: #656d73;
}
.bread__list-item a:hover {
    text-decoration: underline;
    opacity: 1;
}
.bread__list-item:after {
    content: "＞";
    position: absolute;
    top: 1px;
    right: 4px;
}
.bread__list-item:last-child:after {
    content: "";
}

/*pages*/
body {
    min-width: 1030px;
    margin: 0 auto;
    padding-top: 154px;
}
@media screen and (max-width: 767px) {
    body {
        min-width: 100%;
        padding-top: 62px;
        padding-top: 16.53333vw;
    }
}

.p-top {
    overflow: hidden;
}
.p-top__kv {
    min-width: 1030px;
    overflow: hidden;
    position: relative;
    max-height: 477px;
}
@media screen and (max-width: 767px) {
    .p-top__kv {
        min-width: 100%;
        max-height: 100%;
    }
}
.p-top__kv-img {
    display: block;
    width: 100%;
    min-width: 1400px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-top__kv-img {
        position: static;
        min-width: 100%;
        -webkit-transform: none;
        transform: none;
    }
}
.p-top__kv-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 484px;
}
@media screen and (max-width: 767px) {
    .p-top__kv-link {
        width: 92%;
    }
}
.p-top__kv-link .linkItem {
    width: 230px;
    background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
    .p-top__kv-link .linkItem {
        width: 47.24638%;
    }
}
.p-top__kv-link .linkItem a {
    height: 45px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #0e6d46;
    font-size: 1.3rem;
    position: relative;
    transition: all 0.2s;
}
@media screen and (max-width: 767px) {
    .p-top__kv-link .linkItem a {
        height: auto;
        font-size: 11rem;
        font-size: 2.86832vw;
        padding: 7.66871% 0;
    }
}
.p-top__kv-link .linkItem a img {
    width: 25px;
    margin: 0 54px 0 15px;
}
@media screen and (max-width: 767px) {
    .p-top__kv-link .linkItem a img {
        width: 12.88344%;
        margin: 0 18.40491% 0 6.13497%;
    }
}
.p-top__kv-link .linkItem a:after {
    content: "";
    display: block;
    width: 12px;
    padding-top: 10px;
    background: url("/assets/img/common/icon_blank.png") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px;
}
@media screen and (max-width: 767px) {
    .p-top__kv-link .linkItem a:after {
        width: 5.52147%;
        padding-top: 5.52147%;
        right: 4.90798%;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}
.p-top__kv-link .linkItem:last-child a img {
    width: 14px;
    margin: 0 16px 0 20px;
}
@media screen and (max-width: 767px) {
    .p-top__kv-link .linkItem:last-child a img {
        width: 7.97546%;
        margin: 0 5.52147%;
    }
}
.p-top__linkArea {
    padding: 72px 0 68px;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea {
        padding: 2.66667% 0 6.66667%;
    }
}
.p-top__linkArea-main {
    width: 910px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-main {
        width: 92%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.p-top__linkArea-main .mainLink {
    width: 210px;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-main .mainLink {
        width: 47.10145%;
        margin-top: 4.34783%;
    }
}
.p-top__linkArea-main .mainLink__item {
    display: block;
}
.p-top__linkArea-main .mainLink__item-txt {
    padding: 28px 0 22px;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-main .mainLink__item-txt {
        padding: 17.23077% 0;
        font-size: 14rem;
        font-size: 3.65059vw;
        line-height: 1.6;
    }
}
.p-top__linkArea-main .mainLink__item-txt .arrow {
    margin-top: 14px;
    width: 30px;
    height: 10px;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-top__linkArea-main .mainLink__item-txt .arrow path {
    stroke: #fff;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-main .mainLink__item-txt .arrow {
        display: none;
    }
}
.p-top__linkArea-main .mainLink__item-txt--no1 {
    background: #0e6d46;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-main .mainLink__item-txt--no1 {
        padding: 10.76923% 0;
    }
}
.p-top__linkArea-main .mainLink__item-txt--no2 {
    background: #047943;
}
.p-top__linkArea-main .mainLink__item-txt--no3 {
    background: #04813f;
}
.p-top__linkArea-main .mainLink__item-txt--no4 {
    background: #02923f;
}
@media print, screen and (min-width: 768px) {
    .p-top__linkArea-main .mainLink__item:hover {
        opacity: 0.6;
    }
    .p-top__linkArea-main .mainLink__item:hover .arrow {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
}
.p-top__linkArea-sub {
    width: 910px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 64px auto 0;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-sub {
        width: 92%;
        margin-top: 8%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.p-top__linkArea-sub .subLink {
    width: 210px;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-sub .subLink {
        width: 47.10145%;
        margin-top: 5.07246%;
    }
}
.p-top__linkArea-sub .subLink__item {
    display: block;
    border: solid 1px #91b3a5;
    text-align: center;
    padding-top: 12px;
    height: 80px;
    font-size: 1.5rem;
    color: #0e6d46;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-sub .subLink__item {
        padding-top: 6.15385%;
        height: 67px;
        height: 17.86667vw;
        font-size: 11.5rem;
        font-size: 2.9987vw;
        line-height: 1.4;
    }
}
.p-top__linkArea-sub .subLink__item-ttl {
    display: block;
    font-family: "Marcellus SC", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    font-size: 1.7rem;
    color: #4fa774;
    font-weight: bold;
    margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-sub .subLink__item-ttl {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        margin-bottom: 6.15385%;
    }
}
.p-top__linkArea-sub .subLink__item--no3 .subLink__item-ttl {
    margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
    .p-top__linkArea-sub .subLink__item--no3 .subLink__item-ttl {
        margin-bottom: 1.84615%;
    }
}
.p-top__linkArea-sub .subLink__item--no4 .subLink__item-ttl {
    letter-spacing: -0.02em;
}
.p-top__news {
    padding: 60px 0;
    background: #f2f6f0;
}
@media screen and (max-width: 767px) {
    .p-top__news {
        padding: 6% 0 10%;
    }
}
.p-top__news-cont {
    width: 1030px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 0;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-top__news-cont {
        width: 92%;
        padding: 8% 0;
    }
}
.p-top__news-ttl {
    width: 880px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: baseline;
    align-items: baseline;
}
@media screen and (max-width: 767px) {
    .p-top__news-ttl {
        width: 86.95652%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.p-top__news-ttl .mainTtl {
    font-size: 1.5rem;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .p-top__news-ttl .mainTtl {
        font-size: 15rem;
        font-size: 3.91134vw;
        white-space: nowrap;
    }
}
.p-top__news-ttl .mainTtl span {
    font-family: "Marcellus SC", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    font-size: 2.2rem;
    vertical-align: baseline;
    margin-right: 18px;
}
@media screen and (max-width: 767px) {
    .p-top__news-ttl .mainTtl span {
        font-size: 17.5rem;
        font-size: 4.56323vw;
        margin-right: 3.33333%;
    }
}
.p-top__news-ttl .link {
    display: block;
    font-size: 1.3rem;
    padding-bottom: 2px;
    border-bottom: solid 1px #58595b;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .p-top__news-ttl .link {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        padding-bottom: 1%;
        white-space: nowrap;
    }
}
@media print, screen and (min-width: 768px) {
    .p-top__news-ttl .link:hover {
        border-bottom: solid 1px transparent;
    }
}
.p-top__news-list {
    width: 880px;
    min-height: 110px;
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .p-top__news-list {
        width: 86.95652%;
        min-height: auto;
        margin-top: 7.24638%;
    }
}
.p-top__news-list .newsItem {
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem {
        margin-top: 6.52174%;
    }
}
.p-top__news-list .newsItem__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__link {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
@media print, screen and (min-width: 768px) {
    .p-top__news-list .newsItem__link--new .newsItem__day {
        position: relative;
    }
    .p-top__news-list .newsItem__link--new .newsItem__day::before {
        content: "NEW";
        display: inline-block;
        font-size: 1rem;
        width: 40px;
        padding: 3px 0;
        background: #f90;
        color: #fff;
        text-align: center;
        position: absolute;
        left: -50px;
        top: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__link--new .newsItem__type {
        position: relative;
    }
    .p-top__news-list .newsItem__link--new .newsItem__type::before {
        content: "NEW";
        display: inline-block;
        font-size: 10rem;
        font-size: 2.60756vw;
        padding: 4.5% 8% 4% 10%;
        background: #f90;
        color: #fff;
        text-align: center;
        position: absolute;
        right: -85%;
        top: 51%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.p-top__news-list .newsItem__day {
    margin-right: 20px;
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__day {
        margin-right: 4%;
    }
}
.p-top__news-list .newsItem__type {
    font-size: 1.3rem;
    margin-right: 20px;
    width: 100px;
    text-align: center;
    background: #e3f4d9;
    padding: 6px 0;
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__type {
        width: 20%;
        margin-right: 0;
        font-size: 12.5rem;
        font-size: 3.25945vw;
        padding: 1% 0;
    }
}
.p-top__news-list .newsItem__type--ir {
    background: #fbe1f0;
}
.p-top__news-list .newsItem__type--info {
    background: #e7d4ff;
}
.p-top__news-list .newsItem__type--settle {
    background: #d9f0ee;
}
.p-top__news-list .newsItem__txt {
    width: 480px;
    line-height: 1.8;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__txt {
        width: 100%;
        margin-top: 1.66667%;
    }
}
.p-top__news-list .newsItem__txt::after {
    content: "";
    display: inline-block;
    width: 14px;
    padding-top: 16px;
    background: url("/assets/img/top/icon_pdf.png");
    background-size: contain;
    vertical-align: bottom;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
    .p-top__news-list .newsItem__txt::after {
        width: 4.05797%;
        padding-top: 4.63768%;
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }
}
.p-top__news-img {
    position: absolute;
    bottom: -60px;
    right: -20px;
}
@media screen and (max-width: 767px) {
    .p-top__news-img {
        display: none;
    }
}

.p-rinen__content {
    width: 730px;
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .p-rinen__content {
        width: 100%;
        margin-top: 12%;
    }
}

.p-rinen__logo {
    text-align: center;
}
.p-rinen__logo img {
    width: 238px;
}
@media screen and (max-width: 767px) {
    .p-rinen__logo img {
        width: 43.06667%;
    }
}
.p-rinen__logo-txt {
    margin-top: 40px;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    .p-rinen__logo-txt {
        margin-top: 6%;
        font-size: 12.5rem;
        font-size: 3.25945vw;
        line-height: 1.6;
    }
}

.p-rinen__txtBox {
    width: 670px;
    margin: 45px auto 0;
    background: #f3f6f1;
    padding: 5px 0 50px 45px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox {
        width: 93.33333%;
        margin-top: 6%;
        padding: 0 0 9.33333% 0;
    }
}
.p-rinen__txtBox-item {
    padding-top: 50px;
    width: 580px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item {
        padding-top: 10%;
        width: 100%;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
.p-rinen__txtBox-item .itemNum {
    width: 50px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum {
        width: 24.28571%;
    }
}
.p-rinen__txtBox-item .itemNum--no1 {
    padding-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no1 {
        padding-top: 2.85714%;
    }
}
.p-rinen__txtBox-item .itemNum--no1 img {
    width: 30px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no1 img {
        width: 50%;
        padding-left: 11.76471%;
    }
}
.p-rinen__txtBox-item .itemNum--no2 {
    padding-top: 16px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no2 {
        padding-top: 2.85714%;
    }
}
.p-rinen__txtBox-item .itemNum--no2 img {
    width: 40px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no2 img {
        width: 47.05882%;
    }
}
.p-rinen__txtBox-item .itemNum--no3 {
    padding-top: 12px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no3 {
        padding-top: 2.85714%;
    }
}
.p-rinen__txtBox-item .itemNum--no3 img {
    width: 40px;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemNum--no3 img {
        width: 47.05882%;
    }
}
.p-rinen__txtBox-item .itemTxt {
    width: 500px;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .p-rinen__txtBox-item .itemTxt {
        width: 68.57143%;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}

.p-faq__list {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .p-faq__list {
        width: 92%;
        margin: 8% auto 0;
    }
}
.p-faq__list:nth-of-type(n + 2) {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .p-faq__list:nth-of-type(n + 2) {
        margin-top: 6.52174%;
    }
}
.p-faq__list-ttl {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .p-faq__list-ttl {
        font-size: 13rem;
        font-size: 3.38983vw;
        margin-bottom: 4.34783%;
    }
}
.p-faq__list-link {
    margin-left: 15px;
    margin-top: 5px;
    text-indent: -1.7em;
    padding-left: 1.7em;
}
@media screen and (max-width: 767px) {
    .p-faq__list-link {
        margin-top: 1.73913%;
        margin-left: 1.73913%;
        text-indent: -1.5em;
        padding-left: 1.5em;
    }
}
.p-faq__list-link .linkItem {
    font-size: 1.4rem;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .p-faq__list-link .linkItem {
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
.p-faq__list-link .linkItem__icon {
    font-weight: bold;
    color: #0e6d46;
    margin-right: 6px;
}
@media screen and (max-width: 767px) {
    .p-faq__list-link .linkItem__icon {
        margin-right: 1.44928%;
    }
}

.p-faq__answer-item {
    padding: 20px 0;
    width: 705px;
    margin-left: 15px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: solid 1px #cdcdcd;
}
@media screen and (max-width: 767px) {
    .p-faq__answer-item {
        width: 92%;
        margin: 0 auto;
        font-size: 12.5rem;
        font-size: 3.25945vw;
        padding: 5.33333% 0;
        padding-left: 1.2em;
    }
}
.p-faq__answer-item:last-child {
    border-bottom: none;
}
.p-faq__answer-item .itemQue__icon {
    font-weight: bold;
    color: #0e6d46;
    margin-right: 6px;
}
@media screen and (max-width: 767px) {
    .p-faq__answer-item .itemQue__icon {
        margin-right: 1.44928%;
    }
}
.p-faq__answer-item .itemAns {
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .p-faq__answer-item .itemAns {
        margin-top: 3.62319%;
    }
}
.p-faq__answer-item .itemAns__icon {
    font-weight: bold;
    color: #fc5757;
    margin-right: 7px;
    margin-left: 1px;
}
@media screen and (max-width: 767px) {
    .p-faq__answer-item .itemAns__icon {
        margin-right: 1.73913%;
        margin-left: 0.14493%;
    }
}
.p-faq__answer-item .itemAns a {
    text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
    .p-faq__answer-item .itemAns a:hover {
        text-decoration: none;
    }
}

.p-contact__topTxt {
    font-size: 14px;
    margin-top: 40px;
    letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
    .p-contact__topTxt {
        width: 92%;
        margin: 10.66667% auto 0;
        font-size: 12.5rem;
        font-size: 3.25945vw;
        line-height: 1.6;
    }
}
.p-contact__topTxt--confirm {
    font-size: 17px;
    padding: 14px 0 14px 14px;
    background: #eee;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .p-contact__topTxt--confirm {
        font-size: 15rem;
        font-size: 3.91134vw;
        width: 100%;
        text-align: center;
        padding: 4% 0;
    }
}

.p-contact__txtArea {
    margin-top: 30px;
    padding: 35px 0 30px;
    background: #f3f6f1;
}
@media screen and (max-width: 767px) {
    .p-contact__txtArea {
        width: 92%;
        margin: 5.33333% auto 0;
        padding: 6% 0 6.66667%;
    }
}
.p-contact__txtArea .ttl {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 6px;
    width: 240px;
    border-bottom: solid 1px #a5a7a6;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-contact__txtArea .ttl {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        width: 62.31884%;
        padding-bottom: 1.44928%;
    }
}
.p-contact__txtArea .txtList {
    margin-top: 25px;
}
@media screen and (max-width: 767px) {
    .p-contact__txtArea .txtList {
        margin-top: 2.89855%;
    }
}
.p-contact__txtArea .txtList__inner {
    width: 705px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-contact__txtArea .txtList__inner {
        width: 91.30435%;
    }
}
.p-contact__txtArea .txtList__item {
    font-size: 14px;
    margin-top: 10px;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .p-contact__txtArea .txtList__item {
        font-size: 12rem;
        font-size: 3.12907vw;
        margin-top: 1.44928%;
    }
}
.p-contact__txtArea .txtList__item a {
    text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
    .p-contact__txtArea .txtList__item a:hover {
        text-decoration: none;
    }
}

.p-contact__caution {
    font-size: 14px;
    color: #dc0000;
    font-weight: bold;
    margin-top: 15px;
    margin-left: 30px;
}
@media screen and (max-width: 767px) {
    .p-contact__caution {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        margin: 1.33333% auto 0;
        width: 92%;
        text-indent: -1em;
        padding-left: 1em;
        line-height: 1.6;
    }
}

.p-contact__form {
    margin-top: 45px;
}
@media screen and (max-width: 767px) {
    .p-contact__form {
        margin-top: 8.66667%;
    }
}
.p-contact__form--confirm {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-contact__form--confirm {
        margin-top: 6.66667%;
    }
}
.p-contact__form .formItem {
    display: -ms-flexbox;
    display: flex;
    border-top: solid 1px #a3a3a4;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem {
        display: block;
    }
}
.p-contact__form .formItem--select .formItem__ttl {
    padding-top: 26px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem--select .formItem__ttl {
        padding-top: 4.53333%;
    }
}
.p-contact__form .formItem--select .formItem__input {
    padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem--select .formItem__input {
        padding-bottom: 3.33333%;
    }
}
.p-contact__form .formItem--mail .formItem__ttl {
    padding-top: 62px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem--mail .formItem__ttl {
        padding-top: 4.53333%;
    }
}
.p-contact__form .formItem--tel {
    border-bottom: solid 1px #a3a3a4;
}
.p-contact__form .formItem--tel .formItem__input {
    padding-bottom: 22px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem--tel .formItem__input {
        padding-bottom: 3.33333%;
    }
}
.p-contact__form .formItem__ttl {
    width: 180px;
    background: #eee;
    font-size: 14px;
    padding-top: 32px;
    padding-left: 32px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__ttl {
        width: 100%;
        border-bottom: solid 1px #a3a3a4;
        padding: 4.66667% 0 4.26667% 4%;
        font-size: 15rem;
        font-size: 3.91134vw;
    }
}
.p-contact__form .formItem__ttl--required {
    width: 34px;
    color: #fff;
    background: #dc0000;
    display: block;
    text-align: center;
    font-size: 11px;
    padding: 3px 0;
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__ttl--required {
        display: inline-block;
        vertical-align: baseline;
        margin-top: 0;
        font-size: 12rem;
        font-size: 3.12907vw;
        padding: 0.8% 0 1.06667%;
        width: 9.33333%;
        margin-left: 2.66667%;
    }
}
.p-contact__form .formItem__ttl--confirm {
    padding-top: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__ttl--confirm {
        width: 100%;
        padding: 4%;
        display: block;
    }
}
.p-contact__form .formItem__input {
    padding-left: 12px;
    padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input {
        padding: 0 0 3.33333% 0;
        width: 92%;
        margin: 0 auto;
    }
}
.p-contact__form .formItem__input--confirm {
    width: 585px;
    padding: 22px 0 22px 20px;
    font-size: 14px;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input--confirm {
        width: 100%;
        padding: 5.33333% 4%;
    }
}
.p-contact__form .formItem__input select {
    font-size: 14px;
    padding: 8px 10px;
    width: 280px;
    border: solid 1px #cdcdcd;
    margin-top: 24px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input select {
        margin-top: 3.33333%;
        width: 100%;
        padding: 3.46667% 2.66667% 4%;
        font-size: 15rem;
        font-size: 3.91134vw;
    }
}
.p-contact__form .formItem__input textarea {
    border: solid 1px #cdcdcd;
    width: 560px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.2;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input textarea {
        width: 100%;
        margin-top: 3.33333%;
        font-size: 15rem;
        font-size: 3.91134vw;
    }
}
.p-contact__form .formItem__input input {
    font-size: 13px;
    border: solid 1px #cdcdcd;
    padding: 9px 10px 8px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input input {
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 3.73333% 2.66667%;
    }
}
.p-contact__form .formItem__input input::-webkit-input-placeholder {
    font-size: 13px;
    color: #cdcdcd;
}
.p-contact__form .formItem__input input:-ms-input-placeholder {
    font-size: 13px;
    color: #cdcdcd;
}
.p-contact__form .formItem__input input::placeholder {
    font-size: 13px;
    color: #cdcdcd;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input input::-webkit-input-placeholder {
        font-size: 15rem;
        font-size: 3.91134vw;
    }
    .p-contact__form .formItem__input input:-ms-input-placeholder {
        font-size: 15rem;
        font-size: 3.91134vw;
    }
    .p-contact__form .formItem__input input::placeholder {
        font-size: 15rem;
        font-size: 3.91134vw;
    }
}
.p-contact__form .formItem__input .name {
    font-size: 13px;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .name {
        font-size: 14rem;
        font-size: 3.65059vw;
        margin-top: 3.33333%;
    }
}
.p-contact__form .formItem__input .name input {
    width: 280px;
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .name input {
        width: 87.68116%;
        margin-left: 3.62319%;
    }
}
.p-contact__form .formItem__input .name + .err {
    margin-left: 40px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .name + .err {
        margin-left: 12%;
    }
}
.p-contact__form .formItem__input .mail input {
    margin-top: 12px;
    width: 560px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .mail input {
        margin-top: 3.62319%;
        width: 100%;
    }
}
.p-contact__form .formItem__input .mail__txt {
    margin-top: 12px;
    font-size: 13px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .mail__txt {
        margin-top: 3.62319%;
        font-size: 14rem;
        font-size: 3.65059vw;
    }
}
.p-contact__form .formItem__input .mail__txt--caution {
    color: #dc0000;
    letter-spacing: normal;
    margin-top: 8px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .mail__txt--caution {
        line-height: 1.6;
        margin-top: 2.17391%;
        text-indent: -1em;
        padding-left: 1em;
    }
}
.p-contact__form .formItem__input .tel {
    margin-top: 22px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .tel {
        margin-top: 3.33333%;
    }
}
.p-contact__form .formItem__input .tel input {
    width: 280px;
}
.p-contact__form .formItem__input .tel__txt {
    font-size: 13px;
    margin-top: 5px;
}
.p-contact__form .formItem__input .err {
    font-weight: bold;
    color: #dc0000;
    font-size: 14px;
    margin-top: 6px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formItem__input .err {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        margin-top: 2.17391%;
    }
}
.p-contact__form .privacy {
    margin-top: 60px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy {
        margin-top: 10.66667%;
    }
}
.p-contact__form .privacy__ttl {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__ttl {
        font-size: 14rem;
        font-size: 3.65059vw;
    }
}
.p-contact__form .privacy__txtArea {
    font-size: 12px;
    line-height: 1.6;
    border: solid 1px #c8c8c8;
    padding: 20px 20px 0;
    height: 200px;
    overflow-y: scroll;
    margin-top: 12px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea {
        -webkit-overflow-scrolling: touch;
        font-size: 11rem;
        font-size: 2.86832vw;
        margin: 2.66667% auto 0;
        padding: 4% 2.66667%;
        width: 92%;
        height: 160px;
        height: 42.66667vw;
    }
}
.p-contact__form .privacy__txtArea .ttl {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .ttl {
        font-size: 13rem;
        font-size: 3.38983vw;
        margin-bottom: 2.17391%;
    }
}
.p-contact__form .privacy__txtArea .ttl:nth-of-type(n + 2) {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .ttl:nth-of-type(n + 2) {
        margin-top: 5.7971%;
    }
}
.p-contact__form .privacy__txtArea .list {
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.p-contact__form .privacy__txtArea .finish {
    text-align: right;
}
.p-contact__form .privacy__txtArea .subTtl {
    font-weight: bold;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .subTtl {
        margin-top: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea .thirdTtl {
    font-weight: bold;
    margin: 12px auto 10px;
    border-left: solid 2px #58595b;
    padding-left: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .thirdTtl {
        margin: 3.47826% 0 2.89855%;
        padding-left: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea .box {
    border: solid 1px #c8c8c8;
    padding: 10px;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .box {
        padding: 2.89855%;
        padding-top: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea .box__ttl {
    font-weight: bold;
}
.p-contact__form .privacy__txtArea .box__txt {
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .box__txt {
        margin-top: 1.44928%;
    }
}
.p-contact__form .privacy__txtArea .box__txt--bold {
    font-weight: bold;
}
.p-contact__form .privacy__txtArea .box__txt a {
    text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
    .p-contact__form .privacy__txtArea .box__txt a:hover {
        text-decoration: none;
    }
}
.p-contact__form .privacy__txtArea table {
    border: solid 1px #c8c8c8;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea table {
        margin-top: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea table tr th {
    border: solid 1px #c8c8c8;
    font-weight: bold;
    width: 240px;
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea table tr th {
        width: 36.23188%;
        padding: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea table tr td {
    padding: 10px;
    border: solid 1px #c8c8c8;
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea table tr td {
        padding: 2.89855%;
    }
}
.p-contact__form .privacy__txtArea .space {
    padding-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .privacy__txtArea .space {
        padding-top: 4%;
    }
}
.p-contact__form .agree {
    margin-top: 40px;
    text-align: center;
    background: #d2e4dd;
    padding: 32px 0 30px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree {
        margin-top: 7.33333%;
        padding: 11.33333% 0 13.33333%;
    }
}
.p-contact__form .agree__txt {
    font-size: 18px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree__txt {
        font-size: 20rem;
        font-size: 5.21512vw;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.p-contact__form .agree__txt input {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    vertical-align: baseline;
    cursor: pointer;
    border: solid 1px #aaa;
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree__txt input {
        margin-top: 1.86667%;
        margin-right: 2%;
    }
}
.p-contact__form .agree__txt label {
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree__txt label {
        display: block;
        text-align: left;
        width: 80%;
        line-height: 1.4;
    }
}
.p-contact__form .agree__btn {
    margin-top: 24px;
    border-style: none;
    background: #cacaca;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    width: 215px;
    padding: 15px 0 15px;
    padding-left: 48px;
    font-family: "NotoSans-R", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree__btn {
        margin-top: 5.33333%;
        width: 62.66667%;
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 4.66667% 0;
        padding-left: 8%;
    }
}
.p-contact__form .agree__btn img {
    vertical-align: middle;
    margin-left: 15px;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
    .p-contact__form .agree__btn img {
        width: 15.36585%;
        margin-left: 7.31707%;
        -webkit-transform: translateY(-0.2em);
        transform: translateY(-0.2em);
    }
}
.p-contact__form .agree__btn.on {
    background: #0e6d46;
    cursor: pointer;
    transition: opacity 0.3s;
}
@media print, screen and (min-width: 768px) {
    .p-contact__form .agree__btn.on:hover {
        opacity: 0.6;
    }
}
.p-contact__form .formBtn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 70px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formBtn {
        display: block;
        margin-top: 10.66667%;
    }
}
.p-contact__form .formBtn__back,
.p-contact__form .formBtn__submit {
    display: block;
    border-style: none;
    background: #cacaca;
    color: #58595b;
    font-size: 14px;
    font-weight: bold;
    width: 215px;
    padding: 15px 0 15px;
    padding-right: 60px;
    font-family: "NotoSans-R", sans-serif, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ヒラギノ丸ゴ ProN W4",
        "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ Pro W4",
        "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
        "MS PGothic";
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formBtn__back,
    .p-contact__form .formBtn__submit {
        margin: 8% auto 0;
        width: 62.66667%;
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 4.66667% 0;
        padding-right: 20%;
    }
}
.p-contact__form .formBtn__back img,
.p-contact__form .formBtn__submit img {
    vertical-align: middle;
    margin-right: 40px;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
    .p-contact__form .formBtn__back img,
    .p-contact__form .formBtn__submit img {
        width: 19.6875%;
        margin-right: 28.125%;
        -webkit-transform: translateY(-0.2em);
        transform: translateY(-0.2em);
    }
}
@media print, screen and (min-width: 768px) {
    .p-contact__form .formBtn__back:hover,
    .p-contact__form .formBtn__submit:hover {
        opacity: 0.6;
    }
}
.p-contact__form .formBtn__submit {
    background: #0e6d46;
    color: #fff;
    margin-left: 20px;
    padding-left: 70px;
    padding-right: 0;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formBtn__submit {
        margin-left: auto;
        padding-left: 20%;
    }
}
.p-contact__form .formBtn__submit img {
    margin-right: 0;
    margin-left: 40px;
}
@media screen and (max-width: 767px) {
    .p-contact__form .formBtn__submit img {
        margin-left: 28.125%;
        width: 19.6875%;
    }
}

.p-contact__endTxt {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .p-contact__endTxt {
        font-size: 15rem;
        font-size: 3.91134vw;
        width: 92%;
        margin: 9.33333% auto 0;
    }
}

.p-contact__backBtn {
    display: block;
    margin: 60px auto 0;
    background: #0e6d46;
    font-size: 14px;
    color: #fff;
    width: 215px;
    padding: 15px 0 15px;
    padding-left: 90px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .p-contact__backBtn {
        margin-top: 14.66667%;
        width: 62.66667%;
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 4.66667% 0;
        padding-left: 25.33333%;
    }
}
.p-contact__backBtn img {
    vertical-align: middle;
    margin-left: 30px;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
@media screen and (max-width: 767px) {
    .p-contact__backBtn img {
        width: 22.5%;
        margin-left: 23.21429%;
        -webkit-transform: translateY(-0.2em);
        transform: translateY(-0.2em);
    }
}
@media print, screen and (min-width: 768px) {
    .p-contact__backBtn:hover {
        opacity: 0.6;
    }
}

.p-temp {
    /*--- page top anchor link ---*/
    /*--- topTxt --->*/
    /*--- block ---*/
    /*--- 株式情報/大株主 表 ---*/
}
.p-temp__anc {
    margin-top: 55px;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .p-temp__anc {
        width: 92%;
        margin: 8% auto 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.p-temp__anc .ancItem {
    width: 160px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-temp__anc .ancItem {
        width: 50%;
    }
}
@media print, screen and (min-width: 768px) {
    .p-temp__anc .ancItem:nth-of-type(n + 2) {
        margin-left: 40px;
    }
}
.p-temp__anc .ancItem__link {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4;
}
@media screen and (max-width: 767px) {
    .p-temp__anc .ancItem__link {
        text-align: center;
        font-size: 13rem;
        font-size: 3.38983vw;
        margin-top: 13.04348%;
    }
}
.p-temp__anc .ancItem__link:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 14px;
    background: url("/assets/img/common/arrow2_b.svg") bottom center no-repeat;
    background-size: 11px 6px;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
    .p-temp__anc .ancItem__link:after {
        display: inline-block;
        width: 5.7971%;
        padding-top: 2.89855%;
        vertical-align: middle;
        margin-left: 2.89855%;
    }
}
@media print, screen and (min-width: 768px) {
    .p-temp__anc .ancItem__link:hover:after {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }
}
.p-temp__topTxt {
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .p-temp__topTxt {
        width: 92%;
        margin: 8% auto 0;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
.p-temp__block {
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .p-temp__block {
        margin-top: 8%;
    }
}
.p-temp__block .block {
    /*--- title ---*/
    /*--- text ---*/
    /*--- table list ---*/
    /*--- image ---*/
}
.p-temp__block .block__ttl {
    padding: 15px 0 15px 15px;
    font-size: 1.7rem;
    background: #eee;
    font-weight: bold;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__ttl {
        font-size: 15rem;
        font-size: 3.91134vw;
        padding: 4.26667% 0;
        text-align: center;
    }
}
.p-temp__block .block__ttl-min {
    font-size: 1.2rem;
}
.p-temp__block .block__txt {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 2;
    padding: 0 16px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt {
        width: 92%;
        margin: 4% auto 0;
        padding: 0;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
.p-temp__block .block__txt-img {
    margin-top: 15px;
    display: block;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt-img {
        margin-top: 2.66667%;
    }
}
.p-temp__block .block__txt-imgArea {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt-imgArea {
        display: block;
    }
}
.p-temp__block .block__txt-imgArea .yutai {
    /*株主優待1000株以上*/
    width: 360px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt-imgArea .yutai {
        width: 100%;
    }
}
.p-temp__block .block__txt-imgArea .yutai img {
    width: 100%;
}
.p-temp__block .block__txtArea {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 2;
    padding: 0 16px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txtArea {
        width: 92%;
        margin: 4% auto 0;
        padding: 0;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
.p-temp__block .block__txt-pdf {
    /*link with pdf icon*/
    display: block;
    text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
    .p-temp__block .block__txt-pdf:hover {
        text-decoration: none;
    }
}
.p-temp__block .block__txt-pdf:after {
    content: "";
    display: inline-block;
    width: 14px;
    padding-top: 16px;
    background: url(/assets/img/top/icon_pdf.png);
    background-size: contain;
    vertical-align: bottom;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    margin-left: 10px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt-pdf:after {
        width: 4.05797%;
        padding-top: 4.63768%;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
}
@media print {
    .p-temp__block .block__txt-pdf:after {
        background: none;
        content: url("/assets/img/top/icon_pdf_s.png");
        width: 14px;
        height: 16px;
    }
}
.p-temp__block .block__txt-item {
    /*paragraph*/
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__txt-item {
        margin-top: 4%;
    }
}
.p-temp__block .block__list {
    margin-top: 20px;
    border-bottom: solid 1px #a1a4a1;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__list {
        margin: 5.33333% auto 0;
        width: 92%;
    }
}
.p-temp__block .block__list tr {
    display: block;
    border-top: solid 1px #a1a4a1;
}
.p-temp__block .block__list th {
    font-size: 1.4rem;
    padding: 20px 0;
    background: #eaf0e7;
    width: 205px;
    vertical-align: middle;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__list th {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        padding: 0;
        width: 125px;
        width: 34.66667vw;
    }
}
.p-temp__block .block__list td {
    font-size: 1.3rem;
    width: 530px;
    vertical-align: middle;
    padding: 12px;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__list td {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        width: 220px;
        width: 57.33333vw;
        padding: 2.89855%;
    }
}
.p-temp__block .block__img {
    text-align: center;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-temp__block .block__img {
        margin-top: 8%;
    }
    .p-temp__block .block__img--stock {
        /* 株式情報/所有者別分布状況 */
        width: 65.21739%;
    }
}
.p-temp .stockList {
    margin-top: 20px;
    font-size: 1.4rem;
    border-bottom: solid 1px #a1a4a1;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList {
        margin: 5.33333% auto 0;
        width: 92%;
        font-size: 12.5rem;
        font-size: 3.25945vw;
    }
}
.p-temp .stockList th {
    vertical-align: middle;
    text-align: center;
    padding: 10px 0;
    border-top: solid 1px #a1a4a1;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList th {
        padding: 2.89855%;
    }
}
.p-temp .stockList td {
    font-size: 1.3rem;
    vertical-align: middle;
    padding: 15px 0;
    line-height: 1.6;
    text-align: center;
    border-top: solid 1px #a1a4a1;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList td {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        padding: 2.89855%;
    }
}
.p-temp .stockList td:nth-of-type(2) {
    border-right: solid 1px #a1a4a1;
}
.p-temp .stockList__ttl01 {
    width: 400px;
    background: #eaf0e7;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList__ttl01 {
        width: 125px;
        width: 34.66667vw;
    }
}
.p-temp .stockList__ttl02 {
    width: 364px;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList__ttl02 {
        width: 220px;
        width: 57.33333vw;
    }
}
.p-temp .stockList__subTtl {
    width: 182px;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList__subTtl {
        width: 110px;
        width: 29.33333vw;
    }
}
.p-temp .stockList__subTtl:nth-of-type(n + 2) {
    border-left: solid 1px #a1a4a1;
}
.p-temp .stockList__name {
    text-align: left !important;
    background: #eaf0e7;
    padding-left: 20px !important;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList__name {
        padding: 2.89855% !important;
    }
}
.p-temp .stockList__bottomTxt {
    font-size: 1.3rem;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .p-temp .stockList__bottomTxt {
        font-size: 12.5rem;
        font-size: 3.25945vw;
        margin: 2.66667% auto 0;
        width: 92%;
        line-height: 1.6;
        text-indent: -3.2em;
        padding-left: 3.2em;
    }
}

/*# sourceMappingURL=index.css.map */
