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

* ============================================================= */
:root {
  --key-color: #cc0000;
  --point-color: #ff9348;
}

@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;
  font-feature-settings: 'palt' 1;
  font-kerning: auto;
  font-display: swap;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.04em;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

._red {
  background: #f9f0f0;
}

@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;
  user-select: none;
  z-index: 10000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 200px;
  background: #fff;
  overflow: hidden;
  transition: all .5s ease-out;
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 200px;
  position: fixed;
  z-index: 10001;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: var(--key-color);
}

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

/* .SiteLoader {
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
}

@media all and (-ms-high-contrast: none) {

  *::-ms-backdrop,
  body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, -apple-system, BlinkMacSystemFont, Verdana, sans-serif;
  }
}



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

  header

* ============================================================= */
.SiteHeaderContainer {
  background-color: #fff;
  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: flex;
  justify-content: space-between;
  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%;
}

.HeaderContainerNav {
  padding: 25px 0;
  transition: all .4s ease-out;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav {
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
}

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

.HeaderContainerNav__list {
  display: flex;
}

@media screen and (max-width: 768px) {
  .HeaderContainerNav__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

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

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

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

.HeaderContainerNav__link {
  color: #000;
  padding: 0 .75em;
  text-decoration: none;
  position: relative;
  transition: opacity .3s ease-out;
}

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

.HeaderContainerNav__link:hover {
  opacity: .35;
}

.HeaderContainerNav__button {
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .3s ease-out;
  padding: 14px 28px;
}

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

@media screen and (max-width: 768px) {
  .HeaderContainerNav__button {
    display: block;
    line-height: 1.75;
    width: 70%;
    margin: 24px auto 0;
  }
}

.HeaderContainerNav__button.-fresh {
  background-color: var(--key-color);
}

.HeaderContainerNav__button.-career {
  background-color: var(--point-color);
}

.HeaderContainerNav__button:hover {
  opacity: .65;
}

.SiteHeaderTrigger {
  box-sizing: border-box;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  padding-bottom: 16px;
  position: absolute;
  top: 6px;
  right: 16px;
}

@media screen and (max-width: 768px) {
  .SiteHeaderTrigger {
    top: 0;
    display: flex;
    position: fixed;
  }
}

@media screen and (max-width: 414px) {
  .SiteHeaderTrigger {
    top: 0;
    right: 0;
  }
}

.SiteHeaderTrigger:after {
  content: "MENU";
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 1rem;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 6px;
}

.SiteHeaderTrigger__inner {
  width: 100%;
  height: 24px;
  width: 30px;
  position: relative;
}

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

.SiteHeaderTrigger__bar:first-child {
  top: 3px;
}

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

.SiteHeaderTrigger__bar:last-child {
  bottom: 3px;
}

.-open .SiteHeaderTrigger__bar:first-child {
  transform: rotate(45deg) translate(2px, -5px);
  transform-origin: top left;
}

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

.-open .SiteHeaderTrigger__bar:last-child {
  transform: rotate(-45deg) translate(2px, 5px);
  transform-origin: left bottom;
}

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

  main

* ============================================================= */
/* main
=============================== */
.SiteMain {
  box-sizing: border-box;
  padding-top: 74px;
  display: block;
  max-height: 100%;
}

@media screen and (max-width: 768px) {
  .SiteMain {
    padding-top: 64px;
  }
}

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

  footer

* ============================================================= */
.FooterContainerList {
  background-color: #333;
  box-sizing: border-box;
  display: flex;
  justify-content: 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 {
    flex-direction: column;
    justify-content: flex-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: 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 {
  color: #fff;
  text-decoration: none;
}

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

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

.FooterContainerinfo {
  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;
  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;
  box-sizing: border-box;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  transform-origin: center;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 2em;
  bottom: 0;
  margin: auto 0;
  transition: all .3s ease-out;
}

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

.Button.-default {
  background-color: var(--key-color);
  border-color: var(--key-color);
  color: #fff;
}

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

.Button.-default:hover {
  background-color: #fff;
  color: var(--key-color);
}

.Button.-default:hover:before {
  border-color: var(--key-color);
}

.Button.-primary {
  background-color: var(--point-color);
  border-color: var(--point-color);
  color: #fff;
}

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

.Button.-primary:hover {
  background-color: #fff;
  color: var(--point-color);
}

.Button.-primary:hover:before {
  border-color: var(--point-color);
}

.InterviewCard {
  border: 1px solid #ccc;
  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: 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%;
  filter: grayscale(100%);
  transition: filter .3s ease-out;
}

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

.InterviewCard:hover .InterviewCard__picture {
  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 {
  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: flex;
  align-items: baseline;
  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: var(--key-color) !important;
  display: block;
  font-family: "Open Sans", "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: var(--key-color) !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: 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 {
  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: var(--key-color);
  display: block;
  font-family: "Open Sans", "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 {
  padding-bottom: 8px;
}

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

.SectionHeader__en {
  display: block;
  text-align: center;
  font-family: "Open Sans", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Verdana, Meiryo, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  font-style: italic;
  padding-bottom: 3px;
}

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

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

.SectionHeader__ja {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  padding-top: 14px;
  position: relative;
}

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

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

.SectionHeader__ja:before {
  background-color: #000;
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30px;
}

@media screen and (max-width: 768px) {
  .SectionHeader__ja:before {
    width: 40px;
    margin-left: -20px;
  }
}

@media screen and (max-width: 414px) {
  .SectionHeader__ja:before {
    width: 28px;
    margin-left: -14px;
  }
}

.-white .SectionHeader__ja:before {
  background-color: #fff;
}

.SectionHeader__lead {
  display: block;
  text-align: center;
  line-height: 1.5;
  padding: 32px 7.125% 0;
  margin: 0 auto;
  max-width: 740px;
}

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

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

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

.SectionInner {
  padding: 0 7.125%;
}

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

.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: "Open Sans", "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: flex;
  align-items: center;
  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__inner {
  position: relative;
}

.HomePageHeader__title {
  position: absolute;
  color: #fff;
  font-size: 4em;
  left: 5%;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
  font-style: italic;
  font-weight: bold;
}

@keyframes revealText {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.loader__canvas {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* transform: rotate(-5deg); */
  /* animation: smooth 0.5s ease-out forwards;
  animation-delay: 3s; */
  /* clip-path: inset(0 100% 0 0); */
}
.loader__canvas__text{
  font-size: 100px;
  font-style: italic;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.7);
  transform: rotate(-5deg);
  clip-path: inset(0 100% 0 0);
  animation: revealText .6s ease-out forwards 1s;
  padding-right: 12px;
}
.loader__canvas._left {
  background: #c00;
  clip-path: polygon(0% 0%, 52% 0%, 49% 100%, 0% 100%);
  animation: openLeft .5s ease-out forwards 2.25s;
}
.loader__canvas._right {
  background: #c00;
  clip-path: polygon(52% 0%, 100% 0%, 100% 100%, 48% 100%);
  animation: openRight .5s ease-out forwards 2.25s;
}

@media screen and (max-width: 560px) {
  .loader__canvas._left{
    clip-path: polygon(0% 0%, 35% 0%, 60% 100%, 0% 100%);
    animation: openLeft .3s ease-out forwards 2.5s;
  }
  .loader__canvas._right{
    clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 59% 100%);
    animation: openRight .3s ease-out forwards 2.5s;
  }
}

@keyframes openLeft {
  0% {
    clip-path: polygon(0% 0%, 52% 0%, 48% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
}
@keyframes openRight {
  0% {
    clip-path: polygon(52% 0%, 100% 0%, 100% 100%, 48% 100%);
  }
  100% {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}

@media screen and (max-width: 560px) {
  @keyframes openLeft {
    0% {
      clip-path: polygon(0% 0%, 35% 0%, 60% 100%, 0% 100%);
    }
    100% {
      clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
  }
  @keyframes openRight {
    0% {
      clip-path: polygon(34% 0%, 100% 0%, 100% 100%, 59% 100%);
    }
    100% {
      clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }
  }
}

@media screen and (max-width: 960px) {
  .loader__canvas__text{
    font-size: 10vw;
  }
}


.smooth.line1 {
  top: 50%;
  background: linear-gradient(transparent 80%, var(--key-color) 30%);
  display: inline-block;
  transform: rotate(-5deg);
}

.smooth.line1 span {
  display: inline;
}

.smooth.start.line2 {
  top: 60%;
  animation-delay: 2.8s;
  width: 50%;
  transform: rotate(-5deg);
  margin-left: -15px;
  /* margin-top: -10px; */
}

.smooth.start.line3 {
  top: 72%;
  animation-delay: 2.8s;
  transform: rotate(-5deg);
  margin-left: -15px;
}

@media screen and (max-width: 768px) {
  .smooth.start.line2 {
    top: 65%;
    margin-left: -7px;
  }

  .smooth.start.line3 {
    top: 79%;
    margin-left: -10px;
  }
}

.HomePageHeader__title._en {
  top: 50%;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  transform: rotate(-5deg);
}

@media screen and (max-width: 768px) {
  .HomePageHeader__title {
    font-size: 2em;
    line-height: 1;
  }
}

.smooth {
  display: none;
  overflow: hidden;
}

body.pace-done .smooth {
  display: block;
}

.smooth.start {
  display: block;
  animation: smooth .4s ease-out forwards;
  clip-path: inset(0 100% 0 0);
  animation-delay: 2.8s;
}

@media screen and (max-width: 560px) {
  .smooth.start {
    animation-delay: 2.5s;
  }
  .smooth.start.line2 {
    animation-delay: 2.5s;
  }
  .smooth.start.line3 {
    animation-delay: 2.5s;
  }
}

@keyframes smooth {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

._en.start {
  display: block;
  animation: smooth-in 0s ease-out forwards, smooth-out 0s ease-in forwards;
  animation-delay: 0s, 3s;
}

@keyframes smooth-in {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes smooth-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.HomePageHeader_mv img {
  width: 100%;
}

.HomePageHeader__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

._pc .HomePageHeader__item {
  height: 560px;
}

._sp .HomePageHeader__item {
  height: 100vw;
}

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

.HomePageHeader__lead {
  box-sizing: border-box;
  color: var(--key-color);
  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;
}

.HomeMovie {
  padding: 56px 7.125%;
}

.SectionHeader__movie {
  width: fit-content;
  margin: 3em auto;
}

.SectionHeader__movie iframe {
  width: 560px;
  height: 350px;
}

@media screen and (max-width: 768px) {
  .SectionHeader__movie iframe {
    width: 300px;
    height: 170px;
  }
}

.HomeMessage {
  padding: 56px 7.125%;
  background-image: linear-gradient(120deg, var(--point-color) 0%, var(--key-color) 100%);
}

.HomeMessage__avatar {
  background-image: url("../img/img_presidentAvatar.jpg");
  background-color: #eee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 4px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  width: 130px;
  height: 130px;
  margin: 16px auto;
}

.HomeMessage__text {
  color: #fff;
  padding-top: 8px;
  max-width: 740px;
  margin: 0 auto;
}

.HomeMessage__president {
  padding-top: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
}

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

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

.HomeCompany__lead {
  box-sizing: border-box;
  background-image: url("../img/bg_HomeCompany.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 56px 7.125%;
}

.HomeCompany__text {
  padding-top: 16px;
  max-width: 740px;
  margin: 0 auto;
}

.HomeCompany__button {
  max-width: 400px;
  margin: 32px auto 0;
}

.HomeCompanyFeature {
  padding: 20px 0;
  /* display: flex; */
}

@media screen and (max-width: 768px) {
  .HomeCompanyFeature {
    flex-direction: column;
    padding: 0;
  }
}

/* .HomeCompanyFeature:nth-of-type(2n+1) {
  flex-direction: row-reverse;
} */

@media screen and (max-width: 768px) {
  .HomeCompanyFeature:nth-of-type(2n+1) {
    flex-direction: column;
  }
}

.HomeCompanyFeature__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .HomeCompanyFeature__inner {
    width: 85%;
    max-width: none;
    padding: 40px 7.125%;
  }
}

/* .HomeCompanyFeature:nth-of-type(2n+1) .HomeCompanyFeature__inner {
  margin-left: 0;
  margin-right: auto;
} */

.HomeCompanyFeature__title {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 0.8em;
}

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

.HomeCompanyFeature__text {
  font-size: 1.4rem;
}

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

.HomeCompanyFeature__photos {
  display: flex;
  width: 50%;
  margin: 1em auto;
  align-items: center;
  gap: 10px;
}

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

.HomeCompanyFeature__photo {
  background-color: #676767;
  position: relative;
  width: 100%;
}

.HomeCompanyFeature__photo.is-showed img {
  opacity: 1;
}

.HomeCompanyFeature__photo img {
  display: block;
  width: 100%;
  transition: opacity .8s ease-out;
  opacity: 0;
}

.-two-column .HomeCompanyFeature__photo {
  width: 50%;
}

.HomeCompanyFeature__description {
  background-color: #000;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  width: 100px;
  padding: .3em 0;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

.HomeTraining {
  padding: 56px 0;
}

.HomeTraining_inner{
  max-width: 1440px;
  margin-top: 1em;
  margin-inline: auto;
  padding: 1em;
}

.HomeTraining_inner img{
  width: 100%;
}

.HomeTraining__figure {
  padding: 56px 16px 0;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .HomeTraining__figure {
    padding: 40px 16px 0;
  }
  .HomeTraining_inner img{
    min-width: 300%;
  }
}

@media screen and (max-width: 414px) {
  .HomeTraining__figure {
    padding: 32px 0 0;
  }
}

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

.HomeTraining-table {
  margin-inline: auto;
  background: #e6e6e6;
  padding: 2em 1em;
  max-width: 1440px;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .HomeTraining-table_inner {
    overflow-x: auto;
  }

  .HomeTraining-table {
    min-width: 80em;
  }
}

.HomeTraining-table_goal {
  background: #ccc;
  color: #000;
  padding: .5em;
  width: 100%;
  font-size: 0.75em;
}

.HomeTraining-table_header th {
  background: #333;
  color: #fff;
  text-align: center;
  padding-block: .5em;
  width: 12%;

  position: relative;
  /* 疑似要素の基準点を設定 */
  padding: 10px 30px;
  /* パディングで矢印の長さを調整 */
  border: 1px solid #e6e6e6;
  /* 境界線 */
}

.HomeTraining-table_header th:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  border-width: 4em 1em;
  border-style: solid;
  border-color: transparent;
  border-left-color: #333;
}

@media screen and (max-width: 768px) {
  .HomeTraining-table_header th:last-child:before {
    border-width: 4.2em 1em;
  }
}

.HomeTraining-table_header th:first-child {
  background: none;
  width: 1%;
}

.HomeTraining-table_header th:first-child::before {
  display: none;
}

.HomeTraining-table_header span {
  font-size: .8em;
}

.HomeTraining-table_main th,
.HomeTraining-table_main td {
  border-right: 1px solid#ccc;
}

.HomeTraining-table_main th {
  writing-mode: vertical-rl;
  text-align: center;
  background-color: #ccc;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .HomeTraining-table_jobname {
    white-space: pre;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}


.HomeTraining-table_main td {
  background: #fff;
  vertical-align: baseline;
  padding-block: .5em;
  padding-left: .5em;
}

.HomeTraining-table_main td:last-child {
  border: none;
}

.HomeTraining-table_main li::before {
  content: "";
  display: inline-block;
  width: .57143em;
  height: .57143em;
  margin-right: .5em;
  background: var(--key-color);
}

.HomeStaff {
  padding: 56px 0;
}

.HomeStaff__lead {
  display: block;
  text-align: left;
  line-height: 1.9;
  padding: 32px 7.125% 40px;
  margin: 0 auto;
  max-width: 740px;
}

.HomeStaff__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .HomeStaff__inner {
    flex-wrap: wrap;
  }
}

.HomeStaffCard {
  cursor: pointer;
  position: relative;
  transition: all .3s ease-out;
  opacity: 0;
  width: calc(100% / 4 - 10px);
}

.HomeStaffCard.is-showed {
  opacity: 1;
}

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

@media screen and (max-width: 768px) {
  .HomeStaffCard+.HomeStaffCard {
    margin-top: 24px;
  }
}

.HomeStaffCard__thumb {
  position: relative;
}

@media screen and (max-width: 768px) {
  .HomeStaffCard__thumb {
    width: 50%;
    position: static;
  }
}

.HomeStaffCard__image {
  display: block;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .HomeStaffCard__image {
    padding-bottom: 5px;
  }
}

.HomeStaffCard__image img {
  display: block;
  width: 100%;
  transition: transform .3s ease-out;
}

.HomeStaffCard:hover .HomeStaffCard__image img {
  transform: scale(1.02);
}

.HomeStaffCard__job {
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  width: 100px;
  padding: 2px;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .HomeStaffCard__job {
    top: 0;
    left: 50%;
    bottom: auto;
  }
}

.-sales {
  background-color: var(--key-color);
}

.-service {
  background-color: var(--point-color);
}

.-fa {
  background-color: var(--point-color);
}

.-office {
  background-color: #cdb581;
}

.HomeStaffCard__inner {
  box-sizing: border-box;
  padding: 24px 5.125%;
}

@media screen and (max-width: 768px) {
  .HomeStaffCard__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 30px 5.125% 0;
  }
}

.HomeStaffCard__name {
  font-size: 1.8rem;
  font-weight: 600;
  width: 200px;
  text-align: center;
}

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

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

.HomeStaffCard__target {
  color: #fff;
  text-decoration: none;
}

/* .HomeStaffCard__target:hover,
.HomeStaffCard__target:active,
.HomeStaffCard__target:focus,
.HomeStaffCard__target:visited,
.HomeStaffCard__target:link {
  color: #000;
} */

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

.HomeStaffCard__joined {
  font-size: 1.3rem;
}

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

.HomeStaffCard__read {
  padding-top: 1em;
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .HomeStaffCard__read {
    font-size: 1.1rem;
    padding-top: 1.4em;
  }
}

.HomeStaffCard__read span {
  display: inline-block;
  overflow: hidden;
  position: relative;
  line-height: 2.5;
}

.HomeStaffCard__read span:after {
  background-color: #000;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform .6s ease-out;
}

.HomeStaffCard:hover .HomeStaffCard__read span:after {
  transform: translateX(-100%);
}

.HomeStaffInterview {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  height: 0;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: height 0.4s cubic-bezier(1, 0, 0, 1) 0.3s;
}

.HomeStaffInterview.-is-open {
  display: block;
}

.HomeStaffInterview__wrapper {
  background-color: #fff;
  box-sizing: border-box;
  border: 2px solid #000;
  padding: 60px;
}

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

.HomeStaffInterview__header {
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 20px;
}

.HomeStaffInterview__job {
  box-sizing: border-box;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  width: 160px;
  padding: 8px;
  margin-right: 1.4em;
}

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

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

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

.HomeStaffInterview__joined {
  font-size: 1.2rem;
  padding-left: 1.4em;
}

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

.HomeStaffInterview__content {
  padding-top: 46px;
}

.HomeStaffInterview__inner {
  overflow: hidden;
}

.HomeStaffInterview__image {
  box-sizing: border-box;
  width: 50%;
  padding-left: 46px;
  padding-bottom: 30px;
  float: right;
}

@media screen and (max-width: 768px) {
  .HomeStaffInterview__image {
    width: 100%;
    padding-bottom: 5px;
    padding-left: 0;
    float: none;
    margin: 0 auto;
  }
}

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

.HomeStaffInterview__title {
  font-size: 2.2rem;
  font-weight: 600;
  padding-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .HomeStaffInterview__title {
    font-size: 1.8rem;
    padding: 0.6em 0;
  }
}

.HomeStaffInterview__subContent {
  padding-top: 24px;
}

.HomeStaffInterview__subTitle {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 4px;
}

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

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

.HomeStaffInterview__answer {
  font-size: 1.4rem;
}

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

.HomeNumber {
  padding: 56px 0;
}

.HomeNumber_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-inline: auto;
  max-width: 1440px;
}

.HomeNumber_flex img {
  width: calc(100% / 4 - 10px);
}


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

  .HomeNumber_flex img {
    width: calc(100% / 2 - 10px);
  }

}

.HomeRequirements {
  padding: 56px 0;
}

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

.HomeRequirementsTabs__item {
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  color: #000;
  display: table-cell;
  width: calc(100% / 4);
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease-out;
  padding: 16px;
}

.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: 960px;
  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: 2px solid #000;
}

.HomeRequirementsTable__head span {
  display: block;
}

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

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

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

.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;
}

.HomeRequirements_link_title {
  font-size: 2em;

}

.HomeRequirements_link {
  width: fit-content;
  margin: 1em auto;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}

.HomeRequirements_link img {
  width: 100%;
}

.HomeRequirements_link a:hover {
  opacity: .5;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  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: flex !important;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: #fff;
  top: 8%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 10;
  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 {
  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 {
  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: var(--key-color);
}