@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  position: relative;
  height: 106rem;
  padding-top: 10rem;
}
.mv-page__item {
  position: absolute;
  top: 60%;
  /*left: 8%;*/
  left: auto;
  right: 8%;
  transform: translateY(-50%);
  width: 82.5rem;
  height: 64.3rem;
  overflow: hidden;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 5.5rem;
  left: 5rem;
  z-index: 50;
  border-left: 3rem solid #ff6d00;
  border-top: 3rem solid #ff6d00;
}
.mv-page__item::after {
  top: 25rem;
  right: 5rem;
  border-right: 3rem solid #ff6d00;
  border-bottom: 3rem solid #ff6d00;
}
.mv-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ← ピッタリ埋める */
  object-position: center;
}
/* TITLE */
.mv-title {
  position: relative;
  z-index: 2;
  margin-top: 5.5rem;
}
.mv-title h2 {
  color: #fff;
  font-size: clamp(3.5rem, 4vw, 5rem);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.mv-title h2 span {
  margin-left: 2rem;
  margin-bottom: 0;
  padding-left: 2rem;
  border-left: 1px solid #fff;
  color: #4dcee5;
  font-family: "Lexend", sans-serif;
  font-size: clamp(4rem, 4vw, 6.2rem);
  font-weight: 600;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page {
    height: 50rem;
  }
  .mv-page__text {
    top: 65%;
    right: 2%;
    transform: translateY(-65%);
    width: 42%;
    margin-top: 0;
  }
  .mv-page__item {
    height: 65%;
    width: 50%;
  }
  .mv-page__item::before, .mv-page__item::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    top: 2.75rem;
    left: 2.5rem;
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    top: 12.5rem;
    right: 2.5rem;
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    height: min(100%, 14.75rem);
    margin-top: 2.75rem;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page {
    height: 40rem;
    margin-bottom: 50rem;
  }
  .mv-page__text {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    transform: translateY(-30%);
    width: max(33rem, 75%);
    margin: 0 auto;
  }
  .mv-page__item {
    top: 43.1%;
    left: 50%;
    transform: translate(-50%, -44%);
    height: min(80%, 20.5rem);
    width: max(33rem, 75%);
    overflow: inherit;
  }
  .mv-page__item::before {
    top: 0;
    left: 0;
  }
  .mv-page__item::after {
    top: 15.5rem;
    right: 0;
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    flex-direction: column;
    font-size: 3.2rem;
    text-align: center;
  }
  .mv-title h2 span {
    display: block;
    margin: 1.5rem 0 3rem;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid #fff;
    font-size: 4rem;
    text-align: center;
  }
  .mv-page__image {
    position: inherit;
    overflow: hidden;
    height: 40rem;
    margin-top: 40rem;
  }
  .mv-page__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*object-position: 100% center;*/
    object-position: 0% center;
    /* 人物位置調整 */
  }
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.mv-page__title {
  position: absolute;
  top: 55%;
  right: 5rem;
  transform: translateY(-50%);
  text-align: right;
  color: #fff;
}
.mv-page__title span {
  display: block;
  font-size: clamp(4rem, 3vw, 6rem);
  font-family: "Lexend", sans-serif;
  font-weight: 200;
}
.mv-page__title h3 {
  margin-top: 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__title {
    margin: 5rem auto 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__title {
    position: absolute;
    top: 85%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    display: inherit;
    width: auto;
    text-align: right;
    white-space: nowrap;
  }
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.wrap-page::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 106rem;
  /*margin-top: 10rem;*/
  background: url("../recruit/img/mv-interview__pc.jpg") center top / cover no-repeat;
  z-index: -1;
}
.container {
  padding-top: 23rem;
}
/* Responsive */
@media screen and (max-width: 1367px) {
  .wrap-page::before {
    height: 105rem;
  }
  .container {
    padding-top: 5rem;
  }
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .wrap-page::before {
    height: 40rem;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .wrap {
    width: 100%;
    background: url("../recruit/img/mv-recruit__sp.jpg") 0 10rem no-repeat;
    background-size: cover;
  }
  .wrap-page::before {
    height: 50rem;
    background-image: url("../recruit/img/mv-recruit__sp.jpg");
  }
  .container {
    /* padding-top: 55rem; */
  }
}
/* recruit-interview
----------------------------------------------------------------------------------------------------*/
.p-interview {
  margin-bottom: 29.3rem;
}
.interview-profile {
  margin-left: calc(300 / 1520 * 100%);
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14rem;
}
.interview-profile__name {
  font-size: clamp(4.2rem, 4vw, 6.4rem);
  font-weight: 400;
}
.interview-profile__divider {
  width: 1px;
  height: 10rem;
  background: currentColor;
  margin: 0 3.5rem;
  flex-shrink: 0;
}
.interview-profile__info {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.6;
}
/* Q&A */
.interview-qa {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12rem;
}
.interview-qa__question {
  width: calc(300 / 1520 * 100%);
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 4.2rem;
  font-weight: 500;
  color: #164186;
}
.interview-qa__answer {
  width: calc(1200 / 1520 * 100%);
  font-size: 3.2rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
}
.interview-images {
  display: flex;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.interview-images__item {
  flex: 1;
  aspect-ratio: 640 / 500;
  overflow: hidden;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-interview {
    margin-bottom: 13rem;
  }
  .interview-profile {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 5.6rem;
  }
  .interview-profile__divider {
    display: none;
  }
  .interview-profile__info {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .interview-qa {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
  }
  .interview-qa__question {
    width: 100%;
    writing-mode: horizontal-tb;
    font-size: 2.4rem;
    font-weight: 600;
  }
  .interview-qa__answer {
    width: 100%;
    line-height: 1.7;
    font-size: 1.8rem;
  }
  .interview-images {
    flex-direction: column;
  }
}