@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700i");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.site figure {
  margin: 0;
}

/* Web Font */
/* Base */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  min-width: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  color: #000;
}
a:active, a:visited {
  color: #000;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Layout */
.site {
  position: relative;
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .site {
    margin-top: 50px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 80px;
  width: 100%;
  background: #fff;
}

/* Module */
.site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 640px) {
  .site-header {
    height: 50px;
    -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05);
  }
}
.site-header__navigation {
  min-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .site-header__navigation {
    min-width: 100%;
    position: relative;
  }
}

.site-branding {
  width: 384px;
}
@media screen and (max-width: 640px) {
  .site-branding {
    width: 217px;
    padding: 0 0 0 1.5rem;
  }
}
.site-branding img {
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .main-navigation .hide {
    visibility: hidden;
    opacity: 0;
  }
}
.main-navigation .animation {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.main-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .main-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    opacity: 1;
    height: 100vh;
    padding-top: 5rem;
  }
}
.main-navigation ul li a {
  height: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 640px) {
  .main-navigation ul li a {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.main-navigation ul li a span {
  padding-left: 1.5em;
  padding-right: 1.5em;
  position: relative;
}
.main-navigation ul li a span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #3f80bf;
}
.main-navigation ul li.current a span, .main-navigation ul li:hover a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.main-navigation ul li.current a span::before, .main-navigation ul li:hover a span::before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  height: 6px;
  width: calc(100% - 3px);
  display: block;
  z-index: -1;
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .main-navigation ul li.current a span::before, .main-navigation ul li:hover a span::before {
    display: none;
  }
}
.main-navigation ul li.current a::before, .main-navigation ul li.current a::after, .main-navigation ul li:hover a::before, .main-navigation ul li:hover a::after {
  position: absolute;
}
@media screen and (max-width: 640px) {
  .main-navigation ul li.current a::before, .main-navigation ul li.current a::after, .main-navigation ul li:hover a::before, .main-navigation ul li:hover a::after {
    display: none;
  }
}
.main-navigation ul li.current a::before, .main-navigation ul li:hover a::before {
  left: 0;
  top: 0;
  content: "";
  border-left: 3px solid #efefef;
  height: 100%;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.main-navigation ul li.current a:after, .main-navigation ul li:hover a:after {
  right: 0;
  top: 0;
  content: "";
  border-right: 3px solid #efefef;
  height: 100%;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

#menu-toggle {
  display: none;
}
@media screen and (max-width: 640px) {
  #menu-toggle {
    background: #213091;
    width: 57px;
    height: 50px;
    border: none;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
    position: relative;
    right: -5px;
  }
  #menu-toggle span {
    left: 15%;
    height: 3px;
    width: 60%;
    background: #fff;
    display: block;
    position: absolute;
    -webkit-transition: 0.4s cubic-bezier(0, 0.51, 0.75, 1.04);
    transition: 0.4s cubic-bezier(0, 0.51, 0.75, 1.04);
  }
  #menu-toggle span:first-child {
    top: 12px;
  }
  #menu-toggle span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #menu-toggle span:nth-child(3) {
    bottom: 12px;
  }
  #menu-toggle.active span:first-child {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-225deg);
            transform: translateY(-50%) rotate(-225deg);
  }
  #menu-toggle.active span:nth-child(2) {
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  #menu-toggle.active span:nth-child(3) {
    display: none;
  }
}

.site-footer {
  background: url(../img/common/bg_footer.jpg) no-repeat 24% center/cover;
  padding-top: 27rem;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .site-footer {
    padding-top: 15rem;
  }
}
.site-footer .inner {
  width: 1020px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .site-footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.site-footer .company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 1rem;
}
@media screen and (max-width: 640px) {
  .site-footer .company-info {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1rem;
    margin-right: auto;
  }
}
.site-footer .company-info h1 {
  width: 127px;
  margin-right: 7rem;
}
@media screen and (max-width: 640px) {
  .site-footer .company-info h1 {
    width: 75px;
    margin-right: 0;
    margin-left: 1rem;
  }
}
.site-footer .company-info h1 img {
  width: 100%;
}
.site-footer .company-info address {
  color: #fff;
  font-size: 1.7rem;
}
@media screen and (max-width: 640px) {
  .site-footer .company-info address {
    width: calc(100% - 130px);
  }
}
.site-footer .company-info address p {
  margin-bottom: 1.5em;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .site-footer .company-info address p {
    font-size: 1.2rem;
    line-height: 1.5em;
  }
}
.site-footer .company-info address ul li + li {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .site-footer .company-info address ul li + li {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .site-footer .company-info address ul li img {
    width: 100%;
  }
}

.google-map-link {
  margin-top: -1.5rem;
  margin-bottom: 1.5em;
}
.google-map-link a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.google-map-link a::after {
  content: "";
  background: url(../img/common/related_link_wh.png) no-repeat center center;
  width: 25px;
  height: 21px;
  margin-left: 0.5em;
  display: block;
}
.google-map-link a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 640px) {
  .google-map-link a {
    font-size: 1.2rem;
  }
  .google-map-link a::after {
    width: 18px;
    height: 15px;
    background-size: 18px 15px;
  }
}

.footer-nav {
  width: 30%;
}
@media screen and (max-width: 640px) {
  .footer-nav {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-nav ul li a {
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer-nav ul li a:hover {
  opacity: 0.6;
}
.footer-nav__primary {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__primary {
    margin-bottom: 0;
  }
}
.footer-nav__primary li {
  margin-left: 0.5rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__primary li {
    margin: 0;
    width: 33.3%;
  }
}
.footer-nav__primary li + li {
  margin-top: 2rem;
}
.footer-nav__primary li a {
  font-size: 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .footer-nav__primary li a {
    font-size: 1.3rem;
  }
}
.footer-nav__primary li a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/common/list_1.svg) no-repeat center center;
  display: block;
  margin-right: 0.5em;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .footer-nav__primary li a::before {
    width: 12px;
    height: 12px;
  }
}
.footer-nav__secondary {
  margin-left: 0.5rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__secondary {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-nav__secondary li {
    padding-right: 1rem;
  }
}
.footer-nav__secondary li + li {
  margin-top: 1.5rem;
}
.footer-nav__secondary li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-nav__secondary li a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/common/list_2.svg) no-repeat center center;
  display: block;
  margin-right: 1rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__secondary li a::before {
    width: 10px;
    height: 10px;
    background-size: contain;
  }
}
.footer-nav__secondary li a span {
  font-size: 1.7rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__secondary li a span {
    font-size: 1.2rem;
  }
}
.footer-nav__globalsign {
  margin-top: 3rem;
}
@media screen and (max-width: 640px) {
  .footer-nav__globalsign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.site-info {
  padding-top: 8rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .site-info {
    padding-top: 4rem;
    font-size: 1.2rem;
  }
}

.bg-white-skew {
  position: absolute;
  left: 0;
  top: 0;
  height: 20rem;
  margin-top: -10rem;
  width: 100%;
  background: #fff;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
}

.jumbotron {
  margin-top: 80px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 640px) {
  .jumbotron {
    margin-top: 50px;
    height: 145vw;
  }
}
.jumbotron .movie {
  overflow: hidden;
  width: 100%;
  max-height: calc(100vh - 80px);
  height: 100%;
}
@media screen and (max-width: 640px) {
  .jumbotron .movie {
    height: 145vw;
  }
}
.jumbotron .embedvideo {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  z-index: 1;
}
.jumbotron .embedvideo::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url(../img/common/dot_layer.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.2;
}
@media screen and (max-width: 640px) {
  .jumbotron .embedvideo {
    padding-top: 151%;
    width: 272%;
  }
}
.jumbotron .embedvideo video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .jumbotron .embedvideo video {
    -webkit-transform: translateY(-50%) translateX(-40%);
            transform: translateY(-50%) translateX(-40%);
  }
}
.jumbotron .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .jumbotron .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .jumbotron .inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.jumbotron h2 {
  display: block;
  width: 415.5px;
  height: 0;
  padding-top: 148.5px;
  overflow: hidden;
  background-size: 415.5px 148.5px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_catch_1.png);
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .jumbotron h2 {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 28%;
    overflow: hidden;
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    width: 260px;
    margin: 37px auto 10px;
  }
}
.jumbotron h3 {
  display: block;
  width: 404px;
  height: 0;
  padding-top: 66px;
  overflow: hidden;
  background-size: 404px 66px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_catch_2.png);
}
@media screen and (max-width: 640px) {
  .jumbotron h3 {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 16.33%;
    overflow: hidden;
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.jumbotron .btn-scroll-down {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  -webkit-animation: bounce 2s ease-in-out infinite;
          animation: bounce 2s ease-in-out infinite;
  margin-left: -33px;
}
.jumbotron .btn-scroll-down a img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.jumbotron .btn-scroll-down:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 640px) {
  .jumbotron .btn-scroll-down {
    margin-left: -24px;
  }
  .jumbotron .btn-scroll-down img {
    width: 48px;
    height: 48px;
  }
}

#loader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  background: #3887e1;
  -webkit-animation: load 3s ease infinite;
          animation: load 3s ease infinite;
  background-size: 400% 400%;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  #loader {
    width: 100vw;
  }
}
#loader.hideLoader {
  opacity: 0;
  visibility: hidden;
}
#loader .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #fff;
  margin: 10px;
}
#loader .line:nth-last-child(1) {
  -webkit-animation: loadingC 0.6s 0.1s linear infinite;
          animation: loadingC 0.6s 0.1s linear infinite;
}
#loader .line:nth-last-child(2) {
  -webkit-animation: loadingC 0.6s 0.2s linear infinite;
          animation: loadingC 0.6s 0.2s linear infinite;
}
#loader .line:nth-last-child(3) {
  -webkit-animation: loadingC 0.6s 0.3s linear infinite;
          animation: loadingC 0.6s 0.3s linear infinite;
}

@-webkit-keyframes loadingC {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes loadingC {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 15px);
            transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes load {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes load {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sec-news {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 640px) {
  .sec-news {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
}
.sec-news h2 {
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .sec-news h2 {
    margin-bottom: 0;
  }
}
.sec-news h2::before {
  position: absolute;
  top: -84px;
  left: -50px;
  content: "";
  display: block;
  width: 81.6px;
  height: 0;
  padding-top: 110px;
  overflow: hidden;
  background-size: 81.6px 110px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/bg_ttl_news.svg);
}
@media screen and (max-width: 640px) {
  .sec-news h2::before {
    top: -65px;
    left: -31px;
    padding-top: 100px;
    background-size: 51px 100px;
  }
}
.sec-news h2 span {
  display: block;
  width: 202px;
  height: 0;
  padding-top: 111px;
  overflow: hidden;
  background-size: 202px 111px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_news.svg);
}
@media screen and (max-width: 640px) {
  .sec-news h2 span {
    display: block;
    width: 114px;
    height: 0;
    padding-top: 62px;
    overflow: hidden;
    background-size: 114px 62px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-news .inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .sec-news .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .sec-news .head {
    margin-bottom: 2rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec-news .head .btn-link {
    margin-top: 1rem;
  }
}
.sec-news .body {
  width: calc(100% - 280px);
}
@media screen and (max-width: 640px) {
  .sec-news .body {
    width: 100%;
  }
}

.sec-about {
  margin-bottom: 18rem;
}
@media screen and (max-width: 640px) {
  .sec-about {
    margin-bottom: 3rem;
  }
}
.sec-about h2 {
  position: absolute;
  left: 0;
  top: -90px;
}
@media screen and (max-width: 640px) {
  .sec-about h2 {
    left: 10px;
    top: -93px;
  }
}
.sec-about h2::before {
  content: "";
  margin-bottom: -15px;
  display: block;
  width: 88px;
  height: 0;
  padding-top: 101px;
  overflow: hidden;
  background-size: 88px 101px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/bg_ttl_about.svg);
}
@media screen and (max-width: 640px) {
  .sec-about h2::before {
    margin-bottom: -30px;
  }
}
.sec-about h2 span {
  display: block;
  width: 249px;
  height: 0;
  padding-top: 111px;
  overflow: hidden;
  background-size: 249px 111px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_about.svg);
}
@media screen and (max-width: 640px) {
  .sec-about h2 span {
    display: block;
    width: 149px;
    height: 0;
    padding-top: 63px;
    overflow: hidden;
    background-size: 149px 63px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-about .inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  position: relative;
  padding-top: 8rem;
  padding-bottom: 22rem;
}
@media screen and (max-width: 640px) {
  .sec-about .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-about .inner {
    padding-top: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 16rem;
  }
}
.sec-about .inner::before {
  position: absolute;
  left: 55px;
  bottom: 50px;
  content: "";
  background: url(../img/front/bg_flag.png) no-repeat left bottom;
  width: 284px;
  height: 441px;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  .sec-about .inner::before {
    width: 120px;
    height: 186px;
    background-size: 120px;
    left: 10px;
    bottom: -30px;
  }
}
.sec-about .bg-blue {
  position: relative;
  background: #3f80bf url(../img/front/bg_about.jpg) no-repeat right center/cover;
}
@media screen and (max-width: 640px) {
  .sec-about .bg-blue {
    background-image: url(../img/front/bg_about_sp.jpg);
  }
}
.sec-about .bg-blue-sub-layer-1 {
  padding: 4rem 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(47%, white), color-stop(47%, rgba(63, 128, 191, 0.15)));
  background: linear-gradient(to right, white 47%, rgba(63, 128, 191, 0.15) 47%);
}
@media screen and (max-width: 640px) {
  .sec-about .bg-blue-sub-layer-1 {
    padding: 1rem 0;
  }
}
.sec-about .bg-blue-sub-layer-2 {
  padding: 5rem 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(71%, white), color-stop(71%, rgba(63, 128, 191, 0.5)));
  background: linear-gradient(to right, white 71%, rgba(63, 128, 191, 0.5) 71%);
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
}
@media screen and (max-width: 640px) {
  .sec-about .bg-blue-sub-layer-2 {
    padding: 1rem 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(78%, white), color-stop(78%, rgba(63, 128, 191, 0.5)));
    background: linear-gradient(to right, white 78%, rgba(63, 128, 191, 0.5) 78%);
  }
}
.sec-about .body {
  width: 46%;
  margin-right: 8%;
  margin-left: auto;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec-about .body {
    width: 100%;
  }
}
.sec-about .body h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .sec-about .body h3 {
    font-size: 2.1rem;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 380px) {
  .sec-about .body h3 {
    font-size: 5.7vw;
  }
}
.sec-about .body p {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .sec-about .body p {
    font-size: 1.2rem;
  }
}
.sec-about .link {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  margin-top: -19rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .sec-about .link {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-about .link {
    margin-top: -9rem;
    margin-bottom: 0;
  }
}
.sec-about .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .sec-about .link ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1rem;
  }
}
.sec-about .link ul li {
  width: 33.3%;
  margin-bottom: 1rem;
}
.sec-about .link ul li img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .sec-about .link ul li {
    text-align: center;
  }
  .sec-about .link ul li img {
    width: 163px;
  }
  .sec-about .link ul li:first-child {
    width: 100%;
  }
  .sec-about .link ul li:nth-child(2), .sec-about .link ul li:nth-child(3) {
    width: 50%;
  }
}
.sec-about .link .btn-link a {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .sec-about .link .btn-link a {
    width: 57%;
  }
}
.sec-about .link .btn-link a span {
  padding-top: 1em;
  padding-bottom: 1em;
}

.sec-recruit {
  background: url(../img/common/bg_gray_wave.gif);
  position: relative;
  padding-bottom: 28rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit {
    padding-bottom: 30rem;
  }
}
.sec-recruit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 20rem;
  background: #fff;
  display: block;
}
.sec-recruit h2::before {
  content: "";
  display: block;
  width: 88px;
  height: 0;
  padding-top: 101px;
  overflow: hidden;
  background-size: 88px 101px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/bg_ttl_recruit.svg);
  margin-bottom: -2rem;
  margin-left: -2rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit h2::before {
    display: none;
  }
}
.sec-recruit h2 span {
  display: block;
  width: 282px;
  height: 0;
  padding-top: 111px;
  overflow: hidden;
  background-size: 282px 111px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_recruit.svg);
}
@media screen and (max-width: 640px) {
  .sec-recruit h2 span {
    display: block;
    width: 158px;
    height: 0;
    padding-top: 66px;
    overflow: hidden;
    background-size: 158px 66px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-recruit .sec-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 10px solid #213091;
  border-bottom: 10px solid #213091;
  padding: 12rem 0 15rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .sec-recruit .sec-recruit__inner {
    border-width: 5px;
    padding: 6rem 0;
  }
}
.sec-recruit .sec-recruit__inner h2,
.sec-recruit .sec-recruit__inner h3,
.sec-recruit .sec-recruit__inner .btn-link {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
}
.sec-recruit .sec-recruit__inner h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit .sec-recruit__inner h2 {
    margin-bottom: 2rem;
  }
}
.sec-recruit .sec-recruit__inner h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #213091;
  font-size: 3.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit .sec-recruit__inner h3 {
    font-size: 1.9rem;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
  }
}
.sec-recruit .sec-recruit__inner .btn-link a {
  width: 320px;
}
@media screen and (max-width: 640px) {
  .sec-recruit .sec-recruit__inner .btn-link a {
    width: 180px;
  }
}
.sec-recruit .sec-recruit__inner .btn-link a span {
  padding-top: 1em;
  padding-bottom: 1em;
}
.sec-recruit .bg-blue-sub-laye-img {
  background: url(../img/front/bg_recruit.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 153%;
  left: 50%;
  top: 50%;
  -webkit-transform: skewX(6deg) rotate(6deg) translateX(-50%) translateY(-50%);
          transform: skewX(6deg) rotate(6deg) translateX(-50%) translateY(-50%);
  display: block;
}
.sec-recruit .bg-blue-sub-layer-1 {
  padding: 4rem 0 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(63, 128, 191, 0.15)), color-stop(50%, white));
  background: linear-gradient(to right, rgba(63, 128, 191, 0.15) 50%, white 50%);
}
@media screen and (max-width: 640px) {
  .sec-recruit .bg-blue-sub-layer-1 {
    padding: 1rem 0 0;
  }
}
.sec-recruit .bg-blue-sub-layer-2 {
  padding: 5rem 0 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(25.5%, rgba(63, 128, 191, 0.5)), color-stop(25.5%, white));
  background: linear-gradient(to right, rgba(63, 128, 191, 0.5) 25.5%, white 25.5%);
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
}
@media screen and (max-width: 640px) {
  .sec-recruit .bg-blue-sub-layer-2 {
    padding: 1rem 0 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(23%, rgba(63, 128, 191, 0.5)), color-stop(23%, white));
    background: linear-gradient(to right, rgba(63, 128, 191, 0.5) 23%, white 23%);
  }
}
.sec-recruit__gallery {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -9rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit__gallery {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-recruit__gallery {
    margin-top: -3rem;
    margin-bottom: 3rem;
  }
}
.sec-recruit__gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  padding: 1px;
}
.sec-recruit__gallery ul li {
  width: 16.66%;
  padding: 1px;
}
@media screen and (max-width: 640px) {
  .sec-recruit__gallery ul li {
    width: 33.3%;
  }
}
.sec-recruit__gallery ul li img {
  width: 100%;
}
.sec-recruit__news {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit__news {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-recruit__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
}
.sec-recruit__news h3 {
  display: block;
  width: 213px;
  height: 0;
  padding-top: 100px;
  overflow: hidden;
  background-size: 213px 100px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_recruit_news.svg);
}
@media screen and (max-width: 640px) {
  .sec-recruit__news h3 {
    display: block;
    width: 227px;
    height: 0;
    padding-top: 24px;
    overflow: hidden;
    background-size: 227px 24px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    background-image: url(../img/front/ttl_recruit_news_sp.svg);
    margin-bottom: 2rem;
  }
}
.sec-recruit__news .body {
  width: calc(100% - 290px);
}
@media screen and (max-width: 640px) {
  .sec-recruit__news .body {
    width: 100%;
  }
}
.sec-recruit__news .body .news-feed li .date::after {
  display: none;
}
.sec-recruit__news .body .news-feed li:nth-child(odd) a {
  background: #fff;
}
.sec-recruit__pickup {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup {
    margin-bottom: -18px;
  }
}
.sec-recruit__pickup ul li + li {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup ul li + li {
    margin-top: 1rem;
  }
}
.sec-recruit__pickup ul li:nth-child(even) a {
  margin-left: auto;
}
.sec-recruit__pickup ul li a {
  background: #3f80bf;
  color: #fff;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 205px);
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup ul li a {
    width: 100%;
  }
}
.sec-recruit__pickup ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
}
.sec-recruit__pickup ul li a span {
  padding-left: 1.5em;
  padding-right: 1.5em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup ul li a span {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0.7em 1em;
    letter-spacing: -0.03em;
  }
}
.sec-recruit__pickup ul li a img {
  width: 380px;
}
@media screen and (max-width: 640px) {
  .sec-recruit__pickup ul li a img {
    width: 130px;
  }
}
.sec-recruit__pickup ul li a:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateX(5px) translateY(-5px);
          transform: translateX(5px) translateY(-5px);
}
.sec-recruit__pickup ul li a:hover::before {
  width: 100%;
}

.sec-interview {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .sec-interview {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.sec-interview h2::before {
  content: "";
  display: block;
  width: 88px;
  height: 0;
  padding-top: 110px;
  overflow: hidden;
  background-size: 88px 110px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/bg_ttl_interview.svg);
  margin-bottom: -3rem;
  margin-left: -5rem;
}
@media screen and (max-width: 640px) {
  .sec-interview h2::before {
    display: block;
    width: 58px;
    height: 0;
    padding-top: 110px;
    overflow: hidden;
    background-size: 58px 110px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    margin-bottom: -4rem;
    margin-left: -40px;
  }
}
.sec-interview h2 span {
  display: block;
  width: 380px;
  height: 0;
  padding-top: 110px;
  overflow: hidden;
  background-size: 380px 110px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_interview.svg);
}
@media screen and (max-width: 640px) {
  .sec-interview h2 span {
    display: block;
    width: 220px;
    height: 0;
    padding-top: 64px;
    overflow: hidden;
    background-size: 220px 64px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-interview .head {
  margin-bottom: 2rem;
}
.sec-interview .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .sec-interview .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-interview .interview-each {
  width: 32.5%;
}
@media screen and (max-width: 640px) {
  .sec-interview .interview-each {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sec-interview .interview-each .image {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  overflow: hidden;
  margin-bottom: 4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sec-interview .interview-each .image:hover {
  -webkit-transform: skewY(-6deg) translateX(5px) translateY(-5px);
          transform: skewY(-6deg) translateX(5px) translateY(-5px);
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  opacity: 0.7;
}
.sec-interview .interview-each figure {
  -webkit-transform: skewY(6deg) scale(1.2);
          transform: skewY(6deg) scale(1.2);
  height: 0;
  padding-top: 90%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .sec-interview .interview-each figure {
    -webkit-transform: skewY(6deg) scale(1.2);
            transform: skewY(6deg) scale(1.2);
  }
}
.sec-interview .interview-each a {
  letter-spacing: 0.1em;
}
.sec-interview .interview-each h3 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .sec-interview .interview-each h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.sec-interview .interview-each .name {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .sec-interview .interview-each .name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
}
.sec-interview .interview-each .join {
  font-size: 1.7rem;
}
@media screen and (max-width: 640px) {
  .sec-interview .interview-each .join {
    font-size: 1.2rem;
  }
}
.sec-interview .btn-link a {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .sec-interview .btn-link a {
    width: 180px;
  }
}

.sec-contact {
  margin-top: -26rem;
  margin-bottom: -18rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .sec-contact {
    margin-bottom: -11rem;
  }
}
.sec-contact .bg-blue {
  position: relative;
  background: url(../img/common/bg_blue_wave.jpg);
}
.sec-contact .bg-blue-sub-layer-1 {
  padding: 4rem 0 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(51%, transparent), color-stop(51%, rgba(63, 128, 191, 0.15)));
  background: linear-gradient(to right, transparent 51%, rgba(63, 128, 191, 0.15) 51%);
}
@media screen and (max-width: 640px) {
  .sec-contact .bg-blue-sub-layer-1 {
    padding: 1rem 0 0;
  }
}
.sec-contact .bg-blue-sub-layer-2 {
  padding: 5rem 0 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(78%, transparent), color-stop(78%, rgba(63, 128, 191, 0.5)));
  background: linear-gradient(to right, transparent 78%, rgba(63, 128, 191, 0.5) 78%);
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .sec-contact .bg-blue-sub-layer-2 {
    padding: 1rem 0 0;
  }
}
.sec-contact .inner {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 9rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .sec-contact .inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .sec-contact .inner {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}
.sec-contact h2 {
  display: block;
  width: 333px;
  height: 0;
  padding-top: 54px;
  overflow: hidden;
  background-size: 333px 54px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/front/ttl_contact.svg);
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .sec-contact h2 {
    display: block;
    width: 220px;
    height: 0;
    padding-top: 36px;
    overflow: hidden;
    background-size: 220px 36px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    margin-bottom: 1.5rem;
  }
}
.sec-contact .message {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .sec-contact .message {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.sec-contact .btn-link {
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .sec-contact .btn-link {
    margin-bottom: 1rem;
  }
}
.sec-contact .btn-link a {
  width: 500px;
  max-width: 500px;
}
.sec-contact .btn-link a span {
  font-size: 2.3rem;
}
@media screen and (max-width: 640px) {
  .sec-contact .btn-link a {
    width: 100%;
  }
  .sec-contact .btn-link a span {
    font-size: 1.5rem;
  }
}
.sec-contact .tel-num {
  display: block;
  width: 504px;
  height: 0;
  padding-top: 49px;
  overflow: hidden;
  background-size: 504px 49px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/common/num_contact_tel.svg);
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .sec-contact .tel-num {
    display: block;
    width: 300px;
    height: 0;
    padding-top: 62px;
    overflow: hidden;
    background-size: 300px 62px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
    margin-bottom: 0;
  }
}
.sec-contact__tel {
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 640px) {
  .sec-contact__tel {
    font-size: 1.4rem;
  }
}
.sec-contact .icon-fish {
  position: absolute;
  left: 16%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 3rem;
  width: 114px;
}
@media screen and (max-width: 640px) {
  .sec-contact .icon-fish {
    left: 19%;
    bottom: 1rem;
    width: 79px;
  }
}
.sec-contact .icon-fish img {
  width: 100%;
}

.pc-only {
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .pc-only {
    display: none;
  }
}

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

.btn-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #213091;
  max-width: 280px;
  color: #fff;
  position: relative;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
.btn-link a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-link a:hover {
  color: #213091;
}
.btn-link a:hover::before {
  width: 100%;
  border: 4px solid #213091;
}
.btn-link a span {
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
  font-size: 1.6rem;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
}
@media screen and (max-width: 640px) {
  .btn-link a span {
    font-size: 1.1rem;
    padding: 1em 3em;
  }
}

ul.news-feed li a {
  font-size: 1.6rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.85em 2.8em;
  position: relative;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
ul.news-feed li a:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  -webkit-transform: skewX(-10deg) translateX(5px) translateY(-5px);
          transform: skewX(-10deg) translateX(5px) translateY(-5px);
}
@media screen and (max-width: 640px) {
  ul.news-feed li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.5em 1em;
  }
  ul.news-feed li a .meta {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
ul.news-feed li a span {
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
ul.news-feed li:nth-child(odd) a {
  background: #efefef;
}
ul.news-feed .date {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 1.8rem;
  position: relative;
  padding-right: 1.6em;
}
ul.news-feed .date:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: block;
  border-right: 1px solid #000;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 640px) {
  ul.news-feed .date:after {
    height: 1em;
    -webkit-transform: rotate(10deg) translateY(-50%);
            transform: rotate(10deg) translateY(-50%);
    border-right: 1px solid #000;
    top: 50%;
  }
}
@media screen and (max-width: 640px) {
  ul.news-feed .date {
    font-size: 1.3rem;
  }
}
ul.news-feed .category {
  font-size: 1.4rem;
  position: relative;
  padding-left: 1.3em;
  padding-right: 1.3em;
  width: 7em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  ul.news-feed .category {
    font-size: 1.2rem;
  }
}
ul.news-feed .category:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: block;
  border-right: 1px solid #000;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 640px) {
  ul.news-feed .category {
    font-size: 1.3rem;
  }
  ul.news-feed .category::after {
    height: 1em;
    top: 50%;
    -webkit-transform: rotate(10deg) translateY(-50%);
            transform: rotate(10deg) translateY(-50%);
  }
}
ul.news-feed .title {
  font-size: 1.6rem;
  width: calc(100% - 15em);
}
@media screen and (max-width: 640px) {
  ul.news-feed .title {
    width: 100%;
    padding-left: 0;
    font-size: 1.5rem;
    margin-left: 1em;
  }
}

.next-contents {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
  padding-top: 10rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .next-contents {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .next-contents {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.next-contents__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .next-contents__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2rem;
  }
}
.next-contents__ttl span {
  margin-right: 2rem;
}
@media screen and (max-width: 640px) {
  .next-contents__ttl span {
    margin: 0 0 1rem;
  }
  .next-contents__ttl span img {
    width: 100%;
  }
}
.next-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .next-contents ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .next-contents ul li {
    margin-bottom: 1em;
  }
  .next-contents ul img {
    width: 100%;
  }
}

.breadcrumb {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #efefef), color-stop(50%, white));
  background: linear-gradient(to right, #efefef 50%, white 50%);
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .breadcrumb {
    margin-right: 15px;
  }
}
.breadcrumb ul {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #efefef;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
@media screen and (max-width: 640px) {
  .breadcrumb ul {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .breadcrumb ul {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.breadcrumb ul li {
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
@media screen and (max-width: 640px) {
  .breadcrumb ul li {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.breadcrumb--bg-white {
  background: white;
}
.breadcrumb--bg-white ul {
  background: white;
}

.bg-gray-wave {
  background: url(../img/common/bg_gray_wave.gif);
}

.related-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.related-link::after {
  content: "";
  background: url(../img/common/related_link.png) no-repeat center center;
  width: 25px;
  height: 21px;
  margin-left: 0.5em;
  display: block;
}
.related-link:hover {
  opacity: 0.4;
}

.shop-link {
  background: #213091;
  display: inline-block;
  max-width: 340px;
  margin-top: 0.5em;
  padding: 0.5em 1em;
}
@media screen and (max-width: 640px) {
  .shop-link {
    max-width: 280px;
  }
}
.shop-link span {
  color: #fff;
}

.wp-pagenavi {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .wp-pagenavi {
    padding-bottom: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wp-pagenavi span,
.wp-pagenavi a {
  background: #efefef;
  border: none;
  padding: 0.65em 2em !important;
  font-family: "Roboto", sans-serif;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  font-size: 2.2rem;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 640px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    padding: 0.5em !important;
  }
}
.wp-pagenavi .current {
  background: #4c4948;
  color: #fff;
}
.wp-pagenavi .nextpostslink {
  background: #213091;
  color: #fff;
}

a.hover-img-slide img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a.hover-img-slide:hover img {
  opacity: 0.7;
  -webkit-transform: translateX(5px) translateY(-5px);
          transform: translateX(5px) translateY(-5px);
}

a.hover-slide {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.hover-slide:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateX(5px) translateY(-5px) skewX(-6deg);
          transform: translateX(5px) translateY(-5px) skewX(-6deg);
  opacity: 0.9;
}

a.hover-invert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #213091;
  color: #fff;
  position: relative;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  width: 100%;
  font-weight: bold;
  position: relative;
}
a.hover-invert::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
a.hover-invert:hover::before {
  width: 100%;
  border: 4px solid #213091;
}
a.hover-invert:hover span {
  color: #213091;
}
a.hover-invert span {
  position: relative;
  z-index: 1;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}

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

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

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

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

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

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

/* Slider */
.slick-list {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .slick-list {
    padding-top: 5vw;
  }
}
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 35px;
  width: 60px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  background: url(../img/front/ctrl_next.svg) no-repeat center center;
  background-size: 100%;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  z-index: 2;
  left: -10px;
  background: url(../img/front/ctrl_prev.svg) no-repeat center center;
  background-size: 100%;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

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

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

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

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 280px;
}
@media screen and (max-width: 640px) {
  .page-header {
    height: 140px;
  }
}
.page-header h2 {
  display: block;
  width: 492px;
  height: 0;
  padding-top: 187px;
  overflow: hidden;
  background-size: 492px 187px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  margin-top: -4rem;
}
@media screen and (max-width: 640px) {
  .page-header h2 {
    display: block;
    width: 280px;
    height: 0;
    padding-top: 106px;
    overflow: hidden;
    background-size: 280px 106px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.page-header--about {
  background: url(../img/head/bg_head_about.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 640px) {
  .page-header--about {
    background: url(../img/head/bg_head_about_sp.jpg) no-repeat center center/cover;
  }
}

.page-header--contact {
  background: url(../img/head/bg_head_contact.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--contact {
    background: url(../img/head/bg_head_contact_sp.jpg) no-repeat center center/cover;
  }
}

.page-header--sitemap {
  background: url(../img/head/bg_head_contact.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--sitemap {
    background: url(../img/head/bg_head_contact_sp.jpg) no-repeat center center/cover;
  }
}

.page-header--news {
  background: url(../img/head/bg_head_news.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--news {
    background: url(../img/head/bg_head_news_sp.jpg) no-repeat center center/cover;
  }
}

.page-header--interview {
  background: url(../img/head/bg_head_interview.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--interview {
    background: url(../img/head/bg_head_interview_sp.jpg) no-repeat center center/cover;
  }
}

.page-header--recruit {
  height: 700px;
  background: url(../img/head/bg_head_recruit.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--recruit {
    height: 60vw;
  }
}

.page-header--privacy {
  background: url(../img/head/bg_head_contact.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 640px) {
  .page-header--privacy {
    background: url(../img/head/bg_head_contact_sp.jpg) no-repeat center center/cover;
  }
}

.page-header__ttl-about {
  background-image: url(../img/head/ttl_about.svg);
}

.page-header__ttl-contact {
  background-image: url(../img/head/ttl_contact.svg);
}

.page-header__ttl-sitemap {
  background-image: url(../img/head/ttl_sitemap.svg);
}

.page-header__ttl-privacy {
  background-image: url(../img/head/ttl_privacy.svg);
}

.page-header__ttl-news {
  background-image: url(../img/head/ttl_news.svg);
}

.page-header__ttl-interview {
  background-image: url(../img/head/ttl_interview.svg);
}

.page-header__ttl-recruit {
  background-image: url(../img/head/ttl_recruit.svg);
  margin-bottom: 0rem;
  -webkit-transform: translateY(-11rem);
          transform: translateY(-11rem);
}
@media screen and (max-width: 640px) {
  .page-header__ttl-recruit {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
}

.breadcrumb ul li {
  color: #4c4948;
}
.breadcrumb ul li::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(../img/parts/icon_arrow_right.svg) center center no-repeat;
  margin-left: 1em;
  margin-right: 1em;
}
@media screen and (max-width: 640px) {
  .breadcrumb ul li::after {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
.breadcrumb ul li:last-child::after {
  display: none;
}
.breadcrumb ul li a {
  color: #000;
}

.about-page-anchor {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .about-page-anchor {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .about-page-anchor {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.about-page-anchor ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-page-anchor ul li {
  width: 50%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .about-page-anchor ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .about-page-anchor ul li img {
    width: 100%;
  }
}

.about-business__bg {
  background: #3f80bf url(../img/front/bg_about.jpg) right center no-repeat;
  background-size: cover;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  margin-top: 15rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-business__bg {
    margin-top: 4rem;
    background: #3f80bf url(../img/front/bg_about_sp.jpg) right center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1600px) {
  .about-business__bg {
    background-size: 1600px;
    background-position: center;
  }
}

.about-business {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .about-business {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .about-business {
    padding-top: 5rem;
  }
}
.about-business h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .about-business h3 {
    font-size: 2.4rem;
    text-align: center;
  }
}
.about-business p {
  font-size: 1.7rem;
  line-height: 2;
  width: 64%;
}
@media screen and (max-width: 640px) {
  .about-business p {
    width: 100%;
    font-size: 1.6rem;
  }
}

.about-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1000px;
  height: 1000px;
  margin-top: -1rem;
}
@media screen and (max-width: 640px) {
  .about-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
    height: auto;
  }
}
.about-message figure {
  width: 55%;
  background: url(../img/about/img_ceo.png) 100% center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .about-message figure {
    width: 100%;
    padding-top: 100vw;
    margin-top: -5vw;
  }
}
.about-message .txt {
  width: 50%;
}
.about-message .txt h3 {
  margin-left: 19rem;
  margin-top: 3rem;
  margin-bottom: 0rem;
}
@media screen and (max-width: 640px) {
  .about-message .txt {
    width: 100%;
  }
  .about-message .txt h3 {
    margin: 1em 0 0 1rem;
    width: 280px;
    -webkit-transform: translateX(-3rem);
            transform: translateX(-3rem);
  }
  .about-message .txt h3 img {
    width: 100%;
  }
}
.about-message__box {
  background: rgba(255, 255, 255, 0.7);
  margin-left: -17rem;
  padding: 3rem 5rem;
}
@media screen and (max-width: 640px) {
  .about-message__box {
    margin: 0;
    padding: 1rem 15px;
  }
}
.about-message__box h4 {
  font-size: 3.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .about-message__box h4 {
    font-size: 2.2rem;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.about-message__box h5 {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  letter-spacing: 0 !important;
}
.about-message__box ul li {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  letter-spacing: 0 !important;
}
.about-message__box p {
  font-size: 1.7rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .about-message__box p {
    font-size: 1.6rem;
  }
}
.about-message__box__name {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  margin-top: 3rem;
}
.about-message__box__name p {
  line-height: 1.5;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
}
.about-message__box__name .section {
  font-size: 2rem;
  margin-right: 0.5em;
}
.about-message__box__name .name {
  font-size: 3.2rem;
}
@media screen and (max-width: 640px) {
  .about-message__box__name {
    text-align: right;
  }
  .about-message__box__name .section {
    font-size: 1.8rem;
  }
  .about-message__box__name .name {
    font-size: 2.4rem;
  }
}

.about-philosophy {
  background: #efefef;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 5rem;
  margin-top: -10rem;
}
@media screen and (max-width: 640px) {
  .about-philosophy {
    margin-top: 0;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .about-philosophy {
    margin-top: -14rem;
  }
}
.about-philosophy__inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
}
@media screen and (max-width: 640px) {
  .about-philosophy__inner {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about-philosophy h3 {
  font-size: 3.6rem;
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .about-philosophy h3 {
    font-size: 2.4rem;
  }
}
.about-philosophy h3::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 5rem;
  border-bottom: 2px solid #000;
}
.about-philosophy p {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 640px) {
  .about-philosophy p {
    font-size: 1.8rem;
    line-height: 2;
  }
}
.about-philosophy__each {
  margin-bottom: 5rem;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  margin-top: 8rem;
}
@media screen and (max-width: 640px) {
  .about-features {
    margin-top: 4rem;
  }
}
.about-features h3 {
  text-align: center;
  margin-bottom: 9rem;
}
@media screen and (max-width: 640px) {
  .about-features h3 {
    margin-bottom: 2rem;
  }
  .about-features h3 img {
    width: 320px;
  }
}

.about-features__each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .about-features__each {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .about-features__each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-features__each:nth-child(odd) {
  margin-right: 0;
  margin-left: auto;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.about-features__each:nth-child(odd) figure {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 640px) {
  .about-features__each:nth-child(odd) figure {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: -15px !important;
    margin-left: auto;
  }
}
.about-features__each:nth-child(odd) .txt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 640px) {
  .about-features__each:nth-child(odd) .txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about-features__each figure {
  width: 51%;
}
@media screen and (max-width: 640px) {
  .about-features__each figure {
    width: 100%;
    margin-left: -15px;
  }
}
.about-features__each figure img {
  width: 100%;
}
.about-features__each .txt {
  width: 49%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 640px) {
  .about-features__each .txt {
    width: 100%;
    padding: 0;
  }
}
.about-features__each .txt small {
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .about-features__each .txt small {
    font-size: 1.7rem;
    text-align: center;
    display: block;
  }
}
.about-features__each .txt h4 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .about-features__each .txt h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.about-features__each .txt p {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .about-features__each .txt p {
    font-size: 1.6rem;
  }
}

.about-sdgs-bg-2 {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  background: -webkit-gradient(linear, left top, right top, color-stop(77%, white), color-stop(77%, rgba(63, 128, 191, 0.5)));
  background: linear-gradient(to right, white 77%, rgba(63, 128, 191, 0.5) 77%);
  padding-top: 5rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs-bg-2 {
    padding-top: 2.5rem;
    margin-top: -5rem;
  }
}

.about-sdgs-bg-1 {
  background: -webkit-gradient(linear, left top, right top, color-stop(46%, white), color-stop(46%, rgba(63, 128, 191, 0.15)));
  background: linear-gradient(to right, white 46%, rgba(63, 128, 191, 0.15) 46%);
  padding-top: 4rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs-bg-1 {
    padding-top: 2rem;
  }
}

.about-sdgs-bg-blue {
  background: #3f80bf url(../img/about/bg_sdgs.jpg) center bottom no-repeat;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs-bg-blue {
    padding-top: 5rem;
    padding-bottom: 0rem;
    background-size: 100%;
  }
}

.about-sdgs {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about-sdgs h3 {
  text-align: center;
  margin-top: -4rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs h3 {
    margin-bottom: 2rem;
  }
  .about-sdgs h3 img {
    width: 280px;
  }
}
.about-sdgs h4 {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs h4 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}
.about-sdgs h5 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .about-sdgs h5 {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (max-width: 380px) {
  .about-sdgs h5 {
    font-size: 5.2vw;
  }
}
.about-sdgs p {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .about-sdgs p {
    font-size: 1.6rem;
  }
}
.about-sdgs__each {
  background: #fff;
  margin-bottom: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 996px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .about-sdgs__each {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-sdgs__each figure {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .about-sdgs__each figure {
    overflow: hidden;
  }
  .about-sdgs__each figure img {
    width: 110%;
    margin-left: -10%;
    vertical-align: text-top;
  }
}
.about-sdgs__each .txt {
  padding: 4rem 5rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 640px) {
  .about-sdgs__each .txt {
    padding: 1.5rem;
  }
}

.sdgs-reason-2 figure {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 6rem 0 6rem 5rem;
}
@media screen and (max-width: 640px) {
  .sdgs-reason-2 figure {
    padding: 3rem 2rem 2rem;
  }
  .sdgs-reason-2 figure img {
    width: 100%;
    margin-left: 0;
  }
}
.sdgs-reason-2 .txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.sdgs-reason-3,
.sdgs-reason-4,
.sdgs-reason-5 {
  margin-bottom: 3rem;
}
.sdgs-reason-3 figure,
.sdgs-reason-4 figure,
.sdgs-reason-5 figure {
  padding: 6rem 6rem 6rem 0;
}
@media screen and (max-width: 640px) {
  .sdgs-reason-3 figure,
  .sdgs-reason-4 figure,
  .sdgs-reason-5 figure {
    padding: 0 2rem 2rem;
  }
  .sdgs-reason-3 figure img,
  .sdgs-reason-4 figure img,
  .sdgs-reason-5 figure img {
    width: 100%;
    margin-left: 0;
  }
}
.sdgs-reason-3 .txt,
.sdgs-reason-4 .txt,
.sdgs-reason-5 .txt {
  width: 45rem;
}
@media screen and (max-width: 640px) {
  .sdgs-reason-3 .txt,
  .sdgs-reason-4 .txt,
  .sdgs-reason-5 .txt {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .sdgs-reason-3 figure {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
}

.about-profile {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .about-profile {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.about-profile::after {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  z-index: -1;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 20rem;
  display: block;
  width: 100%;
  background: #efefef;
}
.about-profile h3 {
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .about-profile h3 {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
  .about-profile h3 img {
    width: 100%;
  }
}
.about-profile__table {
  width: 100%;
}
.about-profile__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .about-profile__table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-profile__table tr:nth-child(odd) {
  background: #efefef;
}
.about-profile__table tr th,
.about-profile__table tr td {
  font-size: 1.8rem;
  text-align: left;
  padding-top: 1em;
  padding-bottom: 1em;
  line-height: 2;
}
.about-profile__table tr th {
  font-weight: bold;
  width: 244px;
  font-size: 2rem;
}
@media screen and (max-width: 640px) {
  .about-profile__table tr th {
    width: 100%;
    font-size: 1.6rem;
    padding: 1rem 15px 0;
  }
}
.about-profile__table tr td {
  width: 548px;
}
@media screen and (max-width: 640px) {
  .about-profile__table tr td {
    padding: 0 15px 1rem;
    width: 100%;
    font-size: 1.6rem;
  }
}

.about-enkaku {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  padding-top: 10rem;
  padding-bottom: 13rem;
  color: #fff;
  background: url(../img/common/bg_blue_wave.jpg);
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .about-enkaku {
    padding-top: 8rem;
  }
}
.about-enkaku h3 {
  font-size: 3.8rem;
  text-align: center;
  font-weight: bold;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .about-enkaku h3 {
    font-size: 3.2rem;
  }
}
.about-enkaku table {
  width: 100%;
}
.about-enkaku tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .about-enkaku tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-enkaku tr:nth-child(odd) {
  background: #589ae6;
}
.about-enkaku th,
.about-enkaku td {
  font-size: 1.8rem;
  line-height: 2em;
  padding-top: 0.55em;
  padding-bottom: 0.55em;
}
@media screen and (max-width: 640px) {
  .about-enkaku th,
  .about-enkaku td {
    font-size: 1.6rem;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about-enkaku th {
  width: 280px;
}
@media screen and (max-width: 640px) {
  .about-enkaku th {
    font-weight: bold;
    padding-bottom: 0;
    width: 100%;
  }
}
.about-enkaku td {
  width: 240px;
}
@media screen and (max-width: 640px) {
  .about-enkaku td {
    padding-top: 0;
    width: 100%;
  }
}
.about-enkaku .inner {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.enkaku-fish {
  position: absolute;
  bottom: 7%;
  right: 50%;
  -webkit-transform: translateX(510px);
          transform: translateX(510px);
}
@media screen and (max-width: 640px) {
  .enkaku-fish {
    bottom: -90px;
    right: 5%;
    -webkit-transform: none;
            transform: none;
  }
  .enkaku-fish img {
    width: 100px;
  }
}

#about-message,
#about-features,
#about-sdgs,
#about-profile {
  margin-top: -8rem;
  padding-top: 8rem;
}

.page-header__copy {
  display: block;
  width: 794px;
  height: 0;
  padding-top: 137px;
  overflow: hidden;
  background-size: 794px 137px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/recruit/copy_recruit.svg);
}
@media screen and (max-width: 640px) {
  .page-header__copy {
    display: block;
    width: 300px;
    height: 0;
    padding-top: 52px;
    overflow: hidden;
    background-size: 300px 52px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.recruit-contents {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .recruit-contents {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .recruit-contents {
    padding-top: 4rem;
    padding-bottom: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-contents__each {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .recruit-contents__each {
    width: 100%;
  }
  .recruit-contents__each h3 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1rem;
  }
  .recruit-contents__each h3 img {
    width: 210px;
  }
}
.recruit-contents__each a {
  background: #3887e1;
  color: #fff;
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
  font-style: italic;
  position: relative;
  padding: 1.5em 1.5em;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  position: relative;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 640px) {
  .recruit-contents__each a {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 0.75em 3em 0.75em 0.75em;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 380px) {
  .recruit-contents__each a {
    font-size: 4.2vw;
  }
}
.recruit-contents__each a::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 10px;
  height: 100%;
  background: #3887e1;
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
@media screen and (max-width: 640px) {
  .recruit-contents__each a::before {
    display: none;
  }
}
.recruit-contents__each a span {
  width: 100%;
  display: block;
  position: relative;
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.recruit-contents__each a span::after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  z-index: 1;
  background: url(../img/recruit/icon_list_down.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .recruit-contents__each a span::after {
    right: -2em;
  }
}
.recruit-contents__each:nth-child(even) a::before {
  right: -5px;
  left: inherit;
}

.recruit-merit-bg {
  background: url(../img/recruit/bg_merit.jpg) center center no-repeat;
  background-size: cover;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  margin-top: -20rem;
}
@media screen and (max-width: 640px) {
  .recruit-merit-bg {
    margin-top: -5rem;
    position: relative;
    z-index: 1;
  }
}

.recruit-merit {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 13rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .recruit-merit {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .recruit-merit {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.recruit-merit h3 {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .recruit-merit h3 {
    margin-bottom: 2rem;
  }
  .recruit-merit h3 img {
    width: 300px;
  }
}
.recruit-merit__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .recruit-merit__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-merit__each {
  margin: 10px 10px 3rem;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .recruit-merit__each {
    margin: 0 0 2rem;
  }
  .recruit-merit__each figure img {
    width: 100%;
  }
}
.recruit-merit__each .txt {
  padding: 3rem 5rem;
}
@media screen and (max-width: 640px) {
  .recruit-merit__each .txt {
    padding: 2rem;
  }
}
.recruit-merit__each .txt h4 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  letter-spacing: -0.01;
}
@media screen and (max-width: 640px) {
  .recruit-merit__each .txt h4 {
    font-size: 2rem;
    text-align: center;
  }
}
.recruit-merit__each .txt p {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .recruit-merit__each .txt p {
    font-size: 1.6rem;
  }
}
.recruit-merit__each.col-3 .txt {
  padding: 3rem 2.5rem;
}

.recruit-news {
  padding-bottom: 20rem;
}
@media screen and (max-width: 640px) {
  .recruit-news {
    padding-bottom: 8rem;
  }
  .recruit-news .head {
    margin-left: auto;
    margin-right: auto;
  }
  .recruit-news h3 {
    display: block;
    width: 280px;
    height: 0;
    padding-top: 30px;
    overflow: hidden;
    background-size: 280px 30px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.recruit-message {
  padding-top: 20rem;
  padding-bottom: 7rem;
  margin-top: -10rem;
  margin-bottom: 0rem;
}
@media screen and (max-width: 640px) {
  .recruit-message {
    margin-top: -10rem;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
}
.recruit-message__recruiter {
  position: relative;
  margin-top: 38px;
  min-height: 395px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter {
    min-height: auto;
    position: static;
  }
}
.recruit-message__recruiter .txt {
  width: 1220px;
}
.recruit-message__recruiter figure,
.recruit-message__recruiter .txt {
  position: absolute;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter figure,
  .recruit-message__recruiter .txt {
    position: static;
  }
}
.recruit-message__recruiter figure {
  top: 50%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter figure {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    overflow: hidden;
    width: 100vw;
    margin-left: -15px;
  }
  .recruit-message__recruiter figure img {
    width: 110%;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
.recruit-message__recruiter .txt {
  position: absolute;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: static;
    width: 100%;
  }
}
.recruit-message__recruiter h3 {
  margin-left: -3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter h3 {
    width: 300px;
    margin-bottom: 2rem;
  }
  .recruit-message__recruiter h3 img {
    width: 100%;
  }
}
.recruit-message__recruiter h4 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 380px) {
  .recruit-message__recruiter h4 {
    font-size: 5.4vw;
  }
}
.recruit-message__recruiter p {
  font-size: 1.7rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter p {
    font-size: 1.6rem;
  }
}
.recruit-message__recruiter .message-text {
  width: 690px;
  margin-bottom: 36px;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter .message-text {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.recruit-message__recruiter__name {
  margin-top: 5rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .recruit-message__recruiter__name {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-message__recruiter__name .name {
  font-size: 2.7rem;
  font-weight: bold;
  margin-right: 0.5em;
}
.recruit-message__recruiter__name .en {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: bold;
}

.recruit-we-want {
  padding-bottom: 17rem;
}
@media screen and (max-width: 640px) {
  .recruit-we-want {
    padding-bottom: 5rem;
  }
}
.recruit-we-want__head {
  text-align: center;
}
.recruit-we-want__head h3 {
  display: inline-block;
  background-color: #fff;
  color: #3887e1;
  font-family: "Noto Sans JP", sans-serif;
  font-style: italic;
  font-size: 4.8rem;
  font-weight: bold;
  margin: 0 auto 8rem;
  padding: 2rem 9rem;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
@media screen and (max-width: 640px) {
  .recruit-we-want__head h3 {
    font-size: 2.4rem;
    padding: 1em;
    width: calc(100% - 30px);
    margin-bottom: 2rem;
  }
}
.recruit-we-want__head h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.recruit-we-want__list {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__list {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .recruit-we-want__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-we-want__col {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__col {
    width: 100%;
  }
}
.recruit-we-want__each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__each {
    margin-bottom: 3rem;
  }
}
.recruit-we-want__each figure {
  width: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__each figure {
    width: 6rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .recruit-we-want__each figure img {
    width: 4rem;
    height: 4rem;
  }
}
.recruit-we-want__each .txt {
  width: calc(100% - 5rem);
}
.recruit-we-want__each .txt h4 {
  color: #3887e1;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__each .txt h4 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
.recruit-we-want__each .txt p {
  font-size: 1.7rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .recruit-we-want__each .txt p {
    font-size: 1.6rem;
  }
}

.recruit-special-bg {
  background: #3887e1;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  padding-top: 19rem;
  padding-bottom: 3rem;
  margin-top: -10rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .recruit-special-bg {
    padding-top: 5rem;
    margin-top: -5rem;
  }
}

.recruit-special {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .recruit-special {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.recruit-special__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .recruit-special__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4rem;
  }
}
.recruit-special__head h3 {
  margin-left: -7.4rem;
  margin-top: -3.7rem;
}
@media screen and (max-width: 640px) {
  .recruit-special__head h3 {
    width: 300px;
    margin-left: -5rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
  }
  .recruit-special__head h3 img {
    width: 100%;
  }
}
.recruit-special__head .txt {
  margin-left: 6rem;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .recruit-special__head .txt {
    margin-left: 0;
  }
  .recruit-special__head .txt br {
    display: none;
  }
}
.recruit-special__head .txt p {
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .recruit-special__head .txt p {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.recruit-special__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6.8rem;
}
@media screen and (max-width: 640px) {
  .recruit-special__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.recruit-special__each {
  position: relative;
  width: 48%;
}
@media screen and (max-width: 640px) {
  .recruit-special__each {
    margin-bottom: 4rem;
    width: 100% !important;
    position: static !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-special__each figure {
    width: 100% !important;
    position: static !important;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
  }
  .recruit-special__each figure img {
    width: 100% !important;
  }
  .recruit-special__each .txt {
    width: 100% !important;
    position: static !important;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .recruit-special__each h4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1em;
  }
}
.recruit-special__each h4 {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0.25em 0.6em;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  color: #3887e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 4.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-style: italic;
}
@media screen and (max-width: 640px) {
  .recruit-special__each h4 {
    font-size: 2.4rem;
    position: static;
  }
}
.recruit-special__each h4 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.recruit-special__each h4 small {
  font-size: 2rem;
}
@media screen and (max-width: 640px) {
  .recruit-special__each h4 small {
    font-size: 1.8rem;
  }
}
.recruit-special__each .txt p {
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.026em;
}
.recruit-special__each.special-1 {
  width: 430px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-1 {
    width: 100%;
  }
}
.recruit-special__each.special-1 figure {
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-1 figure {
    width: 76% !important;
  }
  .recruit-special__each.special-1 figure img {
    width: 100%;
  }
}
.recruit-special__each.special-2 {
  width: 650px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-2 {
    width: 100%;
  }
}
.recruit-special__each.special-2 figure {
  position: absolute;
  left: -6px;
  bottom: 2px;
}
.recruit-special__each.special-2 figure img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-2 figure {
    margin-bottom: 1rem;
  }
}
.recruit-special__each.special-2 .txt {
  position: absolute;
  right: 0;
  top: -13px;
  width: 353px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-2 .txt {
    width: 100%;
  }
}
.recruit-special__each.special-3 {
  display: block;
  width: 594px;
  min-height: 480px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-3 {
    min-height: auto;
  }
}
.recruit-special__each.special-3 figure {
  position: absolute;
  left: -3px;
  bottom: -17px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-3 figure {
    width: 80% !important;
    margin-bottom: 2rem;
  }
}
.recruit-special__each.special-3 .txt {
  position: absolute;
  right: 0;
  top: 6rem;
  width: 257px;
}
.recruit-special__each.special-4 {
  width: 547px;
  margin-top: -20px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-4 {
    margin-top: 0;
  }
}
.recruit-special__each.special-4 figure {
  position: absolute;
  width: 548px;
  margin-top: 103px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-4 figure {
    margin-top: 0;
    margin-bottom: 1rem;
    width: 80% !important;
  }
}
.recruit-special__each.special-4 .txt {
  position: absolute;
  right: 0;
  top: 86px;
  width: 248px;
}
.recruit-special__each.special-5 {
  min-height: 540px;
  width: 520px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-5 {
    min-height: auto;
  }
}
.recruit-special__each.special-5 figure {
  position: absolute;
  left: -19px;
  bottom: -11px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-5 figure {
    width: 70% !important;
    margin: 0 auto 1rem;
  }
}
.recruit-special__each.special-5 .txt {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 237px;
}
.recruit-special__each.special-6 {
  width: 588px;
}
.recruit-special__each.special-6 figure {
  position: absolute;
  left: -178px;
  bottom: -178px;
}
@media screen and (max-width: 640px) {
  .recruit-special__each.special-6 figure {
    width: 120% !important;
    margin-left: -84px;
  }
}
.recruit-special__each.special-6 .txt {
  position: absolute;
  right: 0;
  bottom: 90px;
  width: 330px;
  margin-top: -18vw;
}

.recruit-section-bg {
  background: #4c4948;
  margin-top: 10rem;
  padding-top: 10rem;
  padding-bottom: 14rem;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  margin-top: -10rem;
}
@media screen and (max-width: 640px) {
  .recruit-section-bg {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
}

.recruit-section {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
}
@media screen and (max-width: 640px) {
  .recruit-section {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.recruit-section h3 {
  text-align: center;
  margin-bottom: 7rem;
  margin-left: -3rem;
}
@media screen and (max-width: 640px) {
  .recruit-section h3 {
    margin-bottom: 3rem;
  }
  .recruit-section h3 img {
    width: 240px;
  }
}
.recruit-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .recruit-section__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-section__each {
  color: #fff;
  padding: 1rem;
}
@media screen and (max-width: 640px) {
  .recruit-section__each {
    padding-bottom: 3rem;
  }
}
.recruit-section__each h4 {
  font-weight: bold;
  font-size: 2.8rem;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .recruit-section__each h4 {
    font-size: 2rem;
  }
}
.recruit-section__each h4 span {
  padding: 0.25em 1em;
  background: #fff;
  color: #4c4948;
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.recruit-section__each figure {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .recruit-section__each figure {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .recruit-section__each figure img {
    width: 100%;
  }
}
.recruit-section__each .txt h5 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .recruit-section__each .txt h5 {
    font-size: 2rem;
  }
}
.recruit-section__each .txt p {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .recruit-section__each .txt p {
    font-size: 1.6rem;
  }
}

.recruit-guideline {
  padding-top: 6rem;
  padding-bottom: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .recruit-guideline {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
.recruit-guideline h3 {
  text-align: center;
  margin-bottom: 6rem;
  margin-right: -8rem;
}
@media screen and (max-width: 640px) {
  .recruit-guideline h3 {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
    margin-bottom: 2rem;
  }
  .recruit-guideline h3 img {
    width: 120%;
    margin-left: -9%;
  }
}
.recruit-guideline .recruit-guideline__tab {
  max-width: 996px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100px;
}
@media screen and (max-width: 640px) {
  .recruit-guideline .recruit-guideline__tab {
    max-width: 96%;
  }
}
.recruit-guideline .recruit-guideline__tab li {
  width: 49%;
  text-align: center;
  font-size: 2.8rem;
  border-radius: 10px 10px 0 0;
  background: url(../img/common/bg_gray_wave.gif);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .recruit-guideline .recruit-guideline__tab li {
    font-size: 2rem;
    height: 50px;
  }
}
.recruit-guideline .recruit-guideline__tab li.is-active {
  height: 120px;
  color: #fff;
  background: #3887e1 url(../img/common/bg_trans_wave.png);
}
@media screen and (max-width: 640px) {
  .recruit-guideline .recruit-guideline__tab li.is-active {
    height: 60px;
  }
}
.recruit-guideline .recruit-guideline__tab li small {
  font-size: 0.85em;
}
.recruit-guideline .recruit-guideline__tab li br {
  display: none;
}
@media screen and (max-width: 640px) {
  .recruit-guideline .recruit-guideline__tab li br {
    display: block;
  }
}
.recruit-guideline__contents {
  -webkit-box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.2);
  border-top: 8px solid #3f80bf;
  position: relative;
  z-index: 1;
  padding-top: 4rem;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__contents {
    -webkit-box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
    padding-top: 0;
  }
}
.recruit-guideline__contents table {
  width: 100%;
}
.recruit-guideline__contents table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__contents table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-guideline__contents table tr:nth-child(even) {
  background: #efefef;
}
.recruit-guideline__contents table tr th,
.recruit-guideline__contents table tr td {
  font-size: 1.8rem;
  text-align: left;
  padding-top: 1em;
  padding-bottom: 1em;
}
.recruit-guideline__contents table tr th {
  font-weight: bold;
  width: 244px;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__contents table tr th {
    width: 100%;
    padding: 1em 15px 0;
    font-size: 1.6rem;
  }
}
.recruit-guideline__contents table tr td {
  width: 548px;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__contents table tr td {
    width: 100%;
    padding: 0 15px 1em;
    font-size: 1.6rem;
  }
}
.recruit-guideline__related {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related {
    padding: 2rem 15px;
  }
}
.recruit-guideline__related .message {
  text-align: center;
  color: #213091;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5rem;
  border: 1px solid #213091;
  margin-left: auto;
  margin-right: auto;
  width: 740px;
  padding: 1em 0.5em;
  line-height: 1.8;
  display: block;
  position: relative;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related .message {
    width: 100%;
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
.recruit-guideline__related .message::before, .recruit-guideline__related .message::after {
  content: "";
  width: 90%;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recruit-guideline__related .message::before {
  top: -1px;
}
.recruit-guideline__related .message::after {
  bottom: -1px;
}
.recruit-guideline__related ul {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related ul {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-guideline__related ul li {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related ul li {
    width: 100%;
  }
  .recruit-guideline__related ul li + li {
    margin-top: 2rem;
  }
}
.recruit-guideline__related ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #213091;
  font-size: 2rem;
  padding: 1.5em;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
@media screen and (max-width: 640px) {
  .recruit-guideline__related ul li a {
    padding: 0.75em;
    line-height: 1.5;
    font-size: 1.6rem;
  }
}
.recruit-guideline__related ul li a span {
  color: #fff;
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}

.tab-content {
  display: none;
}
.tab-content.is-show {
  display: table;
}

.sec-interview--recruit {
  padding-top: 18rem;
  padding-bottom: 20rem;
  margin-top: -10rem;
}
@media screen and (max-width: 640px) {
  .sec-interview--recruit {
    padding-top: 5rem;
    padding-bottom: 15rem;
    margin-top: -6vw;
  }
}
.sec-interview--recruit .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .sec-interview--recruit .head {
    margin-bottom: 2rem;
  }
}
.sec-interview--recruit .head h2 {
  display: block;
  width: 486px;
  height: 0;
  padding-top: 155px;
  overflow: hidden;
  background-size: 486px 155px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/recruit/ttl_interview.svg);
}
@media screen and (max-width: 640px) {
  .sec-interview--recruit .head h2 {
    display: block;
    width: 300px;
    height: 0;
    padding-top: 96px;
    overflow: hidden;
    background-size: 300px 96px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.recruit-gallery-bg {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  padding-top: 6rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 640px) {
  .recruit-gallery-bg {
    padding-top: 0;
    padding-bottom: 8rem;
  }
}

.recruit-gallery {
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .recruit-gallery {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.recruit-gallery h3 {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .recruit-gallery h3 {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateX(2rem);
            transform: translateX(2rem);
    margin-bottom: 2rem;
  }
  .recruit-gallery h3 img {
    width: 100%;
  }
}
.recruit-gallery .sec-recruit__gallery {
  margin-top: 0;
}

.recruit-contact {
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: -10rem;
}
@media screen and (max-width: 640px) {
  .recruit-contact {
    margin-bottom: 0;
  }
  .recruit-contact img {
    width: 100%;
  }
}

#recruit-merit {
  padding-top: 20rem;
  margin-top: -20rem;
}

#recruit-section {
  padding-top: 8rem;
  margin-top: -8rem;
}

.interview-list {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .interview-list {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.interview-list__each {
  width: 49%;
  margin-bottom: 9rem;
}
@media screen and (max-width: 640px) {
  .interview-list__each {
    margin-bottom: 3rem;
  }
}
.interview-list__each .image {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
  overflow: hidden;
  margin-bottom: 5rem;
  -webkit-box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0);
          box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 640px) {
  .interview-list__each .image {
    margin-bottom: 2rem;
  }
}
.interview-list__each .image figure {
  -webkit-transform: skewY(6deg) scale(1.15);
          transform: skewY(6deg) scale(1.15);
  width: 100%;
  height: 0;
  padding-top: 90%;
  background-size: 100%;
  background-position: center center;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.interview-list__each h3 {
  font-size: 2.7rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .interview-list__each h3 {
    font-size: 1.6rem;
  }
}
.interview-list__each .name {
  font-weight: bold;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  line-height: 2;
  font-size: 2.4rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 640px) {
  .interview-list__each .name {
    font-size: 1.3rem;
  }
}
.interview-list__each .join {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .interview-list__each .join {
    font-size: 1.2rem;
    font-weight: normal;
  }
}
.interview-list__each a {
  display: block;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.interview-list__each a:hover .image {
  -webkit-box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.2);
}
.interview-list__each a:hover .image figure {
  -webkit-transform: skewY(6deg) scale(1.25);
          transform: skewY(6deg) scale(1.25);
}

.interview-single-main {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
}
@media screen and (max-width: 640px) {
  .interview-single-main {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .interview-single-main {
    margin-top: 3rem;
    margin-bottom: 8rem;
  }
  .interview-single-main figure {
    width: 100vw;
    height: 100vw;
    margin-left: -30px;
    overflow: hidden;
  }
  .interview-single-main figure img {
    width: 200%;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
.interview-single-main .title {
  text-align: center;
  background: #fff;
  -webkit-transform: translateY(-60%) skewX(-6deg);
          transform: translateY(-60%) skewX(-6deg);
  display: block;
  width: 440px;
  margin: 0 auto;
  padding: 3rem;
  border-top: 12px solid #213091;
}
@media screen and (max-width: 640px) {
  .interview-single-main .title {
    width: 60%;
    padding: 1.5rem;
    border-width: 6px;
    -webkit-transform: translateY(-40%) skewX(-6deg);
            transform: translateY(-40%) skewX(-6deg);
  }
}
.interview-single-main .title .inner {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.interview-single-main .title span {
  font-size: 3.8rem;
  margin-bottom: 2.8rem;
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .interview-single-main .title span {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.interview-single-main .title h2 {
  font-size: 2.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .interview-single-main .title h2 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
}
.interview-single-main .title p {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .interview-single-main .title p {
    font-size: 1.6rem;
  }
}

.interview-single-content {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 640px) {
  .interview-single-content {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 10rem;
  }
}
.interview-single-content h3 {
  font-size: 2.6rem;
  color: #213091;
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .interview-single-content h3 {
    font-size: 2rem;
    text-align: left;
  }
  .interview-single-content h3 br {
    display: none;
  }
}
.interview-single-content p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .interview-single-content p {
    font-size: 1.6rem;
  }
}

.interview-single-question {
  background: #213091;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 1rem;
  position: relative;
}
.interview-single-question h3 {
  position: absolute;
  top: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .interview-single-question h3 {
    width: 150px;
    top: -65px;
  }
  .interview-single-question h3 img {
    width: 100%;
  }
}
.interview-single-question__list {
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .interview-single-question__list {
    overflow: hidden;
  }
}
.interview-single-question__each {
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .interview-single-question__each {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.interview-single-question__each h4 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  padding-left: 1em;
}
@media screen and (max-width: 640px) {
  .interview-single-question__each h4 {
    font-size: 1.8rem;
  }
}
.interview-single-question__each h4::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -10px;
  width: 93px;
  height: 82px;
  z-index: -1;
  background: url(../img/interview/icon_question.svg) center center no-repeat/contain;
}
.interview-single-question__each .answer {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 3rem 4rem;
  border: 3px solid #fff;
  background: #213091;
  margin-left: 2rem;
  width: 760px;
  line-height: 2;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .interview-single-question__each .answer {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.5rem;
    font-size: 1.6rem;
  }
}
.interview-single-question__each .answer::before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  height: 40px;
  width: 4px;
  background: #213091;
}
@media screen and (max-width: 640px) {
  .interview-single-question__each .answer::before {
    right: -4px;
    bottom: -3px;
    height: 30px;
    width: 4px;
  }
}
.interview-single-question__each .answer::after {
  position: absolute;
  z-index: 1;
  content: "";
  right: -45px;
  bottom: -3px;
  width: 46px;
  height: 45px;
  background: url(../img/interview/icon_triangle.png) no-repeat center center/contain;
}
@media screen and (max-width: 640px) {
  .interview-single-question__each .answer::after {
    right: -39px;
    width: 40px;
    height: 40px;
    background: url(../img/interview/icon_triangle.png) no-repeat center center/contain;
  }
}

.interview-single-voice-bg {
  background: #efefef;
}

.interview-single-voice {
  background: #fff;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  padding: 7rem 10rem;
}
@media screen and (max-width: 640px) {
  .interview-single-voice {
    padding: 5rem 0;
    -webkit-transform: skewX(0);
            transform: skewX(0);
  }
}
.interview-single-voice__inner {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
@media screen and (max-width: 640px) {
  .interview-single-voice__inner {
    -webkit-transform: skewX(0);
            transform: skewX(0);
  }
}
.interview-single-voice h3 {
  color: #213091;
  border: 3px solid #213091;
  padding: 0.5em 4em;
  display: inline-block;
  font-size: 3.4rem;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-bottom: 7rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 640px) {
  .interview-single-voice h3 {
    padding: 0.5em;
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.interview-single-voice h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.interview-single-voice__head {
  text-align: center;
}
.interview-single-voice__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .interview-single-voice__body figure {
    margin-bottom: 2rem;
  }
  .interview-single-voice__body figure img {
    width: 100%;
  }
}
.interview-single-voice__body .txt {
  margin-left: 5rem;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body .txt {
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.interview-single-voice__body .txt h4 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body .txt h4 {
    font-size: 2rem;
  }
}
.interview-single-voice__body .txt p {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body .txt p {
    font-size: 1.6rem;
  }
}
.interview-single-voice__body .name {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.interview-single-voice__body .name .section {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body .name .section {
    font-size: 2rem;
  }
}
.interview-single-voice__body .name .en {
  font-weight: bold;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 640px) {
  .interview-single-voice__body .name .en {
    font-size: 1.8rem;
  }
}
.interview-single-voice__body .name .join {
  font-size: 1.7rem;
}

.interview-single-gallery {
  background: #213091;
  padding-top: 10rem;
  padding-bottom: 20rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .interview-single-gallery {
    padding-top: 5rem;
    padding-bottom: 15rem;
  }
}
.interview-single-gallery__list {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 640px) {
  .interview-single-gallery__list {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .interview-single-gallery__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interview-single-gallery__list figure {
  width: 33.3%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 640px) {
  .interview-single-gallery__list figure {
    width: 100%;
    margin-bottom: 2em;
  }
}
.interview-single-gallery__list figure img {
  width: 100%;
}
.interview-single-gallery__list figcaption {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.8;
}

.interview-single-other-bg {
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
}

.interview-single-other {
  padding: 10rem 0 20rem;
  margin-top: -11rem;
  margin-bottom: -10rem;
  position: relative;
  -webkit-transform: skewY(6deg);
          transform: skewY(6deg);
}
@media screen and (max-width: 640px) {
  .interview-single-other {
    padding: 5rem 0 15rem;
    margin-bottom: -5rem;
  }
}
.interview-single-other::after {
  position: absolute;
  bottom: -10rem;
  left: 0;
  height: 20rem;
  width: 100%;
  content: "";
  display: block;
  background: #fff;
  -webkit-transform: skewY(-6deg);
          transform: skewY(-6deg);
}
.interview-single-other__head {
  text-align: center;
}
.interview-single-other__head h3 {
  color: #213091;
  border: 3px solid #213091;
  padding: 0.5em 3em;
  display: inline-block;
  font-size: 3.4rem;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 640px) {
  .interview-single-other__head h3 {
    padding: 0.5em 1em;
    font-size: 2.2rem;
  }
}
.interview-single-other__head h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.interview-single-other .interview-list {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 1200px;
}
@media screen and (max-width: 640px) {
  .interview-single-other .interview-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.interview-single-other .interview-list__each {
  width: 32%;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .interview-single-other .interview-list__each {
    width: 48%;
    margin-bottom: 3rem;
  }
}
.interview-single-other__more {
  text-align: center;
}
.interview-single-other__more a {
  font-size: 1.6rem;
  display: inline-block;
  padding: 2rem 6em;
  background: #213091;
  color: #fff;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
.interview-single-other__more a span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}

.news-single-category {
  max-width: 594px;
  margin: 11rem auto 6rem;
}
@media screen and (max-width: 640px) {
  .news-single-category {
    padding-left: 15px;
    padding-right: 15px;
    margin: 4rem auto 2rem;
  }
}
.news-single-category h3 {
  font-weight: bold;
  font-size: 2.1rem;
  text-align: center;
  color: #213091;
  margin-bottom: 3rem;
}
.news-single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .news-single-category ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news-single-category ul li {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
@media screen and (max-width: 640px) {
  .news-single-category ul li {
    width: 50%;
    margin-bottom: 10px;
  }
}
.news-single-category ul li a {
  background-color: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 1.4em 1em;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
@media screen and (max-width: 640px) {
  .news-single-category ul li a {
    padding: 0.75em;
  }
}
.news-single-category ul li a span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.news-single-category ul li.current a {
  background: #213091;
  color: #fff;
}

.news-list {
  width: 792px;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 640px) {
  .news-list {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 2rem;
  }
}
.news-list .news-feed li a {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .news-list .news-feed li a {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
}

.news-single-title {
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-title {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .news-single-title .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news-single-title .category {
  font-size: 1.8rem;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  padding-left: 1em;
  padding-right: 1em;
  line-height: 1.6;
  display: inline-block;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 640px) {
  .news-single-title .category {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.news-single-title .date {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 2.6rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 640px) {
  .news-single-title .date {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.news-single-title .title h1 {
  font-weight: bold;
  font-size: 2.6rem;
  background: #3f80bf url(../img/common/bg_trans_wave.png);
  color: #fff;
  margin-bottom: 2rem;
  padding: 1.2em 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .news-single-title .title h1 {
    padding: 1rem;
    font-size: 1.8rem;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.news-single-content {
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .news-single-content {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 5rem;
  }
  .news-single-content img {
    width: 100%;
  }
}
.news-single-content .main-image {
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .main-image {
    margin-bottom: 3rem;
  }
}
.news-single-content .title-1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .title-1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
.news-single-content .txt-signle {
  font-size: 1.7rem;
  line-height: 2.4;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .txt-signle {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 2.2;
  }
}
.news-single-content .border {
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .border {
    margin-bottom: 3rem;
  }
}
.news-single-content .border hr {
  border: none;
  height: 8px;
  width: 100%;
  display: block;
  background: url(../img/news/border_wave.svg) center center repeat-x;
}
.news-single-content .image-single {
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .image-single {
    margin-bottom: 3rem;
  }
}
.news-single-content .image-single figcaption {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .news-single-content .image-single figcaption {
    font-size: 1.4rem;
  }
}
.news-single-content .image-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .image-double {
    margin-bottom: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-single-content .image-double figure {
  width: 48%;
}
@media screen and (max-width: 640px) {
  .news-single-content .image-double figure {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.news-single-content .image-double figure img {
  width: 100%;
  height: auto;
}
.news-single-content .image-double figcaption {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .news-single-content .image-double figcaption {
    font-size: 1.4rem;
  }
}
.news-single-content .title-2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #213091;
  background: #efefef;
  padding: 1em;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .title-2 {
    line-height: 1.5;
    padding: 0.5em;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.news-single-content .title-2 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.news-single-content .title-3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #213091;
  border-top: 2px solid #213091;
  border-bottom: 2px solid #213091;
  padding: 1em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .title-3 {
    font-size: 1.8rem;
    padding: 0.75em 0.5em;
    margin-bottom: 2rem;
  }
}
.news-single-content .title-3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.news-single-content .list-group {
  background: #efefef url(../img/common/bg_trans_wave.png);
  padding: 4rem 6rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .list-group {
    padding: 1em;
    margin-bottom: 3rem;
  }
}
.news-single-content .list-group ul li {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news-single-content .list-group ul li + li {
  margin-top: 3rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .list-group ul li {
    line-height: 1.8;
    font-size: 1.6rem;
  }
  .news-single-content .list-group ul li + li {
    margin-top: 1.5rem;
  }
}
.news-single-content .list-group ul li::before {
  content: "";
  width: 19px;
  height: 23px;
  background: url(../img/news/list_icon.svg) center center no-repeat;
  background-size: contain;
}
.news-single-content .list-group ul li span {
  width: calc(100% - 3rem);
}
@media screen and (max-width: 640px) {
  .news-single-content .list-group ul li span {
    width: calc(100% - 1.5em);
  }
}
.news-single-content .pdf {
  margin-bottom: 7rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .pdf {
    margin-bottom: 3rem;
  }
}
.news-single-content .pdf p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #213091;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .pdf p {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
}
.news-single-content .pdf__btn {
  text-align: center;
}
.news-single-content .pdf__btn a {
  display: inline-block;
  background: #213091;
  color: #fff;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  max-width: inherit;
  padding: 0.8em 2.5em 1em;
}
.news-single-content .pdf__btn a:hover {
  color: #21308C;
}
@media screen and (max-width: 640px) {
  .news-single-content .pdf__btn a {
    font-size: 1.6rem;
    padding: 0.8em 2em 1.1em;
    width: 80%;
  }
}
.news-single-content .pdf__btn a span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
  position: relative;
  z-index: 100;
}
.news-single-content .link {
  margin-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .link {
    margin-bottom: 4rem;
  }
}
.news-single-content .link a {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3f80bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid #3f80bf;
  line-height: 1.8;
  padding: 1.2em;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 641px) {
  .news-single-content .link a {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
}
@media screen and (max-width: 640px) {
  .news-single-content .link a {
    font-size: 1.6rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.75em;
  }
}
.news-single-content .link a:hover {
  opacity: 0.7;
}
.news-single-content .link a::before {
  content: "";
  width: 63px;
  height: 64px;
  display: inline-block;
  background: url(../img/news/link_icon.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .news-single-content .link a::before {
    width: 32px;
    height: 32px;
  }
}
.news-single-content .link a span {
  width: calc(100% - 90px);
}
@media screen and (max-width: 640px) {
  .news-single-content .link a span {
    width: calc(100% - 40px);
  }
}
.news-single-content .talk {
  margin-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .talk {
    margin-bottom: 3rem;
  }
}
.news-single-content .talk__each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
}
.news-single-content .talk figure {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-size: cover;
  background-position: center center;
  border: 10px solid #C3DBF6;
}
@media screen and (max-width: 640px) {
  .news-single-content .talk figure {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
}
.news-single-content .talk .txt {
  position: relative;
  width: calc(100% - 140px);
  background: #C3DBF6;
  border-radius: 0 0 10px 10px;
  font-size: 1.6rem;
  line-height: 2;
  padding: 1.5em 3em;
}
.news-single-content .talk .txt::before {
  position: absolute;
  left: -24px;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #C3DBF6 transparent transparent;
}
@media screen and (max-width: 640px) {
  .news-single-content .talk .txt {
    width: calc(100% - 70px);
    padding: 1em 1.5em;
  }
  .news-single-content .talk .txt::before {
    border-width: 0 12px 12px 0;
    left: -12px;
    top: 22px;
  }
}
.news-single-content .youtube {
  margin-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .news-single-content .youtube {
    margin-bottom: 3rem;
  }
}
.news-single-content .youtube__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.news-single-content .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.news-single-content .googlemap-wrap {
  position: relative;
}
.news-single-content .googlemap-wrap .map-link {
  position: absolute;
  right: 0;
  bottom: 0;
}
.news-single-content .googlemap-wrap .map-link a {
  background: #3f80bf;
  color: #fff;
  font-size: 1.8rem;
  padding: 0.5em 1em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 640px) {
  .news-single-content .googlemap-wrap .map-link a {
    font-size: 1.4rem;
    padding: 0.25em 2em;
  }
}
.news-single-content .googlemap-wrap .map-link a::before {
  position: absolute;
  left: -4px;
  top: 0;
  content: "";
  top: 0;
  width: 10px;
  height: 100%;
  background: #3f80bf;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
.news-single-content .googlemap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (max-width: 640px) {
  .news-single-content .googlemap {
    padding-top: 90%;
  }
}
.news-single-content .googlemap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.news-single-related-post {
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .news-single-related-post {
    max-width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.news-single-related-post h3 {
  background: #213091;
  font-size: 2.8rem;
  padding: 1em 1.5em;
  color: #fff;
  font-weight: bold;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .news-single-related-post h3 {
    font-size: 1.8rem;
  }
}
.news-single-related-post h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.news-single-related-post .news-feed {
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .news-single-related-post .news-feed {
    margin-bottom: 2rem;
  }
}
.news-single-related-post .news-feed li a {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .news-single-related-post .news-feed li a {
    padding: 0.5em 1em;
  }
}
@media screen and (max-width: 640px) {
  .news-single-related-post .news-feed .title {
    font-size: 1.5rem;
  }
}

.back-to-list {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .back-to-list {
    margin-bottom: 3rem;
  }
}
.back-to-list a {
  display: inline-block;
  background: #213091;
  font-weight: bold;
  color: #fff;
  padding: 1.5em 6em;
  font-size: 2rem;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  position: relative;
}
@media screen and (max-width: 640px) {
  .back-to-list a {
    font-size: 1.8rem;
  }
}
.back-to-list a::before {
  position: absolute;
  left: 5rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  -webkit-transform: rotate(-45deg) skewX(6deg) translateY(-50%);
          transform: rotate(-45deg) skewX(6deg) translateY(-50%);
}
.back-to-list a span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}

.privacy-content {
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 640px) {
  .privacy-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.privacy-content__each {
  padding-bottom: 3rem;
}
.privacy-content h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #213091;
  background: #efefef;
  padding: 1em;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .privacy-content h3 {
    line-height: 1.5;
    padding: 0.5em;
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.privacy-content h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
}
.privacy-content p {
  font-size: 1.7rem;
  line-height: 2.2;
  margin-bottom: 1em;
}
.privacy-content ul {
  margin-bottom: 2rem;
  padding-left: 2em;
}
.privacy-content ul li {
  font-size: 1.7rem;
  line-height: 2.2;
  list-style-type: disc;
}

.sitemap-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 792px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.sitemap-content__each {
  margin-bottom: 4rem;
}
.sitemap-content__each h3 a {
  font-size: 2.2rem;
  color: #fff;
  font-style: italic;
  background: #3887e1;
  font-weight: bold;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: skewX(-6deg);
          transform: skewX(-6deg);
}
.sitemap-content__each h3 a::after {
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%) skewX(6deg) rotate(-90deg);
          transform: translateY(-50%) skewX(6deg) rotate(-90deg);
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  z-index: 1;
  background: url(../img/recruit/icon_list_down.svg) center center no-repeat;
  background-size: contain;
}
.sitemap-content__each h3 span {
  -webkit-transform: skewX(6deg);
          transform: skewX(6deg);
  width: 100%;
}
.sitemap-content__each ul {
  margin-top: 2rem;
}
.sitemap-content__each ul li {
  margin-bottom: 2rem;
}
.sitemap-content__each ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.85em 2.8em;
  position: relative;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #efefef;
}
.sitemap-content__each ul li a:hover {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  -webkit-transform: skewX(-10deg) translateX(5px) translateY(-5px);
          transform: skewX(-10deg) translateX(5px) translateY(-5px);
}
@media screen and (max-width: 640px) {
  .sitemap-content__each ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.5em 1em;
  }
  .sitemap-content__each ul li a .meta {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sitemap-content__each ul li a span {
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
.contact-tab {
  margin-top: 9rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .contact-tab {
    margin-top: 4rem;
  }
}
.contact-tab::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 8px solid #3887e1;
  -webkit-box-shadow: 0 -3px 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -3px 3px 3px rgba(0, 0, 0, 0.1);
}
.contact-tab ul {
  max-width: 996px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 640px) {
  .contact-tab ul {
    max-width: 90%;
  }
}
.contact-tab ul li {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.8rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  background: #efefef url(../img/common/bg_trans_wave.png);
  border-radius: 10px 10px 0 0;
  height: 100px;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 640px) {
  .contact-tab ul li {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
    height: 70px;
  }
}
.contact-tab ul li.active, .contact-tab ul li:hover {
  background: #3887e1 url(../img/common/bg_trans_wave.png);
  height: 120px;
}
.contact-tab ul li.active span, .contact-tab ul li:hover span {
  color: #fff;
}
@media screen and (max-width: 640px) {
  .contact-tab ul li.active, .contact-tab ul li:hover {
    height: 80px;
  }
}
.contact-tab ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-notice {
  max-width: 996px;
  font-size: 1.6rem;
  margin: 7rem auto 5rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .contact-notice {
    margin: 3rem auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact-form-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 996px;
  margin-bottom: 20rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .contact-form-wrap {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 5rem;
  }
}
.contact-form-wrap .select-job-wrap {
  border: 2px solid #efefef;
  padding: 5rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 640px) {
  .contact-form-wrap .select-job-wrap {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }
}
.contact-form-wrap [data-name=fm_job] {
  display: block;
  font-size: 2rem;
  font-weight: normal;
  color: #000;
  margin-top: 2rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .contact-form-wrap [data-name=fm_job] {
    font-size: 1.6rem;
    margin-top: 0;
  }
}
.contact-form-wrap [data-name=fm_job] .wpcf7-list-item {
  margin: 0 1em 0 0;
}
.contact-form-wrap [data-name=fm_job] label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-wrap [data-name=fm_job] input[type=checkbox] {
  margin-right: 1em;
  display: none;
}
.contact-form-wrap [data-name=fm_job] input[type=checkbox] + .wpcf7-list-item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-wrap [data-name=fm_job] input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  outline: 1px solid #000;
  margin-right: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
}
.contact-form-wrap [data-name=fm_job] input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #3887e1;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-group {
  background: url(../img/contact/line_gray_wave.svg) center bottom no-repeat;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .form-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.form-group.last {
  background: none;
}
.form-group p {
  line-height: 2;
}
.form-group p a {
  text-decoration: underline;
}
.form-group__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #213091;
  padding-left: 1em;
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .form-group__title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
.form-group__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  width: 19px;
  height: 21px;
  background: url("../img/contact/icon_form_title.svg") center center no-repeat/contain;
}
.form-group__title .required {
  font-size: 1.4rem;
  background: #e6001c;
  border-radius: 5px;
  color: #fff;
  margin-left: 0.5em;
  padding: 0.1em 0.5em;
}
.form-group__row {
  margin-bottom: 4rem;
}
@media screen and (max-width: 640px) {
  .form-group__row {
    margin-bottom: 2rem;
  }
}
.form-group__row.full input,
.form-group__row.full textarea {
  width: 100%;
}
.form-group__row.name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-group__row.name .form-group__each {
  width: 47%;
}
.form-group__row.name .form-group__each input {
  width: 100%;
}
.form-group__row.old {
  font-size: 2rem;
}
.form-group__row.old .form-group__each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.form-group__row.old input {
  width: 200px;
}
.form-group__row.postcode input,
.form-group__row.postcode button {
  width: 200px;
  margin-right: 1em;
  height: 50px;
}
@media screen and (max-width: 640px) {
  .form-group__row.postcode input,
  .form-group__row.postcode button {
    width: 6em;
    margin-right: 0.5em;
  }
}
@media screen and (max-width: 640px) {
  .form-group__row.postcode button {
    font-size: 1.2rem;
    padding-left: 1em;
    padding-right: 1em;
    vertical-align: bottom;
  }
}
.form-group__row.postcode a {
  font-size: 1.8rem;
  color: #213091;
  margin-left: 2em;
}
@media screen and (max-width: 640px) {
  .form-group__row.postcode a {
    margin-left: 0;
  }
}
.form-group__row.tel input {
  width: 200px;
  margin-right: 1em;
}
@media screen and (max-width: 640px) {
  .form-group__row.tel input {
    width: 8.5rem;
  }
}
.form-group__each .input-title {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-group__each .input-title small {
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .form-group__each .input-title {
    font-size: 1.6rem;
  }
}
.form-group__each input,
.form-group__each textarea {
  font-size: 1.6rem;
  line-height: 2;
  padding: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #9fa0a0;
}
.form-group__each input {
  height: 50px;
}
.form-group__each button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #213091;
  font-size: 1.8rem;
  color: #fff;
}

.btn-submit-wrap {
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.btn-submit-wrap::before {
  position: absolute;
  content: "";
  height: 80px;
  width: 370px;
  display: block;
  background: #213091;
  -webkit-transform: skewX(-6deg) translateX(-50%);
          transform: skewX(-6deg) translateX(-50%);
  left: 50%;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .btn-submit-wrap::before {
    width: 280px;
  }
}
.btn-submit-wrap:hover {
  opacity: 0.6;
}

#btn-submit {
  border: none;
  font-size: 2.6rem;
  color: #fff;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 370px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  #btn-submit {
    width: 280px;
  }
}

.ajax-loader {
  margin: 3rem auto 0 !important;
  background-position: center center;
  display: block;
}

.contact-form-wrap .wpcf7-form-control-wrap {
  position: relative;
}
.contact-form-wrap .wpcf7-form-control {
  position: relative;
}
.contact-form-wrap .wpcf7-response-output {
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .contact-form-wrap .wpcf7-response-output {
    font-size: 1.8rem;
  }
}
.contact-form-wrap .dash {
  height: 50px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin-top: 0.5em;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  .contact-form-wrap .notice {
    display: none;
  }
}

[data-name=fm_postcode1] input {
  margin-right: 0 !important;
}

@media screen and (max-width: 640px) {
  [data-name=fm_postcode2] {
    margin-right: 1em;
  }
}

@media screen and (max-width: 640px) {
  [data-name=fm_postcode1],
  [data-name=fm_postcode2] {
    width: 7em;
  }
}

.postcode__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.5em;
}

.old-label {
  margin-left: 0.5em;
}

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

[data-name=fm_tel1] input,
[data-name=fm_tel2] input {
  margin-right: 0 !important;
}

::-webkit-input-placeholder {
  color: #C9C9CA;
}

::-moz-placeholder {
  color: #C9C9CA;
}

:-ms-input-placeholder {
  color: #C9C9CA;
}

::-ms-input-placeholder {
  color: #C9C9CA;
}

::placeholder {
  color: #C9C9CA;
}

.thanks-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks-content__message {
  max-width: 792px;
  display: block;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .thanks-content__message {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.thanks-content__message .btn-link {
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.thanks-content__message .btn-link a {
  margin-left: auto;
  margin-right: auto;
}
.thanks-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1em;
  text-align: center;
  font-weight: bold;
  background: url(../img/news/border_wave.svg) center bottom repeat-x;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  line-height: 1.5em;
}
.thanks-content p {
  font-size: 1.7rem;
  line-height: 2.2;
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .thanks-content p br {
    display: none;
  }
}
.thanks-content__logo {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-content__logo img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=output.css.map */