@charset "UTF-8";
:root {
    --color-primary: #e35535;
    --color-primary-light: #e9bda3;
    --color-accent: #41acda;
    --color-text: #303030;
    --color-text-gray: #a1a1a1;
    --color-bg-gray: #f1f1f1;
    --color-bg-gray-light: #f8f8f8;
    --color-bg-orange: #fff9f5;
    --color-line-gray: #c1c1c1;
    --color-white: #fff;
    --color-black: #000;
    --color-blur: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--color-white));
    --font-base: "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic Pro",
        "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
    --font-en: "Montserrat", sans-serif;
    --font-noto: "Noto Sans", sans-serif;
    --animation-duration-fast: 0.2s;
    --animation-duration: 0.4s;
    --animation-duration-slow: 0.7s;
    --animation-duration-slower: 1s;
    --animation-duration-fadein: 1.5s;
    --opacity-base: 0.7;
}
a,
abbr,
address,
b,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
ins,
kbd,
label,
legend,
li,
mark,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
u,
ul,
var {
    background: transparent;
    border: none;
    font-size: 100%;
    font-style: normal;
    font-weight: 400;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
body,
html {
    font-size: 62.5%;
}
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    color: #303030;
    color: var(--color-text);
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 500;
    line-height: 1;
    overflow-x: hidden;
    width: 100%;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
img {
    border: none;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}
:focus {
    outline: 0;
}
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    visibility: hidden;
}
a,
button,
input[type="button"] {
    cursor: pointer;
    outline: none;
}
a {
    color: #303030;
    color: var(--color-text);
    text-decoration: none;
}
textarea {
    overflow-y: auto;
}
select::-ms-expand {
    display: none;
}
input[type="email"],
input[type="number"],
input[type="password"],
input[type="text"] {
    vertical-align: middle;
}
button,
input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    border-radius: 0;
    color: #303030;
    color: var(--color-text);
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    padding: 0;
    width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner {
    border: 0;
}
mark {
    background: none;
}
nav ul {
    list-style: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}
figure {
    margin: 0;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
    }
    .animate__animated[class*="Out"] {
        opacity: 0;
    }
}
@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        -webkit-transform: translateZ(0) scaleY(0.95);
        transform: translateZ(0) scaleY(0.95);
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(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: scaleX(1);
        transform: scaleX(1);
    }
}
.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
}
@-webkit-keyframes shakeY {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}
.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY;
}
@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.animate__headShake {
    -webkit-animation-name: headShake;
    animation-name: headShake;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.animate__swing {
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.animate__jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__heartBeat {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
    animation-duration: calc(var(--animate-duration) * 1.3);
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-1200px) scale(0.7);
        transform: translateY(-1200px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
    0% {
        opacity: 0.7;
        -webkit-transform: translateX(-2000px) scale(0.7);
        transform: translateX(-2000px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
    0% {
        opacity: 0.7;
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight;
}
@-webkit-keyframes backInUp {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateY(700px) scale(0.7);
        transform: translateY(700px) scale(0.7);
    }
}
.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateX(-2000px) scale(0.7);
        transform: translateX(-2000px) scale(0.7);
    }
}
.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
    }
}
.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateY(-700px) scale(0.7);
        transform: translateY(-700px) scale(0.7);
    }
}
.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp;
}
@-webkit-keyframes bounceIn {
    0%,
    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: scaleX(1);
        transform: scaleX(1);
    }
}
.animate__bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__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);
    }
}
.animate__bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
}
.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0);
    }
}
.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }
}
.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0);
    }
}
.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    }
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    }
    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    }
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
            rotateY(0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
            rotateY(0deg);
    }
    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    }
}
.animate__animated.animate__flip {
    -webkit-animation-name: flip;
    animation-name: flip;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.animate__flipInX {
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.animate__flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
    }
    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
    }
}
.animate__flipOutX {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
    }
    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
    }
}
.animate__flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes lightSpeedInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
    }
}
.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
    }
}
.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
    }
}
.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}
.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}
.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
    }
    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
    }
}
.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        -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);
        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);
    }
    to {
        -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);
        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);
    }
}
.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
    40% {
        -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);
        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);
    }
    to {
        -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);
        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);
    }
}
.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden;
    }
}
.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden;
    }
}
.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
    }
}
.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden;
    }
}
.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
@keyframes bounce {
    0%,
    20%,
    53%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }
    80% {
        -webkit-transform: translateZ(0) scaleY(0.95);
        transform: translateZ(0) scaleY(0.95);
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02);
    }
}
@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(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: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes shakeX {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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 shakeY {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
}
@keyframes 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 swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes backInDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-1200px) scale(0.7);
        transform: translateY(-1200px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes backInLeft {
    0% {
        opacity: 0.7;
        -webkit-transform: translateX(-2000px) scale(0.7);
        transform: translateX(-2000px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes backInRight {
    0% {
        opacity: 0.7;
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes backInUp {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(1200px) scale(0.7);
        transform: translateY(1200px) scale(0.7);
    }
    80% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes backOutDown {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateY(700px) scale(0.7);
        transform: translateY(700px) scale(0.7);
    }
}
@keyframes backOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateX(-2000px) scale(0.7);
        transform: translateX(-2000px) scale(0.7);
    }
}
@keyframes backOutRight {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateX(0) scale(0.7);
        transform: translateX(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
    }
}
@keyframes backOutUp {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.7;
        -webkit-transform: translateY(0) scale(0.7);
        transform: translateY(0) scale(0.7);
    }
    to {
        opacity: 0.7;
        -webkit-transform: translateY(-700px) scale(0.7);
        transform: translateY(-700px) scale(0.7);
    }
}
@keyframes bounceIn {
    0%,
    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: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
        transform: translate3d(0, 25px, 0) scaleY(0.9);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
        transform: translate3d(0, -10px, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
        transform: translate3d(0, 5px, 0) scaleY(0.985);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
        transform: translate3d(-10px, 0, 0) scaleX(0.98);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
        transform: translate3d(5px, 0, 0) scaleX(0.995);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
        transform: translate3d(10px, 0, 0) scaleX(0.98);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
        transform: translate3d(-5px, 0, 0) scaleX(0.995);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
        transform: translate3d(0, 10px, 0) scaleY(0.95);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
        transform: translate3d(0, -5px, 0) scaleY(0.985);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@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 bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
        transform: translate3d(0, 10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
        transform: translate3d(0, -20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
        transform: translate3d(20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
        transform: translate3d(-20px, 0, 0) scaleX(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
        transform: translate3d(0, -10px, 0) scaleY(0.985);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
        transform: translate3d(0, 20px, 0) scaleY(0.9);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
}
@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0);
    }
}
@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }
}
@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0);
    }
}
@keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    }
    40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    }
    50% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    }
    80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
            rotateY(0deg);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
            rotateY(0deg);
    }
    to {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    }
}
@keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
    }
    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
    }
}
@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
    }
    to {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
    }
}
@keyframes lightSpeedInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes lightSpeedInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
        transform: translate3d(-100%, 0, 0) skewX(30deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: skewX(-20deg);
        transform: skewX(-20deg);
    }
    80% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes lightSpeedOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
    }
}
@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
    }
}
@keyframes rotateIn {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rotateOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
    }
}
@keyframes rotateOutDownLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}
@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}
@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}
@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}
@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
    }
    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
    }
}
@keyframes jackInTheBox {
    0% {
        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 rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomInDown {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
@keyframes zoomInLeft {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
@keyframes zoomInRight {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
@keyframes zoomInUp {
    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);
        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);
    }
    60% {
        -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);
        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);
    }
}
@keyframes zoomOut {
    0% {
        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 zoomOutDown {
    40% {
        -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);
        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);
    }
    to {
        -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);
        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);
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
    }
}
@keyframes zoomOutUp {
    40% {
        -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);
        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);
    }
    to {
        -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);
        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);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden;
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden;
    }
}
@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
    }
}
@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden;
    }
}
[data-animate] {
    visibility: hidden;
}
[data-animate].animate__animated {
    visibility: visible;
}
.js-inview:not(.is-slide) {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
.js-inview:not(.is-slide).is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.animate__customFadeIn {
    -webkit-animation-name: customFadeIn;
    animation-name: customFadeIn;
}
.animate__customUp img,
.animate__customUp p {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-name: customUp;
    animation-name: customUp;
}
.animate__rotateInfinite {
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: customRotate;
    animation-name: customRotate;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes customRotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes customRotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@-webkit-keyframes customFadeFv {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes customFadeFv {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes customFadeFvScale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}
@keyframes customFadeFvScale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}
@-webkit-keyframes customFadeFvFirst {
    0% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes customFadeFvFirst {
    0% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes customFadeOutFv {
    0% {
        display: block;
        opacity: 1;
    }
    99% {
        display: block;
        opacity: 0;
    }
    to {
        display: none;
        opacity: 0;
    }
}
@keyframes customFadeOutFv {
    0% {
        display: block;
        opacity: 1;
    }
    99% {
        display: block;
        opacity: 0;
    }
    to {
        display: none;
        opacity: 0;
    }
}
@-webkit-keyframes customFadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes customFadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes customMoveRight {
    0% {
        opacity: 1;
        right: 20px;
    }
    70% {
        opacity: 1;
        right: -20px;
    }
    71% {
        opacity: 0;
        right: -20px;
    }
    72% {
        opacity: 0;
        right: 20px;
    }
    to {
        opacity: 1;
        right: 20px;
    }
}
@keyframes customMoveRight {
    0% {
        opacity: 1;
        right: 20px;
    }
    70% {
        opacity: 1;
        right: -20px;
    }
    71% {
        opacity: 0;
        right: -20px;
    }
    72% {
        opacity: 0;
        right: 20px;
    }
    to {
        opacity: 1;
        right: 20px;
    }
}
@-webkit-keyframes customMoveLeft {
    0% {
        left: 20px;
        opacity: 1;
    }
    70% {
        left: -20px;
        opacity: 1;
    }
    71% {
        left: -20px;
        opacity: 0;
    }
    72% {
        left: 20px;
        opacity: 0;
    }
    to {
        left: 20px;
        opacity: 1;
    }
}
@keyframes customMoveLeft {
    0% {
        left: 20px;
        opacity: 1;
    }
    70% {
        left: -20px;
        opacity: 1;
    }
    71% {
        left: -20px;
        opacity: 0;
    }
    72% {
        left: 20px;
        opacity: 0;
    }
    to {
        left: 20px;
        opacity: 1;
    }
}
@-webkit-keyframes customScaleUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes customScaleUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@-webkit-keyframes customFlipInX {
    0% {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(45deg);
        transform: perspective(400px) rotateX(45deg);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }
    to {
        opacity: 1;
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }
}
@keyframes customFlipInX {
    0% {
        opacity: 0;
        -webkit-transform: perspective(400px) rotateX(45deg);
        transform: perspective(400px) rotateX(45deg);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }
    to {
        opacity: 1;
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
    }
}
@-webkit-keyframes customUp {
    0% {
        -webkit-transform: translateY(105%);
        transform: translateY(105%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes customUp {
    0% {
        -webkit-transform: translateY(105%);
        transform: translateY(105%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes customDownload {
    0% {
        top: -10%;
    }
    to {
        top: 50%;
    }
}
@keyframes customDownload {
    0% {
        top: -10%;
    }
    to {
        top: 50%;
    }
}
@-webkit-keyframes customStretch {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scaleX(0.19);
        transform: scaleX(0.19);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes customStretch {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scaleX(0.19);
        transform: scaleX(0.19);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@-webkit-keyframes customBoxFvHeading {
    to {
        top: 91px;
    }
}
@keyframes customBoxFvHeading {
    to {
        top: 91px;
    }
}
@-webkit-keyframes customBoxFvHeadingSp {
    to {
        top: 72px;
    }
}
@keyframes customBoxFvHeadingSp {
    to {
        top: 72px;
    }
}
@-webkit-keyframes customScaleToRight {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes customScaleToRight {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@-webkit-keyframes customTiltRight {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@keyframes customTiltRight {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@-webkit-keyframes customBounceToRight {
    50% {
        translate: 18px;
    }
    to {
        scale: 1.5 1;
        translate: -85px;
    }
}
@keyframes customBounceToRight {
    50% {
        translate: 18px;
    }
    to {
        scale: 1.5 1;
        translate: -85px;
    }
}
@-webkit-keyframes customToWidth {
    to {
        width: 7px;
    }
}
@keyframes customToWidth {
    to {
        width: 7px;
    }
}
@-webkit-keyframes customColorChangeToPrimary {
    to {
        color: #e35535;
        color: var(--color-primary);
    }
}
@keyframes customColorChangeToPrimary {
    to {
        color: #e35535;
        color: var(--color-primary);
    }
}
@-webkit-keyframes customBgColorChangeToPrimary {
    to {
        background-color: #e35535;
        background-color: var(--color-primary);
    }
}
@keyframes customBgColorChangeToPrimary {
    to {
        background-color: #e35535;
        background-color: var(--color-primary);
    }
}
@-webkit-keyframes customToRight {
    to {
        translate: 19px;
    }
}
@keyframes customToRight {
    to {
        translate: 19px;
    }
}
.slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -khtml-user-select: none;
}
.slick-list,
.slick-slider {
    display: block;
    position: relative;
}
.slick-list {
    margin: 0;
    overflow: hidden;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.slick-track {
    display: block;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0;
}
.slick-track:after,
.slick-track:before {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[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 {
    border: 1px solid transparent;
    display: block;
    height: auto;
}
.slick-arrow.slick-hidden {
    display: none;
}
.title-pageTitle {
    font-size: 6.5rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
}
.title-pageTitle:after,
.title-pageTitle:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-pageTitle:before {
    margin-bottom: -1.4625rem;
}
.title-pageTitle:after {
    margin-top: -1.4625rem;
}
.title-pageTitle {
    font-weight: 600;
}
@media (max-width: 767px) {
    .title-pageTitle.is-sp {
        font-size: 4.5rem;
        letter-spacing: 0.05em;
        line-height: 1.45;
    }
    .title-pageTitle.is-sp:after,
    .title-pageTitle.is-sp:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-pageTitle.is-sp:before {
        margin-bottom: -1.0125rem;
    }
    .title-pageTitle.is-sp:after {
        margin-top: -1.0125rem;
    }
}
@media (max-width: 359px) {
    .title-pageTitle.is-xs {
        font-size: 4rem;
        letter-spacing: 0.05em;
        line-height: 1.45;
    }
    .title-pageTitle.is-xs:after,
    .title-pageTitle.is-xs:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-pageTitle.is-xs:before {
        margin-bottom: -0.9rem;
    }
    .title-pageTitle.is-xs:after {
        margin-top: -0.9rem;
    }
}
.title-level1 {
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.title-level1:after,
.title-level1:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-level1:before {
    margin-bottom: -1.6rem;
}
.title-level1:after {
    margin-top: -1.6rem;
}
.title-level1 {
    font-weight: 700;
}
@media (max-width: 767px) {
    .title-level1.is-sp {
        font-size: 3rem;
        letter-spacing: 0;
        line-height: 1.8;
    }
    .title-level1.is-sp:after,
    .title-level1.is-sp:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-level1.is-sp:before {
        margin-bottom: -1.2rem;
    }
    .title-level1.is-sp:after {
        margin-top: -1.2rem;
    }
    .title-level1.is-sp {
        -webkit-font-feature-settings: "case" on;
        font-feature-settings: "case" on;
    }
}
@media (max-width: 1023px) {
    .title-level1.is-md {
        font-size: 3rem;
        letter-spacing: 0;
        line-height: 1.8;
    }
    .title-level1.is-md:after,
    .title-level1.is-md:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-level1.is-md:before {
        margin-bottom: -1.2rem;
    }
    .title-level1.is-md:after {
        margin-top: -1.2rem;
    }
    .title-level1.is-md {
        -webkit-font-feature-settings: "case" on;
        font-feature-settings: "case" on;
    }
}
.title-level2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.title-level2:after,
.title-level2:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-level2:before {
    margin-bottom: -1.12rem;
}
.title-level2:after {
    margin-top: -1.12rem;
}
.title-level2 {
    font-weight: 700;
}
@media (max-width: 767px) {
    .title-level2.is-sp {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        line-height: 1.8;
    }
    .title-level2.is-sp:after,
    .title-level2.is-sp:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-level2.is-sp:before {
        margin-bottom: -0.96rem;
    }
    .title-level2.is-sp:after {
        margin-top: -0.96rem;
    }
}
.title-level2.is-pc {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.title-level2.is-pc:after,
.title-level2.is-pc:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-level2.is-pc:before {
    margin-bottom: -0.96rem;
}
.title-level2.is-pc:after {
    margin-top: -0.96rem;
}
@media (max-width: 359px) {
    .title-level2.is-xs {
        font-size: 2rem;
        letter-spacing: 0.1em;
        line-height: 1.8;
    }
    .title-level2.is-xs:after,
    .title-level2.is-xs:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-level2.is-xs:before {
        margin-bottom: -0.8rem;
    }
    .title-level2.is-xs:after {
        margin-top: -0.8rem;
    }
}
.title-level3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.title-level3:after,
.title-level3:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-level3:before {
    margin-bottom: -0.5rem;
}
.title-level3:after {
    margin-top: -0.5rem;
}
.title-level3 {
    font-weight: 700;
}
.title-En1 {
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.title-En1:after,
.title-En1:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-En1:before {
    margin-bottom: -0.3rem;
}
.title-En1:after {
    margin-top: -0.3rem;
}
.title-En1 {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 400;
}
.title-En1Bold {
    font-size: 2rem;
    letter-spacing: 0.03em;
    line-height: 2.02;
}
.title-En1Bold:after,
.title-En1Bold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-En1Bold:before {
    margin-bottom: -1.02rem;
}
.title-En1Bold:after {
    margin-top: -1.02rem;
}
.title-En1Bold {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
.title-En2 {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    line-height: 2.02;
}
.title-En2:after,
.title-En2:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-En2:before {
    margin-bottom: -0.714rem;
}
.title-En2:after {
    margin-top: -0.714rem;
}
.title-En2 {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
.title-En3 {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
}
.title-En3:after,
.title-En3:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-En3:before {
    margin-bottom: -0.24rem;
}
.title-En3:after {
    margin-top: -0.24rem;
}
.title-En3 {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 400;
}
.title-En3Bold {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 2.02;
}
.title-En3Bold:after,
.title-En3Bold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-En3Bold:before {
    margin-bottom: -0.612rem;
}
.title-En3Bold:after {
    margin-top: -0.612rem;
}
.title-En3Bold {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
.title-fv {
    font-size: 4.8rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.title-fv:after,
.title-fv:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-fv:before {
    margin-bottom: -1.2rem;
}
.title-fv:after {
    margin-top: -1.2rem;
}
.title-fv {
    font-weight: 700;
}
@media (max-width: 767px) {
    .title-fv {
        font-size: 3.2rem;
        letter-spacing: 0.1em;
        line-height: 1.5;
    }
    .title-fv:after,
    .title-fv:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .title-fv:before {
        margin-bottom: -0.8rem;
    }
    .title-fv:after {
        margin-top: -0.8rem;
    }
}
.title-topNews {
    font-size: 2.7rem;
    letter-spacing: 0.03em;
    line-height: 2.02;
}
.title-topNews:after,
.title-topNews:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.title-topNews:before {
    margin-bottom: -1.377rem;
}
.title-topNews:after {
    margin-top: -1.377rem;
}
.title-topNews {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
.typography-lead {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
}
.typography-lead:after,
.typography-lead:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-lead:before {
    margin-bottom: -0.9rem;
}
.typography-lead:after {
    margin-top: -0.9rem;
}
.typography-lead {
    font-weight: 400;
}
.typography-leadBold {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-leadBold:after,
.typography-leadBold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-leadBold:before {
    margin-bottom: -0.9rem;
}
.typography-leadBold:after {
    margin-top: -0.9rem;
}
.typography-leadBold {
    font-weight: 700;
}
.typography-bodyLarge {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-bodyLarge:after,
.typography-bodyLarge:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-bodyLarge:before {
    margin-bottom: -0.8rem;
}
.typography-bodyLarge:after {
    margin-top: -0.8rem;
}
.typography-bodyLarge {
    font-weight: 400;
}
.typography-bodyLargeBold {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-bodyLargeBold:after,
.typography-bodyLargeBold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-bodyLargeBold:before {
    margin-bottom: -0.8rem;
}
.typography-bodyLargeBold:after {
    margin-top: -0.8rem;
}
.typography-bodyLargeBold {
    font-weight: 700;
}
.typography-body {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-body:after,
.typography-body:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-body:before {
    margin-bottom: -0.7rem;
}
.typography-body:after {
    margin-top: -0.7rem;
}
.typography-body {
    font-weight: 400;
}
.typography-bodyBold {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-bodyBold:after,
.typography-bodyBold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-bodyBold:before {
    margin-bottom: -0.7rem;
}
.typography-bodyBold:after {
    margin-top: -0.7rem;
}
.typography-bodyBold {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    font-weight: 700;
}
.typography-caption {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
}
.typography-caption:after,
.typography-caption:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-caption:before {
    margin-bottom: -0.18rem;
}
.typography-caption:after {
    margin-top: -0.18rem;
}
.typography-caption {
    font-weight: 400;
}
.typography-captionBold {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.typography-captionBold:after,
.typography-captionBold:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.typography-captionBold:before {
    margin-bottom: -0.6rem;
}
.typography-captionBold:after {
    margin-top: -0.6rem;
}
.typography-captionBold {
    font-weight: 700;
}
.box-intro {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #fff;
    background: var(--color-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-justify-content: center;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 100vw;
    z-index: 103;
}
.box-intro.is-finished {
    opacity: 0;
    z-index: -10;
}
.box-intro__inner {
    max-width: 504px;
}
@media (max-width: 767px) {
    .box-intro__inner {
        max-width: 80%;
    }
}
.box-topAbout {
    overflow: hidden;
    position: relative;
}
.box-topAbout__textBox {
    margin-bottom: 133px;
    margin-inline: auto;
    max-width: 843px;
}
@media (max-width: 767px) {
    .box-topAbout__textBox {
        margin-bottom: 120px;
    }
}
.box-topAbout__heading {
    margin-bottom: 38px;
}
@media (max-width: 767px) {
    .box-topAbout__heading {
        margin-bottom: 39px;
    }
}
@media (max-width: 359px) {
    .box-topAbout__heading br:first-child {
        display: none;
    }
}
@media (min-width: 768px) {
    .box-topAbout__heading br:nth-child(2) {
        display: none;
    }
}
@media (min-width: 450px) and (max-width: 767px) {
    .box-topAbout__heading br:nth-child(2) {
        display: none;
    }
}
@media (max-width: 359px) {
    .box-topAbout__heading br:nth-child(2) {
        display: none;
    }
}
.box-topAbout__lead {
    padding-left: 2px;
}
@media (max-width: 767px) {
    .box-topAbout__lead {
        padding-left: 0;
        text-align: justify;
    }
}
@media (max-width: 359px) {
    .box-topAbout,
    .box-topService {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-topAbout,
    .box-topService {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-topAbout,
    .box-topService {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-topAbout,
    .box-topService {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-topAbout,
    .box-topService {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-topAbout,
    .box-topService {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-topAbout,
.box-topService {
    padding: 0 100px;
}
@media (max-width: 1023px) {
    .box-topAbout,
    .box-topService {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-topAbout,
    .box-topService {
        padding: 0 30px;
    }
}
.box-topNews {
    background: #303030;
    background: var(--color-text);
    border-radius: 10px 0 0 10px;
    bottom: -10px;
    color: #fff;
    color: var(--color-white);
    display: block;
    position: absolute;
    right: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media (min-width: 1024px) {
    .box-topNews:hover {
        opacity: 0.7;
        opacity: var(--opacity-base);
    }
}
@media (max-width: 1279px) {
    .box-topNews {
        margin: 0 0 0 auto;
        position: static;
    }
}
@media (max-width: 767px) {
    .box-topNews {
        max-width: calc(100% - 11px);
    }
}
.box-topNews__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 13px 32px 14px 48px;
}
@media (max-width: 767px) {
    .box-topNews__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 16px 11px 25px 19px;
    }
}
.box-topNews__heading {
    margin-right: 32px;
}
@media (max-width: 767px) {
    .box-topNews__heading {
        margin-bottom: 8px;
    }
}
.box-topNews__right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.box-topNews__img {
    height: 95px;
    margin-right: 16px;
    max-width: 168px;
    overflow: hidden;
    width: 168px;
}
@media (max-width: 767px) {
    .box-topNews__img {
        max-width: 118px;
        width: 100%;
    }
}
.box-topNews__textBox {
    max-width: 238px;
    padding-top: 3px;
}
.box-topNews__date {
    margin-bottom: 12px;
}
@media (max-width: 767px) {
    .box-topNews__date {
        margin-bottom: 11px;
    }
}
.box-topNews__title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin-bottom: 7px;
    overflow: hidden;
}
.box-topNews__title:after {
    display: none;
}
.box-topNews__arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 6px 0 auto;
    padding-right: 14px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.box-topNews__arrow:after {
    background: url(../img/common/icon-arrow-right-stroke-small.svg) no-repeat 50% /
        contain;
    content: "";
    display: inline-block;
    height: 8px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 3px;
    width: 5px;
}
.box-price {
    border: 4px solid #e9bda3;
    border: 4px solid var(--color-primary-light);
    border-radius: 12px;
    margin-inline: auto;
    padding: 0 60px 80px;
}
@media (min-width: 1280px) {
    .box-price {
        max-width: 1167px;
    }
}
@media (max-width: 1279px) {
    .box-price {
        max-width: calc(100% - 113px);
    }
}
@media (max-width: 1023px) {
    .box-price {
        border-left: none;
        border-radius: 0;
        border-right: none;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
.box-price__heading {
    background: #fff;
    background: var(--color-white);
    margin-inline: auto;
    text-align: center;
    -webkit-transform: translateY(-58px);
    -ms-transform: translateY(-58px);
    transform: translateY(-58px);
    width: 62.5%;
}
@media (min-width: 768px) {
    .box-price__heading {
        margin-bottom: 14px;
    }
}
@media (max-width: 1023px) {
    .box-price__heading {
        -webkit-transform: translateY(-78px);
        -ms-transform: translateY(-78px);
        transform: translateY(-78px);
        width: 83%;
    }
}
@media (max-width: 767px) {
    .box-price__heading {
        margin-bottom: -8px;
    }
}
@media (min-width: 768px) {
    .box-price__br {
        display: none;
    }
}
.box-price__top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 65px;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}
@media (max-width: 1023px) {
    .box-price__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-bottom: 54px;
    }
}
.box-price__top .list-topWork__more {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.3;
}
.box-price__top .list-topWork__more:after,
.box-price__top .list-topWork__more:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-price__top .list-topWork__more:before {
    margin-bottom: -0.21rem;
}
.box-price__top .list-topWork__more:after {
    margin-top: -0.21rem;
}
.box-price__top .list-topWork__more {
    bottom: 20px;
    height: 71px;
    position: absolute;
    right: 20px;
    width: 71px;
}
.box-price__link {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
@media (min-width: 1024px) {
    .box-price__link:hover ~ div .list-topWork__imgText {
        opacity: 1;
    }
}
.box-price__topWrapper {
    padding-top: 22px;
    width: calc(100% - 520px);
}
@media (max-width: 1023px) {
    .box-price__topWrapper {
        padding-left: 60px;
        padding-right: 60px;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .box-price__topWrapper {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }
}
.box-price__title {
    margin-bottom: 43px;
    padding-bottom: 12px;
    padding-left: 37px;
    position: relative;
}
@media (max-width: 767px) {
    .box-price__title {
        margin-bottom: 25px;
        padding-left: 32px;
    }
}
.box-price__title:before {
    background: #e9bda3;
    background: var(--color-primary-light);
    bottom: 0;
    display: block;
    height: 3px;
    position: absolute;
    right: 0;
    width: 100%;
}
@media (max-width: 1023px) {
    .box-price__title:before {
        -webkit-transform: translateX(60px);
        -ms-transform: translateX(60px);
        transform: translateX(60px);
        width: calc(100% + 60px);
    }
}
@media (max-width: 767px) {
    .box-price__title:before {
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
        width: calc(100% + 30px);
    }
}
.box-price__title:after {
    background: #e9bda3;
    background: var(--color-primary-light);
    border-radius: 100%;
    bottom: -9px;
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    width: 16px;
}
.box-price__dateTag {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 27px;
}
@media (min-width: 1024px) {
    .box-price__dateTag {
        padding-right: 36px;
    }
}
@media (max-width: 1023px) {
    .box-price__dateTag {
        margin-bottom: 21px;
    }
}
.box-price__date {
    margin-right: 19px;
}
.box-price__tag {
    z-index: 2;
}
@media (min-width: 1024px) {
    .box-price__articleTitle {
        padding-right: 36px;
    }
}
.box-price__imgBox {
    margin-inline: auto;
    position: relative;
}
@media (min-width: 1024px) {
    .box-price__imgBox {
        max-width: 520px;
    }
}
.box-price__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 56px;
}
@media (max-width: 767px) {
    .box-price__button {
        margin-top: 0;
    }
}
.box-fv {
    height: 234px;
    margin-inline: auto;
    max-width: 1280px;
    padding-left: 118px;
    position: relative;
}
@media (max-width: 1023px) {
    .box-fv {
        padding-left: 60px;
    }
}
@media (max-width: 767px) {
    .box-fv {
        height: 175px;
        padding-left: 40px;
    }
}
.box-fv__headingSub {
    background-color: #fff;
    background-color: var(--color-white);
    display: inline-block;
    margin-bottom: 13px;
    padding-top: 31px;
}
.box-fv__headingSub span {
    font-size: 4.6rem;
    letter-spacing: 0.02em;
    line-height: 2.02;
}
.box-fv__headingSub span:after,
.box-fv__headingSub span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-fv__headingSub span:before {
    margin-bottom: -2.346rem;
}
.box-fv__headingSub span:after {
    margin-top: -2.346rem;
}
.box-fv__headingSub span {
    -webkit-animation: fadeIn 1.5s;
    animation: fadeIn 1.5s;
    -webkit-animation: fadeIn var(--animation-duration-fadein);
    animation: fadeIn var(--animation-duration-fadein);
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
@media (max-width: 767px) {
    .box-fv__headingSub span {
        font-size: 3.6rem;
        letter-spacing: 0.02em;
        line-height: 2.02;
    }
    .box-fv__headingSub span:after,
    .box-fv__headingSub span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-fv__headingSub span:before {
        margin-bottom: -1.836rem;
    }
    .box-fv__headingSub span:after {
        margin-top: -1.836rem;
    }
    .box-fv__headingSub {
        margin-bottom: 11px;
        padding-top: 24px;
    }
}
.box-fv__heading {
    -webkit-animation: customBoxFvHeading 0.4s 0.4s forwards;
    animation: customBoxFvHeading 0.4s 0.4s forwards;
    -webkit-animation: customBoxFvHeading var(--animation-duration)
        var(--animation-duration) forwards;
    animation: customBoxFvHeading var(--animation-duration) var(--animation-duration)
        forwards;
    color: #303030;
    color: var(--color-text);
    margin-left: 2px;
    position: absolute;
    top: 58px;
    z-index: -1;
}
@media (max-width: 767px) {
    .box-fv__heading {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 2;
    }
    .box-fv__heading:after,
    .box-fv__heading:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-fv__heading:before {
        margin-bottom: -0.8rem;
    }
    .box-fv__heading:after {
        margin-top: -0.8rem;
    }
    .box-fv__heading {
        -webkit-animation: customBoxFvHeadingSp 0.4s 0.4s forwards;
        animation: customBoxFvHeadingSp 0.4s 0.4s forwards;
        -webkit-animation: customBoxFvHeadingSp var(--animation-duration)
            var(--animation-duration) forwards;
        animation: customBoxFvHeadingSp var(--animation-duration)
            var(--animation-duration) forwards;
        top: 43px;
    }
}
.box-fv:after {
    -webkit-animation: customScaleToRight 0.7s;
    animation: customScaleToRight 0.7s;
    -webkit-animation: customScaleToRight var(--animation-duration-slow);
    animation: customScaleToRight var(--animation-duration-slow);
    background-color: #000;
    background-color: var(--color-black);
    border-radius: 5px;
    content: "";
    height: 1px;
    position: absolute;
    right: 970px;
    top: 138px;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    width: 700px;
}
@media (max-width: 1279px) {
    .box-fv:after {
        left: 0;
        width: 320px;
    }
}
@media (max-width: 1023px) {
    .box-fv:after {
        width: 260px;
    }
}
@media (max-width: 767px) {
    .box-fv:after {
        top: 115px;
        width: 220px;
    }
}
@media (max-width: 359px) {
    .box-contact {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-contact {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-contact {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-contact {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-contact {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-contact {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-contact__inner {
    background-color: #fff9f5;
    background-color: var(--color-bg-orange);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
@media (min-width: 1024px) {
    .box-contact__inner:hover .button-contact:first-child {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    .box-contact__inner:hover .button-contact:nth-child(2) {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
@media (max-width: 767px) {
    .box-contact__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
}
.box-contact__imgBox {
    max-width: 365px;
}
@media (max-width: 767px) {
    .box-contact__imgBox {
        margin-top: 11px;
        max-width: 220.8px;
    }
}
.box-contact__textBox {
    padding-bottom: 50px;
    padding-right: 27px;
    padding-top: 66px;
}
@media (max-width: 767px) {
    .box-contact__textBox {
        padding-bottom: 50px;
        padding-left: 26px;
        padding-top: 0;
    }
}
.box-contact__heading {
    font-size: 2.3rem;
    letter-spacing: 0.03em;
    line-height: 2.02;
    margin-bottom: 41px;
    margin-left: 2px;
}
.box-contact__heading:after,
.box-contact__heading:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-contact__heading:before {
    margin-bottom: -1.173rem;
}
.box-contact__heading:after {
    margin-top: -1.173rem;
}
.box-contact__heading {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
}
@media (max-width: 767px) {
    .box-contact__heading {
        font-size: 2rem;
        letter-spacing: 0.03em;
        line-height: 2.02;
    }
    .box-contact__heading:after,
    .box-contact__heading:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-contact__heading:before {
        margin-bottom: -1.02rem;
    }
    .box-contact__heading:after {
        margin-top: -1.02rem;
    }
    .box-contact__heading {
        margin-bottom: 20px;
        margin-left: 0;
    }
}
.box-contact__text {
    margin-bottom: 41px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-contact__text {
        font-size: 2.7rem;
    }
}
@media (max-width: 767px) {
    .box-contact__text {
        margin-bottom: 36px;
    }
}
.box-contact__button {
    background: #e35535;
    background: var(--color-primary);
    border-radius: 78px;
    height: 62px;
    margin-left: 2px;
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-transform 0.7s;
    transition: -webkit-transform 0.7s;
    transition: transform 0.7s;
    transition: transform 0.7s, -webkit-transform 0.7s;
    -webkit-transition: -webkit-transform var(--animation-duration-slow);
    transition: -webkit-transform var(--animation-duration-slow);
    transition: transform var(--animation-duration-slow);
    transition: transform var(--animation-duration-slow),
        -webkit-transform var(--animation-duration-slow);
    width: 238px;
}
@media (max-width: 1279px) {
    .box-contact__button {
        margin: 2px auto 0;
    }
}
@media (max-width: 767px) {
    .box-contact__button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        margin-left: 0;
    }
}
@media (max-width: 359px) {
    .box-contact__button {
        margin-left: 0;
        width: 100%;
    }
}
.box-contact__button .button-contact:nth-child(2) {
    background-color: #fff;
    background-color: var(--color-white);
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.box-contact__button .button-contact:nth-child(2) span {
    color: #e35535;
    color: var(--color-primary);
}
.box-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3px 0;
}
@media (max-width: 1023px) {
    .box-news {
        gap: 56px 0;
    }
}
.box-news__wrapper {
    margin: -8.8px auto 0;
    max-width: 1280px;
    padding: 0 200px;
}
@media (max-width: 1023px) {
    .box-news__wrapper {
        margin-top: 0;
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-news__wrapper {
        margin-bottom: 58px;
        margin-top: 12px;
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-newsDetail {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-newsDetail {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-newsDetail {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-newsDetail {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-newsDetail {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-newsDetail {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-newsDetail {
    margin: 20px auto 0;
    padding: 0 220px;
}
@media (max-width: 1023px) {
    .box-newsDetail {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-newsDetail {
        margin: 18px 0 0;
        padding: 0 30px;
    }
}
.box-newsDetail__title {
    margin: 48px 0 45px;
}
@media (max-width: 767px) {
    .box-newsDetail__title {
        margin: 38px 0 48px;
    }
}
.box-newsDetail__imgBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 58px 0 67px;
}
.box-newsDetail__item-img {
    max-width: 700px;
}
@media (max-width: 1023px) {
    .box-newsDetail__item-img {
        width: 100%;
    }
}
.box-newsDetail__btnBox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 130px 0 48px;
    padding: 0 113px;
}
@media (max-width: 767px) {
    .box-newsDetail__btnBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 31px;
    }
}
.box-newsDetail__btn {
    width: 350px;
}
@media (max-width: 767px) {
    .box-newsDetail__btn {
        width: 265px;
    }
}
.box-newsDetail__btn .btn-textBox {
    width: 350px;
}
@media (max-width: 767px) {
    .box-newsDetail__btn .btn-textBox {
        width: 265px;
    }
}
.box-newsDetail__btn .btn-textBox__title {
    margin-bottom: 22px;
}
.box-newsDetail__hr {
    border-left: 1px solid #000;
    height: 50px;
}
@media (max-width: 767px) {
    .box-newsDetail__hr {
        border: none;
    }
}
.box-newsDetail__iconBox {
    height: 38px;
    width: 38px;
}
.box-newsDetail .is-text {
    margin-top: 30px;
}
.box-newsDetail__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.box-newsDetail__content p:after,
.box-newsDetail__content p:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-newsDetail__content p:before {
    margin-bottom: -0.7rem;
}
.box-newsDetail__content p:after {
    margin-top: -0.7rem;
}
.box-newsDetail__content p {
    font-weight: 400;
    word-break: break-all;
}
@media (max-width: 767px) {
    .box-newsDetail__content p {
        text-align: justify;
    }
}
.box-newsDetail__content p + p {
    margin-top: 30px;
}
.box-newsDetail__content p.is-img img {
    margin-bottom: 66px;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .box-newsDetail__content p.is-img img {
        margin-bottom: 67px;
        margin-top: 58px;
    }
}
.box-newsDetail__content p.is-img:after,
.box-newsDetail__content p.is-img:before {
    display: none;
}
.box-newsDetail__content p.is-iframe {
    height: 0%;
    margin-bottom: 70px;
    margin-top: 60px;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}
.box-newsDetail__content p.is-iframe iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.box-newsDetail__content p.is-iframe:after,
.box-newsDetail__content p.is-iframe:before {
    display: none;
}
.box-newsDetail__content h2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.box-newsDetail__content h2:after,
.box-newsDetail__content h2:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-newsDetail__content h2:before {
    margin-bottom: -1.12rem;
}
.box-newsDetail__content h2:after {
    margin-top: -1.12rem;
}
.box-newsDetail__content h2 {
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .box-newsDetail__content h2.is-sp {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        line-height: 1.8;
    }
    .box-newsDetail__content h2.is-sp:after,
    .box-newsDetail__content h2.is-sp:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-newsDetail__content h2.is-sp:before {
        margin-bottom: -0.96rem;
    }
    .box-newsDetail__content h2.is-sp:after {
        margin-top: -0.96rem;
    }
}
.box-newsDetail__content h2 + p {
    margin-top: 25px !important;
}
.box-newsDetail__content h3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.box-newsDetail__content h3:after,
.box-newsDetail__content h3:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-newsDetail__content h3:before {
    margin-bottom: -0.5rem;
}
.box-newsDetail__content h3:after {
    margin-top: -0.5rem;
}
.box-newsDetail__content h3 {
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 60px;
}
.box-newsDetail__content h3 + p {
    margin-top: 25px !important;
}
.box-newsDetail__content h4 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.box-newsDetail__content h4:after,
.box-newsDetail__content h4:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-newsDetail__content h4:before {
    margin-bottom: -0.45rem;
}
.box-newsDetail__content h4:after {
    margin-top: -0.45rem;
}
.box-newsDetail__content h4 {
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 60px;
}
.box-newsDetail__content h4 + p {
    margin-top: 25px !important;
}
.box-newsDetail__content b,
.box-newsDetail__content strong {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.box-newsDetail__content b:after,
.box-newsDetail__content b:before,
.box-newsDetail__content strong:after,
.box-newsDetail__content strong:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-newsDetail__content b:before,
.box-newsDetail__content strong:before {
    margin-bottom: -0.7rem;
}
.box-newsDetail__content b:after,
.box-newsDetail__content strong:after {
    margin-top: -0.7rem;
}
.box-newsDetail__content b,
.box-newsDetail__content strong {
    display: inline-block;
    font-weight: 700;
}
.box-newsDetail__content b:after,
.box-newsDetail__content b:before,
.box-newsDetail__content strong:after,
.box-newsDetail__content strong:before {
    display: none;
}
.box-newsDetail__content img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 60px auto 70px;
    max-width: 700px;
    width: 100%;
}
.box-newsDetail__content iframe {
    width: 100%;
}
.box-newsDetail__content ol {
    counter-reset: count 0;
    margin: 30px 0;
}
.box-newsDetail__content ol li {
    padding-left: 16px;
    position: relative;
}
.box-newsDetail__content ol li:not(:last-of-type) {
    margin-bottom: 16px;
}
.box-newsDetail__content ol li:before {
    content: counter(count) ".";
    counter-increment: count 1;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 1px;
}
.box-newsDetail__content ul {
    margin: 30px 0;
}
.box-newsDetail__content ul li {
    padding-left: 16px;
    position: relative;
}
.box-newsDetail__content ul li:not(:last-of-type) {
    margin-bottom: 16px;
}
.box-newsDetail__content ul li:before {
    background: #303030;
    background: var(--color-text);
    border-radius: 1px;
    content: "";
    display: inline-block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 6px;
}
.box-newsDetail__content a {
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .box-newsDetail__content a:hover {
        text-decoration: none;
    }
}
.box-newsDetail__content table {
    margin-top: 30px;
}
.box-newsDetail__content table,
.box-newsDetail__content td,
.box-newsDetail__content tr {
    border: 1px solid #303030;
    border: 1px solid var(--color-text);
}
.box-newsDetail__content td,
.box-newsDetail__content tr {
    padding: 6px 13px;
    vertical-align: middle;
}
.box-newsDetailLinks__links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto 48px;
    max-width: 1280px;
    padding: 0 177px;
    position: relative;
}
@media (max-width: 1023px) {
    .box-newsDetailLinks__links {
        padding: 0 100px;
    }
}
@media (max-width: 767px) {
    .box-newsDetailLinks__links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 62px;
        margin-bottom: 60px;
        padding: 0 63.5px;
    }
}
.box-newsDetailLinks__links:after {
    background-color: #000;
    background-color: var(--color-black);
    content: "";
    height: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
}
@media (max-width: 767px) {
    .box-newsDetailLinks__links:after {
        display: none;
    }
}
.box-newsDetailLinks__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 10px;
}
@media (max-width: 767px) {
    .box-newsDetailLinks__button {
        margin-left: 0;
    }
}
.box-newsBtn {
    height: 38px;
    width: 38px;
}
@media (max-width: 359px) {
    .box-aboutMv {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-aboutMv {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-aboutMv {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-aboutMv {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-aboutMv {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-aboutMv {
        margin: 0 auto;
        max-width: 1280px;
        padding: 0 280px;
    }
}
.box-aboutMv__heading {
    margin-bottom: 70px;
    text-align: center;
}
@media (max-width: 767px) {
    .box-aboutMv__heading {
        margin-bottom: 51px;
    }
}
.box-aboutMv__img {
    display: block;
    margin-bottom: 30px;
    padding: 0 56px;
}
@media (max-width: 767px) {
    .box-aboutMv__img {
        margin-bottom: 32px;
        padding: 0;
    }
}
.box-aboutMv__text {
    text-align: justify;
}
@media (max-width: 359px) {
    .box-aboutService {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-aboutService {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-aboutService {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-aboutService {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-aboutService {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-aboutService {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-aboutService__heading {
    margin-bottom: 98px;
}
@media (max-width: 767px) {
    .box-aboutService__heading {
        letter-spacing: 0.019rem !important;
        margin-bottom: 79px;
        text-align: justify;
    }
}
.box-aboutService__list {
    margin-bottom: 70px;
    position: relative;
}
@media (max-width: 1279px) {
    .box-aboutService__list {
        margin: 0 auto;
        max-width: 670px;
    }
}
@media (min-width: 450px) and (max-width: 767px) {
    .box-aboutService__list {
        margin: 0 auto;
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .box-aboutService__list {
        margin-bottom: 73px;
        max-width: 300px;
        padding-left: 22px;
    }
}
.box-aboutService__listBack {
    left: 0;
    position: absolute;
    top: 41px;
}
@media (max-width: 1279px) {
    .box-aboutService__listBack {
        left: 2px;
        top: 0;
    }
}
@media (max-width: 767px) {
    .box-aboutService__listBack {
        left: -2px;
        top: 0;
    }
}
.box-aboutService__circle {
    background: #e35535;
    background: var(--color-primary);
    border-radius: 50%;
    height: 18px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 18px;
}
@media (max-width: 1279px) {
    .box-aboutService__circle {
        left: -2px;
    }
}
@media (max-width: 767px) {
    .box-aboutService__circle {
        left: 2px;
    }
}
.box-aboutService__text {
    display: inline-block;
    margin-right: 57px;
    max-width: 520px;
    position: relative;
}
@media (max-width: 1279px) {
    .box-aboutService__text {
        margin-bottom: 72px;
        margin-right: 0;
        max-width: 100%;
        text-align: justify;
    }
}
.box-aboutService__button {
    display: inline-block;
    -webkit-transform: translateY(-13px);
    -ms-transform: translateY(-13px);
    transform: translateY(-13px);
}
@media (max-width: 1279px) {
    .box-aboutService__button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.box-aboutServiceBack {
    left: 0;
    position: absolute;
    top: 41px;
    width: 686px;
}
@media (max-width: 1279px) {
    .box-aboutServiceBack {
        height: 436px;
        top: 0;
        width: 4px;
    }
}
@media (max-width: 767px) {
    .box-aboutServiceBack {
        height: 604px;
        top: 0;
        width: 4px;
    }
}
.box-aboutServiceBack__cover {
    background: #fff;
    height: 314px;
    width: 100%;
}
.box-aboutServiceBack__imgWrap {
    height: 321px;
    overflow: hidden;
    position: relative;
    width: 686px;
}
@media (max-width: 1279px) {
    .box-aboutServiceBack__imgWrap {
        height: 436px;
        left: 0;
        overflow: hidden;
        position: absolute;
        right: unset;
        top: 0;
        width: 4px;
    }
}
@media (max-width: 767px) {
    .box-aboutServiceBack__imgWrap {
        height: 604px;
        left: 0;
        overflow: hidden;
        position: absolute;
        right: unset;
        top: 0;
        width: 4px;
    }
}
.box-aboutServiceBack__img {
    height: 321px;
    left: 0;
    position: absolute;
    top: 0;
    width: 686px;
}
@media (max-width: 1279px) {
    .box-aboutServiceBack__img {
        height: 436px;
        position: absolute;
        right: 0;
        top: 0;
        width: 4px;
    }
}
@media (max-width: 767px) {
    .box-aboutServiceBack__img {
        height: 604px;
        position: absolute;
        right: 0;
        top: 0;
        width: 4px;
    }
}
.box-aboutServiceBack__img2Wrap {
    height: 321px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    width: 686px;
}
@media (max-width: 1279px) {
    .box-aboutServiceBack__img2Wrap {
        bottom: 0;
        height: 436px;
        left: 0;
        overflow: hidden;
        position: absolute;
        top: unset;
        width: 4px;
    }
}
@media (max-width: 767px) {
    .box-aboutServiceBack__img2Wrap {
        bottom: 0;
        height: 604px;
        left: 0;
        overflow: hidden;
        position: absolute;
        top: unset;
        width: 4px;
    }
}
.box-aboutServiceBack__img2 {
    height: 311px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    width: 686px;
}
.box-aboutServiceBack__img2 img {
    height: 100%;
}
@media (max-width: 1279px) {
    .box-aboutServiceBack__img2 img {
        height: auto;
    }
    .box-aboutServiceBack__img2 {
        bottom: 0;
        height: 440px;
        left: 0;
        position: absolute;
        top: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        width: 4px;
    }
}
@media (max-width: 767px) {
    .box-aboutServiceBack__img2 {
        bottom: 0;
        height: 608px;
        left: 0;
        position: absolute;
        top: unset;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        width: 4px;
    }
}
@media (max-width: 359px) {
    .box-aboutCompany {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-aboutCompany {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-aboutCompany {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-aboutCompany {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-aboutCompany {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-aboutCompany {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-aboutCompany {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 110px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
@media (max-width: 1279px) {
    .box-aboutCompany {
        gap: 40px;
    }
}
@media (max-width: 767px) {
    .box-aboutCompany {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 48px;
    }
}
.box-aboutCompany__heading {
    margin-top: 4px;
    min-width: 140px;
}
.box-serviceList__headingPrimary {
    margin: 6px auto 120px;
    max-width: 1280px;
    padding-left: 120px;
}
@media (max-width: 1023px) {
    .box-serviceList__headingPrimary {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceList__headingPrimary {
        margin-bottom: 90px;
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-serviceList__headingPrimary {
        padding: 0 20px;
    }
}
.box-serviceList__inner {
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 219px;
    padding-right: 220px;
}
@media (max-width: 1023px) {
    .box-serviceList__inner {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceList__inner {
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-serviceList__inner {
        padding: 0 20px;
    }
}
.box-serviceList__col1 {
    display: grid;
    margin-bottom: 120px;
    row-gap: 82px;
}
@media (max-width: 767px) {
    .box-serviceList__col1 {
        margin-bottom: 76px;
        row-gap: 75px;
    }
}
.box-serviceList__col2 {
    -webkit-column-gap: 54px;
    -moz-column-gap: 54px;
    column-gap: 54px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 86px;
}
@media (max-width: 767px) {
    .box-serviceList__col2 {
        grid-template-columns: none;
        row-gap: 78px;
    }
}
@media (min-width: 1024px) {
    .box-service:hover .link-primary {
        -webkit-animation: customToRight 0.4s 0.2s forwards;
        animation: customToRight 0.4s 0.2s forwards;
        -webkit-animation: customToRight var(--animation-duration)
            var(--animation-duration-fast) forwards;
        animation: customToRight var(--animation-duration) var(--animation-duration-fast)
            forwards;
    }
    .box-service:hover .link-primary span {
        -webkit-animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        -webkit-animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
        animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
    }
    .box-service:hover .link-primary:before {
        -webkit-animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards,
            customBgColorChangeToPrimary 0.2s 0.2s forwards;
        animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards,
            customBgColorChangeToPrimary 0.2s 0.2s forwards;
        -webkit-animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards,
            customBgColorChangeToPrimary var(--animation-duration-fast)
                var(--animation-duration-fast) forwards;
        animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards,
            customBgColorChangeToPrimary var(--animation-duration-fast)
                var(--animation-duration-fast) forwards;
    }
    .box-service:hover .link-primary:after {
        -webkit-animation: fadeOut 0.4s forwards;
        animation: fadeOut 0.4s forwards;
        -webkit-animation: fadeOut var(--animation-duration) forwards;
        animation: fadeOut var(--animation-duration) forwards;
    }
}
.box-service:nth-child(2n) .box-service__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
@media (max-width: 767px) {
    .box-service:nth-child(2n) .box-service__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
.box-service__wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 34px;
}
@media (max-width: 1279px) {
    .box-service__wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .box-service__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 18px;
    }
}
.box-service__img {
    max-width: 300px;
    min-width: 300px;
}
@media (max-width: 767px) {
    .box-service__img {
        max-width: 240px;
        min-width: 240px;
    }
}
.box-service__headingSub {
    color: #a1a1a1;
    color: var(--color-text-gray);
    display: block;
    margin-bottom: 12px;
}
.box-service__heading {
    margin-bottom: 16px;
}
.box-service__tagBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 9px;
    margin-bottom: 41px;
}
@media (max-width: 767px) {
    .box-service__tagBox {
        margin-bottom: 30px;
    }
}
.box-service__text {
    margin-bottom: 48px;
}
@media (max-width: 767px) {
    .box-service__text {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        margin-bottom: 26px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.box-service .is-text {
    display: block;
    margin-bottom: 16px;
}
@media (max-width: 767px) {
    .box-service .is-text {
        display: initial;
    }
}
.box-service.is-noPic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.box-service.is-noPic:nth-child(3) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.box-service__link {
    width: 95px;
}
.box-newProjectLinks {
    background-color: #f8f8f8;
    background-color: var(--color-bg-gray-light);
    padding: 95px 0;
}
@media (max-width: 359px) {
    .box-newProjectLinks__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-newProjectLinks__inner {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-newProjectLinks__inner {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-newProjectLinks__inner {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-newProjectLinks__inner {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-newProjectLinks__inner {
        margin: 0 auto;
        max-width: 1280px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-newProjectLinks__inner {
        padding: 0 60px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-newProjectLinks__inner {
        padding: 0 30px;
    }
    .box-newProjectLinks__inner .tag-primary span {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .box-newProjectLinks__inner {
        padding: 0 30px;
    }
}
.box-newProjectLinks__heading {
    margin-bottom: 37px;
}
@media (max-width: 767px) {
    .box-newProjectLinks__heading {
        margin-bottom: 40px;
    }
}
.box-member {
    background: rgba(0, 0, 0, 0.2);
    cursor: auto;
    height: calc(100% - 80px);
    left: 0;
    opacity: 0;
    position: fixed;
    top: 80px;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
    -webkit-transition: opacity var(--animation-duration),
        visibility var(--animation-duration);
    transition: opacity var(--animation-duration), visibility var(--animation-duration);
    visibility: hidden;
    width: 100%;
    z-index: 100;
}
@media (max-width: 767px) {
    .box-member {
        height: calc(100% - 70px);
        top: 70px;
    }
}
.box-member.is-active {
    opacity: 1;
    visibility: visible;
}
.box-member.is-close {
    opacity: 0;
    visibility: hidden;
}
.box-member__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    width: 100%;
}
@media (max-width: 767px) {
    .box-member__inner {
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        padding-top: 33px;
    }
}
.box-member__modal {
    background: #fff;
    background: var(--color-white);
    border-radius: 12px;
    height: 100%;
    max-height: 631px;
    padding: 55px 25px 7px 64px;
    position: relative;
    width: 650px;
}
@media (max-width: 767px) {
    .box-member__modal {
        max-height: 515px;
        padding: 0 20px 25px 30px;
        width: 100%;
    }
}
.box-member__modalScrollInner {
    height: calc(100% - 150px);
    overflow-y: scroll;
    position: relative;
}
@media (max-width: 767px) {
    .box-member__modalScrollInner {
        height: calc(100% - 138px);
        margin-top: 42px;
        position: relative;
        width: 100%;
    }
}
.box-member__modalInner {
    padding-bottom: 68px;
    padding-right: 30px;
}
@media (max-width: 767px) {
    .box-member__modalInner {
        padding-bottom: 76px;
        padding-right: 27px;
    }
}
.box-member__blurElement:after {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0)),
        to(#fff)
    );
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #fff);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #fff);
    background: var(--color-blur);
    bottom: 24px;
    content: "";
    height: 40px;
    position: absolute;
    width: calc(100% - 112px);
    z-index: 1;
}
@media (max-width: 767px) {
    .box-member__blurElement:after {
        width: calc(100% - 76px);
    }
}
.box-member__name {
    margin-bottom: 58px;
    margin-top: 54px;
}
@media (max-width: 767px) {
    .box-member__name {
        margin-bottom: 43px;
    }
}
.box-member__name span {
    display: inline-block;
    margin-left: 13px;
}
@media (max-width: 767px) {
    .box-member__name span {
        display: block;
        margin-left: 0;
        margin-top: 9px;
    }
}
.box-member__title {
    margin-bottom: 24px;
}
@media (max-width: 767px) {
    .box-member__title {
        margin-bottom: 20px;
    }
}
.box-member__body {
    margin-bottom: 70px;
    text-align: justify;
}
.box-member__license {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.box-member__license:after,
.box-member__license:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-member__license:before {
    margin-bottom: -0.6rem;
}
.box-member__license:after {
    margin-top: -0.6rem;
}
.box-member__license {
    font-weight: 400;
}
.box-member__close {
    background: url(../img/member/icon-close.svg) no-repeat 50% / contain;
    display: block;
    height: 25px;
    position: absolute;
    right: 35px;
    top: 35px;
    width: 25px;
}
@media (max-width: 767px) {
    .box-member__close {
        right: 30px;
        top: 30px;
    }
}
@media (max-width: 359px) {
    .box-workDetail__headingBox {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-workDetail__headingBox {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-workDetail__headingBox {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-workDetail__headingBox {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-workDetail__headingBox {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-workDetail__headingBox {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-workDetail__headingBox {
    margin-bottom: 68px;
    margin-top: 14px;
}
@media (max-width: 767px) {
    .box-workDetail__headingBox {
        margin-bottom: 54px;
    }
}
.box-workDetail__dateTagBox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 42px;
}
@media (max-width: 767px) {
    .box-workDetail__dateTagBox {
        margin-bottom: 22px;
    }
}
@media (max-width: 359px) {
    .box-workDetail__leadBox {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-workDetail__leadBox {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-workDetail__leadBox {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-workDetail__leadBox {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-workDetail__leadBox {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-workDetail__leadBox {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-workDetail__leadBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 67px;
    margin-bottom: 126px;
    padding-right: 0;
}
@media (max-width: 1023px) {
    .box-workDetail__leadBox {
        gap: 60px;
    }
}
@media (max-width: 767px) {
    .box-workDetail__leadBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 60px;
        margin-bottom: 85px;
        padding: 0;
    }
}
.box-workDetail__leadBox img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 690px;
}
@media (max-width: 1279px) {
    .box-workDetail__leadBox img {
        height: 100%;
        max-width: 450px;
    }
}
@media (max-width: 1023px) {
    .box-workDetail__leadBox img {
        max-width: 300px;
    }
}
@media (max-width: 767px) {
    .box-workDetail__leadBox img {
        max-width: 100%;
    }
}
.box-workDetail__excerpt {
    margin-top: 4px;
    max-width: 403px;
}
@media (max-width: 1023px) {
    .box-workDetail__excerpt {
        max-width: none;
    }
}
@media (max-width: 767px) {
    .box-workDetail__excerpt {
        margin-top: 0;
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-workDetail__excerpt {
        padding: 0 20px;
    }
}
.box-workDetail__list {
    margin-bottom: 265px;
    position: relative;
}
@media (max-width: 767px) {
    .box-workDetail__list {
        margin-bottom: 200px;
    }
}
.box-workDetail__list:after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="106" height="6" fill="none"><path d="M3 3h100" stroke="%23303030" stroke-width="6" stroke-linecap="round"/></svg>');
    bottom: -130px;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    translate: -50%;
    width: 106px;
}
@media (max-width: 767px) {
    .box-workDetail__list:after {
        bottom: -104px;
    }
}
@media (max-width: 359px) {
    .box-workDetail__content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-workDetail__content {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-workDetail__content {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-workDetail__content {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-workDetail__content {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-workDetail__content {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-workDetail__content {
    margin-bottom: 66px;
    padding: 0 220px;
}
@media (max-width: 1023px) {
    .box-workDetail__content {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-workDetail__content {
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-workDetail__content {
        padding: 0 20px;
    }
}
.box-workDetail__content h2 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.box-workDetail__content h2:after,
.box-workDetail__content h2:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-workDetail__content h2:before {
    margin-bottom: -1.12rem;
}
.box-workDetail__content h2:after {
    margin-top: -1.12rem;
}
.box-workDetail__content h2 {
    font-weight: 700;
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .box-workDetail__content h2 {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        line-height: 1.8;
    }
    .box-workDetail__content h2:after,
    .box-workDetail__content h2:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-workDetail__content h2:before {
        margin-bottom: -0.96rem;
    }
    .box-workDetail__content h2:after {
        margin-top: -0.96rem;
    }
}
.box-workDetail__content h3 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.box-workDetail__content h3:after,
.box-workDetail__content h3:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-workDetail__content h3:before {
    margin-bottom: -0.5rem;
}
.box-workDetail__content h3:after {
    margin-top: -0.5rem;
}
.box-workDetail__content h3 {
    font-weight: 700;
    margin-bottom: 25px;
}
.box-workDetail__content h4 {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.box-workDetail__content h4:after,
.box-workDetail__content h4:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-workDetail__content h4:before {
    margin-bottom: -0.9rem;
}
.box-workDetail__content h4:after {
    margin-top: -0.9rem;
}
.box-workDetail__content h4 {
    font-weight: 700;
    margin-bottom: 25px;
}
.box-workDetail__content h2,
.box-workDetail__content h3,
.box-workDetail__content h4 {
    margin-top: 60px;
}
.box-workDetail__content .is-img {
    width: 100% !important;
}
.box-workDetail__content .is-img + .is-img,
.box-workDetail__content .is-img + h2,
.box-workDetail__content .is-img + h3,
.box-workDetail__content .is-img + h4,
.box-workDetail__content .is-img + p {
    margin-top: 70px;
}
.box-workDetail__content .is-img img {
    display: block;
    margin: 60px auto 70px;
    max-width: 700px;
    -o-object-fit: cover;
    object-fit: cover;
    width: auto;
}
.box-workDetail__content .is-img img + br + img {
    margin-top: 0;
}
@media (max-width: 1279px) {
    .box-workDetail__content .is-img img {
        max-width: 500px;
    }
}
@media (max-width: 767px) {
    .box-workDetail__content .is-img img {
        max-width: 100%;
    }
}
.box-workDetail__content .is-img:after,
.box-workDetail__content .is-img:before {
    display: none;
}
.box-workDetail__content .wp-caption {
    margin-inline: auto;
    max-width: 700px;
}
.box-workDetail__content .wp-caption img {
    margin-bottom: 10px;
    width: 100%;
}
.box-workDetail__content .wp-caption + .is-img,
.box-workDetail__content .wp-caption + br + .wp-caption img,
.box-workDetail__content .wp-caption + h2,
.box-workDetail__content .wp-caption + h3,
.box-workDetail__content .wp-caption + h4,
.box-workDetail__content .wp-caption + p {
    margin-top: 0;
}
.box-workDetail__content .wp-caption-text {
    display: block;
    margin: 0 auto 70px;
    max-width: 700px;
    min-width: 700px;
}
@media (max-width: 1279px) {
    .box-workDetail__content .wp-caption-text {
        max-width: 500px;
        min-width: 500px;
    }
}
@media (max-width: 767px) {
    .box-workDetail__content .wp-caption-text {
        max-width: 100%;
        min-width: 0;
    }
}
.box-workDetail__content .card {
    border: 2px solid #303030;
    border: 2px solid var(--color-text);
    margin: 26px 0;
    padding: 19px 26px;
}
.box-workDetail__content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.box-workDetail__content p:after,
.box-workDetail__content p:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-workDetail__content p:before {
    margin-bottom: -0.7rem;
}
.box-workDetail__content p:after {
    margin-top: -0.7rem;
}
.box-workDetail__content p {
    font-weight: 400;
}
.box-workDetail__content p + p {
    margin-top: 30px;
}
.box-workDetail__content p + .is-img {
    margin-top: 60px;
}
.box-workDetail__content b,
.box-workDetail__content b *,
.box-workDetail__content strong,
.box-workDetail__content strong * {
    font-weight: 700;
}
.box-workDetail__content iframe {
    width: 100%;
}
.box-workDetail__content video {
    margin: 60px auto 70px;
}
.box-workDetail__content ol {
    counter-reset: count 0;
    margin: 30px 0;
}
.box-workDetail__content ol li {
    padding-left: 16px;
    position: relative;
}
.box-workDetail__content ol li:not(:last-of-type) {
    margin-bottom: 16px;
}
.box-workDetail__content ol li:before {
    content: counter(count) ".";
    counter-increment: count 1;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 1px;
}
.box-workDetail__content ul {
    margin: 30px 0;
}
.box-workDetail__content ul li {
    padding-left: 16px;
    position: relative;
}
.box-workDetail__content ul li:not(:last-of-type) {
    margin-bottom: 16px;
}
.box-workDetail__content ul li:before {
    background: #303030;
    background: var(--color-text);
    border-radius: 1px;
    content: "";
    display: inline-block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 6px;
}
.box-workDetail__content a {
    text-decoration: underline;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
}
@media (min-width: 1024px) {
    .box-workDetail__content a:hover {
        opacity: 0.7;
        opacity: var(--opacity-base);
        text-decoration: none;
    }
}
.box-workDetail__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 60px;
}
.box-serviceFeatures {
    position: relative;
}
.box-serviceFeatures__subHeading {
    display: block;
    margin-bottom: 35px;
    padding-left: 100px;
}
@media (max-width: 767px) {
    .box-serviceFeatures__subHeading {
        margin-bottom: 22px;
        padding-left: 0;
    }
}
.box-serviceFeatures__heading {
    background-color: #fff;
    background-color: var(--color-white);
    left: 70px;
    position: absolute;
    text-align: center;
    top: 40px;
    width: 273px;
}
@media (max-width: 767px) {
    .box-serviceFeatures__heading {
        left: -8px;
        top: 33px;
        width: 203px;
    }
}
.box-serviceFeatures__list {
    border: 4px solid #e9bda3;
    border: 4px solid var(--color-primary-light);
    border-radius: 30px;
    padding: 86px 86px 77px;
    position: relative;
    z-index: -1;
}
@media (max-width: 767px) {
    .box-serviceFeatures__list {
        border: none;
        padding: 75px 0 70px;
    }
    .box-serviceFeatures__list:after,
    .box-serviceFeatures__list:before {
        background-color: #e9bda3;
        background-color: var(--color-primary-light);
        content: "";
        height: 4px;
        left: 0;
        position: absolute;
        translate: -50%;
        width: 200vw;
        z-index: -1;
    }
    .box-serviceFeatures__list:before {
        top: 2px;
    }
    .box-serviceFeatures__list:after {
        bottom: 0;
    }
}
.box-serviceFeatures__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
@media (max-width: 767px) {
    .box-serviceFeatures__item {
        gap: 20px;
    }
}
.box-serviceFeatures__item:before {
    background: url(../img/common/icon-bulb.svg) no-repeat 50% / contain;
    content: "";
    min-height: 34px;
    min-width: 34px;
}
.box-serviceFeatures__item:not(:last-child) {
    margin-bottom: 46px;
}
@media (max-width: 767px) {
    .box-serviceFeatures__item:not(:last-child) {
        margin-bottom: 37px;
    }
}
.box-serviceFeatures__item span {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.box-serviceFeatures__item span:after,
.box-serviceFeatures__item span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.box-serviceFeatures__item span:before {
    margin-bottom: -0.92rem;
}
.box-serviceFeatures__item span:after {
    margin-top: -0.92rem;
}
.box-serviceFeatures__item span {
    display: block;
    font-weight: 700;
}
@media (max-width: 767px) {
    .box-serviceFeatures__item span {
        font-size: 2rem;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }
    .box-serviceFeatures__item span:after,
    .box-serviceFeatures__item span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-serviceFeatures__item span:before {
        margin-bottom: -0.6rem;
    }
    .box-serviceFeatures__item span:after {
        margin-top: -0.6rem;
    }
}
@media (max-width: 359px) {
    .box-otherServices {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-otherServices {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-otherServices {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-otherServices {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-otherServices {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-otherServices {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-otherServices {
    padding: 0 125px;
}
@media (max-width: 1023px) {
    .box-otherServices {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-otherServices {
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .box-otherServices {
        padding: 0 20px;
    }
}
.box-otherServices__heading {
    margin-bottom: 80px;
}
@media (max-width: 767px) {
    .box-otherServices__heading {
        margin-bottom: 47px;
    }
}
.box-otherServices__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 47px 42px;
    margin-bottom: 63px;
    padding: 0 10px;
}
@media (max-width: 767px) {
    .box-otherServices__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 33px;
    }
}
.box-otherServices__item {
    display: inline-block;
}
.box-otherServices__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: 10px;
}
@media (max-width: 767px) {
    .box-otherServices__button {
        margin-left: 0;
    }
}
.box-serviceDetailLead {
    padding: 0 100px;
}
@media (max-width: 1023px) {
    .box-serviceDetailLead {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceDetailLead {
        padding: 0;
    }
}
.box-serviceDetailLead__headingPrimary {
    margin-bottom: 28px;
    text-align: center;
}
@media (max-width: 767px) {
    .box-serviceDetailLead__headingPrimary {
        margin-bottom: 26px;
    }
}
.box-serviceDetailLead__tagBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.box-serviceDetailLead__tagList {
    margin-bottom: 52px;
}
@media (max-width: 767px) {
    .box-serviceDetailLead__tagList {
        margin-bottom: 71px;
    }
}
.box-serviceDetailLead__iconBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.box-serviceDetailLead__iconList {
    margin-bottom: 89px;
}
@media (max-width: 767px) {
    .box-serviceDetailLead__iconList {
        margin-bottom: 75px;
    }
}
.box-serviceDetailForm {
    margin-inline: auto;
    max-width: 1280px;
    padding-left: 100px;
    padding-right: 74px;
}
@media (max-width: 1023px) {
    .box-serviceDetailForm {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceDetailForm {
        padding: 0;
    }
}
.box-serviceDetailForm__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 85px;
}
@media (max-width: 767px) {
    .box-serviceDetailForm__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
}
.box-serviceDetailForm__textBox {
    min-width: 250px;
}
.box-serviceDetailForm__subHeading {
    display: block;
    margin-bottom: 21px;
    margin-top: 24px;
}
@media (max-width: 767px) {
    .box-serviceDetailForm__subHeading {
        margin-bottom: 13px;
    }
}
.box-serviceDetailForm__img {
    max-width: 100%;
}
.box-serviceDetailForm__img img {
    min-height: 300px;
}
.box-serviceDetailFlow {
    padding: 0 100px;
}
@media (max-width: 1023px) {
    .box-serviceDetailFlow {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceDetailFlow {
        padding: 0;
    }
}
.box-serviceDetailFlow__subHeading {
    display: block;
    margin-bottom: 23px;
}
@media (max-width: 767px) {
    .box-serviceDetailFlow__subHeading {
        margin-bottom: 14px;
    }
}
.box-serviceDetailFlow__heading {
    margin-bottom: 81px;
}
@media (max-width: 767px) {
    .box-serviceDetailFlow__heading {
        margin-bottom: 50px;
    }
}
.box-serviceDetailIntro {
    padding: 0 100px;
}
@media (max-width: 1023px) {
    .box-serviceDetailIntro {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-serviceDetailIntro {
        padding: 0;
    }
}
.box-serviceDetailIntro__subHeading {
    display: block;
    margin-bottom: 22px;
}
@media (max-width: 767px) {
    .box-serviceDetailIntro__subHeading {
        margin-bottom: 14px;
    }
}
.box-serviceDetailIntro__heading {
    margin-bottom: 34px;
}
.box-serviceDetailIntro__lead {
    margin-bottom: 80px;
}
@media (max-width: 767px) {
    .box-serviceDetailIntro__lead {
        margin-bottom: 48px;
    }
}
.box-serviceDetailIntro__list {
    padding: 0 100px;
}
@media (max-width: 1023px) {
    .box-serviceDetailIntro__list {
        padding: 0;
    }
}
.box-topFv {
    position: relative;
}
.box-topFv__imgBox {
    padding-bottom: 130px;
}
@media (max-width: 1279px) {
    .box-topFv__imgBox {
        margin-bottom: 15px;
        padding-bottom: 0;
    }
}
.box-topFv__numbers {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
.box-topFv__numbers.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.box-topFv__headingBox {
    bottom: -8px;
    left: 52px;
    position: absolute;
}
@media (max-width: 1279px) {
    .box-topFv__headingBox {
        margin-bottom: 38px;
        padding-left: 18px;
        position: static;
    }
}
.box-topFv__heading {
    margin-bottom: 34px;
}
@media (max-width: 767px) {
    .box-topFv__heading {
        margin-bottom: 32px;
        max-width: 250px;
    }
}
.box-topFv__lead {
    padding-left: 7px;
}
@media (max-width: 767px) {
    .box-topFv__lead {
        padding-left: 2px;
    }
}
@media (min-width: 768px) {
    .box-topFv__lead br {
        display: none;
    }
}
@media (max-width: 359px) {
    .box-topFv__lead br {
        display: none;
    }
    .box-publication {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .box-publication {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-publication {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-publication {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .box-publication {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .box-publication {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.box-publication {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 75px 0;
    padding: 0 220px;
}
@media (max-width: 1023px) {
    .box-publication {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .box-publication {
        gap: 65px 0;
        padding: 0 30px;
    }
}
.box-publication__title {
    margin-bottom: 25px;
}
.box-publication__textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
    padding-left: 20px;
}
.box-publication__list,
.box-publication__textBox > li {
    position: relative;
}
.box-publication__list:before,
.box-publication__textBox > li:before {
    background: #303030;
    background: var(--color-text);
    border-radius: 50%;
    content: "";
    height: 3.5px;
    left: -11px;
    position: absolute;
    top: 13px;
    width: 3.5px;
}
.box-approach {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
}
@media (max-width: 767px) {
    .box-approach {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.box-approach__imgBox {
    margin-right: 87px;
    margin-top: -16px;
    position: relative;
}
@media (min-width: 768px) {
    .box-approach__imgBox {
        max-width: 433px;
    }
}
@media (max-width: 1023px) {
    .box-approach__imgBox {
        margin-right: 40px;
    }
}
@media (max-width: 767px) {
    .box-approach__imgBox {
        margin-bottom: 52px;
        margin-right: 0;
        margin-top: 0;
    }
}
@media (min-width: 450px) and (max-width: 767px) {
    .box-approach__imgBox {
        margin-inline: auto;
    }
}
.box-approach__icons {
    left: 0;
    position: absolute;
    top: 0;
}
.box-approach__textBox {
    text-align: right;
}
@media (min-width: 768px) {
    .box-approach__textBox {
        max-width: 423px;
    }
}
.box-approach__subtitle {
    margin-bottom: 17px;
    text-align: left;
}
@media (max-width: 767px) {
    .box-approach__subtitle {
        margin-bottom: 22px;
    }
}
.box-approach__heading {
    margin-bottom: 30px;
    text-align: left;
}
@media (max-width: 767px) {
    .box-approach__heading br {
        display: none;
    }
}
.box-approach__text {
    margin-bottom: 57px;
    text-align: left;
}
@media (max-width: 767px) {
    .box-approach__text {
        text-align: justify;
    }
}
.box-approach__button {
    margin-left: auto;
    width: 200px;
}
@media (max-width: 767px) {
    .box-approach__button {
        margin-inline: auto;
    }
}
.box-topService__heading {
    margin-bottom: 43px;
    margin-left: 18px;
}
@media (max-width: 1023px) {
    .box-topService__heading {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .box-topService__heading {
        margin-bottom: 70px;
    }
}
@media (min-width: 768px) {
    .box-topService__heading br:first-child {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .box-topService__heading br {
        display: none;
    }
}
@media (max-width: 359px) {
    .box-topService__heading br {
        display: none;
    }
}
.box-topService__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 59px;
}
.box-topNewsList {
    margin-inline: auto;
    max-width: 881px;
}
.box-topNewsList__heading {
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 1023px) {
    .box-topNewsList__heading {
        margin-bottom: 65px;
    }
}
.box-topNewsList__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3px 0;
}
@media (max-width: 1023px) {
    .box-topNewsList__list {
        gap: 56px 0;
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 767px) {
    .box-topNewsList__list {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.box-topNewsList__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 35px;
}
@media (max-width: 1023px) {
    .box-topNewsList__button {
        margin-top: 54px;
    }
}
.box-graph {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 32px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-graph {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        height: 365px;
    }
}
@media (max-width: 1023px) {
    .box-graph {
        margin-bottom: 65px;
    }
}
.box-graph__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 406px;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 1080px;
    position: relative;
    width: 1080px;
}
@media (max-width: 1023px) {
    .box-graph__inner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 467px;
        width: 300px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .box-graph__inner.is-active {
        scale: 0.9;
    }
}
.box-graph__inner.is-active .box-graph__center,
.box-graph__inner.is-active .box-graph__centerText,
.box-graph__inner.is-active .box-graph__left,
.box-graph__inner.is-active .box-graph__leftText,
.box-graph__inner.is-active .box-graph__right,
.box-graph__inner.is-active .box-graph__rightImg,
.box-graph__inner.is-active .box-graph__rightText {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.box-graph__left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    border: 3px solid #c1c1c1;
    border: 3px solid var(--color-line-gray);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 184px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    width: 184px;
}
@media (max-width: 1023px) {
    .box-graph__left {
        border-width: 2px;
        height: 106px;
        width: 106px;
    }
}
.box-graph__leftText {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
@media (max-width: 1023px) {
    .box-graph__leftText {
        font-size: 1.2rem;
        letter-spacing: 0.012em;
        line-height: 1.25;
    }
    .box-graph__leftText:after,
    .box-graph__leftText:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-graph__leftText:before {
        margin-bottom: -0.15rem;
    }
    .box-graph__leftText:after {
        margin-top: -0.15rem;
    }
}
.box-graph__cross {
    margin: 0 15px;
}
@media (max-width: 1023px) {
    .box-graph__cross {
        height: 21px;
        margin: 0 8px;
        width: 21px;
    }
}
.box-graph__center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    border: 3px dashed #c1c1c1;
    border: 3px dashed var(--color-line-gray);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 278px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    width: 278px;
}
@media (max-width: 1023px) {
    .box-graph__center {
        border-width: 2px;
        height: 156px;
        width: 156px;
    }
}
.box-graph__centerText {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
@media (max-width: 1023px) {
    .box-graph__centerText {
        font-size: 1.2rem;
        letter-spacing: 0.012em;
        line-height: 1.25;
    }
    .box-graph__centerText:after,
    .box-graph__centerText:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-graph__centerText:before {
        margin-bottom: -0.15rem;
    }
    .box-graph__centerText:after {
        margin-top: -0.15rem;
    }
}
.box-graph__equal {
    margin: 0 19px;
}
@media (max-width: 1023px) {
    .box-graph__equal {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 12px;
        width: 100%;
    }
}
.box-graph__right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    border: 3px dashed #c1c1c1;
    border: 3px dashed var(--color-line-gray);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 406px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    width: 406px;
}
@media (max-width: 1023px) {
    .box-graph__right {
        border-width: 2px;
        height: 260px;
        width: 260px;
    }
}
.box-graph__rightText {
    margin-left: 20px;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
@media (max-width: 1023px) {
    .box-graph__rightText {
        font-size: 1.8rem;
        letter-spacing: 0.018em;
        line-height: 1.8;
    }
    .box-graph__rightText:after,
    .box-graph__rightText:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .box-graph__rightText:before {
        margin-bottom: -0.72rem;
    }
    .box-graph__rightText:after {
        margin-top: -0.72rem;
    }
}
.box-graph__rightImg {
    margin-left: -20px;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}
@media (max-width: 1023px) {
    .box-graph__rightImg {
        width: 95px;
    }
}
.button-primary {
    background-color: #e35535;
    background-color: var(--color-primary);
    border: 2px solid #e35535;
    border: 2px solid var(--color-primary);
    border-radius: 23px;
    display: inline-block;
    min-width: 170px;
    padding: 10px 21.5px 12px;
    text-align: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transition: var(--animation-duration) ease-in-out;
    transition: var(--animation-duration) ease-in-out;
}
.button-primary span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.button-primary span:after,
.button-primary span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-primary span:before {
    margin-bottom: -0.7rem;
}
.button-primary span:after {
    margin-top: -0.7rem;
}
.button-primary span {
    color: #fff;
    color: var(--color-white);
    font-weight: 700;
}
.button-primary span,
.button-secondary {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
.button-secondary {
    background-color: #303030;
    background-color: var(--color-text);
    border: 2px solid #303030;
    border: 2px solid var(--color-text);
    border-radius: 60px;
    display: inline-block;
    min-width: 198px;
    padding: 8px 39px 10px;
    text-align: center;
}
.button-secondary span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.button-secondary span:after,
.button-secondary span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-secondary span:before {
    margin-bottom: -0.7rem;
}
.button-secondary span:after {
    margin-top: -0.7rem;
}
.button-secondary span {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    color: #fff;
    color: var(--color-white);
    font-weight: 700;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
.button-secondary.is-nowrap {
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .button-secondary:hover {
        background-color: #fff;
        background-color: var(--color-white);
    }
    .button-secondary:hover span {
        color: #303030;
        color: var(--color-text);
    }
}
.button-filter {
    display: inline-block;
    padding: 10px 21px;
    position: relative;
    text-align: center;
}
.button-filter span {
    font-size: 2rem;
    letter-spacing: 0.11em;
    line-height: 1.5;
}
.button-filter span:after,
.button-filter span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-filter span:before {
    margin-bottom: -0.5rem;
}
.button-filter span:after {
    margin-top: -0.5rem;
}
.button-filter span {
    display: inline-block;
    font-weight: 700;
    position: relative;
    text-align: left;
    -webkit-transition: color 0.7s;
    transition: color 0.7s;
    -webkit-transition: color var(--animation-duration-slow);
    transition: color var(--animation-duration-slow);
}
.button-filter span:after {
    background-color: #41acda;
    background-color: var(--color-accent);
    border-radius: 10px;
    bottom: -5px;
    content: "";
    height: 2px;
    position: absolute;
    width: 100%;
}
@media (min-width: 1024px) {
    .button-filter:hover span {
        color: #41acda;
        color: var(--color-accent);
    }
    .button-filter:hover:after {
        -webkit-animation: customStretch 0.7s;
        animation: customStretch 0.7s;
        -webkit-animation: customStretch var(--animation-duration-slow);
        animation: customStretch var(--animation-duration-slow);
    }
}
.button-filter.is-selected {
    background-color: #41acda;
    background-color: var(--color-accent);
    border-radius: 40px;
    margin-top: 2px;
    padding: 8px 22px 6px;
}
.button-filter.is-selected span {
    color: #fff;
    color: var(--color-white);
}
.button-filter.is-selected span:after {
    display: none;
}
.button-textPlus {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3px;
}
.button-textPlus span {
    font-size: 0.9rem;
    letter-spacing: 0;
    line-height: 2;
}
.button-textPlus span:after,
.button-textPlus span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-textPlus span:before {
    margin-bottom: -0.45rem;
}
.button-textPlus span:after {
    margin-top: -0.45rem;
}
.button-textPlus span {
    font-weight: 700;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    -webkit-transition: color var(--animation-duration);
    transition: color var(--animation-duration);
}
.button-textPlus:after {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8px 8px" xmlns="http://www.w3.org/2000/svg"><path d="M0.779297 4H6.75832" stroke="%23303030" stroke-linecap="round"/><path d="M3.76855 1L3.76855 7" stroke="%23303030" stroke-linecap="round"/></svg>');
    content: "";
    height: 8px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
    width: 8px;
}
@media (min-width: 1024px) {
    .button-textPlus:hover span {
        color: #e35535;
        color: var(--color-primary);
    }
    .button-textPlus:hover:after {
        background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8px 8px" xmlns="http://www.w3.org/2000/svg"><path d="M0.779297 4H6.75832" stroke="%23e35535" stroke-linecap="round"/><path d="M3.76855 1L3.76855 7" stroke="%23e35535" stroke-linecap="round"/></svg>');
    }
}
.button-textArrow {
    display: inline-block;
    padding-right: 40px;
    position: relative;
}
.button-textArrow span {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.button-textArrow span:after,
.button-textArrow span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-textArrow span:before {
    margin-bottom: -0.9rem;
}
.button-textArrow span:after {
    margin-top: -0.9rem;
}
.button-textArrow span {
    font-weight: 700;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    -webkit-transition: color var(--animation-duration);
    transition: color var(--animation-duration);
}
.button-textArrow:after,
.button-textArrow:before {
    content: "";
    height: 28px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    translate: 0 -40%;
    width: 28px;
}
@media (max-width: 767px) {
    .button-textArrow.is-2lines:after,
    .button-textArrow.is-2lines:before {
        right: 20px;
    }
}
@media (min-width: 450px) and (max-width: 767px) {
    .button-textArrow.is-2lines:after,
    .button-textArrow.is-2lines:before {
        right: 0;
    }
}
@media (max-width: 359px) {
    .button-textArrow.is-2lines:after,
    .button-textArrow.is-2lines:before {
        right: 10px;
    }
}
.button-textArrow:before {
    background: url(../img/common/icon-arrow-right.svg) no-repeat 50% / contain;
}
.button-textArrow:after {
    background: url(../img/common/icon-arrow-right-hover.svg) no-repeat 50% / contain;
    opacity: 0;
}
@media (min-width: 1024px) {
    .button-textArrow:hover span {
        color: #41acda;
        color: var(--color-accent);
    }
    .button-textArrow:hover:before {
        opacity: 0;
    }
    .button-textArrow:hover:after {
        opacity: 1;
    }
}
.button-contact {
    background-color: #e35535;
    background-color: var(--color-primary);
    border: 2px solid #e35535;
    border: 2px solid var(--color-primary);
    border-radius: 78px;
    display: inline-block;
    max-width: 238px;
    padding: 20px 0;
    text-align: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transition: var(--animation-duration) ease-in-out;
    transition: var(--animation-duration) ease-in-out;
    width: 100%;
}
.button-contact.is-pb21 {
    padding-bottom: 21px;
}
.button-contact span {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.button-contact span:after,
.button-contact span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.button-contact span:before {
    margin-bottom: -0.9rem;
}
.button-contact span:after {
    margin-top: -0.9rem;
}
.button-contact span {
    color: #fff;
    color: var(--color-white);
    font-weight: 700;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
@media (max-width: 767px) {
    .button-contact {
        max-width: 238px;
        width: 100%;
    }
}
.button-menuOpen {
    height: 24px;
    position: relative;
    width: 36px;
}
.button-menuOpen__line {
    background-color: #303030;
    background-color: var(--color-text);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition: all var(--animation-duration);
    transition: all var(--animation-duration);
    width: 36px;
}
.button-menuOpen__line:first-child {
    top: 0;
}
.button-menuOpen__line:first-child.is-active {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.button-menuOpen__line:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.button-menuOpen__line:nth-child(2).is-active {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 36px;
}
.button-menuOpen__line:nth-child(3) {
    bottom: 0;
    opacity: 1;
    width: 18px;
}
.button-menuOpen__line:nth-child(3).is-active {
    opacity: 0;
}
.form {
    margin-bottom: 100px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .form {
        margin-bottom: 105px;
        margin-top: 30px;
    }
    html.en .form {
        margin-top: 95px;
    }
}
.form.is-confirm {
    margin-bottom: 130px;
    margin-top: 16px;
}
@media (max-width: 767px) {
    .form.is-confirm {
        margin-bottom: 105px;
        margin-top: 30px;
    }
}
.form.is-confirm .form__titleWrap {
    margin-top: 0;
    padding-left: 0;
}
@media (max-width: 767px) {
    .form.is-confirm .form__titleWrap {
        margin-bottom: 22px;
        padding-left: 0;
    }
}
.form.is-confirm .form__title {
    margin-bottom: 0;
    margin-top: 2px;
}
@media (max-width: 767px) {
    .form.is-confirm .form__title {
        margin: 0;
        padding-right: 0;
    }
}
.form.is-confirm .form__title.is-school {
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: -5px;
}
@media (max-width: 767px) {
    .form.is-confirm .form__title.is-school {
        margin: 0;
    }
}
.form.is-confirm .form__content {
    padding-left: 0;
    padding-top: 0;
}
@media (max-width: 767px) {
    .form.is-confirm .form__content {
        margin-bottom: 0;
        padding-left: 0;
        padding-top: 0;
    }
}
.form.is-confirm .form__content.is-school {
    padding-top: 28px;
}
@media (max-width: 767px) {
    .form.is-confirm .form__content.is-school {
        padding-top: 0;
    }
    .form.is-confirm .form__contentInner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
.form.is-confirm .form__item {
    padding: 31px 0;
}
@media (max-width: 767px) {
    .form.is-confirm .form__item {
        padding: 37px 0 34px;
    }
}
.form__item {
    padding: 25px 0;
}
.form__item:last-child {
    padding: 0 !important;
}
.form__item.is-radio {
    padding: 30px 0 23px;
}
@media (min-width: 1024px) {
    .form__item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .form__item {
        padding: 35px 0 30px;
    }
}
.form__titleWrap {
    width: 264px;
}
@media (min-width: 1024px) {
    .form__titleWrap {
        margin-top: 12px;
    }
}
@media (max-width: 1023px) {
    .form__titleWrap {
        margin-bottom: 15px;
        width: 100%;
    }
}
.form__titleWrap.is-radio {
    margin-top: 10px;
}
@media (max-width: 1023px) {
    .form__titleWrap.is-radio {
        margin-bottom: 10px;
        margin-top: 0;
    }
}
.form__titleWrap.is-textarea {
    margin-top: 14px;
}
@media (max-width: 767px) {
    .form__titleWrap.is-textarea {
        margin-bottom: 26px;
    }
}
.form__title {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.8;
}
.form__title:after,
.form__title:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__title:before {
    margin-bottom: -0.72rem;
}
.form__title:after {
    margin-top: -0.72rem;
}
.form__title {
    display: inline-block;
    font-weight: 700;
    position: relative;
}
.form__title mark {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1;
}
.form__title mark:after,
.form__title mark:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__title mark:before {
    margin-bottom: 0;
}
.form__title mark:after {
    margin-top: 0;
}
.form__title mark {
    color: var(--color-red);
    display: inline-block;
    margin-left: 6px;
}
.form__title.is-school mark {
    right: 80px;
}
.form__title span.is-school {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form__title span.is-school:after,
.form__title span.is-school:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__title span.is-school:before {
    margin-bottom: 0;
}
.form__title span.is-school:after {
    margin-top: 0;
}
@media (max-width: 767px) {
    .form__title span.is-school {
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        line-height: 1;
    }
    .form__title span.is-school:after,
    .form__title span.is-school:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form__title span.is-school:before {
        margin-bottom: 0;
    }
    .form__title span.is-school:after {
        margin-top: 0;
    }
}
.form__title span.is-confirm {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form__title span.is-confirm:after,
.form__title span.is-confirm:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__title span.is-confirm:before {
    margin-bottom: 0;
}
.form__title span.is-confirm:after {
    margin-top: 0;
}
@media (max-width: 767px) {
    .form__title span.is-confirm {
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        line-height: 1;
    }
    .form__title span.is-confirm:after,
    .form__title span.is-confirm:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form__title span.is-confirm:before {
        margin-bottom: 0;
    }
    .form__title span.is-confirm:after {
        margin-top: 0;
    }
    .form__title span.is-confirm {
        display: block;
        margin-bottom: 5px;
        margin-top: 3px;
    }
}
.form__nameWrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.form__nameHead {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.8;
}
.form__nameHead:after,
.form__nameHead:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__nameHead:before {
    margin-bottom: -0.72rem;
}
.form__nameHead:after {
    margin-top: -0.72rem;
}
.form__nameHead {
    display: inline-block;
    font-weight: 500;
    min-width: 48px;
}
@media (max-width: 767px) {
    .form__nameHead {
        font-size: 1.5rem;
        letter-spacing: 0;
        line-height: 1;
    }
    .form__nameHead:after,
    .form__nameHead:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form__nameHead:before {
        margin-bottom: 0;
    }
    .form__nameHead:after {
        margin-top: 0;
    }
    .form__nameHead {
        min-width: 39px;
    }
}
.form__subTitle {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.75;
}
.form__subTitle:after,
.form__subTitle:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__subTitle:before {
    margin-bottom: -0.525rem;
}
.form__subTitle:after {
    margin-top: -0.525rem;
}
.form__subTitle {
    display: block;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .form__subTitle {
        margin-bottom: 5px;
    }
}
.form__caption {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.6;
}
.form__caption:after,
.form__caption:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__caption:before {
    margin-bottom: -0.36rem;
}
.form__caption:after {
    margin-top: -0.36rem;
}
.form__caption {
    color: var(--color-red);
    display: block;
    font-weight: 700;
    margin-top: 5px;
}
.form__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media (max-width: 1023px) {
    .form__content {
        margin-bottom: 0;
        width: 100%;
    }
}
.form__contentInner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.form__contentInner.is-name {
    gap: 0 40px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .form__contentInner.is-name {
        gap: 26px 0;
    }
}
@media (max-width: 1023px) {
    .form__contentInner.is-name {
        gap: 0 26px;
    }
}
.form__contentText {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.6;
}
.form__contentText:after,
.form__contentText:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__contentText:before {
    margin-bottom: -0.48rem;
}
.form__contentText:after {
    margin-top: -0.48rem;
}
.form__error {
    color: var(--color-red);
    display: none;
    margin-top: 10px;
}
.form__error:before {
    background: url(../img/common/icon-error.svg) no-repeat 50%/100% auto;
    content: "";
    display: inline-block;
    height: 16px;
    margin-right: 4px;
    width: 16px;
}
.form__error.is-active {
    -ms-flex-preferred-size: 100%;
    display: block;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    width: 100%;
}
.form__error.is-active.is-agree {
    text-align: center;
}
.form__submit {
    margin-top: 54px;
    max-width: 716px;
}
.form__submit button {
    margin: 0 auto;
}
@media (max-width: 767px) {
    .form__submit {
        margin-top: 58px;
    }
}
.form__value {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2.5;
}
.form__value:after,
.form__value:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__value:before {
    margin-bottom: -1.35rem;
}
.form__value:after {
    margin-top: -1.35rem;
}
.form__value {
    color: var(--color-gray5);
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 500;
    white-space: pre-wrap;
    word-break: break-word;
}
@media (max-width: 767px) {
    .form__value {
        font-size: 1.4rem;
        letter-spacing: 0.18em;
        line-height: 1.78571;
    }
    .form__value:after,
    .form__value:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form__value:before {
        margin-bottom: -0.55rem;
    }
    .form__value:after {
        margin-top: -0.55rem;
    }
}
.form__valueItem {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.6;
}
.form__valueItem:after,
.form__valueItem:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__valueItem:before {
    margin-bottom: -0.48rem;
}
.form__valueItem:after {
    margin-top: -0.48rem;
}
.form__valueItem {
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}
.form__valueItem:before {
    background: var(--color-gray3);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 7px;
}
.form__valueItem pre {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.6;
}
.form__valueItem pre:after,
.form__valueItem pre:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form__valueItem pre:before {
    margin-bottom: -0.48rem;
}
.form__valueItem pre:after {
    margin-top: -0.48rem;
}
.form__valueItem pre {
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    margin-top: 5px;
    white-space: pre-wrap;
    word-break: break-word;
}
html.en :is(.form__valueItem pre) {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
}
.form__buttons {
    margin: 40px auto 0;
}
@media (min-width: 768px) {
    .form__buttons {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 524px;
    }
}
@media (max-width: 767px) {
    .form__buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px 0;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin-top: 10px;
    }
}
.form__attention {
    margin-top: 10px;
    width: 100%;
}
.form__hyphen {
    border-top: 1px solid var(--color-gray5);
    display: inline-block;
    height: 0;
    margin: 0 16px;
    text-indent: -9999px;
    width: 9px;
}
@media (max-width: 1023px) {
    .form__hyphen {
        margin: 0 11px;
        width: 6px;
    }
}
.form__description {
    color: var(--color-gray);
    margin-top: 38px;
    max-width: 184px;
}
@media (max-width: 1023px) {
    .form__description {
        margin-top: 30px;
        max-width: 100%;
    }
}
.form__descriptionList {
    margin-top: 28px;
}
.form__descriptionList li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.form__descriptionList li:not(:last-child) {
    margin-bottom: 14px;
}
.form__descriptionList li:before {
    content: "・";
    display: inline-block;
}
.form__checkBoxWrap {
    margin: 65px auto 0;
    max-width: 611px;
}
.form__checkBoxText {
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 400;
}
@media (max-width: 767px) {
    .form__checkBoxText {
        font-size: 1.5rem;
        letter-spacing: 0;
        line-height: 1.8;
    }
    .form__checkBoxText:after,
    .form__checkBoxText:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form__checkBoxText:before {
        margin-bottom: -0.6rem;
    }
    .form__checkBoxText:after {
        margin-top: -0.6rem;
    }
}
.form__checkBoxText a {
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .form__checkBoxText a:hover {
        text-decoration: none;
    }
}
.form-input {
    background-color: var(--color-bk);
    border: 1px solid var(--color-baige);
    border-radius: 2px;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.5;
}
.form-input:after,
.form-input:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input:before {
    margin-bottom: -0.35rem;
}
.form-input:after {
    margin-top: -0.35rem;
}
.form-input {
    height: 45px;
    max-width: 716px;
    padding: 0 15px;
    width: 100%;
}
.form-input:focus {
    border-color: var(--color-baige);
}
.form-input:-webkit-autofill {
    background: var(--color-bg);
}
.form-input:autofill {
    background: var(--color-bg);
}
.form-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 999px var(--color-bg) inset;
    box-shadow: 0 0 0 999px var(--color-bg) inset;
}
.form-input.is-error {
    background-color: var(--color-red3);
    border: 1px solid var(--color-red);
}
.form-input.is-short {
    max-width: 419px;
}
@media (max-width: 767px) {
    .form-input.is-short {
        max-width: 100%;
    }
}
.form-input.is-name {
    width: 214px;
}
@media (max-width: 767px) {
    .form-input.is-name {
        width: 98px;
    }
}
.form-input.is-post {
    width: 214px;
}
.form-input.is-tel {
    width: 113px;
}
@media (max-width: 767px) {
    .form-input.is-tel {
        width: 80px;
    }
}
.form-input.is-middle {
    border-color: var(--color-gray3);
    width: 398px;
}
html.en .form-input.is-middle {
    width: 308px;
}
@media (max-width: 767px) {
    html.en .form-input.is-middle {
        margin-left: 30px;
        width: calc(100% - 30px);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .form-input.is-middle {
        margin-left: 20px;
    }
}
@media (max-width: 767px) {
    .form-input.is-middle {
        margin-bottom: 17px;
        margin-left: 30px;
        width: calc(100% - 30px);
    }
}
.form-input:-moz-placeholder-shown {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input:placeholder-shown {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input:-moz-placeholder-shown:after,
.form-input:-moz-placeholder-shown:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input:placeholder-shown:after,
.form-input:placeholder-shown:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input:-moz-placeholder-shown:before {
    margin-bottom: 0;
}
.form-input:placeholder-shown:before {
    margin-bottom: 0;
}
.form-input:-moz-placeholder-shown:after {
    margin-top: 0;
}
.form-input:placeholder-shown:after {
    margin-top: 0;
}
.form-input:-moz-placeholder-shown {
    color: var(--color-baige);
}
.form-input:placeholder-shown {
    color: var(--color-baige);
}
.form-input::-webkit-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input::-moz-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input:-ms-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input::-ms-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input::placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-input::-webkit-input-placeholder:after,
.form-input::-webkit-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input::-moz-placeholder:after,
.form-input::-moz-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input:-ms-input-placeholder:after,
.form-input:-ms-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input::-ms-input-placeholder:after,
.form-input::-ms-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input::placeholder:after,
.form-input::placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-input::-webkit-input-placeholder:before {
    margin-bottom: 0;
}
.form-input::-moz-placeholder:before {
    margin-bottom: 0;
}
.form-input:-ms-input-placeholder:before {
    margin-bottom: 0;
}
.form-input::-ms-input-placeholder:before {
    margin-bottom: 0;
}
.form-input::placeholder:before {
    margin-bottom: 0;
}
.form-input::-webkit-input-placeholder:after {
    margin-top: 0;
}
.form-input::-moz-placeholder:after {
    margin-top: 0;
}
.form-input:-ms-input-placeholder:after {
    margin-top: 0;
}
.form-input::-ms-input-placeholder:after {
    margin-top: 0;
}
.form-input::placeholder:after {
    margin-top: 0;
}
.form-input::-webkit-input-placeholder {
    color: var(--color-baige);
}
.form-input::-moz-placeholder {
    color: var(--color-baige);
}
.form-input:-ms-input-placeholder {
    color: var(--color-baige);
}
.form-input::-ms-input-placeholder {
    color: var(--color-baige);
}
.form-input::placeholder {
    color: var(--color-baige);
}
.form-textarea {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.5;
}
.form-textarea:after,
.form-textarea:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea:before {
    margin-bottom: -0.35rem;
}
.form-textarea:after {
    margin-top: -0.35rem;
}
.form-textarea {
    background-color: var(--color-bk);
    border: 1px solid var(--color-baige);
    border-radius: 2px;
    height: 353px;
    max-width: 716px;
    padding: 16px 15px;
    resize: none;
    width: 100%;
}
.form-textarea.is-error {
    background-color: var(--color-red3);
    border: 1px solid var(--color-red);
}
.form-textarea.is-last {
    height: 119px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .form-textarea.is-last {
        margin-left: 30px;
        width: calc(100% - 30px);
    }
}
.form-textarea:-moz-placeholder-shown {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea:placeholder-shown {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea:-moz-placeholder-shown:after,
.form-textarea:-moz-placeholder-shown:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea:placeholder-shown:after,
.form-textarea:placeholder-shown:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea:-moz-placeholder-shown:before {
    margin-bottom: 0;
}
.form-textarea:placeholder-shown:before {
    margin-bottom: 0;
}
.form-textarea:-moz-placeholder-shown:after {
    margin-top: 0;
}
.form-textarea:placeholder-shown:after {
    margin-top: 0;
}
.form-textarea:-moz-placeholder-shown {
    color: var(--color-baige);
}
.form-textarea:placeholder-shown {
    color: var(--color-baige);
}
.form-textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea::-moz-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea:-ms-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea::-ms-input-placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea::placeholder {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
.form-textarea::-webkit-input-placeholder:after,
.form-textarea::-webkit-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea::-moz-placeholder:after,
.form-textarea::-moz-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea:-ms-input-placeholder:after,
.form-textarea:-ms-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea::-ms-input-placeholder:after,
.form-textarea::-ms-input-placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea::placeholder:after,
.form-textarea::placeholder:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-textarea::-webkit-input-placeholder:before {
    margin-bottom: 0;
}
.form-textarea::-moz-placeholder:before {
    margin-bottom: 0;
}
.form-textarea:-ms-input-placeholder:before {
    margin-bottom: 0;
}
.form-textarea::-ms-input-placeholder:before {
    margin-bottom: 0;
}
.form-textarea::placeholder:before {
    margin-bottom: 0;
}
.form-textarea::-webkit-input-placeholder:after {
    margin-top: 0;
}
.form-textarea::-moz-placeholder:after {
    margin-top: 0;
}
.form-textarea:-ms-input-placeholder:after {
    margin-top: 0;
}
.form-textarea::-ms-input-placeholder:after {
    margin-top: 0;
}
.form-textarea::placeholder:after {
    margin-top: 0;
}
.form-textarea::-webkit-input-placeholder {
    color: var(--color-baige);
}
.form-textarea::-moz-placeholder {
    color: var(--color-baige);
}
.form-textarea:-ms-input-placeholder {
    color: var(--color-baige);
}
.form-textarea::-ms-input-placeholder {
    color: var(--color-baige);
}
.form-textarea::placeholder {
    color: var(--color-baige);
}
@media (max-width: 767px) {
    .form-checkbox {
        margin-top: 37px;
    }
}
@media (min-width: 768px) {
    .form-checkbox__itemWrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
}
.form-checkbox__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    min-height: 46px;
    padding-left: 30px;
    position: relative;
}
.form-checkbox__item input {
    height: 0;
    opacity: 0;
    width: 0;
}
.form-checkbox__item input:checked + span:before {
    background: #303030;
    background: var(--color-text);
    border-color: #303030;
    border-color: var(--color-text);
}
.form-checkbox__item input:checked + span:after {
    opacity: 1;
}
.form-checkbox__item span {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.77778;
}
.form-checkbox__item span:after,
.form-checkbox__item span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-checkbox__item span:before {
    margin-bottom: -0.7rem;
}
.form-checkbox__item span:after {
    margin-top: -0.7rem;
}
.form-checkbox__item span {
    display: block;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .form-checkbox__item span {
        font-size: 1.5rem;
        letter-spacing: 0;
        line-height: 1.8;
    }
    .form-checkbox__item span:after,
    .form-checkbox__item span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form-checkbox__item span:before {
        margin-bottom: -0.6rem;
    }
    .form-checkbox__item span:after {
        margin-top: -0.6rem;
    }
}
.form-checkbox__item span:before {
    background: var(--color-bg);
    border: 1px solid var(--color-gray);
    border-radius: 2px;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 23px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
    width: 17px;
}
@media (max-width: 767px) {
    .form-checkbox__item span:before {
        top: 21px;
    }
}
.form-checkbox__item span:after {
    background: url(../img/common/icon-check.svg) no-repeat 50%/100% auto;
    content: "";
    height: 9px;
    left: 3px;
    margin: 0;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 27px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 11px;
    z-index: 1;
}
@media (max-width: 767px) {
    .form-checkbox__item span:after {
        top: 24.5px;
    }
}
.form-checkbox__item span a {
    color: var(--color-darkgreen2);
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .form-checkbox__item span a:hover {
        text-decoration: none;
    }
}
@media (max-width: 767px) {
    .form-checkbox__item span {
        white-space: normal;
    }
}
.form-checkbox__item.is-privacy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: block;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 50px auto 0;
    -webkit-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    transform: translateX(-4px);
    width: 100px;
}
@media (max-width: 767px) {
    .form-checkbox__item.is-privacy {
        margin-top: 42px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
html.android .form-checkbox__item.is-privacy {
    > span:before {
        top: 16px;
    }
    > span:after {
        top: 19px;
    }
}
.form-radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 45px;
    margin-top: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .form-radio {
        margin-bottom: -15px;
    }
}
@media (max-width: 767px) {
    .form-radio {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin-bottom: -22px;
        margin-top: 32px;
    }
}
.form-radio__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.form-radio__item:not(:last-child) {
    margin-right: 25px;
}
@media (max-width: 767px) {
    .form-radio__item:not(:last-child) {
        margin-right: 0;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .form-radio__item {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .form-radio__item {
        margin-bottom: 25px;
        width: 50%;
    }
}
.form-radio__item input {
    border-radius: 50%;
    height: 15px;
    margin: 0 8px 0 0;
    width: 15px;
}
.form-radio__item input:checked + span:before {
    border: 1px solid var(--color-gray);
}
.form-radio__item input:checked + span:after {
    background-color: var(--color-gray3);
    opacity: 1;
}
.form-radio__item span {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1;
}
.form-radio__item span:after,
.form-radio__item span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-radio__item span:before {
    margin-bottom: 0;
}
.form-radio__item span:after {
    margin-top: 0;
}
.form-radio__item span {
    position: relative;
}
@media (max-width: 767px) {
    .form-radio__item span {
        font-size: 1.4rem;
        letter-spacing: 0.18em;
        line-height: 1.78571;
    }
    .form-radio__item span:after,
    .form-radio__item span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form-radio__item span:before {
        margin-bottom: -0.55rem;
    }
    .form-radio__item span:after {
        margin-top: -0.55rem;
    }
}
.form-radio__item span:before {
    background-color: var(--color-gray);
    border: 1px solid #fff;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    content: "";
    height: 15px;
    left: -23px;
    position: absolute;
    top: 1px;
    -webkit-transition: border 0.4s;
    transition: border 0.4s;
    -webkit-transition: border var(--animation-duration);
    transition: border var(--animation-duration);
    width: 15px;
}
.form-radio__item span:after {
    background-color: var(--color-gray3);
    border-radius: 50%;
    content: "";
    height: 9px;
    left: -20px;
    opacity: 0;
    position: absolute;
    top: 4px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 9px;
}
.form-radio__item.is-contact {
    margin-left: -3px;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact {
        margin-left: 0;
        width: 100% !important;
    }
}
.form-radio__item.is-contact:not(:last-child) {
    margin-right: 37px;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact:not(:last-child) {
        margin-bottom: 6px;
        margin-right: 0;
    }
    .form-radio__item.is-contact:last-child {
        margin-bottom: 0;
    }
}
.form-radio__item.is-contact input {
    height: 30px;
    width: 30px;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact input {
        height: 20px;
        margin-right: 10px;
        width: 20px;
    }
}
.form-radio__item.is-contact input:checked + span:before {
    border: 2px solid var(--color-darkgreen2);
}
.form-radio__item.is-contact input:checked + span:after {
    background-color: var(--color-darkgreen2);
    opacity: 1;
}
.form-radio__item.is-contact span {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2.5;
}
.form-radio__item.is-contact span:after,
.form-radio__item.is-contact span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-radio__item.is-contact span:before {
    margin-bottom: -1.35rem;
}
.form-radio__item.is-contact span:after {
    margin-top: -1.35rem;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact span {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
        line-height: 2;
    }
    .form-radio__item.is-contact span:after,
    .form-radio__item.is-contact span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form-radio__item.is-contact span:before {
        margin-bottom: -0.8rem;
    }
    .form-radio__item.is-contact span:after {
        margin-top: -0.8rem;
    }
}
.form-radio__item.is-contact span:before {
    background-color: #fff;
    background-color: var(--color-white);
    border: 2px solid var(--color-darkgreen2);
    height: 30px;
    left: -37px;
    top: 6px;
    width: 30px;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact span:before {
        height: 20px;
        left: -28px;
        top: 6px;
        width: 20px;
    }
}
.form-radio__item.is-contact span:after {
    background-color: var(--color-darkgreen2);
    height: 14px;
    left: -29px;
    top: 27.5px;
    width: 14px;
}
@media (max-width: 767px) {
    .form-radio__item.is-contact span:after {
        height: 10px;
        left: -23px;
        top: 19px;
        width: 10px;
    }
}
.form-search {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding-left: 20px;
    position: relative;
}
.form-search input {
    height: 0;
    opacity: 0;
    width: 0;
}
.form-search input:checked + span:before {
    background: #e35535;
    background: var(--color-primary);
    border-color: #e35535;
    border-color: var(--color-primary);
}
.form-search input:checked + span:after {
    opacity: 1;
}
.form-search span {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.77778;
}
.form-search span:after,
.form-search span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-search span:before {
    margin-bottom: -0.7rem;
}
.form-search span:after {
    margin-top: -0.7rem;
}
.form-search span {
    display: block;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .form-search span {
        font-size: 1.6rem;
        letter-spacing: 0;
        line-height: 1.6875;
    }
    .form-search span:after,
    .form-search span:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form-search span:before {
        margin-bottom: -0.55rem;
    }
    .form-search span:after {
        margin-top: -0.55rem;
    }
}
.form-search span:before {
    background: #fff;
    background: var(--color-white);
    border: 1px solid var(--color-separater1);
    border-radius: 1px;
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 10px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
    width: 14px;
}
@media (max-width: 767px) {
    .form-search span:before {
        top: 7px;
    }
}
.form-search span:after {
    background: url(../img/common/icon-check.svg) no-repeat 50%/100% auto;
    content: "";
    height: 7px;
    left: 2px;
    margin: 0;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 14px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 10px;
    z-index: 1;
}
@media (max-width: 767px) {
    .form-search span:after {
        top: 10px;
    }
}
.form-search span a {
    color: var(--color-darkgreen2);
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .form-search span a:hover {
        text-decoration: none;
    }
}
@media (max-width: 767px) {
    .form-search span {
        white-space: normal;
    }
}
.ios .form-checkbox__item span:before {
    top: 16px;
}
.ios .form-checkbox__item span:after {
    top: 19.5px;
}
.form-sort {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.form-sort__lead {
    margin-right: 26px;
}
.form-sort__itemWrap {
    cursor: pointer;
    position: relative;
}
.form-sort__itemWrap,
.form-sort__itemWrap:before {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
.form-sort__itemWrap:before {
    background: #e35535;
    background: var(--color-primary);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 0;
}
.form-sort__itemWrap:first-of-type {
    margin-right: 26px;
}
.form-sort__itemWrap.is-active {
    color: #e35535;
    color: var(--color-primary);
}
.form-sort__itemWrap.is-active:before {
    width: 100%;
}
@media (min-width: 1024px) {
    .form-sort__itemWrap:hover {
        color: #e35535;
        color: var(--color-primary);
    }
    .form-sort__itemWrap:hover:before {
        width: 100%;
    }
}
.form-sort__item input {
    height: 0;
    opacity: 0;
    width: 0;
}
.form-contact__content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .form-contact__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.form-contact__content:not(:last-child) {
    margin-bottom: 45px;
}
.form-contact__content.is-job .form-contact__title {
    padding-top: 0;
}
.form-contact__content.is-radio {
    margin-bottom: 34px;
}
.form-contact__content.is-radio .form-contact__title {
    padding-top: 0;
}
.form-contact__text {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.875;
}
.form-contact__text:after,
.form-contact__text:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-contact__text:before {
    margin-bottom: -0.7rem;
}
.form-contact__text:after {
    margin-top: -0.7rem;
}
.form-contact__text {
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 500;
}
.form-contact__topText {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
.form-contact__topText:after,
.form-contact__topText:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-contact__topText:before {
    margin-bottom: -0.4rem;
}
.form-contact__topText:after {
    margin-top: -0.4rem;
}
.form-contact__topText {
    color: #e35535;
    color: var(--color-primary);
    display: inline-block;
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 700;
    position: relative;
}
.form-contact__topText:before {
    background: url(../img/common/icon-arrow-primary.svg) no-repeat 50%/100% auto;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: -25px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
    width: 13px;
}
.form-contact__select {
    border: 1px solid var(--color-separater1);
    padding: 4px 15px;
    width: 100%;
}
.form-contact__selectBox {
    position: relative;
    width: calc(50% - 86px);
}
@media (max-width: 767px) {
    .form-contact__selectBox {
        width: 100%;
    }
}
.form-contact__selectBox:before {
    background: url(../img/common/icon-arrow-primary.svg) no-repeat 50%/100% auto;
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
}
.form-contact__title {
    margin-right: 65px;
    padding-top: 9px;
    white-space: nowrap;
    width: 107px;
}
@media (max-width: 767px) {
    .form-contact__title {
        margin-bottom: 5px;
        margin-right: 0;
        width: 100%;
    }
}
.form-contact__titleText mark {
    color: #e35535;
    color: var(--color-primary);
}
.form-contact__inputArea {
    width: calc(100% - 172px);
}
@media (max-width: 767px) {
    .form-contact__inputArea {
        width: 100%;
    }
}
.form-contact__inputAreaInner {
    width: 100%;
}
.form-contact__inputAreaInner.is-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0 12px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 500px;
}
@media (max-width: 767px) {
    .form-contact__inputAreaInner.is-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px 0;
        width: 100%;
    }
}
.form-contact__input {
    border: 1px solid var(--color-separater1);
    height: 45px;
    padding: 0 15px;
    width: 244px;
}
@media (max-width: 767px) {
    .form-contact__input {
        width: 100%;
    }
}
.form-contact__input::-webkit-input-placeholder {
    color: var(--color-gray-light);
}
.form-contact__input::-moz-placeholder {
    color: var(--color-gray-light);
}
.form-contact__input:-ms-input-placeholder {
    color: var(--color-gray-light);
}
.form-contact__input::-ms-input-placeholder {
    color: var(--color-gray-light);
}
.form-contact__input::placeholder {
    color: var(--color-gray-light);
}
.form-contact__input:focus {
    border-color: #e35535;
    border-color: var(--color-primary);
}
.form-contact__input.is-error {
    border-color: var(--color-error);
}
.form-contact__error {
    color: var(--color-error);
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.25;
}
.form-contact__error:after,
.form-contact__error:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-contact__error:before {
    margin-bottom: -0.15rem;
}
.form-contact__error:after {
    margin-top: -0.15rem;
}
.form-contact__error {
    display: none;
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 500;
    margin-top: 5px;
    width: 100%;
}
.form-contact__error.is-active {
    display: block;
}
.form-contact__radioBox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    white-space: nowrap;
}
.form-contact__radioBox,
.form-contact__radioLabel {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.form-contact__radioLabel {
    border: 1px solid var(--color-line2);
    color: var(--color-gray);
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1023px) {
    .form-contact__radioLabel {
        font-size: 1.4rem;
        letter-spacing: 0;
        line-height: 2.5;
        width: 50%;
    }
    .form-contact__radioLabel:after,
    .form-contact__radioLabel:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .form-contact__radioLabel:before {
        margin-bottom: -1.05rem;
    }
    .form-contact__radioLabel:after {
        margin-top: -1.05rem;
    }
}
.form-contact__radioLabel:before {
    border: 1px solid var(--color-separater1);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 15px;
    margin-right: 7px;
    width: 15px;
}
.form-contact__radio {
    height: 0;
    width: 0;
}
.form-contact__radio:checked + .form-contact__radioLabel {
    position: relative;
}
.form-contact__radio:checked + .form-contact__radioLabel:before {
    border-color: var(--color-separater1);
}
.form-contact__radio:checked + .form-contact__radioLabel:after {
    background-color: #e35535;
    background-color: var(--color-primary);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 9px;
    left: 3px;
    position: absolute;
    width: 9px;
}
.form-contact__radio:first-child + label {
    margin-right: 24px;
}
.form-contact__textarea {
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
    border: 1px solid var(--color-separater1);
    height: 375px;
    padding: 8px 15px;
    resize: none;
    width: 500px;
}
.form-contact__textarea:-moz-placeholder-shown {
    font-feature-settings: "palt" on;
}
.form-contact__textarea:placeholder-shown {
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
}
.form-contact__textarea::-webkit-input-placeholder {
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
}
.form-contact__textarea::-moz-placeholder {
    font-feature-settings: "palt" on;
}
.form-contact__textarea:-ms-input-placeholder {
    font-feature-settings: "palt" on;
}
.form-contact__textarea::-ms-input-placeholder {
    font-feature-settings: "palt" on;
}
.form-contact__textarea::placeholder {
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
}
@media (max-width: 767px) {
    .form-contact__textarea {
        width: 100%;
    }
}
.form-contact__textarea.is-error {
    border-color: var(--color-error);
}
.form-contact__privacy {
    margin-bottom: 64px;
    margin-top: 45px;
}
.form-contact__privacyBox {
    background-color: var(--color-bg1);
    height: 200px;
    margin: 0 0 30px auto;
    overflow: scroll;
    padding: 33px 37px;
    width: 500px;
}
@media (max-width: 1279px) {
    .form-contact__privacyBox {
        margin-left: 172px;
    }
}
@media (max-width: 767px) {
    .form-contact__privacyBox {
        margin-bottom: 15px;
        margin-left: 0;
        padding: 15px 20px;
        width: 100%;
    }
}
.form-contact__privacyText {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 2.14286;
}
.form-contact__privacyText:after,
.form-contact__privacyText:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.form-contact__privacyText:before {
    margin-bottom: -0.8rem;
}
.form-contact__privacyText:after {
    margin-top: -0.8rem;
}
.form-contact__privacyText {
    font-family: Noto Sans, Noto Sans JP, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3,
        メイリオ, Meiryo, sans-serif;
    font-family: var(--font-base);
    font-weight: 500;
}
.form-contact__agreeCheck {
    display: block;
    margin: 0 0 0 auto;
    width: calc(100% - 172px);
}
@media (max-width: 767px) {
    .form-contact__agreeCheck {
        width: 100%;
    }
}
.form-contact__agree {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    padding-left: 28px;
    position: relative;
}
.form-contact__agree input {
    height: 0;
    opacity: 0;
    width: 0;
}
.form-contact__agree input:checked + span:before {
    background: #e35535;
    background: var(--color-primary);
    border-color: #e35535;
    border-color: var(--color-primary);
}
.form-contact__agree input:checked + span:after {
    opacity: 1;
}
.form-contact__agree span {
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
    display: block;
    white-space: nowrap;
}
.form-contact__agree span:before {
    background: #fff;
    background: var(--color-white);
    border: 1px solid var(--color-separater1);
    border-radius: 1px;
    content: "";
    height: 14px;
    left: 0;
    position: absolute;
    top: 10px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
    width: 14px;
}
.form-contact__agree span:after {
    background: url(../img/common/icon-check.svg) no-repeat 50%/100% auto;
    content: "";
    height: 7px;
    left: 2px;
    margin: 0;
    opacity: 0;
    overflow: visible;
    position: absolute;
    top: 13px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 10px;
    z-index: 1;
}
.form-contact__agree span a {
    color: var(--color-darkgreen2);
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .form-contact__agree span a:hover {
        text-decoration: none;
    }
}
@media (max-width: 767px) {
    .form-contact__agree span {
        white-space: normal;
    }
}
.link-primaryBox {
    display: inline-block;
}
.link-primary {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    position: relative;
}
.link-primary span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.link-primary span:after,
.link-primary span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.link-primary span:before {
    margin-bottom: -0.7rem;
}
.link-primary span:after {
    margin-top: -0.7rem;
}
.link-primary span {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    background-color: inherit;
    font-weight: 700;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    -webkit-transition: color var(--animation-duration);
    transition: color var(--animation-duration);
    z-index: 2;
}
.link-primary:before {
    background-color: #303030;
    background-color: var(--color-text);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: 19px;
    top: 7px;
    width: 0;
}
.link-primary:after {
    background: url(../img/common/icon-arrow-right-stroke.svg) no-repeat 50% / contain;
    content: "";
    display: inline-block;
    height: 11px;
    margin-bottom: -2.5px;
    width: 7px;
}
.link-primary.is-white span {
    background-color: #303030;
    background-color: var(--color-text);
}
.link-primary.is-white:before {
    background-color: #fff;
    background-color: var(--color-white);
}
.link-primary.is-white:after {
    background-image: url(../img/common/icon-arrow-right-stroke-white.svg);
}
@media (min-width: 1024px) {
    .link-primary:hover span {
        -webkit-animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        -webkit-animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
        animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
    }
    .link-primary:hover:before {
        -webkit-animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards;
        animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards;
        -webkit-animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards;
        animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards;
    }
    .link-primary:hover:after {
        -webkit-animation: fadeOut 0.4s forwards;
        animation: fadeOut 0.4s forwards;
        -webkit-animation: fadeOut var(--animation-duration) forwards;
        animation: fadeOut var(--animation-duration) forwards;
    }
}
.link-article {
    position: relative;
}
@media (max-width: 767px) {
    .link-article {
        width: 100%;
    }
}
.link-article:after,
.link-article:before {
    background-position: 50%;
    background-repeat: no-repeat;
    content: "";
    height: 38px;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    translate: 0 -50%;
    width: 38px;
}
.link-article:before {
    background-image: url(../img/common/icon-arrow-double-left.svg);
}
.link-article:after {
    background-image: url(../img/common/icon-arrow-double-left-hover.svg);
    opacity: 0;
}
@media (min-width: 1024px) {
    .link-article:hover:before {
        opacity: 0;
    }
    .link-article:hover:after {
        opacity: 1;
    }
}
.link-article.is-prev:after,
.link-article.is-prev:before {
    left: -65px;
}
@media (max-width: 767px) {
    .link-article.is-prev:after,
    .link-article.is-prev:before {
        left: -45px;
    }
}
.link-article.is-prev .link-article__date {
    margin-left: 1px;
}
.link-article.is-next {
    margin-left: auto;
    margin-top: 5px;
}
@media (min-width: 450px) and (max-width: 767px) {
    .link-article.is-next {
        text-align: right;
    }
}
.link-article.is-next:after,
.link-article.is-next:before {
    right: -65px;
    rotate: 180deg;
}
@media (max-width: 767px) {
    .link-article.is-next:after,
    .link-article.is-next:before {
        right: -45px;
    }
}
.link-article.is-next .link-article__date {
    margin-right: -2px;
    text-align: right;
}
.link-article.is-next:after {
    right: -64px;
}
.link-article__textBox {
    max-width: 350px;
}
@media (max-width: 1279px) {
    .link-article__textBox {
        max-width: 237px;
    }
}
@media (max-width: 767px) {
    .link-article__textBox {
        max-width: none;
        width: 100%;
    }
}
.link-article__textBox h3 {
    display: inline-block;
    text-align: left;
}
.link-article__heading {
    display: block;
    margin-bottom: 19px;
}
.link-article__date {
    display: block;
}
.list-topWork {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
@media (max-width: 1023px) {
    .list-topWork {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (max-width: 767px) {
    .list-topWork {
        padding-left: 30px;
        padding-right: 30px;
    }
}
.list-topWork__item {
    width: 100%;
}
@media (min-width: 1024px) {
    .list-topWork__item {
        max-width: 308px;
        width: calc(33% - 29px);
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .list-topWork__item {
        margin: 0 auto;
        max-width: 640px;
    }
}
@media (max-width: 1023px) {
    .list-topWork__item {
        margin-bottom: 58px;
    }
}
.list-topWork__inner {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}
.list-topWork__link {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
@media (min-width: 1024px) {
    .list-topWork__link:hover ~ div .list-topWork__imgText {
        opacity: 1;
    }
}
.list-topWork__img {
    height: 173px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 1024px) {
    .list-topWork__img {
        margin-inline: auto;
        max-width: 520px;
    }
}
@media (max-width: 1023px) {
    .list-topWork__img {
        height: auto;
        max-height: 360px;
    }
}
@media (max-width: 767px) {
    .list-topWork__img {
        height: 0;
        padding-top: 56.5%;
        position: relative;
        width: 100%;
    }
    .list-topWork__img img {
        left: 0;
        position: absolute;
        top: 0;
    }
}
.list-topWork__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.list-topWork__imgText {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 100%;
}
@media (max-width: 767px) {
    .list-topWork__imgText {
        max-height: 168px;
    }
}
.list-topWork__imgInner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.list-topWork__lead {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .list-topWork__lead {
        width: 70%;
    }
}
.list-topWork__lead.is-large {
    padding-left: 50px;
    padding-right: 50px;
}
.list-topWork__lead.is-small {
    max-width: 231px;
}
.list-topWork__dateTag {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
    margin-top: 19px;
}
@media (max-width: 767px) {
    .list-topWork__dateTag {
        margin-bottom: 16px;
        margin-top: 15px;
    }
}
.list-topWork__date {
    margin-right: 18px;
}
.list-topWork__tag {
    z-index: 2;
}
.list-topWork__more {
    bottom: 11px;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.3;
    position: absolute;
    right: 11px;
}
.list-topWork__more:after,
.list-topWork__more:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-topWork__more:before {
    margin-bottom: -0.15rem;
}
.list-topWork__more:after {
    margin-top: -0.15rem;
}
.list-topWork__more {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    background: #e35535;
    background: var(--color-primary);
    border-radius: 100%;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    height: 48px;
    -webkit-justify-content: center;
    justify-content: center;
    width: 48px;
}
.list-topWork__more:after,
.list-topWork__more:before {
    display: none;
}
.list-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
    padding: 23px 20px;
    width: 100%;
}
@media (max-width: 1023px) {
    .list-news {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .list-news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (min-width: 1024px) {
    .list-news:hover {
        background-color: #fff9f5;
        background-color: var(--color-bg-orange);
        border-radius: 10px;
        .link-primary {
            -webkit-animation: customToRight 0.4s 0.2s forwards;
            animation: customToRight 0.4s 0.2s forwards;
            -webkit-animation: customToRight var(--animation-duration)
                var(--animation-duration-fast) forwards;
            animation: customToRight var(--animation-duration)
                var(--animation-duration-fast) forwards;
        }
        .link-primary span {
            -webkit-animation: customColorChangeToPrimary 0.4s 0.2s forwards;
            animation: customColorChangeToPrimary 0.4s 0.2s forwards;
            -webkit-animation: customColorChangeToPrimary var(--animation-duration)
                var(--animation-duration-fast) forwards;
            animation: customColorChangeToPrimary var(--animation-duration)
                var(--animation-duration-fast) forwards;
            background: #fff9f5;
            background: var(--color-bg-orange);
        }
        .link-primary:before {
            -webkit-animation: customToWidth 0.4s forwards,
                customBounceToRight 0.4s forwards,
                customBgColorChangeToPrimary 0.2s 0.2s forwards;
            animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards,
                customBgColorChangeToPrimary 0.2s 0.2s forwards;
            -webkit-animation: customToWidth var(--animation-duration) forwards,
                customBounceToRight var(--animation-duration) forwards,
                customBgColorChangeToPrimary var(--animation-duration-fast)
                    var(--animation-duration-fast) forwards;
            animation: customToWidth var(--animation-duration) forwards,
                customBounceToRight var(--animation-duration) forwards,
                customBgColorChangeToPrimary var(--animation-duration-fast)
                    var(--animation-duration-fast) forwards;
        }
        .link-primary:after {
            -webkit-animation: fadeOut 0.4s forwards;
            animation: fadeOut 0.4s forwards;
            -webkit-animation: fadeOut var(--animation-duration) forwards;
            animation: fadeOut var(--animation-duration) forwards;
        }
    }
}
.list-news a {
    display: contents;
}
.list-news.is-top {
    max-width: 881px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
}
@media screen and (min-width: 450px) and (max-width: 1023px) {
    .list-news.is-top {
        max-width: 640px;
    }
}
.list-news.is-top .list-news__inner {
    gap: 0 20px;
}
@media (max-width: 1023px) {
    .list-news.is-top .list-news__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .list-news.is-top .list-news__inner {
        gap: 2px 0;
    }
}
@media (max-width: 1279px) {
    .list-news.is-top .list-news__textBox {
        max-width: unset;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .list-news.is-top .list-news__textBox {
        min-height: auto;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .list-news.is-top .list-news__imgBox {
        max-height: none;
        max-width: none;
        min-height: auto;
    }
}
@media (min-width: 1024px) {
    .list-news.is-top:hover {
        background: #fff9f5;
        background: var(--color-bg-orange);
        .link-primary span {
            color: #e35535;
            color: var(--color-primary);
        }
    }
}
.list-news__imgBox {
    min-width: 198px;
    overflow: hidden;
}
.list-news__imgBox img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (min-width: 1024px) {
    .list-news__imgBox {
        height: 111px;
        width: 198px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .list-news__imgBox {
        max-height: 168px;
        max-width: 200px;
        min-height: 130px;
    }
}
@media (max-width: 767px) {
    .list-news__imgBox {
        height: 0;
        max-height: 168px;
        overflow: hidden;
        padding-top: 56%;
        position: relative;
        width: 100%;
    }
    .list-news__imgBox img {
        left: 0;
        position: absolute;
        top: 0;
    }
}
.list-news__img {
    height: 100%;
    width: 100%;
}
.list-news__textBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-line-pack: start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: column wrap;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 624px;
    width: 100%;
}
@media (max-width: 767px) {
    .list-news__textBox {
        gap: 22px 0;
        max-width: 100%;
        width: 100%;
    }
}
.list-news__itemBox01 {
    margin-top: -2px;
}
@media (max-width: 767px) {
    .list-news__itemBox01 {
        margin-top: 18px;
    }
}
.list-news__title {
    margin-top: 14px;
}
.list-news__itemBox02 {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    max-width: 624px;
    text-align: end;
    width: 100%;
}
@media (max-width: 767px) {
    .list-news__itemBox02 {
        max-width: 100%;
    }
}
.list-topService {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}
@media (max-width: 1279px) {
    .list-topService {
        gap: 47px;
        padding: 0 40px;
    }
}
@media (max-width: 1023px) {
    .list-topService {
        gap: 47px;
        padding: 0;
    }
}
.list-topService__item {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    border-radius: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 22px 20px 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
}
@media (max-width: 1279px) {
    .list-topService__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 1023px) {
    .list-topService__item {
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .list-topService__item:hover {
        background-color: #fff9f5;
        background-color: var(--color-bg-orange);
    }
    .list-topService__item:hover .link-primary {
        -webkit-animation: customToRight 0.4s 0.2s forwards;
        animation: customToRight 0.4s 0.2s forwards;
        -webkit-animation: customToRight var(--animation-duration)
            var(--animation-duration-fast) forwards;
        animation: customToRight var(--animation-duration) var(--animation-duration-fast)
            forwards;
    }
    .list-topService__item:hover .link-primary span {
        -webkit-animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        animation: customColorChangeToPrimary 0.4s 0.2s forwards;
        -webkit-animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
        animation: customColorChangeToPrimary var(--animation-duration)
            var(--animation-duration-fast) forwards;
        background: #fff9f5;
        background: var(--color-bg-orange);
    }
    .list-topService__item:hover .link-primary:before {
        -webkit-animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards,
            customBgColorChangeToPrimary 0.2s 0.2s forwards;
        animation: customToWidth 0.4s forwards, customBounceToRight 0.4s forwards,
            customBgColorChangeToPrimary 0.2s 0.2s forwards;
        -webkit-animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards,
            customBgColorChangeToPrimary var(--animation-duration-fast)
                var(--animation-duration-fast) forwards;
        animation: customToWidth var(--animation-duration) forwards,
            customBounceToRight var(--animation-duration) forwards,
            customBgColorChangeToPrimary var(--animation-duration-fast)
                var(--animation-duration-fast) forwards;
    }
    .list-topService__item:hover .link-primary:after {
        -webkit-animation: fadeOut 0.4s forwards;
        animation: fadeOut 0.4s forwards;
        -webkit-animation: fadeOut var(--animation-duration) forwards;
        animation: fadeOut var(--animation-duration) forwards;
    }
}
.list-topService__left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 24.5px;
    width: 373px;
}
@media (min-width: 1280px) {
    .list-topService__left {
        position: relative;
    }
    .list-topService__left:after {
        background: #e9bda3;
        background: var(--color-primary-light);
        border-radius: 10px;
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        right: -3px;
        top: -1px;
        width: 4px;
    }
    @media (max-width: 1279px) {
        .list-topService__left:after {
            bottom: 0;
            height: 4px;
            width: 100%;
        }
    }
}
@media (max-width: 1279px) {
    .list-topService__left {
        margin-bottom: 12px;
        padding-right: 0;
        width: 100%;
    }
}
.list-topService__img {
    margin-right: 10px;
    width: 100px;
}
@media (max-width: 1023px) {
    .list-topService__img {
        max-width: 80px;
    }
}
@media (max-width: 767px) {
    .list-topService__img {
        margin-right: 5px;
    }
}
.list-topService__headingPrimary {
    min-width: 238px;
}
@media (max-width: 767px) {
    .list-topService__headingPrimary {
        min-width: 0;
    }
}
.list-topService__rightWrap {
    margin-left: 30px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 1279px) {
    .list-topService__rightWrap {
        margin-left: 0;
    }
    .list-topService__rightWrap:after {
        background: #e9bda3;
        background: var(--color-primary-light);
        border-radius: 10px;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        width: 4px;
    }
    @media (max-width: 1279px) {
        .list-topService__rightWrap:after {
            height: 4px;
            top: 0;
            width: 100%;
        }
    }
}
.list-topService__rightWrap.is-active .list-topService__right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.list-topService__right {
    max-width: 667px;
    padding-left: 30px;
    padding-top: 12px;
    position: relative;
    -webkit-transform: translateX(calc(-100% - 30px));
    -ms-transform: translateX(calc(-100% - 30px));
    transform: translateX(calc(-100% - 30px));
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.list-topService__right.is-delay1 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.list-topService__right.is-delay2 {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.list-topService__right.is-delay3 {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.list-topService__right.is-delay4 {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
@media (max-width: 1279px) {
    .list-topService__right {
        max-width: 100%;
        padding-left: 0;
        padding-top: 34px;
    }
}
.list-topService__headingSecondary {
    margin-bottom: 20px;
}
.list-topService__text {
    margin-bottom: 10px;
    text-align: justify;
}
@media (min-width: 1024px) {
    .list-topService__text {
        padding-left: 3px;
    }
}
@media (max-width: 767px) {
    .list-topService__text {
        margin-bottom: 20px;
    }
}
.list-topService__link {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
@media (max-width: 1279px) {
    .list-topService__link {
        max-width: 100%;
        padding-top: 34px;
    }
}
.list-aboutService {
    display: grid;
}
@media (max-width: 1279px) {
    .list-aboutService {
        place-content: center;
    }
}
.list-aboutService__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
    margin-left: 2px;
    position: relative;
}
@media (max-width: 1279px) {
    .list-aboutService__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px;
        position: relative;
    }
    .list-aboutService__item:after {
        background-color: #c1c1c1;
        background-color: var(--color-line-gray);
        border-radius: 10px;
        content: "";
        display: none;
        height: 102%;
        left: -24px;
        position: absolute;
        top: 1px;
        width: 4px;
    }
    .list-aboutService__item:first-child:after {
        height: 106%;
        top: 3px;
        -webkit-transform: translateY(-0.5px);
        -ms-transform: translateY(-0.5px);
        transform: translateY(-0.5px);
    }
    @media (min-width: 768px) and (max-width: 1023px) {
        .list-aboutService__item:first-child:after {
            height: 107%;
        }
    }
    @media (min-width: 450px) and (max-width: 767px) {
        .list-aboutService__item:first-child:after {
            height: 108%;
        }
    }
    @media (max-width: 359px) {
        .list-aboutService__item:first-child:after {
            height: 105%;
        }
    }
    .list-aboutService__item.is-currentSp:before {
        background-color: #e35535;
        background-color: var(--color-primary);
        border-radius: 50%;
        bottom: -10px;
        content: "";
        height: 18px;
        left: -32px;
        position: absolute;
        width: 18px;
        z-index: 1;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .list-aboutService__item {
        margin-bottom: 73px !important;
    }
}
.list-aboutService__item.is-passed .list-aboutService__heading:after,
.list-aboutService__item.is-passed:after {
    background-color: #303030;
    background-color: var(--color-text);
}
.list-aboutService__item:first-child {
    margin-bottom: 64px;
}
@media (max-width: 1279px) {
    .list-aboutService__item:first-child {
        gap: 12px;
        margin-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .list-aboutService__item:first-child {
        margin-bottom: 72px;
    }
}
.list-aboutService__item:first-child .list-aboutService__text {
    margin-top: -8px;
    width: 302px;
}
@media (max-width: 1279px) {
    .list-aboutService__item:first-child .list-aboutService__text {
        width: 100%;
    }
}
.list-aboutService__item:nth-child(2) {
    gap: 30px;
    margin-bottom: 53px;
    margin-left: 206px;
}
@media (max-width: 1279px) {
    .list-aboutService__item:nth-child(2) {
        gap: 0;
        margin-bottom: 66px;
        margin-left: 0;
        margin-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .list-aboutService__item:nth-child(2) {
        margin-bottom: 72px;
    }
}
.list-aboutService__item:nth-child(2) .list-aboutService__text {
    margin-top: 2px;
    width: 318px;
}
@media (max-width: 1279px) {
    .list-aboutService__item:nth-child(2) .list-aboutService__text {
        width: 100%;
    }
}
.list-aboutService__item:nth-child(3) {
    margin-bottom: 53px;
    margin-left: 389px;
    margin-top: 12px;
}
@media (max-width: 1279px) {
    .list-aboutService__item:nth-child(3) {
        gap: 15px;
        margin-bottom: 66px;
        margin-left: 0;
        margin-top: 0;
    }
    .list-aboutService__item:nth-child(3) .list-aboutService__text {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .list-aboutService__item:nth-child(3) {
        margin-bottom: 72px;
    }
}
.list-aboutService__item:nth-child(3) .list-aboutService__text {
    margin-top: -13px;
}
.list-aboutService__item:nth-child(4) {
    gap: 30px;
    margin-bottom: 0;
    margin-left: 611px;
    margin-top: 10px;
}
.list-aboutService__item:nth-child(4) .list-aboutService__text {
    margin-top: -17px;
}
.list-aboutService__item:nth-child(4) .list-aboutService__text:before {
    display: none;
}
@media (max-width: 1279px) {
    .list-aboutService__item:nth-child(4) {
        gap: 14px;
        margin-left: 0;
        margin-top: 0;
    }
    .list-aboutService__item:nth-child(4) .list-aboutService__text {
        width: 100%;
    }
}
.list-aboutService__heading {
    font-size: 2.8rem;
    letter-spacing: 0;
    line-height: 1.8;
}
.list-aboutService__heading:after,
.list-aboutService__heading:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-aboutService__heading:before {
    margin-bottom: -1.12rem;
}
.list-aboutService__heading:after {
    margin-top: -1.12rem;
}
.list-aboutService__heading {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
    position: relative;
}
@media (max-width: 767px) {
    .list-aboutService__heading {
        margin-left: -3px;
    }
}
.list-aboutService__heading:after {
    border-radius: 10px;
    bottom: -5px;
    content: "";
    height: 4px;
    left: -3px;
    position: absolute;
    width: 104%;
}
@media (max-width: 1279px) {
    .list-aboutService__heading:after {
        display: none;
    }
}
.list-aboutService__heading.is-currentPc:before {
    background-color: #e35535;
    background-color: var(--color-primary);
    border-radius: 50%;
    bottom: 0;
    content: "";
    height: 18px;
    position: absolute;
    right: -13px;
    width: 18px;
    z-index: 1;
}
@media (max-width: 1279px) {
    .list-aboutService__heading.is-currentPc:before {
        all: unset;
    }
}
.list-aboutService__text {
    margin-top: -10px;
    position: relative;
    width: 318px;
}
@media (max-width: 1279px) {
    .list-aboutService__text {
        margin-top: 0;
    }
}
.list-aboutService__text.is-passed:before {
    background: url(../img/about/icon-dashed-line.png) no-repeat 50% / contain;
    bottom: -115px;
    content: "";
    height: 120px;
    left: -27px;
    position: absolute;
    width: 44px;
    z-index: -1;
}
@media (max-width: 1279px) {
    .list-aboutService__text.is-passed:before {
        background: url(../img/about/icon-dashed-line-sp.svg) no-repeat 50% / contain;
        bottom: -76px;
        height: 91px;
        left: -44px;
        -webkit-transform: translateY(0.5px);
        -ms-transform: translateY(0.5px);
        transform: translateY(0.5px);
    }
}
.list-aboutCompany__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 79px;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 27px 35px 28px 0;
    position: relative;
}
@media (max-width: 1023px) {
    .list-aboutCompany__wrapper {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .list-aboutCompany__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 22px;
        padding: 26px 0;
    }
}
.list-aboutCompany__wrapper:nth-child(2) {
    padding-bottom: 25px;
    padding-top: 25px;
}
.list-aboutCompany__wrapper:nth-child(4) {
    padding-bottom: 31px;
}
.list-aboutCompany__wrapper:before {
    top: 0;
}
.list-aboutCompany__wrapper:before,
.list-aboutCompany__wrapper:last-child:after {
    background-color: #e9bda3;
    background-color: var(--color-primary-light);
    border-radius: 5px;
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
}
.list-aboutCompany__wrapper:last-child:after {
    bottom: 0;
}
.list-aboutCompany__term {
    margin-left: 7px;
    min-width: 106px;
}
@media (max-width: 767px) {
    .list-aboutCompany__term {
        margin-left: 0;
    }
}
.list-aboutCompany__description.is-link a {
    display: inline-block;
    margin-top: 3px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (min-width: 1024px) {
    .list-aboutCompany__description.is-link a:hover {
        text-decoration: none;
    }
}
.list-aboutCompany__description.is-link a:after {
    background: url(../img/common/icon-blank.svg) no-repeat 50% / contain;
    content: "";
    display: inline-block;
    height: 14.5px;
    margin-left: 9px;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    vertical-align: -5px;
    width: 14.5px;
}
@media (max-width: 767px) {
    .list-aboutCompany__description.is-link a:after {
        height: 15.5px;
        margin-left: 8px;
        -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
        transform: translateY(1px);
        vertical-align: -2px;
        width: 15.5px;
    }
}
.list-works {
    display: grid;
    margin: 0 auto;
    max-width: 1280px;
    padding-left: 120px;
    row-gap: 134px;
}
@media (max-width: 1023px) {
    .list-works {
        padding-left: 60px;
        row-gap: 100px;
    }
}
@media (max-width: 767px) {
    .list-works {
        padding-left: 30px;
        row-gap: 85px;
    }
}
.list-works__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 767px) {
    .list-works__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 25px;
    }
}
.list-works__link {
    height: 100%;
    position: absolute;
    width: 100%;
}
@media (min-width: 1024px) {
    .list-works__link:hover ~ .list-works__img .list-works__imgText {
        opacity: 1;
    }
}
.list-works__dateTagBox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .list-works__dateTagBox {
        margin-bottom: 24px;
    }
}
.list-works__dateTagBox a {
    z-index: 2;
}
@media (max-width: 767px) {
    .list-works__heading {
        padding-right: 30px;
    }
}
.list-works__img {
    position: relative;
    z-index: -1;
}
.list-works__img img {
    height: 360px;
    min-width: 640px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 1279px) {
    .list-works__img img {
        aspect-ratio: 1/0.56;
        height: auto;
        max-width: 500px;
        min-width: 500px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}
@media (max-width: 1023px) {
    .list-works__img img {
        max-width: 400px;
        min-width: 400px;
    }
}
@media (max-width: 767px) {
    .list-works__img img {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}
.list-works__imgText {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 100%;
}
@media (max-width: 767px) {
    .list-works__imgText {
        max-height: 168px;
    }
}
.list-works__imgInner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.list-works__lead {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    overflow: hidden;
    padding: 0 50px;
    text-overflow: ellipsis;
}
.list-works__more {
    bottom: 53px;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.3;
    position: absolute;
    right: 35px;
}
.list-works__more:after,
.list-works__more:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-works__more:before {
    margin-bottom: -0.21rem;
}
.list-works__more:after {
    margin-top: -0.21rem;
}
.list-works__more {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    background: #e35535;
    background: var(--color-primary);
    border-radius: 100%;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    height: 71px;
    -webkit-justify-content: center;
    justify-content: center;
    width: 71px;
}
.list-works__more:after,
.list-works__more:before {
    display: none;
}
@media (max-width: 1279px) {
    .list-works__more {
        bottom: 20px;
        right: 10px;
    }
}
.list-workTags {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 13px 0;
    position: absolute;
    right: 120px;
    top: -306px;
    width: 682px;
}
@media (max-width: 1279px) {
    .list-workTags {
        right: 10px;
    }
}
@media (max-width: 1023px) {
    .list-workTags {
        padding: 0 60px;
        position: static;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .list-workTags {
        gap: 12.5px 0;
        margin-top: 10px;
        padding: 0 20px;
    }
}
.list-newProjectLinks {
    -webkit-column-gap: 58px;
    -moz-column-gap: 58px;
    column-gap: 58px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
    .list-newProjectLinks {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
}
@media (max-width: 767px) {
    .list-newProjectLinks {
        grid-template-columns: auto;
        row-gap: 58px;
    }
}
.list-newProjectLinks__item {
    position: relative;
}
.list-newProjectLinks__link {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 2;
}
@media (min-width: 1024px) {
    .list-newProjectLinks__link:hover
        ~ .list-newProjectLinks__img
        .list-newProjectLinks__imgText {
        opacity: 1;
    }
}
.list-newProjectLinks__img {
    margin-bottom: 19px;
    position: relative;
    z-index: 0;
}
.list-newProjectLinks__img img {
    height: 173px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
}
@media (max-width: 767px) {
    .list-newProjectLinks__img img {
        height: auto;
    }
    .list-newProjectLinks__img {
        margin-bottom: 14px;
    }
}
.list-newProjectLinks__dateTagBox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}
@media (max-width: 1023px) {
    .list-newProjectLinks__dateTagBox {
        gap: 7%;
    }
}
@media (max-width: 767px) {
    .list-newProjectLinks__dateTagBox {
        margin-bottom: 14px;
    }
}
.list-newProjectLinks__dateTagBox a {
    z-index: 3;
}
.list-newProjectLinks__imgText {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 100%;
}
.list-newProjectLinks__imgInner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.list-newProjectLinks__lead {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    overflow: hidden;
    padding: 0 50px;
    text-overflow: ellipsis;
}
.list-newProjectLinks__more {
    bottom: 10px;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.3;
    position: absolute;
    right: 10px;
}
.list-newProjectLinks__more:after,
.list-newProjectLinks__more:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-newProjectLinks__more:before {
    margin-bottom: -0.15rem;
}
.list-newProjectLinks__more:after {
    margin-top: -0.15rem;
}
.list-newProjectLinks__more {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    background: #e35535;
    background: var(--color-primary);
    border-radius: 100%;
    color: #fff;
    color: var(--color-white);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    height: 48px;
    -webkit-justify-content: center;
    justify-content: center;
    width: 48px;
}
.list-newProjectLinks__more:after,
.list-newProjectLinks__more:before {
    display: none;
}
@media (max-width: 1023px) {
    .list-member {
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 115px 20px;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .list-member {
        padding: 0 21px;
    }
}
.list-member:not(:last-child) {
    margin-bottom: 43px;
}
.list-member ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
}
.list-member ul,
.list-member__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.list-member__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
}
@media (max-width: 1023px) {
    .list-member__item {
        width: calc(33% - 20px);
    }
}
@media (max-width: 767px) {
    .list-member__item {
        width: calc(50% - 10px);
    }
}
.list-member__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 285px;
    padding: 35px 70px;
}
@media (max-width: 1023px) {
    .list-member__inner {
        max-width: none;
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .list-member__inner:hover {
        .list-member__button {
            color: #e35535;
            color: var(--color-primary);
        }
        .list-member__button:before {
            opacity: 0;
        }
        .list-member__button:after {
            opacity: 1;
        }
    }
}
.list-member__img {
    margin-bottom: 17px;
}
@media (max-width: 1023px) {
    .list-member__img {
        margin-bottom: 13.6px;
    }
}
.list-member__name {
    text-align: center;
}
.list-member__name span {
    display: block;
    margin-top: 0;
}
.list-member__position {
    margin-bottom: 18px;
    min-height: 25px;
    text-align: center;
}
@media (max-width: 1023px) {
    .list-member__position {
        margin-bottom: 15px;
        min-height: 28px;
    }
}
@media (max-width: 359px) {
    .list-member__position {
        font-size: 1rem;
        letter-spacing: 0.1em;
        line-height: 1.56;
    }
    .list-member__position:after,
    .list-member__position:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .list-member__position:before {
        margin-bottom: -0.28rem;
    }
    .list-member__position:after {
        margin-top: -0.28rem;
    }
}
.list-member__button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 1rem;
    -webkit-justify-content: center;
    justify-content: center;
    letter-spacing: 0.1em;
    line-height: 2;
    position: relative;
}
.list-member__button:after,
.list-member__button:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-member__button:before {
    margin-bottom: -0.5rem;
}
.list-member__button:after {
    margin-top: -0.5rem;
}
.list-member__button {
    font-weight: 700;
    margin-left: -7px;
    margin-top: 15px;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    -webkit-transition: color var(--animation-duration);
    transition: color var(--animation-duration);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.list-member__button:before {
    background: url(../img/member/icon-plus.svg) no-repeat 50% / contain;
    top: 35%;
}
.list-member__button:after,
.list-member__button:before {
    content: "";
    display: block;
    height: 6px;
    position: absolute;
    right: -10px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    -webkit-transition: opacity var(--animation-duration);
    transition: opacity var(--animation-duration);
    width: 6px;
}
.list-member__button:after {
    background: url(../img/member/icon-plus-hover.svg) no-repeat 50% / contain;
    opacity: 0;
    top: 60%;
}
@media (max-width: 359px) {
    .list-workDetail {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .list-workDetail {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .list-workDetail {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .list-workDetail {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .list-workDetail {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .list-workDetail {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.list-workDetail {
    display: grid;
    gap: 70px 68px;
    grid-template-columns: auto 1fr;
    padding: 0 220px;
}
@media (max-width: 1023px) {
    .list-workDetail {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .list-workDetail {
        gap: 0;
        grid-template-columns: auto;
        grid-template-rows: auto 1fr;
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .list-workDetail {
        padding: 0 20px;
    }
}
.list-workDetail__term {
    color: #e35535;
    color: var(--color-primary);
}
@media (max-width: 767px) {
    .list-workDetail__term {
        margin-bottom: 24px;
        text-align: center;
    }
}
.list-workDetail__description:not(:last-child) {
    margin-bottom: -4px;
}
@media (max-width: 767px) {
    .list-workDetail__description:not(:last-child) {
        margin-bottom: 68px;
    }
}
.list-serviceTags {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .list-serviceTags {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5px 10px;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}
.list-serviceHeading {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 43px;
    -webkit-justify-content: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .list-serviceHeading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
        max-width: 500px;
    }
}
.list-serviceHeading__item {
    width: 178px;
}
@media (max-width: 767px) {
    .list-serviceHeading__item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        gap: 12px;
        width: 100%;
    }
}
.list-serviceHeading__item img {
    margin: 0 auto 35px;
}
@media (max-width: 767px) {
    .list-serviceHeading__item img {
        margin-inline: 0;
        margin-bottom: 0;
        max-width: 82px;
    }
}
.list-serviceFlow {
    display: grid;
    gap: 83px 90px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
    .list-serviceFlow {
        grid-template-columns: auto;
        row-gap: 48px;
    }
}
.list-serviceFlow__step {
    font-size: 2.8rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.list-serviceFlow__step:after,
.list-serviceFlow__step:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-serviceFlow__step:before {
    margin-bottom: -0.42rem;
}
.list-serviceFlow__step:after {
    margin-top: -0.42rem;
}
.list-serviceFlow__step {
    display: block;
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 400;
    margin-bottom: -5px;
    margin-left: 3px;
}
@media (max-width: 767px) {
    .list-serviceFlow__step {
        margin-bottom: 1px;
    }
}
.list-serviceFlow__number {
    font-size: 10.8rem;
    letter-spacing: 0;
    line-height: 1.1;
}
.list-serviceFlow__number:after,
.list-serviceFlow__number:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.list-serviceFlow__number:before {
    margin-bottom: -0.54rem;
}
.list-serviceFlow__number:after {
    margin-top: -0.54rem;
}
.list-serviceFlow__number {
    display: block;
    font-family: Noto Sans, sans-serif;
    font-family: var(--font-noto);
    font-weight: 600;
    margin-bottom: 28px;
}
@media (max-width: 767px) {
    .list-serviceFlow__number {
        font-size: 9rem;
        letter-spacing: 0;
        line-height: 1.1;
        margin-bottom: 13px;
    }
    .list-serviceFlow__number:after,
    .list-serviceFlow__number:before {
        content: "";
        display: block;
        height: 0.00001px;
        overflow: hidden;
        width: 0;
    }
    .list-serviceFlow__number:before {
        margin-bottom: -0.45rem;
    }
    .list-serviceFlow__number:after {
        margin-top: -0.45rem;
    }
}
.list-serviceFlow__heading {
    margin-bottom: 20px;
}
.list-serviceIntro {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 21px;
    -webkit-justify-content: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .list-serviceIntro {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.list-serviceIntro__item {
    background-color: #fff9f5;
    background-color: var(--color-bg-orange);
    border-radius: 20px;
    height: auto;
    min-height: 368px;
    padding: 31px 18px;
    position: relative;
    width: 266px;
}
.list-serviceIntro__item:after {
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="232" height="2" fill="none"><path d="M1 1h230" stroke="%23E9BDA3" stroke-width="2" stroke-linecap="round"/></svg>');
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 28%;
    translate: -50%;
    width: calc(100% - 36px);
}
@media (max-width: 1023px) {
    .list-serviceIntro__item:after {
        top: 28%;
    }
}
.list-serviceIntro__heading {
    margin-bottom: 13px;
    text-align: center;
}
.list-serviceIntro__subHeading {
    display: block;
    margin-bottom: 48px;
    text-align: center;
}
@media (max-width: 1023px) {
    .list-serviceIntro__subHeading {
        margin-bottom: 24px;
        min-height: 36px;
    }
}
.list-serviceIntro__text {
    background-color: #fff;
    background-color: var(--color-white);
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 13px 14px 18px;
}
.list-serviceIntro__innerList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 14px;
}
.list-serviceIntro__innerItem {
    margin-left: 7px;
}
@media (max-width: 767px) {
    .list-serviceIntro__innerItem {
        margin-left: 12px;
    }
}
.nav-pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 2px;
}
.nav-pagination,
.nav-pagination__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.nav-pagination__list {
    gap: 10px;
}
.nav-pagination__arrow {
    background: url(../img/common/icon-arrow-double-left.svg) no-repeat 50%;
    background-size: 13px 13px;
    height: 38px;
    width: 38px;
}
.nav-pagination__arrow.is-next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.nav-pagination__arrow.is-disabled {
    background: url(../img/common/icon-arrow-double-left-disabled.svg) no-repeat 50%;
}
.nav-pagination__item a {
    font-size: 2.4rem;
    letter-spacing: 0.024em;
    line-height: 2;
}
.nav-pagination__item a:after,
.nav-pagination__item a:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.nav-pagination__item a:before {
    margin-bottom: -1.2rem;
}
.nav-pagination__item a:after {
    margin-top: -1.2rem;
}
.nav-pagination__item a {
    border-radius: 3px;
    color: #a1a1a1;
    color: var(--color-text-gray);
    display: grid;
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
    height: 38px;
    place-content: center;
    width: 38px;
}
@media (min-width: 1024px) {
    .nav-pagination__item a:hover {
        border: 2px solid #e35535;
        border: 2px solid var(--color-primary);
    }
}
.nav-pagination__item span {
    font-size: 2.4rem;
    letter-spacing: 0.024em;
    line-height: 2;
}
.nav-pagination__item span:after,
.nav-pagination__item span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.nav-pagination__item span:before {
    margin-bottom: -1.2rem;
}
.nav-pagination__item span:after {
    margin-top: -1.2rem;
}
.nav-pagination__item span {
    background-color: #e35535;
    background-color: var(--color-primary);
    border-radius: 3px;
    color: #fff;
    color: var(--color-white);
    display: grid;
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
    height: 38px;
    place-content: center;
    width: 38px;
}
.nav-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
}
@media (max-width: 1279px) {
    .nav-footer {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }
    @media (max-width: 767px) {
        .nav-footer {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            row-gap: 30px;
        }
    }
}
.nav-footer__link {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 2.02;
}
.nav-footer__link:after,
.nav-footer__link:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.nav-footer__link:before {
    margin-bottom: -0.918rem;
}
.nav-footer__link:after {
    margin-top: -0.918rem;
}
.nav-footer__link {
    color: #303030;
    color: var(--color-text);
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-weight: 700;
    text-transform: uppercase;
}
@media (min-width: 1024px) {
    .nav-footer__link:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
    }
}
.nav-footer__link.is-current {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.nav-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30.5px;
}
@media (max-width: 1279px) {
    .nav-header {
        gap: 20px;
    }
}
.nav-header__item {
    display: grid;
}
.nav-header__link {
    position: relative;
    vertical-align: middle;
}
.nav-header__link,
.nav-header__link span {
    font-family: Montserrat, sans-serif;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    line-height: 3.636rem;
}
.nav-header__link span {
    display: inline-block;
}
.nav-header__link:after {
    background-color: #303030;
    background-color: var(--color-text);
    border-radius: 5px;
    bottom: 6px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transition: var(--animation-duration);
    transition: var(--animation-duration);
    width: 0;
}
@media (min-width: 1024px) {
    .nav-header__link:hover span {
        -webkit-animation: customTiltRight 0.4s;
        animation: customTiltRight 0.4s;
        -webkit-animation: customTiltRight var(--animation-duration);
        animation: customTiltRight var(--animation-duration);
    }
    .nav-header__link:hover:after {
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
        -webkit-transition-delay: var(--animation-duration-fast);
        transition-delay: var(--animation-duration-fast);
        width: 100%;
    }
}
.nav-header__link.is-current:after {
    width: 100%;
}
.tag-primary {
    border: 2px solid #41acda;
    border: 2px solid var(--color-accent);
    border-radius: 40px;
    display: inline-block;
    min-width: 121px;
    padding: 10px 13px;
    text-align: center;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
    -webkit-transition: background var(--animation-duration);
    transition: background var(--animation-duration);
}
.tag-primary span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.tag-primary span:after,
.tag-primary span:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.tag-primary span:before {
    margin-bottom: -0.7rem;
}
.tag-primary span:after {
    margin-top: -0.7rem;
}
.tag-primary span {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    color: #41acda;
    color: var(--color-accent);
    font-weight: 700;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
    -webkit-transition: color var(--animation-duration);
    transition: color var(--animation-duration);
}
@media (min-width: 1024px) {
    .tag-primary:hover {
        background-color: #41acda;
        background-color: var(--color-accent);
    }
    .tag-primary:hover span {
        color: #fff;
        color: var(--color-white);
    }
}
.tag-noLink {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    gap: 5px;
    letter-spacing: 0.1em;
    line-height: 2;
}
.tag-noLink:after,
.tag-noLink:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.tag-noLink:before {
    margin-bottom: -0.7rem;
}
.tag-noLink:after {
    margin-top: -0.7rem;
}
.tag-noLink {
    -webkit-font-feature-settings: "salt" on;
    font-feature-settings: "salt" on;
    color: #41acda;
    color: var(--color-accent);
    font-weight: 700;
}
.tag-noLink:before {
    background: url(../img/common/icon-hushtag.svg) no-repeat 50% / contain;
    content: "";
    height: 15px;
    margin-top: -8px;
    width: 13px;
}
@media (max-width: 359px) {
    .u-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (min-width: 360px) and (max-width: 767px) {
    .u-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .u-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media (min-width: 1024px) and (max-width: 1279px) {
    .u-container {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1280px) {
    .u-container {
        padding-left: 120px;
        padding-right: 120px;
    }
}
@media (min-width: 1024px) {
    .u-container {
        margin: 0 auto;
        max-width: 1280px;
    }
}
.u-flexCenter {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.main {
    margin-top: 80px;
}
@media (max-width: 767px) {
    .main.is-top {
        margin-top: 70px;
    }
}
.footer {
    height: 196px;
}
@media (max-width: 767px) {
    .footer {
        height: 346px;
    }
}
.footer__inner {
    margin: 0 auto;
    padding-left: 109px;
    padding-right: 92px;
}
@media (max-width: 1023px) {
    .footer__inner {
        padding: 0 60px;
    }
}
@media (max-width: 767px) {
    .footer__inner {
        padding: 0 30px;
    }
}
@media (max-width: 359px) {
    .footer__inner {
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    .footer__logo {
        margin-left: -13px;
    }
}
.footer__flexBox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-top: 66px;
}
@media (max-width: 1279px) {
    .footer__flexBox {
        gap: 80px;
    }
}
@media (max-width: 767px) {
    .footer__flexBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 45px;
        margin-bottom: 42px;
        padding-top: 40px;
    }
}
.footer__copy {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
.footer__copy:after,
.footer__copy:before {
    content: "";
    display: block;
    height: 0.00001px;
    overflow: hidden;
    width: 0;
}
.footer__copy:before {
    margin-bottom: -0.6rem;
}
.footer__copy:after {
    margin-top: -0.6rem;
}
.footer__copy {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    color: #303030;
    color: var(--color-text);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-right: 8px;
}
@media (max-width: 767px) {
    .footer__copy {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        margin-right: 0;
        text-align: justify;
    }
    .footer__copy span {
        margin-left: -7px;
    }
}
.header {
    background-color: #fff;
    background-color: var(--color-white);
    height: 80px;
    position: relative;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    width: 100%;
    z-index: 101;
}
@media (max-width: 767px) {
    .header {
        height: 82px;
    }
}
.header__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 30px;
}
.header__logo img {
    width: 100%;
    max-width: 220px;
}
@media (max-width: 767px) {
    .header__inner {
        padding-left: 11px;
        padding-right: 10px;
        padding-top: 8px;
    }
    .header__logo {
        max-width: 170px;
    }
}
.header__right {
    -webkit-box-align: top;
    -ms-flex-align: top;
    -webkit-align-items: top;
    align-items: top;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
}
@media (max-width: 1279px) {
    .header__right {
        gap: 50px;
    }
}
.header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 46px;
}
@media (max-width: 1279px) {
    .header__nav {
        opacity: 0;
        position: absolute;
        -webkit-transition: opacity 0.4s;
        transition: opacity 0.4s;
        -webkit-transition: opacity var(--animation-duration);
        transition: opacity var(--animation-duration);
        visibility: hidden;
    }
    .header__nav.is-active {
        background-color: #fff;
        background-color: var(--color-white);
        bottom: 0;
        height: calc(100vh - 70px);
        left: 0;
        opacity: 1;
        overflow: scroll;
        right: 0;
        top: 70px;
        visibility: visible;
        width: 100vw;
        z-index: 2;
    }
    .header__nav.is-active,
    .header__nav.is-active .nav-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header__nav.is-active .nav-header {
        padding-top: 50px;
    }
    .header__nav.is-active .header__button {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
    }
}
.header__menuOpen {
    cursor: pointer;
    padding: 10px;
}
@media (min-width: 1280px) {
    .header__menuOpen {
        display: none;
    }
}
.header__button {
    background: #e35535;
    background: var(--color-primary);
    border-radius: 23px;
    height: 40px;
    margin-top: 8px;
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-transform 0.7s;
    transition: -webkit-transform 0.7s;
    transition: transform 0.7s;
    transition: transform 0.7s, -webkit-transform 0.7s;
    -webkit-transition: -webkit-transform var(--animation-duration-slow);
    transition: -webkit-transform var(--animation-duration-slow);
    transition: transform var(--animation-duration-slow);
    transition: transform var(--animation-duration-slow),
        -webkit-transform var(--animation-duration-slow);
}
@media (max-width: 1279px) {
    .header__button {
        margin: 2px auto 0;
        width: 171px;
    }
}
.header__button a:nth-child(2) {
    background-color: #fff;
    background-color: var(--color-white);
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.header__button a:nth-child(2) span {
    color: #e35535;
    color: var(--color-primary);
}
@media (min-width: 1280px) {
    .header__button:hover a:first-child {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    .header__button:hover a:nth-child(2) {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.topLogo {
    position: relative;
    z-index: 102;
    border-top: 5px solid #0068b7;
}
