@charset "UTF-8";
/*
Reset CSS
*/
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;
}

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

body {
  /*line-height: 1;*/
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*clearfix*/
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\D7";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* 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-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

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

.slick-prev:before {
  content: "\2190";
}

[dir="rtl"] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

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

.slick-next:before {
  content: "\2192";
}

[dir="rtl"] .slick-next:before {
  content: "\2190";
}

/* 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: "\2022";
  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;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #050002;
  z-index: 999;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -50px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 1000;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.loading-animation {
  z-index: 102;
  margin: -25px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: none;
  -webkit-user-select: none;
}

.loading-animation .box-wrap {
  width: 70%;
  height: 70%;
  margin: calc((100% - 70%)/2) calc((100% - 70%)/2);
  position: relative;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.loading-animation .box-wrap .box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(135, 0, 0, 0.6);
  background: -webkit-gradient(linear, left top, right top, from(#af0910), color-stop(#d54851), color-stop(#ea6682), color-stop(#ff241a), color-stop(#af0910), color-stop(#D07CA7), color-stop(#f46065), color-stop(#F5919E), color-stop(#e92e3d), color-stop(#af0910), to(#d54851));
  background: linear-gradient(to right, #af0910, #d54851, #ea6682, #ff241a, #af0910, #D07CA7, #f46065, #F5919E, #e92e3d, #af0910, #d54851);
  background-position: 0% 50%;
  background-size: 1000% 1000%;
  visibility: hidden;
  border-radius: 0;
}

.loading-animation .box-wrap .box.one {
  -webkit-animation: moveGradient 15s infinite, oneMove 3.5s infinite;
          animation: moveGradient 15s infinite, oneMove 3.5s infinite;
}

.loading-animation .box-wrap .box.two {
  -webkit-animation: moveGradient 15s infinite, twoMove 3.5s .15s infinite;
          animation: moveGradient 15s infinite, twoMove 3.5s .15s infinite;
}

.loading-animation .box-wrap .box.three {
  -webkit-animation: moveGradient 15s infinite, threeMove 3.5s .3s infinite;
          animation: moveGradient 15s infinite, threeMove 3.5s .3s infinite;
}

.loading-animation .box-wrap .box.four {
  -webkit-animation: moveGradient 15s infinite, fourMove 3.5s .575s infinite;
          animation: moveGradient 15s infinite, fourMove 3.5s .575s infinite;
}

.loading-animation .box-wrap .box.five {
  -webkit-animation: moveGradient 15s infinite, fiveMove 3.5s .725s infinite;
          animation: moveGradient 15s infinite, fiveMove 3.5s .725s infinite;
}

.loading-animation .box-wrap .box.six {
  -webkit-animation: moveGradient 15s infinite, sixMove 3.5s .875s infinite;
          animation: moveGradient 15s infinite, sixMove 3.5s .875s infinite;
}

@-webkit-keyframes moveGradient {
  to {
    background-position: 100% 50%;
  }
}

@keyframes moveGradient {
  to {
    background-position: 100% 50%;
  }
}

@-webkit-keyframes oneMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes oneMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@-webkit-keyframes twoMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes twoMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@-webkit-keyframes threeMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes threeMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(0% 70% 70% 0 round 5%);
            clip-path: inset(0% 70% 70% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(0% 35% 70% round 5%);
            clip-path: inset(0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(35% 70% 35% 0 round 5%);
            clip-path: inset(35% 70% 35% 0 round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@-webkit-keyframes fourMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes fourMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@-webkit-keyframes fiveMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes fiveMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@-webkit-keyframes sixMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

@keyframes sixMove {
  0% {
    visibility: visible;
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  14.2857% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  28.5714% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  42.8571% {
    -webkit-clip-path: inset(70% 0 0 70% round 5%);
            clip-path: inset(70% 0 0 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  57.1428% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  71.4285% {
    -webkit-clip-path: inset(35% 0% 35% 70% round 5%);
            clip-path: inset(35% 0% 35% 70% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  85.7142% {
    -webkit-clip-path: inset(35% round 5%);
            clip-path: inset(35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
  100% {
    -webkit-clip-path: inset(70% 35% 0% 35% round 5%);
            clip-path: inset(70% 35% 0% 35% round 5%);
    -webkit-animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
            animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  }
}

/*common*/
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  color: #050002;
  font-size: 14px;
  letter-spacing: 1.5px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  font-weight: 400;
  font-family: 'Noto Sans JP', "\6E38\30B4\30B7\30C3\30AF   Medium", "\6E38\30B4\30B7\30C3\30AF\4F53", "Yu Gothic Medium", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN", "Hiragino Kaku Gothic ProN", "\30E1\30A4\30EA\30AA", Meiryo, "\FF2D\FF33   \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

a {
  text-decoration: none;
  color: #050002;
}

a:hover {
  text-decoration: underline;
}

a.btn {
  border: 1px solid #050002;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
  background-color: #FFF;
  text-align: center;
  padding: 15px 0;
  width: 70%;
  max-width: 220px;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

a.btn:hover {
  border: 1px solid #db0d3b;
  background-color: #db0d3b;
  color: #FFF;
}

a.btn:after {
  width: 32px;
  height: 8px;
  content: '';
  display: block;
  position: absolute;
  bottom: 22px;
  right: -20px;
  overflow: hidden;
  background: url("/img/common/arrow.png") no-repeat;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.1, 0, 1) 0.1s;
  transition: all 0.3s cubic-bezier(0.78, 0.1, 0, 1) 0.1s;
}

@media only screen and (max-width: 992px) {
  .hide-sp {
    display: none !important;
  }
}

@media only screen and (min-width: 993px) {
  .hide-pc {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media only screen and (min-width: 601px) {
  .bg {
    background-color: #FAFAFA;
  }
}

@media only screen and (max-width: 600px) {
  .inner {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media only screen and (max-width: 600px) {
  .inner2 {
    padding-left: 6vw;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .inner-l {
    padding-left: 3vw;
  }
}

@media only screen and (min-width: 993px) {
  .inner-l {
    padding-left: 6vw;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .inner-r {
    padding-right: 3vw;
  }
}

@media only screen and (min-width: 993px) {
  .inner-r {
    padding-right: 6vw;
  }
}

.ma-bot {
  margin-bottom: 30px;
}

.contents {
  background: #fff;
}

.contents h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 55px;
  letter-spacing: 3px;
  line-height: 1.2;
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .contents h2 {
    font-size: 35px;
  }
}

.contents .sttl {
  color: #db0d3b;
  font-size: 14px;
  margin-bottom: 20px;
}

.contents h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}

.contents .read-box {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .contents .read-box {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: left;
    width: 28vw;
    float: left;
  }
}

@media only screen and (min-width: 993px) {
  .contents .read-box {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 70px;
    padding-right: 70px;
    text-align: left;
    width: 25vw;
    float: left;
  }
}

.contents .txt-box {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 600px) {
  .contents .txt-box {
    margin-left: 8.4vw;
    background-color: #FAFAFA;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .contents .txt-box {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 35px;
    padding-right: 35px;
    width: 67vw;
    float: left;
  }
}

@media only screen and (min-width: 993px) {
  .contents .txt-box {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-left: 70px;
    padding-right: 70px;
    width: 64vw;
    float: left;
  }
}

.contents .txt-box .txt-box-p {
  padding-right: 6vw;
  margin-left: -15px;
}

@media only screen and (min-width: 601px) {
  .contents .txt-box .txt-box-p {
    margin-left: 0px;
  }
}

.contents .txt-box .txt-box-p h3 {
  margin-bottom: 30px !important;
}

.contents .about {
  border-right: 5vw #FAFAFA solid;
}

@media only screen and (max-width: 992px) {
  .contents .about {
    border-right: 2vw #FAFAFA solid;
  }
}

@media only screen and (max-width: 600px) {
  .contents .about {
    border-right: none;
  }
}

.contents .service {
  border-right: 5vw #FAFAFA solid;
}

@media only screen and (max-width: 992px) {
  .contents .service {
    border-right: 2vw #FAFAFA solid;
  }
}

@media only screen and (max-width: 600px) {
  .contents .service {
    border-right: none;
  }
}

.contents .service .txt-box {
  margin-bottom: 30px;
}

@media only screen and (min-width: 601px) {
  .contents .service .txt-box {
    width: 58vw;
  }
}

@media only screen and (min-width: 601px) {
  .contents .service .txt-box .txt-box-p {
    padding: 40px 0;
  }
}

@media only screen and (min-width: 601px) {
  .contents .service .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 120px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.contents .service .list .box {
  margin-bottom: 30px;
  /*img effect*/
}

@media only screen and (min-width: 601px) {
  .contents .service .list .box {
    width: 30%;
    margin: 0 1.5% 30px;
  }
}

.contents .service .list .box img {
  width: 100%;
}

.contents .service .list .box h3, .contents .service .list .box .read {
  margin-left: 2vw;
  margin-right: 2vw;
}

@media only screen and (min-width: 601px) {
  .contents .service .list .box h3, .contents .service .list .box .read {
    margin-left: .5vw;
    margin-right: .5vw;
  }
}

.contents .service .list .box h3, .contents .service .list .box .link {
  display: inline-block;
}

.contents .service .list .box .link a:link {
  color: #db0d3b;
  font-size: 10px;
}

.contents .service .list .box .img-scale {
  overflow: hidden;
  width: 100%;
  height: auto;
  background: #000;
}

.contents .service .list .box .img-scale img {
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.contents .service .list .box .img-scale img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 0.8;
}

.contents .company {
  border-right: 5vw #FAFAFA solid;
}

@media only screen and (max-width: 992px) {
  .contents .company {
    border-right: 2vw #FAFAFA solid;
  }
}

@media only screen and (max-width: 600px) {
  .contents .company {
    border-right: none;
  }
}

.contents .company .map {
  border-right: 5vw #FAFAFA solid;
}

@media only screen and (max-width: 992px) {
  .contents .company .map {
    border-right: 2vw #FAFAFA solid;
  }
}

@media only screen and (max-width: 600px) {
  .contents .company .map {
    border-right: none;
  }
}

.contents .info table, .contents .history table {
  width: 100%;
  text-align: left;
}

.contents .info table th, .contents .info table td, .contents .history table th, .contents .history table td {
  padding: 15px 15px 15px 20px;
}

.contents .info table th, .contents .history table th {
  font-weight: bold;
  font-size: 12px;
  width: 30%;
  vertical-align: middle;
}

.contents .info table td, .contents .history table td {
  width: 70%;
  vertical-align: middle;
}

@media only screen and (min-width: 601px) {
  .contents .info table th, .contents .info table td, .contents .history table th, .contents .history table td {
    padding: 25px 30px;
  }
  .contents .info table th, .contents .history table th {
    font-size: 14px;
  }
}

.contents .info table {
  border-bottom: 1px solid #bbb;
}

.contents .info table tr {
  border-top: 1px solid #bbb;
}

.contents .info table th {
  font-weight: bold;
}

.contents .history th {
  text-align: right;
}

.contents .history th:after {
  content: "\3000\FF0F";
}

@media only screen and (max-width: 992px) {
  .contents .history th {
    padding: 10px;
  }
  .contents .history th:after {
    content: "";
  }
  .contents .history tr {
    border-top: 1px solid #bbb;
  }
}

/*Header*/
.slide-box {
  height: 80vh;
  padding-top: 10px;
  position: relative;
}

@media only screen and (min-width: 993px) {
  .slide-box {
    padding-top: 5vh;
    padding-bottom: 5vh;
    height: 90vh;
  }
}

@media only screen and (max-width: 600px) {
  .slide-box {
    height: 90vh;
  }
}

.slide-box .logo-box-index {
  background: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  height: 10vh;
  width: 10vh;
  margin-left: 10px;
  text-align: center;
  display: table;
  z-index: 100;
  position: absolute;
}

@media only screen and (min-width: 993px) {
  .slide-box .logo-box-index {
    height: 70vh;
    width: 160px;
    margin-left: 30px;
    top: 5vh;
    bottom: 5vh;
  }
}

.slide-box .logo-box-index #logo {
  margin: 0 auto;
  display: table-cell;
  vertical-align: middle;
}

.slide-box .logo-box-index #logo img {
  width: 70%;
}

@media only screen and (min-width: 993px) {
  .slide-box .logo-box-index #logo img {
    width: 84px;
  }
}

.slide-box .copy-box {
  position: absolute;
  top: 0;
  left: 3vw;
  width: 97vw;
  height: 80vh;
  text-align: center;
  z-index: 50;
  display: table;
}

@media only screen and (min-width: 993px) {
  .slide-box .copy-box {
    left: 6vw;
    height: 90vh;
    width: 94vw;
  }
}

.slide-box .copy-box .copy {
  margin: 0 auto;
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
}

@media only screen and (min-width: 601px) {
  .slide-box .copy-box .copy {
    font-size: 60px;
  }
}

@media only screen and (min-width: 993px) {
  .slide-box .copy-box .copy {
    margin-left: 6vw !important;
  }
}

.slide-box .slide-index-top {
  position: absolute;
  top: 0;
  left: 5vw;
  background: grey;
  width: 95vw;
  height: 80vh;
  z-index: 1;
}

@media only screen and (min-width: 993px) {
  .slide-box .slide-index-top {
    height: 90vh;
  }
}

@media only screen and (max-width: 992px) {
  .slide-box .slide-index-top {
    left: 20px;
    width: calc(100vw - 20px);
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .slide-index-top {
    height: 90vh;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.slide-box .slide-index-top .swiper-slide-active .slide-img,
.slide-box .slide-index-top .swiper-slide-duplicate-active .slide-img,
.slide-box .slide-index-top .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slide-box .slide-index-top .slide-img {
  background-size: cover;
  background-position: center center;
  height: 80vh;
}

@media only screen and (min-width: 993px) {
  .slide-box .slide-index-top .slide-img {
    height: 90vh;
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .slide-index-top .slide-img {
    background-position: top center;
    height: 90vh;
  }
}

.slide-box .top-slide-1 {
  background-image: url("/img/index/slide01_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-1 {
    background-image: url("/img/index/slide01_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-1 {
    background-image: url("/img/index/slide01_mb.jpg");
  }
}

.slide-box .top-slide-2 {
  background-image: url("/img/index/slide02_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-2 {
    background-image: url("/img/index/slide02_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-2 {
    background-image: url("/img/index/slide02_mb.jpg");
  }
}

.slide-box .top-slide-3 {
  background-image: url("/img/index/slide03_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-3 {
    background-image: url("/img/index/slide03_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-3 {
    background-image: url("/img/index/slide03_mb.jpg");
  }
}

.slide-box .top-slide-4 {
  background-image: url("/img/index/slide04_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-4 {
    background-image: url("/img/index/slide04_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-4 {
    background-image: url("/img/index/slide04_mb.jpg");
  }
}

.slide-box .top-slide-5 {
  background-image: url("/img/index/slide05_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-5 {
    background-image: url("/img/index/slide05_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-5 {
    background-image: url("/img/index/slide05_mb.jpg");
  }
}

.slide-box .top-slide-6 {
  background-image: url("/img/index/slide06_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-6 {
    background-image: url("/img/index/slide06_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-6 {
    background-image: url("/img/index/slide06_mb.jpg");
  }
}

.slide-box .top-slide-7 {
  background-image: url("/img/index/slide07_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-7 {
    background-image: url("/img/index/slide07_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-7 {
    background-image: url("/img/index/slide07_mb.jpg");
  }
}

.slide-box .top-slide-8 {
  background-image: url("/img/index/slide08_pc.jpg");
}

@media only screen and (max-width: 992px) {
  .slide-box .top-slide-8 {
    background-image: url("/img/index/slide08_tab.jpg");
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .top-slide-8 {
    background-image: url("/img/index/slide08_mb.jpg");
  }
}

.slide-box .slide-text {
  position: absolute;
  z-index: 10;
  font-size: 4rem;
  color: #fff;
  width: 100%;
  top: 50%;
  text-align: center;
  font-weight: bold;
}

.slide-box .news-box {
  max-width: calc(100vw - (5vw + 128px));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: absolute;
  right: 64px;
  bottom: 32px;
  z-index: 60;
}

@media only screen and (max-width: 992px) {
  .slide-box .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    right: 20px;
    left: 40px;
    bottom: 22px;
  }
}

@media only screen and (max-width: 600px) {
  .slide-box .news-box {
    max-width: calc(100vw - (40px + 20px));
  }
}

.slide-box .news-box .ttl {
  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;
  padding: 4px 32px;
  background-color: #000;
  font-size: 15px;
  line-height: 150%;
  color: #fff;
}

.slide-box .news-box .news-txt-content {
  background-color: #fff;
  padding: 4px 20px;
  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;
  gap: 16px;
  font-size: 14px;
}

@media only screen and (max-width: 992px) {
  .slide-box .news-box .news-txt-content {
    padding: 4px 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.slide-box .news-box .news-txt-content .date {
  font-family: 'Oswald', 'Noto Sans JP', "\6E38\30B4\30B7\30C3\30AF   Medium", "\6E38\30B4\30B7\30C3\30AF\4F53", "Yu Gothic Medium", YuGothic, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN", "Hiragino Kaku Gothic ProN", "\30E1\30A4\30EA\30AA", Meiryo, "\FF2D\FF33   \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
  white-space: nowrap;
}

.slide-box .scroll-txt {
  font-size: 10px;
  position: absolute;
  bottom: -64px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  -webkit-animation: fuwafuwa 2s linear infinite;
          animation: fuwafuwa 2s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: 1rem 0 !important;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*共通Header*/
.page-ttl-box {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

@media only screen and (min-width: 993px) {
  .page-ttl-box {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.page-ttl-box .logo-box {
  background: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  height: 10vh;
  width: 10vh;
  margin-left: 10px;
  text-align: center;
  display: table;
  z-index: 100;
  position: absolute;
}

@media only screen and (min-width: 993px) {
  .page-ttl-box .logo-box {
    height: 15vh;
    width: 15vh;
    margin-left: 30px;
  }
}

.page-ttl-box .logo-box #logo {
  margin: 0 auto;
  display: table-cell;
  vertical-align: middle;
}

.page-ttl-box .logo-box #logo img {
  width: 70%;
}

@media only screen and (min-width: 993px) {
  .page-ttl-box .logo-box #logo img {
    width: 50%;
  }
}

.page-ttl-box .ttl-box {
  position: absolute;
  top: 0;
  left: 6vw;
  background: -webkit-gradient(linear, left bottom, right top, from(#ef9257), color-stop(40%, #e04d69), to(#e04d69));
  background: linear-gradient(to top right, #ef9257, #e04d69 40%, #e04d69);
  width: 94vw;
  height: calc(10vh + 20px);
  z-index: 1;
  display: table;
  text-align: center;
}

@media only screen and (min-width: 993px) {
  .page-ttl-box .ttl-box {
    height: calc(15vh + 60px);
  }
}

.page-ttl-box .ttl-box .ttl {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  line-height: 1;
}

@media only screen and (min-width: 601px) {
  .page-ttl-box .ttl-box .ttl {
    font-size: 55px;
  }
}

.page-ttl-box .ttl-box .ttl span {
  vertical-align: middle;
  font-size: 14px;
  font-weight: lighter;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px #fff solid;
}

@media only screen and (min-width: 993px) {
  .page-ttl-box .ttl-box .ttl span {
    font-size: 26px;
    margin-left: 30px;
    padding-left: 30px;
  }
}

/*Footer*/
footer {
  font-size: 12px;
}

@media only screen and (max-width: 600px) {
  footer {
    margin-top: 30px;
  }
}

footer .bnr {
  margin-bottom: 22px;
}

@media only screen and (min-width: 993px) {
  footer .bnr {
    margin-bottom: 30px;
  }
}

footer .bnr .recruit {
  width: 100%;
  text-align: center;
}

footer .bnr .recruit img {
  width: 100%;
  max-width: 1000px;
}

footer .bnr .list.flex {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  footer .bnr .list.flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .bnr .list.flex li {
  width: 25%;
  margin-bottom: 8px;
}

@media only screen and (max-width: 600px) {
  footer .bnr .list.flex li {
    width: 48%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  footer .bnr .list.flex li {
    width: 25%;
  }
}

footer .bnr .list.flex li img {
  width: 100%;
}

@media only screen and (min-width: 601px) {
  footer .bnr .list.flex li img {
    width: 96%;
  }
}

@media only screen and (max-width: 600px) {
  footer .bnr .list.flex li:nth-child(2n+1) {
    margin-right: 4%;
  }
}

footer .footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FAFAFA;
}

@media only screen and (min-width: 601px) {
  footer .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

footer .footer .nav {
  margin-bottom: 20px;
}

@media only screen and (min-width: 601px) {
  footer .footer .nav {
    display: inline;
    float: right;
  }
}

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

footer .footer .nav ul.flex li {
  padding: 0 10px;
  border-right: 1px solid #999;
  vertical-align: middle;
}

footer .footer .nav ul.flex li:last-child {
  border-right: none;
}

footer .footer .info {
  margin-bottom: 20px;
}

footer .footer .info h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

footer .footer .mark {
  margin-bottom: 20px;
}

footer .footer .mark img {
  width: 10vw;
}

@media only screen and (min-width: 601px) {
  footer .footer .mark img {
    width: 5vw;
    margin-right: 10px;
  }
}

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

/*inner*/
.wrapper-inner-simple {
  margin-top: calc(10vh + 20px);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media only screen and (min-width: 993px) {
  .wrapper-inner-simple {
    margin-top: calc(15vh + 30px);
  }
}

.wrapper-inner-simple h2 {
  font-size: 20px;
  font-weight: bold;
}

.wrapper-inner-simple {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-inner {
  margin-top: 10vh;
}

@media only screen and (min-width: 993px) {
  .wrapper-inner {
    margin-top: 15vh;
  }
}

.inner-simple {
  padding-right: 15px;
  padding-left: 15px;
}

.inner-simple img {
  max-width: 100%;
}

/*news*/
.news .news-list {
  margin-bottom: 60px;
}

.news .news-list .news-box {
  border-bottom: 1px solid #999;
}

@media only screen and (min-width: 993px) {
  .news .news-list .news-box .date, .news .news-list .news-box .sttl {
    float: left;
    padding: 35px 50px;
  }
}

.news .news-list .news-box .date {
  font-family: Oswald, sans-serif;
  font-size: 14px;
  margin-top: 35px;
}

@media only screen and (min-width: 993px) {
  .news .news-list .news-box .date {
    width: 23%;
    margin-top: 0;
  }
}

.news .news-list .news-box .sttl {
  font-size: 16px;
  padding-left: 0;
  margin-bottom: 35px;
}

@media only screen and (min-width: 993px) {
  .news .news-list .news-box .sttl {
    width: 75%;
    margin-bottom: 0;
  }
}

.news .news-detail .date {
  margin-bottom: 20px;
}

.news .news-detail .sttl {
  font-size: 26px;
  margin-bottom: 60px;
}

.news .news-detail table, .news .news-detail td, .news .news-detail tr {
  border: 1px solid #000;
}

.news .news-detail td {
  padding: 12px 8px;
}

.news .news-list-nav {
  margin: 20px 10px 40px;
  font-size: 12px;
}

.news .news-list-nav .prev {
  text-align: left;
  float: left;
  width: 50%;
}

.news .news-list-nav .next {
  text-align: right;
  float: right;
  width: 50%;
}

.news .news-list-nav .next a {
  display: inline-block;
}

.news .news-list-nav a {
  display: block;
  width: 100%;
  text-decoration: underline;
}

/*pager*/
.pager-box {
  overflow: hidden;
  clear: both;
}

.pager-box .displayNow em {
  color: #be9d7d;
  font-size: 18px;
  margin: 0 5px;
}

.pager-box .pager {
  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;
}

.pager-box .pager ul {
  padding: 0;
  font-size: 0.8em;
  line-height: 1;
  text-align: center;
  display: inline-block;
  float: left;
}

@media only screen and (min-width: 601px) {
  .pager-box .pager ul {
    margin: 10px 15px 5px 15px;
  }
}

.pager-box .pager ul li.disabled span {
  background: none;
  color: #5d3524;
  width: auto;
}

.pager-box .pager ul li:first-child, .pager-box .pager ul li:last-child {
  display: none;
}

.pager-box .pager ul li {
  margin: 0;
  padding: 0;
  display: inline;
  list-style: none;
  border-radius: 3px;
}

.pager-box .pager ul li span, .pager-box .pager ul li a {
  font-size: 14px;
  width: 30px;
  line-height: 15px;
  border-radius: 3px;
  margin: 0 2px 5px;
  padding: 7px 0;
  display: inline-block;
  text-align: center;
  background: #db0d3b;
  color: #fff;
  text-decoration: none;
}

.pager-box .pager ul li a:hover {
  opacity: .8;
}

.pager-box .pager ul li em a {
  background: #ccc;
}

.pager-box .pager ul .active span {
  background: #e4e4e4;
}

.pager-box .pager .prev a span, .pager-box .pager .next a span, .pager-box .pager a.btn-main {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  width: auto;
  text-decoration: underline;
  background: none;
  float: left;
  padding: 16px 0;
  margin: 0;
  white-space: nowrap;
}

.pager-box .pager .prev a span a:hover, .pager-box .pager .next a span a:hover, .pager-box .pager a.btn-main a:hover {
  background: none;
}

/*inner service*/
.service .portal .intro .txt-box, .service .other .intro .txt-box {
  margin-bottom: 30px;
  -webkit-box-shadow: 5vw 0 0 #FAFAFA;
          box-shadow: 5vw 0 0 #FAFAFA;
}

.service .portal .service-box, .service .other .service-box {
  margin-bottom: 60px;
}

.service .portal .service-box .thm, .service .other .service-box .thm {
  z-index: 1;
}

.service .portal .service-box .thm img, .service .other .service-box .thm img {
  width: 100%;
}

@media only screen and (min-width: 601px) {
  .service .portal .service-box .thm, .service .other .service-box .thm {
    width: 50vw;
    float: left;
  }
}

@media only screen and (min-width: 993px) {
  .service .portal .service-box .thm, .service .other .service-box .thm {
    width: 60vw;
  }
}

.service .portal .service-box .info, .service .other .service-box .info {
  z-index: 2;
}

@media only screen and (min-width: 601px) {
  .service .portal .service-box .info, .service .other .service-box .info {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 35px;
    padding-right: 35px;
    margin-left: -6vw;
    margin-top: 10px;
    width: 34vw;
    float: left;
    background-color: #FAFAFA;
  }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
  .service .portal .service-box .info, .service .other .service-box .info {
    margin-left: -3vw;
    margin-right: 3vw;
    max-width: 45vw;
    width: 100%;
  }
}

@media only screen and (min-width: 1201px) {
  .service .portal .service-box .info, .service .other .service-box .info {
    margin-top: 60px;
  }
}

.service .portal .service-box .info .service-logo, .service .other .service-box .info .service-logo {
  text-align: center;
  max-width: 100%;
}

.service .portal .service-box .info .service-logo img, .service .other .service-box .info .service-logo img {
  width: 100%;
}

@media only screen and (min-width: 1201px) {
  .service .portal .service-box .info .service-logo img, .service .other .service-box .info .service-logo img {
    width: 70%;
  }
}

@media only screen and (max-width: 600px) {
  .service .portal .service-box .info .service-logo img, .service .other .service-box .info .service-logo img {
    width: 20vh;
  }
}

.service .portal .service-box .info .ttl, .service .other .service-box .info .ttl {
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.service .portal .service-box .info .url, .service .other .service-box .info .url {
  display: inline-block;
}

.service .portal .service-box .info .url a, .service .other .service-box .info .url a {
  font-size: 12px;
  color: #db0d3b;
}

.service .portal .service-box .info .btn, .service .other .service-box .info .btn {
  margin: 20px auto 0;
  display: block;
  max-width: 200px;
  width: 100%;
}

/*recruit*/
.wrapper-recruit {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  letter-spacing: .8px;
}

/*band-text*/
.about-medium__title, .recruit-member__name, .recruit-member__part, .message__position, .message__name, .recruit-service__number, .recruit-service__title-text, .recruit-company__title, .recruit-schedule__lead-title, .recruit-jobs-detail-section__title-text, .about-large__title, .about-large__description, .recruit-joinus__title, .message__text, .recruit-jobs-detail-section__title-tag {
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 10;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.about-medium__title::before, .recruit-member__name::before, .recruit-member__part::before, .message__position::before, .message__name::before, .recruit-service__number::before, .recruit-service__title-text::before, .recruit-company__title::before, .recruit-schedule__lead-title::before, .recruit-jobs-detail-section__title-text::before, .about-large__title::before, .about-large__description::before, .recruit-joinus__title::before, .message__text::before, .recruit-jobs-detail-section__title-tag::before {
  display: block;
  content: "";
  width: 100%;
  height: 84%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.about-medium__title, .recruit-member__name, .recruit-member__part, .message__position, .message__name, .recruit-service__number, .recruit-service__title-text, .recruit-company__title, .recruit-schedule__lead-title, .recruit-jobs-detail-section__title-text {
  color: #fff;
}

.about-medium__title::before, .recruit-member__name::before, .recruit-member__part::before, .message__position::before, .message__name::before, .recruit-service__number::before, .recruit-service__title-text::before, .recruit-company__title::before, .recruit-schedule__lead-title::before, .recruit-jobs-detail-section__title-text::before {
  background-color: #050002;
}

.about-large__title::before, .about-large__description::before, .recruit-joinus__title::before, .message__text::before, .recruit-jobs-detail-section__title-tag::before {
  background-color: #EFFF2F;
}

/*img-animation-style*/
.about-large__photo, .about-medium__photo, .recruit-company__photo {
  position: relative;
}

.about-large__photo::before, .about-medium__photo::before, .recruit-company__photo::before {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#E26C13), to(#D20029));
  background: linear-gradient(to bottom right, #E26C13, #D20029);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 50;
}

.recruit-section {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 993px) {
  .recruit-section {
    margin: 120px 0 80px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-section {
    margin: 96px 0;
  }
}

.about-large {
  position: relative;
}

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

@media only screen and (min-width: 993px) {
  .about-large__inner {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .about-large__inner {
    margin-top: 25px;
  }
}

.about-large__item {
  width: 100%;
}

.about-large__photo {
  padding-top: 135%;
}

.about-large__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

@media only screen and (max-width: 992px) {
  .about-large__logo {
    width: 70%;
  }
}

.about-large__photo-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.about-large__title-outer {
  text-align: left;
  position: absolute;
  left: -4%;
  top: 68%;
  width: 52%;
  z-index: 60;
}

@media only screen and (max-width: 992px) {
  .about-large__title-outer {
    top: 94%;
    width: 92%;
    left: 0;
  }
}

.about-large__title {
  font-size: 56px;
}

@media only screen and (max-width: 992px) {
  .about-large__title {
    font-size: 30px;
  }
}

.about-large__title::before {
  height: 100%;
}

.about-large__description {
  font-weight: normal;
  font-size: 18px;
  margin-top: 2%;
}

@media only screen and (max-width: 992px) {
  .about-large__description {
    font-size: 16px;
  }
}

.about-large__description::before {
  height: 100%;
}

.about-medium {
  text-align: left;
}

@media only screen and (min-width: 993px) {
  .about-medium {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 992px) {
  .about-medium {
    margin: 160px 30px 0;
  }
}

@media only screen and (min-width: 993px) {
  .about-medium__item {
    width: 49%;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .about-medium__item {
    width: 100%;
    margin-bottom: 40px;
  }
}

.about-medium__photo {
  padding-top: 68%;
}

.about-medium__photo-img {
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
}

.about-medium__title {
  margin-top: 3%;
  height: 8%;
}

@media only screen and (min-width: 993px) {
  .about-medium__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .about-medium__title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 993px) {
  .about-medium__title::before {
    height: 72%;
  }
}

@media only screen and (max-width: 992px) {
  .about-medium__title::before {
    height: 100%;
  }
}

@media only screen and (min-width: 993px) {
  .about-medium__description {
    font-size: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .about-medium__description {
    font-size: 14px;
  }
}

.recruit-member {
  text-align: left;
}

@media only screen and (min-width: 993px) {
  .recruit-member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 80px;
    padding-right: 35px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member {
    margin: 46px 30px 0;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-member__item {
    padding-right: 35px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member__item {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-member__img {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member__img {
    width: 100%;
    margin-bottom: 14px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-member__name {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member__name {
    font-size: 22px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-member__part {
    font-size: 18px;
    margin-left: -5px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member__part {
    font-size: 14px;
    margin-left: -5px;
  }
}

.recruit-member__part::before {
  height: 89%;
}

.recruit-member__declare {
  margin-top: 8px;
}

@media only screen and (min-width: 993px) {
  .recruit-member__declare {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member__declare {
    font-size: 18px;
  }
}

.recruit-joinus {
  position: relative;
  background: url(/img/recruit/joinus.png);
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 993px) {
  .recruit-joinus {
    height: 437px;
    margin: 180px 0 120px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-joinus {
    height: 391px;
    margin: 150px 0 96px;
  }
}

.recruit-joinus__logo {
  position: absolute;
}

@media only screen and (min-width: 993px) {
  .recruit-joinus__logo {
    right: 0;
    top: 0;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-joinus__logo {
    bottom: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-joinus__inner {
    position: relative;
    width: 1300px;
    margin: 0 auto;
    height: 100%;
  }
}

.recruit-joinus__text-outer {
  position: absolute;
}

@media only screen and (min-width: 993px) {
  .recruit-joinus__text-outer {
    left: -45px;
    top: -8%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-joinus__text-outer {
    bottom: 23%;
    margin: 0 30px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-joinus__title {
    line-height: 5rem;
    font-size: 60px;
    width: 56%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-joinus__title {
    line-height: 3rem;
    font-size: 30px;
    width: 98%;
    left: -5%;
    letter-spacing: 0;
  }
}

.recruit-joinus__title::before {
  height: 100%;
}

@media only screen and (max-width: 992px) {
  .recruit-joinus__title::before {
    width: 110%;
    left: -11%;
  }
}

.recruit-joinus__description {
  color: #fff;
}

@media only screen and (min-width: 993px) {
  .recruit-joinus__description {
    margin-top: 38px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-joinus__description {
    margin-top: 22px;
    font-size: 16px;
  }
}

.recruit-joblist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

@media only screen and (max-width: 992px) {
  .recruit-joblist {
    margin: 50px 30px 0;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-joblist {
    margin: 80px 0 0;
  }
}

/*Message*/
.message-intro {
  text-align: center;
}

@media only screen and (min-width: 993px) {
  .message-intro {
    font-size: 24px;
    margin: 150px 0 30px 0;
  }
}

@media only screen and (max-width: 992px) {
  .message-intro {
    font-size: 18px;
    margin: 50px 30px 70px;
  }
}

.message {
  text-align: left;
}

@media only screen and (min-width: 993px) {
  .message {
    background: url(/img/recruit/president_bk_pc.jpg);
    background-position: center;
    position: relative;
    width: 100vw;
    height: 830px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 10%;
  }
}

@media only screen and (min-width: 993px) {
  .message__inner {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    height: 100%;
  }
}

@media only screen and (min-width: 993px) {
  .message__title-outer {
    position: absolute;
    top: -6%;
  }
}

@media only screen and (max-width: 992px) {
  .message__title-outer {
    margin-left: 30px;
  }
}

@media only screen and (min-width: 993px) {
  .message__text {
    line-height: 5rem;
    font-size: 60px;
    width: 56%;
  }
  .message__text::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #EFFF2F;
    top: 3%;
    z-index: -1;
  }
}

@media only screen and (max-width: 992px) {
  .message__text {
    line-height: 3rem;
    font-size: 30px;
    width: 98%;
    left: -5%;
    letter-spacing: 0;
  }
}

.message__text::before {
  height: 100%;
}

@media only screen and (max-width: 992px) {
  .message__text::before {
    width: 110%;
    left: -11%;
  }
}

@media only screen and (min-width: 993px) {
  .message__description-outer {
    position: absolute;
    top: 18%;
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .message__description-outer {
    margin: 32px 30px 30px;
  }
}

@media only screen and (min-width: 993px) {
  .message__description {
    font-size: 18px;
    font-weight: normal;
    width: 70%;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 992px) {
  .message__description {
    font-size: 16px;
  }
}

.message__signature {
  margin-top: 4%;
}

@media only screen and (min-width: 993px) {
  .message__signature {
    text-align: center;
  }
}

@media only screen and (max-width: 992px) {
  .message__signature {
    text-align: right;
  }
}

.message__position {
  font-size: 18px;
  padding-right: 10px;
}

.message__name {
  font-size: 30px;
  margin-left: -5px;
}

@media only screen and (max-width: 992px) {
  .message__photo-img {
    width: 100%;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-service {
    width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-service {
    margin: 0 30px 0;
  }
}

.recruit-service__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 993px) {
  .recruit-service__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 70px;
  }
  .recruit-service__item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit-service__img-outer {
  width: 100%;
}

@media only screen and (min-width: 993px) {
  .recruit-service__img-outer {
    width: 45%;
  }
}

.recruit-service__img {
  width: 100%;
}

@media only screen and (min-width: 993px) {
  .recruit-service__number {
    margin-top: 3%;
    margin-left: -0.5%;
    font-size: 18px;
    height: 8%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-service__number {
    font-size: 14px;
  }
}

.recruit-service__number::before {
  height: 100%;
}

@media only screen and (min-width: 993px) {
  .recruit-service__title-text {
    margin-left: -0.5%;
    font-size: 30px;
    height: 8%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-service__title-text {
    font-size: 22px;
  }
}

.recruit-service__title-text::before {
  height: 88%;
}

.recruit-service__description {
  text-align: left;
}

@media only screen and (min-width: 993px) {
  .recruit-service__description {
    width: 50%;
  }
}

.recruit-service__description-text {
  font-size: 16px;
}

@media only screen and (min-width: 993px) {
  .recruit-service__description-text {
    margin-top: 2%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-service__description-text {
    margin-top: 40px;
  }
}

.recruit-company {
  text-align: left;
}

@media only screen and (min-width: 993px) {
  .recruit-company {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-company {
    margin-top: 30px;
  }
}

.recruit-company__item {
  width: 100%;
}

@media only screen and (min-width: 993px) {
  .recruit-company__photo {
    padding-top: 45%;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-company__photo {
    padding-top: 70%;
  }
}

.recruit-company__photo-img {
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
}

.recruit-company__title {
  margin-top: 3%;
}

@media only screen and (min-width: 993px) {
  .recruit-company__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-company__title {
    font-size: 22px;
  }
}

.recruit-company__title::before {
  height: 100%;
}

.recruit-company__description {
  font-size: 16px;
}

@media only screen and (min-width: 993px) {
  .recruit-company__description {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-company__description {
    margin: 5% 30px 0;
  }
}

.photolist {
  position: relative;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #E8EEEF;
}

.photolist__inner {
  margin: 0 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;
}

@media only screen and (min-width: 993px) {
  .photolist__inner {
    width: 1300px;
    padding: 80px 0;
  }
}

@media only screen and (max-width: 992px) {
  .photolist__inner {
    padding: 40px 0;
    margin: 0 30px;
  }
}

@media only screen and (max-width: 992px) {
  .photolist__item {
    width: 49%;
  }
}

.photolist__photo {
  margin-top: 2%;
}

@media only screen and (max-width: 992px) {
  .photolist__photo {
    width: 100%;
  }
}

.recruit-members-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 992px) {
  .recruit-members-list {
    margin: 0 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-member-item {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-member-item {
    margin-top: 72px;
  }
}

.recruit-member-item > * {
  margin-bottom: 80px;
}

.recruit-schedule {
  position: relative;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #E8EEEF;
}

@media only screen and (min-width: 993px) {
  .recruit-schedule__inner {
    width: 1300px;
    padding: 80px 0;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-schedule__inner {
    padding: 85px 0;
    margin: 0 30px;
  }
}

.recruit-schedule__img {
  height: 100%;
}

@media only screen and (max-width: 992px) {
  .recruit-schedule__img {
    width: 78px;
  }
}

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

.recruit-schedule__lead-text {
  margin-left: 27px;
}

@media only screen and (min-width: 993px) {
  .recruit-schedule__lead-title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-schedule__lead-title {
    font-size: 22px;
  }
  .recruit-schedule__lead-title::before {
    height: 100%;
  }
}

.recruit-schedule__lead-description {
  font-size: 16px;
}

@media only screen and (max-width: 992px) {
  .recruit-schedule__lead-description {
    margin-top: 10%;
  }
}

.recruit-schedule__list-outer {
  margin-top: 64px;
}

@media only screen and (min-width: 993px) {
  .recruit-schedule__list-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-members-toggle-btn-area {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-members-toggle-btn-area {
    margin: 30px 0;
  }
}

.recruit-members-toggle-btn-area__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 992px) {
  .recruit-members-toggle-btn-area__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 30px;
  }
}

.recruit-members-toggle-btn-area__btn-outer {
  width: 100%;
}

@media only screen and (min-width: 993px) {
  .recruit-members-toggle-btn-area__btn-outer {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-members-toggle-btn-area__btn-outer {
    width: 48%;
    margin-top: 14px;
  }
}

.recruit-members-toggle-btn-area__btn {
  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%;
  text-align: center;
  border: 2px solid #050002;
  font-weight: bold;
}

@media only screen and (min-width: 993px) {
  .recruit-members-toggle-btn-area__btn {
    font-size: 20px;
    height: 72px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-members-toggle-btn-area__btn {
    height: 72px;
    font-size: 15px;
  }
}

.recruit-members-toggle-btn-area__btn:hover {
  text-decoration: none;
  border: 2px solid #D20029;
  color: #D20029;
}

.recruit-members-toggle-btn-area__btn--current {
  background: #D20029;
  border: none;
  color: #fff;
  cursor: default;
}

.recruit-members-toggle-btn-area__btn--current:hover {
  border: none;
  color: #fff;
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section {
    margin: 0 30px 50px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__title {
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__title-text {
    font-size: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__title-text {
    font-size: 22px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__title-tag {
    font-size: 18px;
    margin-left: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__title-tag {
    font-size: 16px;
    margin-left: 10px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__text {
    font-size: 16px;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__heading1 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__heading1 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.recruit-jobs-detail-section__heading2 {
  text-decoration: underline;
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-section__heading2 {
    font-size: 20px;
    margin: 40px 0 20px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-section__heading2 {
    font-size: 18px;
    margin: 15px 0 20px;
  }
}

.recruit-jobs-cv-area {
  height: 220px;
  position: relative;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right bottom, from(#E26C13), to(#D20029));
  background: linear-gradient(to bottom right, #E26C13, #D20029);
  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;
}

.recruit-jobs-cv-area__btn {
  background: #050002;
  color: #fff;
  padding: 20px 25px;
  position: relative;
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-cv-area__btn {
    width: 410px;
    height: 120px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-cv-area__btn {
    width: 354px;
    height: 103px;
  }
}

.recruit-jobs-cv-area__btn::after {
  display: block;
  content: "";
  position: absolute;
  background: url("/img/recruit/icon_outlink.svg");
  width: 30px;
  height: 30px;
  right: 10%;
  bottom: 40%;
  background-size: contain;
}

.recruit-jobs-cv-area__btn:hover::after {
  text-decoration: none;
  color: #EFFF2F;
  background: url("/img/recruit/icon_outlink_yellow.svg");
  background-size: contain;
}

.recruit-jobs-cv-area__btn:hover {
  text-decoration: none;
  color: #EFFF2F;
}

.recruit-jobs-cv-area__btn-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: bold;
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-cv-area__btn-title {
    line-height: 1.2;
  }
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-cv-area__btn-description {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-cv-area__btn-description {
    font-size: 11px;
  }
}

.recruit-jobs-detail-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-heading {
    margin: 80px 0;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-heading {
    margin: 50px 30px;
  }
}

.recruit-jobs-detail-heading__title {
  font-weight: bold;
  display: inline-block;
  min-width: 100px;
}

@media only screen and (min-width: 993px) {
  .recruit-jobs-detail-heading__title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .recruit-jobs-detail-heading__title {
    font-size: 30px;
  }
}

.recruit-jobs-detail-heading__hr {
  display: inline-block;
  background-color: #000000;
  border: none;
  height: 1px;
  width: 100%;
}

/*animation*/
.ani-start::before {
  width: 100%;
}

.ani-end::before {
  width: 0;
  right: 0;
  left: auto;
}

.ani-end > img {
  display: block;
}

/*typeWrite*/
.type::after {
  content: "|";
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  color: #000;
}

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

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

.toggle-button {
  position: fixed;
  top: 10px;
  right: 20px;
  padding: 0;
  margin: 8px 0 8px 15px;
  height: 29px;
  width: 25px;
  cursor: pointer;
  z-index: 1000;
}

.toggle-button-bg {
  position: fixed;
  top: 0px;
  right: 10px;
  margin: 8px 0 8px 15px;
  height: 42px;
  width: 45px;
  z-index: 999;
  background: #db0d3b;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  border-bottom: 1px solid #fff;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

.green {
  background: #db0d3b;
}

.bar + .green {
  background: #db0d3b;
}

.top + .green {
  background: #db0d3b;
}

.bar + .bar {
  margin-top: 6px;
}

.middle {
  top: 11px;
}

.bottom {
  top: 22px;
}

.toggle-active .bar {
  border-bottom: 1px solid #fff;
}

.toggle-active .top {
  -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
  width: 27px;
}

.toggle-active .middle {
  opacity: 0;
}

.toggle-active .bottom {
  -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
  width: 27px;
  margin-left: 0;
}

.overlay {
  position: fixed;
  background: -webkit-gradient(linear, left bottom, right top, from(#E26C13), color-stop(40%, #D20029), to(#D20029));
  background: linear-gradient(to top right, #E26C13, #D20029 40%, #D20029);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  letter-spacing: 6px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  z-index: 9999;
}

.overlay .logo {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 0;
}

.overlay .logo img {
  width: 140px;
  -webkit-transform: translate(0, 0) scale(1);
}

@media only screen and (max-width: 992px) {
  .overlay .logo img {
    width: 100px;
  }
}

.overlay .is-open {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-170px);
            transform: translateX(-170px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.nav-active {
  z-index: 80;
  opacity: .9;
  visibility: visible;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.overlay ul {
  width: 100%;
  display: block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  margin: 0 auto;
  padding: 30px;
}

.overlay li {
  display: block;
  margin: 30px auto;
  text-align: center;
  letter-spacing: 4px;
}

.overlay li a {
  color: #fff;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.overlay li:last-child {
  margin-bottom: 60px;
}

/**
 * page lord
 */
body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/**
 * particles setting
 */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 690px;
  pointer-events: none;
  background-color: transparent;
}

@media only screen and (max-width: 992px) {
  #particles-js {
    height: 520px;
  }
}

#particles-js.particles-news {
  height: 550px;
}

@media only screen and (max-width: 992px) {
  #particles-js.particles-news {
    height: 288px;
  }
}

/**
 * nav animation
 */
.header-nav-item {
  position: relative;
  display: inline-block;
  height: 53px;
  line-height: 53px;
  padding: 0 18px;
  /* color: $black-color; */
  font-weight: bold;
  letter-spacing: -0.01em;
}

.header-nav-item:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 7px;
  background: #050002;
  height: 3px;
  width: 0%;
  border-left: 18px solid #f7f7f7;
  border-right: 18px solid #f7f7f7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-property: width, left, right;
  transition-property: width, left, right;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.header-nav-item:hover:before {
  width: 100%;
  left: 0;
  right: 0;
}

/**
 * frame border
 */
.border-window {
  display: none;
}

#border-top {
  background-color: #db0d3b;
  height: 8px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

@media only screen and (max-width: 992px) {
  #border-top {
    height: 4px;
  }
}

#border-right {
  background-color: #db0d3b;
  height: 180%;
  position: fixed;
  right: 0;
  top: 0;
  width: 8px;
  z-index: 50;
}

@media only screen and (max-width: 992px) {
  #border-right {
    width: 4px;
  }
}

#border-left {
  background-color: #db0d3b;
  height: 180%;
  left: 0;
  position: fixed;
  top: 0;
  width: 8px;
  z-index: 50;
}

@media only screen and (max-width: 992px) {
  #border-left {
    width: 4px;
  }
}

#border-bottom {
  background-color: #db0d3b;
  bottom: 0;
  height: 8px;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 50;
}

@media only screen and (max-width: 992px) {
  #border-bottom {
    height: 4px;
  }
}

/**
 * scale in
 */
.scale-anime {
  text-align: center;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: scaleAnime;
  animation-name: scaleAnime;
  visibility: visible !important;
}

@-webkit-keyframes scaleAnime {
  0% {
    -webkit-transform: translate(0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
  }
}

.left-anime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: leftAnime;
  animation-name: leftAnime;
  visibility: visible !important;
}

@-webkit-keyframes leftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes leftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.right-anime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: rightAnime;
  animation-name: rightAnime;
  visibility: visible !important;
}

@-webkit-keyframes rightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes rightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bottom-anime {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: bottomAnime;
  animation-name: bottomAnime;
  visibility: visible !important;
}

@-webkit-keyframes bottomAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes bottomAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.tgt {
  opacity: 0;
}

.tgt span {
  display: none;
  float: left;
}

.tgt span.cur {
  display: block;
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
}

@keyframes type {
  0% {
    width: 0;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .loading-animation:not(:target) {
    display: none;
    visibility: hidden;
  }
}

@supports (-ms-ime-align: auto) {
  .loading-animation:not(:target) {
    display: none;
    visibility: hidden;
  }
}

.privacy a {
  text-decoration: underline;
  word-break: break-all;
}

.privacy ul > li {
  list-style-type: disc;
  list-style: inside;
}

.privacy table {
  border: 1px solid #050002;
  width: 100%;
}

.privacy td {
  border: 1px solid #050002;
  padding: 24px;
}
