@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

html {
  font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #fff;
  line-height: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "MS ゴシック", sans-serif;
  font-size: 1.6em;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

body.is-loaded {
  opacity: 1;
}

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

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.sp-only {
  display: none;
}

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

.btn {
  background: #d90000;
  border-radius: 40px;
  color: #fff;
  border: 1px solid #d90000;
  font-weight: bold;
  display: inline-block;
}

.btn:hover {
  background: #fff;
  color: #d90000;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

@media screen and (max-width: 1179px) {
  .section-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section__head-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .section__head-cont {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.section__lead {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .section__lead {
    font-size: 2rem;
    text-align: center;
  }
}

.section__head-en {
  color: #d90000;
  font-weight: bold;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 100;
  margin-bottom: 1rem;
}

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

.section__head-jp {
  font-size: 1.4rem;
  font-weight: bold;
}

.header {
  font-size: 1.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 133rem;
  padding-top: 2rem;
  margin: 0 auto;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding: 1.2rem 1.5rem;
  }
}

.header__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .header__logo {
    gap: 1.4rem;
  }
}

.header__logo img {
  max-width: 16rem;
}

@media screen and (max-width: 767px) {
  .header__logo img {
    max-width: 10rem;
  }
}

.header__logo-text {
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .header__logo-text {
    font-size: 1.2rem;
  }
}

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

@media screen and (max-width: 1179px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    z-index: 1001;
  }

  .header__nav.is-open {
    right: 0;
  }
}

body.no-scroll {
  overflow: hidden;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1179px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-list {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.header__nav-item {
  position: relative;
  margin-right: 4rem;
}

@media screen and (max-width: 1179px) {
  .header__nav-item {
    margin-right: 0;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-item {
    width: 100%;
  }
}

.header__nav-item::after {
  content: "";
  width: 0.1rem;
  height: 1.6rem;
  background: #333;
  position: absolute;
  top: 57%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -19px;
}

@media screen and (max-width: 1179px) {
  .header__nav-item::after {
    display: none;
  }
}

.header__nav-item:nth-child(n+5)::after {
  display: none;
}

.header__nav-item:nth-child(5) {
  margin-right: 3rem;
}

@media screen and (max-width: 1179px) {
  .header__nav-item:nth-child(5) {
    margin-right: 0;
  }
}

.header__nav-item:nth-child(-n+5) a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #d90000;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

@media screen and (max-width: 767px) {
  .header__nav-item:nth-child(-n+5) a::after {
    bottom: 0;
  }
}

.header__nav-item:nth-child(-n+5) a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /*左から右に向かう*/
}

.header__nav-item:nth-last-child {
  margin-right: 0;
}

.header__nav-item a {
  display: inline-block;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .header__nav-item a {
    padding-bottom: 1rem;
    display: block;
    border-bottom: 1px solid #aaa;
  }
}

@media screen and (max-width: 767px) {
  .header__nav-item:last-child {
    margin-top: 1rem;
  }

  .header__nav-item:last-child a {
    border-bottom: none;
    width: 100%;
  }
}

.header__nav-item--cta {
  text-align: center;
}

.header__nav-item--cta__btn {
  width: 15rem;
  padding: 1rem;
}

.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 24px;
  position: relative;
  z-index: 1002;
}

@media screen and (max-width: 1179px) {
  .header__hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger {
    top: 16px;
    right: 12px;
  }
}

.header__hamburger .header__hamburger-line {
  height: 2px;
  background-color: #333;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__inner {
  padding-top: 3rem;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .hero__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 0;
  }
}

.hero__text {
  margin-bottom: 2rem;
  position: relative;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .hero__text {
    margin-top: 2.4rem;
  }
}

.hero__entitle {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .hero__entitle {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}

.hero__title {
  font-size: 5rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .hero__title {
    font-size: 3.2rem;
    margin-bottom: 1.4rem;
  }
}

.hero__subtitle {
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hero__subtitle {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}

.hero__main-image {
  position: absolute;
  top: 0;
  right: -110px;
  width: 100%;
  max-width: 71rem;
  display: block;
  z-index: 3;
  border-radius: 20px;
}

@media screen and (max-width: 1330px) {
  .hero__main-image {
    right: 0;
  }
}

@media screen and (max-width: 1179px) {
  .hero__main-image {
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .hero__main-image {
    position: static;
  }
}

.hero__image {
  position: absolute;
  border-radius: 20px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  will-change: transform;
}

.hero__image.is-visible {
  opacity: 1;
  -webkit-transform: translateY(var(--ty, 0));
  transform: translateY(var(--ty, 0));
}

.hero__image:nth-child(2) {
  left: 0;
  bottom: -180px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  width: 25rem;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .hero__image:nth-child(2) {
    width: 13rem;
    bottom: -70px;
  }
}

.hero__image:nth-child(3) {
  left: 310px;
  bottom: -250px;
  width: 31rem;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .hero__image:nth-child(3) {
    width: 16rem;
    left: 60px;
    bottom: -200px;
  }
}

.hero__image:nth-child(4) {
  right: 100px;
  bottom: -180px;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  width: 16rem;
  opacity: 0.5;
}

@media screen and (max-width: 1330px) {
  .hero__image:nth-child(4) {
    right: 200px;
  }
}

@media screen and (max-width: 767px) {
  .hero__image:nth-child(4) {
    width: 8rem;
    right: 130px;
  }
}

.hero__image:nth-child(5) {
  right: -80px;
  bottom: -310px;
  width: 23.6rem;
  z-index: 4;
}

@media screen and (max-width: 1330px) {
  .hero__image:nth-child(5) {
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .hero__image:nth-child(5) {
    width: 12rem;
  }
}

.about__inner {
  padding-top: 28rem;
}

@media screen and (max-width: 767px) {
  .about__inner {
    padding-top: 20rem;
  }
}

.about__description {
  line-height: 1.875;
}

.about__lead {
  margin-bottom: 3.2rem;
}

@media screen and (max-width: 767px) {
  .about__lead {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

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

.about__note {
  font-size: 1rem;
  margin-top: 2rem;
}

.about__images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about__image {
  max-width: 100%;
  height: auto;
}

.about__swiper {
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .about__swiper {
    margin-top: 3rem;
  }
}

.about__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.about__swiper .swiper-slide {
  width: 100%;
}

.about__swiper img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.working__inner {
  padding-top: 6rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .working__inner {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.working__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .working__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2rem;
  }
}

.working__head-cont {
  -webkit-box-pack: right;
  -webkit-justify-content: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.working__lead {
  margin-bottom: 1rem;
}

.working__text-content {
  max-width: 63.6rem;
}

.working__sublead {
  font-size: 2.6rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .working__sublead {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.working__description {
  line-height: 1.875;
}

.working__image {
  width: 100%;
  max-width: 46rem;
}

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

.working__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.working__map {
  margin-top: 3rem;
}

.working__map iframe {
  width: 100%;
}

.working__address {
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .working__address {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}

.interview {
  background: #f0f0f0;
}

.interview__inner {
  padding-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .interview__inner {
    padding-bottom: 4rem;
  }
}

.interview__container {
  position: relative;
}

.interview__head-cont {
  max-width: 1140px;
  margin: 0 auto;
  -webkit-transform: translateY(-23px);
  transform: translateY(-23px);
}

@media screen and (max-width: 767px) {
  .interview__head-cont {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.interview__head-en {
  color: #d90000;
}

.interview__swiper {
  margin-top: 4rem;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .interview__swiper {
    margin-top: 1rem;
  }
}

.interview__quote {
  font-size: 1.8rem;
  line-height: 1.555;
  font-weight: bold;
  margin-bottom: 2.4rem;
}

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

.interview__slide {
  background: #fff;
  border-radius: 20px;
  padding: 3.6rem 5rem;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  height: auto;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .interview__slide {
    padding: 3rem 1.5rem 4.2rem;
  }
}

@media screen and (max-width: 767px) {
  .interview__slide.interview__slide--1 .interview__timeline-list::before,
  #interview-modal-nn .interview__timeline-list::before {
    height: 81%;
  }
}

@media screen and (max-width: 767px) {
  .interview__slide.interview__slide--2 .interview__timeline-list::before,
  #interview-modal-wy .interview__timeline-list::before {
    height: 78%;
  }
}

@media screen and (max-width: 767px) {
  .interview__slide.interview__slide--4 .interview__timeline-list::before {
    height: 88%;
  }
}

.interview {

  /* 矢印画像の高さと幅 */
  .swiper-button-prev,
  .swiper-button-next {
    height: 50px;
    width: 50px;
  }

  /* 矢印を消して画像に変更する */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    width: 50px;
    margin: auto;

    @media screen and (max-width: 767px) {
      height: 30px;
      width: 30px;
    }
  }

  /* 前に戻る矢印の画像パス */
  .swiper-button-prev::after {
    background-image: url(../img/swiper-arrow.svg);
    transform: scale(-1, 1);
  }

  /* 次に進む矢印の画像パス */
  .swiper-button-next::after {
    background-image: url(../img/swiper-arrow.svg);
  }

}

.swiper {
  overflow: hidden;
}

.swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination-bullet-active {
  background: #8d8d8d;
}

.interview__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
}

@media screen and (max-width: 767px) {
  .interview__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}

.interview__card-left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
}

@media screen and (max-width: 767px) {
  .interview__card-left {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .interview__photo-cont {
    text-align: center;
    width: 100%;
  }
}

.interview__photo {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .interview__photo {
    width: 200px;
  }
}

.interview__profile {
  font-size: 1.2rem;
  line-height: 1.66;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .interview__profile {
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
  }
}

.interview__timeline {
  position: relative;
}

.interview__timeline-title {
  font-weight: bold;
  margin-bottom: 2rem;
}

.interview__timeline-title::first-letter {
  color: #d90000;
}

.interview__timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1.2rem;
  margin-left: 0.6rem;
  line-height: 1.6;
}

.interview__timeline-list::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 1rem;
  width: 0.2rem;
  height: 90%;
  background: #d90000;
}

@media screen and (max-width: 767px) {
  .interview__timeline-list::before {
    height: 94%;
  }
}

.interview__timeline-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.interview__timeline-list li:last-child {
  margin-bottom: 0;
}

.interview__time {
  font-weight: bold;
  color: #d90000;
  display: inline-block;
}

.interview__timeline-list li::after {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border: 0.4rem solid #d90000;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.interview-modal__section {
  .interview__timeline-list {
    font-size: 1.4rem;
    &::before {
      left: -1px;
    }
    li::after {
      top: 1.2rem;
      width: 0.6rem;
      height: 0.6rem;
    }
  }

}

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

.interview__button-link {
  font-size: 1.2rem;
  position: absolute;
  bottom: 3rem;
  right: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .interview__button-link {
    bottom: 2rem;
    right: 2rem;
  }
}

.interview__button-icon {
  position: relative;
  background: #d90000;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  border-radius: 50%;
}

.interview__button-icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2.2rem;
  height: 1.8rem;
  content: "";
  background-image: url(../img/link-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.interview-modal {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
}

.interview-modal[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
}

.interview-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.interview-modal__content {
  position: relative;
  background: #fff;
  margin: 9rem auto;
  max-width: 900px;
  width: 100%;
  z-index: 1001;
  padding: 5rem 4rem;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

@media screen and (max-width: 767px) {
  .interview-modal__content {
    padding: 2rem 1.5rem;
  }
}

.interview-modal[aria-hidden=false] .interview-modal__content {
  opacity: 1;
}

.interview-modal__close {
  position: absolute;
  top: -60px;
  right: 0px;
  font-size: 4.8rem;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.interview-modal__header {
  margin-bottom: 5rem;
  height: 31rem;
  position: relative;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .interview-modal__header {
    text-align: center;
    margin-bottom: 3rem;
    height: 20rem;
  }
}

.interview-modal__header--nn {
  background: url(../img/n_n-header.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .interview-modal__header--nn {
    background-position: 72% 50%;
  }
}

.interview-modal__header--wy {
  background: url(../img/w_y-header.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .interview-modal__header--wy {
    background-position: 72% 50%;
  }
}

.interview-modal__header--ms {
  background: url(../img/m_s-header.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .interview-modal__header--ms {
    background-position: 72% 50%;
  }
}

.interview-modal__header--rm {
  background: url(../img/r_m-header.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .interview-modal__header--rm {
    background-position: 72% 50%;
  }
}

.interview-modal__header--ks {
  background: url(../img/k_s-header.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .interview-modal__header--ks {
    background-position: 57% 50%;
  }
}

.interview-modal__header__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5rem;
}

@media screen and (max-width: 767px) {
  .interview-modal__header__text {
    left: 1.4rem;
    text-align: left;
  }
}

.interview-modal__img-wrap {
  width: 160px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.interview-modal__img-wrap img {
  width: 100%;
  border-radius: 0.5rem;
}

.interview-modal__quote {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .interview-modal__quote {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.interview-modal__meta {
  font-size: 1.4rem;
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .interview-modal__meta {
    font-size: 1.2rem;
  }
}

.interview-modal__meta span {
  font-size: 2rem;
  display: inline-block;
  margin-right: 2rem;
  font-family: "Roboto", sans-serif;
  vertical-align: text-bottom;
}

@media screen and (max-width: 767px) {
  .interview-modal__meta span {
    font-size: 1.6rem;
    margin-right: 1.2rem;
  }
}

.interview-modal__body {
  line-height: 1.875;
}

.interview-modal__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6rem;
}

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

.interview-modal__container p {
  max-width: 50.5rem;
}

.interview-modal__container__img-cont {
  max-width: 27rem;
}

@media screen and (max-width: 767px) {
  .interview-modal__container__img-cont {
    max-width: 100%;
  }
}

.interview-modal__container__img-cont img {
  width: 100%;
  border-radius: 10px;
}

.interview-modal__section {
  margin-bottom: 4.4rem;
}

@media screen and (max-width: 767px) {
  .interview-modal__section {
    margin-bottom: 3rem;
  }
}

.interview-modal__section:last-child {
  margin-bottom: 0;
}

.interview-modal__section-title {
  font-weight: bold;
  font-size: 2rem;
  border-left: 4px solid #d90000;
  padding-left: 2rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .interview-modal__section-title {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    padding-left: 1.4rem;
  }
}

.interview-modal__section-text {
  margin-bottom: 4rem;
}

.interview-modal__center-img-cont img {
  width: 100%;
  border-radius: 10px;
}

.interview-modal__image {
  margin-top: 1rem;
}

.interview-modal__image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.career__inner {
  padding-top: 9rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .career__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.career__head-cont {
  text-align: center;
}

.career__description {
  line-height: 1.875;
  margin: 6rem 0 3rem;
}

@media screen and (max-width: 767px) {
  .career__description {
    margin: 3rem 0;
  }
}

.career__track {
  margin-top: 4rem;
  padding: 4rem 5rem;
  border: 2px solid #ccc;
  border-radius: 1rem;
}

@media screen and (max-width: 767px) {
  .career__track {
    padding: 2rem 1.2rem;
  }
}

.career__track--specialist {
  border-color: #5ebfd0;
  margin-bottom: 8rem;
  position: relative;
}

.career__track--generalist {
  border-color: #d90000;
}

.career__track-title-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

@media screen and (max-width: 767px) {
  .career__track-title-cont {
    gap: 1.4rem;
  }
}

.career__track-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  padding: 1.2rem 1.8rem;
}

@media screen and (max-width: 767px) {
  .career__track-title {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}

.career__track-desc {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .career__track-desc {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.career__track-title--specialist {
  background: #5ebfd0;
}

.career__track-title--generalist {
  background: #d90000;
}

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

@media screen and (max-width: 767px) {
  .career__levels {
    margin-top: -2rem;
  }
}

.career__level {
  text-align: center;
  width: 25%;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .career__level {
    width: 50%;
  }
}

.career__level:nth-child(1) .career__level-desc, .career__level:nth-child(3) .career__level-desc {
  background: #f0f0f0;
}

.career__level:nth-child(2) .career__level-desc, .career__level:nth-child(4) .career__level-desc {
  background: #e6e6e6;
}

.career__level:nth-child(1) .career__level-desc {
  height: 12.6rem;
}

.career__level:nth-child(2) .career__level-desc {
  height: 14.6rem;
}

.career__level:nth-child(3) .career__level-desc {
  height: 16.6rem;
}

.career__level:nth-child(4) .career__level-desc {
  height: 18.6rem;
}

.career__icon {
  margin: 0 auto;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .career__icon {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

.career__level-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  height: 5.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1179px) {
  .career__level-title {
    font-size: 1.4rem;
    padding: 0.4rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .career__level-title {
    font-size: 1.2rem;
  }
}

.career__levels--specialist .career__level:nth-child(1) .career__level-title {
  background: #b5cbcf;
}

.career__levels--specialist .career__level:nth-child(2) .career__level-title {
  background: #8dc6d0;
}

.career__levels--specialist .career__level:nth-child(3) .career__level-title {
  background: #75c3d0;
}

.career__levels--specialist .career__level:nth-child(4) .career__level-title {
  background: #5ebfd0;
}

.career__levels--generalist .career__level:nth-child(1) .career__level-title {
  background: #d6a6a6;
}

.career__levels--generalist .career__level:nth-child(2) .career__level-title {
  background: #d67b7b;
}

.career__levels--generalist .career__level:nth-child(3) .career__level-title {
  background: #d95151;
}

.career__levels--generalist .career__level:nth-child(4) .career__level-title {
  background: #d90000;
}

.career__level-desc {
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1179px) {
  .career__level-desc {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .career__level-desc {
    font-size: 1.2rem;
    padding: 0.4rem;
    text-align: left;
  }
}

.career__arrow {
  text-align: center;
  font-size: 1.4rem;
  color: #d90000;
  font-weight: bold;
  position: relative;
}

.career__arrow__img-cont {
  position: absolute;
  bottom: -116px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .career__arrow__img-cont {
    bottom: -96px;
  }
}

.career__arrow__text {
  position: absolute;
  font-weight: bold;
  bottom: -84px;
  right: -105px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .career__arrow__text {
    font-size: 1.2rem;
    text-align: left;
    right: -179px;
    bottom: -74px;
    line-height: 1.2;
  }
}

.cta {
  background: #f0f0f0;
}

.cta__inner {
  gap: 4rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .cta__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.cta__block {
  border-radius: 2rem;
  padding: 5rem;
  color: #fff;
  display: block;
}

@media screen and (max-width: 767px) {
  .cta__block {
    padding: 3rem 2rem;
  }
}

.cta__button--white {
  color: #d90000;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta__button--white:hover {
  color: #fff;
  /* background-color: #d90000; */
}

.cta__block--recruit {
  background-color: #d90000;
  margin-bottom: 3rem;
}

.cta__block--recruit:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta__block--recruit:hover .cta__button--white {
  color: #fff;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta__block--contact {
  background-color: #333;
}

.cta__block--contact .cta__button--red {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta__block--contact:hover .cta__button--red {
  background: #fff;
  color: #d90000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cta__title {
  font-size: 5rem;
  font-weight: 100;
  color: #fff;
  margin-bottom: 0;
}

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

.cta__subtitle {
  font-size: 1.4rem;
}

.cta__desc {
  line-height: 1.875;
  max-width: 65rem;
}

.cta__container {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}

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

.cta__head-cont {
  gap: 3rem;
}

@media screen and (max-width: 767px) {
  .cta__head-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}

.cta__button {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 2rem;
  border-radius: 999px;
  width: 100%;
  width: 30rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cta__button-wrap {
    text-align: center;
  }
}

.footer {
  background: #d90000;
  color: #fff;
}

.footer__inner {
  padding: 1.8rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}