@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");

@media screen and (max-width: 1024px) {
  /* for desktop */
}

@media screen and (max-width: 768px) {
  /* for tablet */
}

@media screen and (max-width: 414px) {
  /* for mobile */
}

@media screen and (max-width: 360px) {
  /* for mobile_sm */
}

/* =============================================================

    Base

* ============================================================= */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-feature-settings: 'palt'1;
  font-feature-settings: 'palt'1;
  -webkit-font-kerning: auto;
  font-kerning: auto;
  font-display: swap;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.04em;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  body {
    font-size: 1.2rem;
  }
}

.pace {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 10000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.pace .pace-progress {
  background: #cc0000;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 7px;
}

.pace.pace-inactive {
  opacity: 0;
  visibility: hidden;
}

.SiteLoader {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .8s ease-out;
  -o-transition: all .8s ease-out;
  transition: all .8s ease-out;
  z-index: 9990;
}

.SiteLoader.done {
  opacity: 0;
  visibility: hidden;
}

.SiteContainer {
  position: relative;
  min-width: 1024px;
}

@media screen and (max-width: 768px) {
  .SiteContainer {
    min-width: auto;
  }
}

.SiteContainer.-no-top-space {
  padding-top: 0;
}

.SiteContainer.-black {
  position: relative;
  background-color: #000;
}

/* .br-pc{
  display: block;
}

@media screen and (max-width: 560px) {
  .br-pc{
    display: none;
  }
} */

/* =============================================================

  header

* ============================================================= */
.SiteHeaderContainer {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 3.125%;
  padding-left: 3.125%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.SiteHeaderContainer.-is-fixed {
  position: fixed;
}

.HeaderContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .HeaderContainer {
    height: 64px;
  }
}

.HeaderContainer__logo {
  display: block;
  width: 30%;
  max-width: 390px;
}

@media screen and (max-width: 768px) {
  .HeaderContainer__logo {
    width: 70%;
    max-width: none;
  }
}

.HeaderContainer__logo img {
  display: block;
  width: 100%;
}

@-webkit-keyframes headerFixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes headerFixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.HeaderContainerNav {
  background-color: #fff;
  width: 100%;
  height: 74px;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav {
    height: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 100;
  }
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav.-open {
    opacity: 1;
    visibility: visible;
  }
}

.HeaderContainerNav__list {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav__list {
    height: 100%;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }
}

.is-fixed .HeaderContainerNav__list {
  position: fixed;
  -webkit-animation-name: headerFixed;
  animation-name: headerFixed;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.HeaderContainerNav__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding: 25px 1.5em;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav__item {
    font-size: 2rem;
    line-height: 4.2;
    padding: 0 1.5em;
    width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .HeaderContainerNav__item {
    font-size: 1.8rem;
  }
}

.HeaderContainerNav__link {
  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;
  color: #000;
  padding: 0 .75em;
  text-decoration: none;
  position: relative;
  -webkit-transition: opacity .3s ease-out;
  -o-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.HeaderContainerNav__link:hover, .HeaderContainerNav__link:active, .HeaderContainerNav__link:focus, .HeaderContainerNav__link:visited, .HeaderContainerNav__link:link {
  color: #000;
}

.HeaderContainerNav__link.-blank:after {
  background-image: url("../img/icon_link-blank01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 13px;
  height: 11px;
  margin-left: 2px;
}

.HeaderContainerNav__link.-close {
  display: none;
  position: relative;
  font-size: 1.2rem;
  padding: 0 .75em 0 2em;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav__link.-close {
    display: block;
  }
}

.HeaderContainerNav__link.-close:before, .HeaderContainerNav__link.-close:after {
  background-color: #000;
  content: "";
  display: block;
  width: 17px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin: auto 0 auto -5em;
}

.HeaderContainerNav__link.-close:before {
  -webkit-transform: rotate(45deg) translate(-6px, -1px);
  -ms-transform: rotate(45deg) translate(-6px, -1px);
  transform: rotate(45deg) translate(-6px, -1px);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

.HeaderContainerNav__link.-close:after {
  -webkit-transform: rotate(-45deg) translate(-7px, 2px);
  -ms-transform: rotate(-45deg) translate(-7px, 2px);
  transform: rotate(-45deg) translate(-7px, 2px);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.HeaderContainerNav__link:hover {
  opacity: .35;
}

@keyframes headerFixed {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.SiteHeaderTrigger {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 24px 16px;
}

@media screen and (max-width: 768px) {
  .SiteHeaderTrigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.SiteHeaderTrigger:after {
  content: "MENU";
  display: block;
  text-align: center;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-left: 4px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .is-fixed+.SiteHeaderTrigger {
    position: fixed;
    -webkit-animation-name: headerFixed;
    animation-name: headerFixed;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    z-index: 10;
    top: 0;
    left: 0;
  }
}

.SiteHeaderTrigger__inner {
  width: 15px;
  height: 13px;
  position: relative;
  top: -1px;
}

.SiteHeaderTrigger__bar {
  background-color: #000;
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.SiteHeaderTrigger__bar:first-child {
  top: 0;
}

.SiteHeaderTrigger__bar:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.SiteHeaderTrigger__bar:last-child {
  bottom: 0;
}

.-open .SiteHeaderTrigger__bar:first-child {
  -webkit-transform: rotate(45deg) translate(0, 1px);
  -ms-transform: rotate(45deg) translate(0, 1px);
  transform: rotate(45deg) translate(0, 1px);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

.-open .SiteHeaderTrigger__bar:nth-child(2) {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  opacity: 0;
}

.-open .SiteHeaderTrigger__bar:last-child {
  -webkit-transform: rotate(-45deg) translate(-1px, 0);
  -ms-transform: rotate(-45deg) translate(-1px, 0);
  transform: rotate(-45deg) translate(-1px, 0);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

/* =============================================================

  main

* ============================================================= */
/* main
=============================== */
.SiteMain {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 100%;
}

/* =============================================================

  footer

* ============================================================= */
.FooterContainerList {
  background-color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  font-size: 1.3rem;
  line-height: 1;
  padding: 24px;
}

@media screen and (max-width: 768px) {
  .FooterContainerList {
    padding: 24px 16px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 414px) {
  .FooterContainerList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 3.6;
    padding: 32px 7.125%;
  }
}

.FooterContainerList__item {
  border-right: 1px solid #fff;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .FooterContainerList__item {
    padding: 0 16px;
  }
}

.FooterContainerList__item:last-of-type {
  border-right: 0;
}

@media screen and (max-width: 414px) {
  .FooterContainerList__item {
    border-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

.FooterContainerList__item:before {
  content: "-";
  color: #fff;
  display: none;
}

@media screen and (max-width: 414px) {
  .FooterContainerList__item:before {
    display: block;
    margin-right: .4em;
  }
}

.FooterContainerList__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.FooterContainerList__link:hover, .FooterContainerList__link:active, .FooterContainerList__link:focus, .FooterContainerList__link:visited, .FooterContainerList__link:link {
  color: #fff;
}

.FooterContainerList__link.-blank:after {
  background-image: url("../img/icon_link-blank02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 13px;
  height: 11px;
  margin-left: 2px;
}

.FooterContainerList__link:hover {
  text-decoration: underline;
}

.FooterContainerinfo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 40px 24px;
}

.FooterContainerinfo__copyright {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .FooterContainerinfo__copyright {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 414px) {
  .FooterContainerinfo__copyright {
    font-size: 1rem;
  }
}

.Button {
  border-width: 2px;
  border-style: solid;
  border-radius: 4px;
  display: block;
  padding: 1.2em 2em;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media screen and (max-width: 768px) {
  .Button {
    padding: 1.4em 1.2em;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .Button {
    padding: 1.2em 1em;
    font-size: 1.1rem;
  }
}

.Button:before {
  border-top-width: 2px;
  border-top-style: solid;
  border-right-width: 2px;
  border-right-style: solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 2em;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media screen and (max-width: 414px) {
  .Button:before {
    width: 5px;
    height: 5px;
    right: .6em;
  }
}

.Button.-default {
  background-color: #cc0000;
  border-color: #cc0000;
  color: #fff;
}

.Button.-default:before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.Button.-default:hover {
  background-color: #fff;
  color: #cc0000;
}

.Button.-default:hover:before {
  border-color: #cc0000;
}

.Button.-primary {
  background-color: #FF8158;
  border-color: #FF8158;
  color: #fff;
}

.Button.-primary:before {
  border-top-color: #fff;
  border-right-color: #fff;
}

.Button.-primary:hover {
  background-color: #fff;
  color: #FF8158;
}

.Button.-primary:hover:before {
  border-color: #FF8158;
}

.InterviewCard {
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 40%;
  min-width: 390px;
  position: relative;
  margin: 0 2% 40px;
}

@media screen and (max-width: 414px) {
  .InterviewCard {
    border-top: 1px solid #ccc;
    border-right: 0;
    border-left: 0;
    border-bottom: 0;
  }
}

.InterviewCard:last-of-type {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .InterviewCard {
    margin: 0 1% 32px;
    min-width: auto;
    width: 48%;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard {
    margin: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.InterviewCard:nth-of-type(2n) {
  top: 40px;
}

@media screen and (max-width: 414px) {
  .InterviewCard:nth-of-type(2n) {
    top: 0;
  }
}

.InterviewCard__image {
  position: relative;
}

@media screen and (max-width: 414px) {
  .InterviewCard__image {
    width: 48%;
  }
}

.InterviewCard__picture {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  width: 100%;
  padding-top: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter .3s ease-out;
  transition: -webkit-filter .3s ease-out;
  -o-transition: filter .3s ease-out;
  transition: filter .3s ease-out;
  transition: filter .3s ease-out, -webkit-filter .3s ease-out;
}

@media screen and (max-width: 414px) {
  .InterviewCard__picture {
    height: 100%;
    padding-top: 0;
  }
}

.InterviewCard:hover .InterviewCard__picture {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.InterviewCard__number {
  position: absolute;
  right: 10%;
  bottom: -8%;
}

@media screen and (max-width: 414px) {
  .InterviewCard__number {
    right: 8%;
    bottom: 4%;
  }
}

.InterviewCard__number svg {
  display: none;
}

.InterviewCard__number .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.InterviewCard__number .icon-InterviewNumber {
  display: block;
  width: 100%;
  max-width: 125px;
  height: 130px;
}

@media screen and (max-width: 768px) {
  .InterviewCard__number .icon-InterviewNumber {
    max-width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__number .icon-InterviewNumber {
    max-width: 55px;
    height: 55px;
  }
}

.InterviewCard__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2.4em 1.8em;
}

@media screen and (max-width: 768px) {
  .InterviewCard__inner {
    padding: 2.1em 1.2em;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__inner {
    width: 52%;
  }
}

.InterviewCard__title {
  display: block;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .InterviewCard__title {
    letter-spacing: 0;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__title {
    font-size: 1.4rem;
  }
}

.InterviewCard__title .sp-br {
  display: none;
}

@media screen and (max-width: 414px) {
  .InterviewCard__title .sp-br {
    display: inline-block;
  }
}

.InterviewCard__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 1.2em;
}

.InterviewCard__name {
  font-size: 1.6rem;
  font-weight: bold;
  padding-right: 1.2em;
}

@media screen and (max-width: 768px) {
  .InterviewCard__name {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__name {
    font-size: 1.2rem;
  }
}

.-two-column .InterviewCard__name {
  padding-right: .5em;
  padding-left: .5em;
}

@media screen and (max-width: 768px) {
  .-two-column .InterviewCard__name {
    padding-right: .4em;
    padding-left: .4em;
  }
}

.-two-column .InterviewCard__name:first-of-type {
  padding-left: 0;
}

.InterviewCard__joined {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .InterviewCard__joined {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__joined {
    font-size: 1rem;
  }
}

.-two-column .InterviewCard__joined {
  padding-right: .5em;
}

.InterviewCard__link {
  border-bottom: 1px solid #d70000;
  color: #cc0000 !important;
  display: block;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: .2em;
  margin-top: 1.8em;
}

.InterviewCard__link:hover, .InterviewCard__link:active, .InterviewCard__link:focus, .InterviewCard__link:visited, .InterviewCard__link:link {
  color: #cc0000 !important;
}

@media screen and (max-width: 768px) {
  .InterviewCard__link {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .InterviewCard__link {
    font-size: 1.1rem;
  }
}

.InterviewCard__link:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.ContestCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  width: 48%;
  position: relative;
}

.ContestCard__image {
  width: 45%;
  background-color: #eee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ContestCard__inner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 55%;
  padding: 4em 3.2em;
}

.ContestCard__title {
  font-size: 2.4rem;
  font-weight: 600;
}

.ContestCard__description {
  padding-top: 0.8em;
}

.ContestCard__link {
  border-bottom: 1px solid #d70000;
  color: #cc0000;
  display: block;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-weight: 300;
  text-decoration: none;
  margin-top: 1.8em;
}

.ContestCard__link:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.Container {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .Container {
    max-width: none;
    width: 100%;
  }
}

.SectionHeader {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 8px;
  max-width: 1024px;
  margin: 0 auto;
}

.SectionHeader.-white {
  color: #fff;
}

.SectionHeader__title {
  border-left: 5px solid #cc0000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 2.6rem;
  font-weight: 600;
  padding-left: 1em;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .SectionHeader__title {
    font-size: 2.1rem;
  }
}

@media screen and (max-width: 414px) {
  .SectionHeader__title {
    font-size: 1.6rem;
    border-left: 3px solid #cc0000;
  }
}

.SectionHeader__lead {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .SectionHeader__lead {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 414px) {
  .SectionHeader__lead {
    font-size: 1.4rem;
  }
}

.SectionInner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1024px;
  margin: 0 auto;
}

.SectionDescription {
  display: block;
  text-align: center;
  padding: 2em 2em 0;
}

@media screen and (max-width: 768px) {
  .SectionDescription {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .SectionDescription {
    font-size: 1.1rem;
  }
}

.SubHeading {
  display: block;
  text-align: center;
  line-height: 1;
}

.SubHeading>.en {
  display: block;
  text-align: center;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-size: 6.4rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .SubHeading>.en {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 414px) {
  .SubHeading>.en {
    font-size: 3rem;
  }
}

.SubHeading>.ja {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 2.4em;
}

@media screen and (max-width: 768px) {
  .SubHeading>.ja {
    font-size: 1.4rem;
    padding-top: 1.6em;
  }
}

@media screen and (max-width: 414px) {
  .SubHeading>.ja {
    font-size: 1.2rem;
    padding-top: 1.2em;
  }
}

.Breadcrumb {
  background-color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.4em 2%;
}

.Breadcrumb__item {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .Breadcrumb__item {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 414px) {
  .Breadcrumb__item {
    font-size: 1rem;
  }
}

.Breadcrumb__item+.Breadcrumb__item {
  margin-left: .8em;
}

.Breadcrumb__item+.Breadcrumb__item:before {
  content: '>';
  display: inline-block;
  margin-right: .8em;
}

.Breadcrumb__link {
  color: #000;
}

.Breadcrumb__link:hover, .Breadcrumb__link:active, .Breadcrumb__link:focus, .Breadcrumb__link:visited, .Breadcrumb__link:link {
  color: #000;
}

.HomePageHeader {
  background-color: #fff;
  border-top: 7px solid #cc0000;
}

.HomePageHeader__inner {
  background-image: url("../img/bg_HomePageHeader01.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
}

.HomePageHeader__title {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 400px;
  margin: auto;
  -webkit-transition: all .6s ease-out;
  -o-transition: all .6s ease-out;
  transition: all .6s ease-out;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .HomePageHeader__title {
    height: 320px;
  }
}

.HomePageHeader__title .ja,
.HomePageHeader__title .en {
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  line-height: 1;
}

.HomePageHeader__title .ja {
  border-bottom: 1px solid #fff;
  font-size: 3.6rem;
  font-weight: 500;
  padding-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .HomePageHeader__title .ja {
    font-size: 2.1rem;
  }
}

.HomePageHeader__title .en {
  font-size: 5.2rem;
  padding-top: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 768px) {
  .HomePageHeader__title .en {
    font-size: 3.2rem;
  }
}

.HomePageHeader__title.is-showed {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.HomePageHeader__lead {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #cc0000;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 600;
  padding: 24px 7.125%;
}

@media screen and (max-width: 768px) {
  .HomePageHeader__lead {
    font-size: 3rem;
  }
}

@media screen and (max-width: 414px) {
  .HomePageHeader__lead {
    font-size: 2.4rem;
  }
}

.HomePageHeader__lead span {
  display: inline-block;
}

.HomeMessage {
  background-color: #f4f4f4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 56px 7.125%;
}

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

@media screen and (max-width: 768px) {
  .HomeMessage__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.HomeMessage__column {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
   width: 100%;
  /* width: calc(100% - 350px); */
  /* padding-right: 24px; */
}

@media screen and (max-width: 768px) {
  .HomeMessage__column {
    width: 100%;
  }
}

.HomeMessage__lead {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding-top: 1.4em;
}

@media screen and (max-width: 768px) {
  .HomeMessage__lead {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeMessage__lead {
    font-size: 1.4rem;
  }
}

.HomeMessage__text {
  display: block;
  padding-top: 1.4em;
}

@media screen and (max-width: 768px) {
  .HomeMessage__text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeMessage__text {
    font-size: 1.1rem;
  }
}

.HomeMessage__president {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.HomeMessage__presidentJob {
  display: inline-block;
  font-size: 1.5rem;
  padding-right: 1.4em;
}

@media screen and (max-width: 768px) {
  .HomeMessage__presidentJob {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeMessage__presidentJob {
    font-size: 1rem;
  }
}

.HomeMessage__presidentName {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .HomeMessage__presidentName {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeMessage__presidentName {
    font-size: 1.5rem;
  }
}

.HomeMessage__photo {
  background-image: url("../img/img_presidentAvatar.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 4px solid #fff;
  width: 350px;
  height: 420px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .HomeMessage__photo {
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 414px) {
  .HomeMessage__photo {
    height: 350px;
  }
}

.HomeWorks {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 56px 7.125%;
}

@media screen and (max-width: 768px) {
  .HomeWorks {
    padding: 48px 5.125%;
  }
}

.HomeWorks__lead {
  display: block;
  font-size: 1.5rem;
  line-height: 1.9;
  padding-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .HomeWorks__lead {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorks__lead {
    font-size: 1.1rem;
  }
}

.HomeWorks__lead em {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .HomeWorks__lead em {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorks__lead em {
    font-size: 1.3rem;
  }
}

.HomeWorksSection {
  border-top: 7px solid #000;
  padding: 32px 0 80px;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection {
    padding: 24px 0 64px;
  }
}

.HomeWorksSection__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
  padding-bottom: 32px;
}

.HomeWorksSection__type {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #000;
  padding: 0 24px;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
}

.HomeWorksSection__type span {
  display: block;
  text-align: center;
}

.HomeWorksSection__type span:first-of-type {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__type span:first-of-type {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorksSection__type span:first-of-type {
    font-size: 1rem;
  }
}

.HomeWorksSection__type span:last-of-type {
  font-size: 7rem;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__type span:last-of-type {
    font-size: 5.2rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorksSection__type span:last-of-type {
    font-size: 3.2rem;
  }
}

.HomeWorksSection__title {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 3.2rem;
  font-weight: 400;
  padding: 0 0 8px 24px;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorksSection__title {
    font-size: 2rem;
  }
}

.HomeWorksSection__content {
  overflow: hidden;
  padding-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.HomeWorksSection__lead {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__lead {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorksSection__lead {
    font-size: 1.4rem;
  }
}

.HomeWorksSection__image {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  padding-bottom: 32px;
  padding-left: 40px;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .HomeWorksSection__image {
    width: 100%;
    padding-left: 0;
    padding-bottom: 16px;
  }
}

.HomeWorksSection__image img {
  display: block;
  width: 100%;
}

.HomeWorksInterview {
  background-color: #f4f4f4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 32px 3.125%;
}

@media screen and (max-width: 768px) {
  .HomeWorksInterview {
    padding: 24px 7.125%;
  }
}

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

@media screen and (max-width: 768px) {
  .HomeWorksInterview__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.HomeWorksInterview__photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 4px solid #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 170px;
  height: 170px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .HomeWorksInterview__photo {
    margin: 0 auto;
  }
}

.HomeWorksInterview__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 32px;
}

@media screen and (max-width: 768px) {
  .HomeWorksInterview__content {
    padding-top: 16px;
    padding-left: 0;
  }
}

.HomeWorksInterview__title {
  display: block;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .HomeWorksInterview__title {
    padding-bottom: 0.6em;
  }
}

.HomeWorksInterview__text {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .HomeWorksInterview__text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  .HomeWorksInterview__text {
    font-size: 1.1rem;
  }
}

.HomeWorksInterview__profile {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: .8em;
}

.HomeButtons {
  background-color: #efefef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 72px 7.125%;
}

@media screen and (max-width: 768px) {
  .HomeButtons {
    padding: 56px 5.125%;
  }
}

@media screen and (max-width: 414px) {
  .HomeButtons {
    padding: 42px 5.125%;
  }
}

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

@media screen and (max-width: 768px) {
  .HomeButtons__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.HomeButtons__item {
  background-color: #cc0000;
  border: 2px solid #cc0000;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 500;
  width: 49%;
  padding: 2.325em 3.125%;
  margin: 0 10px;
  position: relative;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media screen and (max-width: 768px) {
  .HomeButtons__item {
    font-size: 2.1rem;
    width: 100%;
    margin: 16px 0;
  }
}

@media screen and (max-width: 414px) {
  .HomeButtons__item {
    font-size: 1.6rem;
  }
}

.HomeButtons__item:hover {
  background-color: #fff;
  color: #cc0000;
}

.HomeButtons__item:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5.125%;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.HomeButtons__item:hover:after {
  border-top-color: #cc0000;
  border-right-color: #cc0000;
}

.HomeRequirements {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 56px 7.125%;
}

@media screen and (max-width: 768px) {
  .HomeRequirements {
    padding: 48px 5.125%;
  }
}

.HomeRequirements:nth-of-type(2n+1) {
  background-color: #f4f4f4;
}

.HomeRequirementsTabs {
  border-collapse: collapse;
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 1024px;
  margin: 40px auto 0;
}

.HomeRequirementsTabs__item {
  background-color: #fff;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  display: table-cell;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  padding: 16px;
  width: 33.3%;
}

.HomeRequirementsTabs__item:hover, .HomeRequirementsTabs__item:active, .HomeRequirementsTabs__item:focus, .HomeRequirementsTabs__item:visited, .HomeRequirementsTabs__item:link {
  color: #000;
}

@media screen and (max-width: 768px) {
  .HomeRequirementsTabs__item {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .HomeRequirementsTabs__item span {
    display: block;
    text-align: center;
  }
}

.HomeRequirementsTabs__item:hover, .HomeRequirementsTabs__item.-is-select {
  background-color: #000;
  color: #fff;
}

.HomeRequirementsTabs__item:hover:hover, .HomeRequirementsTabs__item:hover:active, .HomeRequirementsTabs__item:hover:focus, .HomeRequirementsTabs__item:hover:visited, .HomeRequirementsTabs__item:hover:link, .HomeRequirementsTabs__item.-is-select:hover, .HomeRequirementsTabs__item.-is-select:active, .HomeRequirementsTabs__item.-is-select:focus, .HomeRequirementsTabs__item.-is-select:visited, .HomeRequirementsTabs__item.-is-select:link {
  color: #fff;
}

.HomeRequirementsTable {
  font-size: 1.4rem;
  width: 100%;
  max-width: 1024px;
  padding-top: 32px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .HomeRequirementsTable {
    font-size: 1.2rem;
  }
}

.HomeRequirementsTable__head,
.HomeRequirementsTable__data {
  padding: 24px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {

  .HomeRequirementsTable__head,
  .HomeRequirementsTable__data {
    padding: 16px;
  }
}

.HomeRequirementsTable__head {
  font-weight: 600;
  width: 207px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.HomeRequirementsTable__head span {
  display: block;
}

@media screen and (max-width: 768px) {
  .HomeRequirementsTable__head {
    width: 32%;
  }
}

.HomeRequirementsTable__data {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  .HomeRequirementsTable__data {
    width: 68%;
  }
}

.HomeRequirementsTable__data p{
  margin-bottom: 16px;
}

.HomeRequirementsTable__data p:last-child{
  margin-bottom: 0;
}

.HomeRequirementsTable__data span{
  font-weight: 600;
}

.HomeRequirementsTable__button {
  max-width: 400px;
  margin: 40px auto 0;
}

.HomeRequirementsFresh {
  display: none;
}

.HomeRequirementsFresh.-is-select {
  display: block;
}

.HomeRequirementsCareer {
  display: none;
}

.HomeRequirementsCareer.-is-select {
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 25px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  top: 8%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 10;
  -webkit-transform: scale(1, 0.8);
  -ms-transform: scale(1, 0.8);
  transform: scale(1, 0.8);
}

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

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

.slick-prev:before,
.slick-next:before {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  background: transparent;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 50%;
  margin-left: -100px;
}

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

.slick-prev:before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

[dir="rtl"] .slick-prev:before {
  content: url(../img/arrow_slider-next.png);
}

.slick-next {
  right: 50%;
  margin-right: -100px;
}

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

.slick-next:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

[dir="rtl"] .slick-next:before {
  content: url(../img/arrow_slider-prev.png);
}

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

.slick-dots {
  position: absolute;
  bottom: -40px;
  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;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #ccc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #cc0000;
}