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

/* ===================== */
/* ファーストビュー */
/* ===================== */
.recruitSingle__mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.recruitSingle-mv__texts {
  padding: var(--margin64) var(--margin80);
  display: grid;
  gap: 2rem;
}
.recruitSingle-mv__texts h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0.08rem;
}
.recruitSingle-mv__texts {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.recruitSingle-mv__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .recruitSingle-mv__texts h1 {
    font-size: 1.5rem;
    letter-spacing: 0.06rem;
  }
  .recruitSingle-mv__image img {
    
  }
}

/* ===================== */
/* コンテンツ layout */
/* ===================== */
.single__contents {
  display: flex;
  align-items: flex-start;
  position: relative;
  background-color: #374226;
}
.single__side {
  flex: 0 1 38.89%;
  position: sticky;
  top: 0;
  height: 100vh;
}
.single__content {
  flex: 1;
}
.single-side__image {
  display: block;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.single__contents h4 {
  padding-left: 5rem;
  position: relative;
}

.single__contents h4::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.30);
  width: 4rem;
  height: 0.0625rem;
  position: absolute;
  left: 0;
  top: 0.875em;
  transform: translateY(-50%);
}

/* スケジュール */
.schedule {
  padding: var(--margin128) var(--margin80);
}
.schedule__contents {
  display: grid;
  gap: 0;
  margin-top: var(--margin64);
  position: relative;
}
.schedule__contents::before {
}
.schedule__list {
  padding-left: 1.75rem;
  position: relative;
  padding-bottom: 2rem;
}
.schedule__list::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 0.25rem;
  height: 0.25rem;
  position: absolute;
  top: 0.375rem;
  left: 0;
}
.schedule__list:not(:last-of-type)::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0.375rem;
  left: 0.125rem;
}
.schedule__time {
  font-size: var(--16);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08rem;
}
.schedule__text {
  font-family: var(--familyNotoSans);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--14);
  text-align: justify;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0.035rem;
  margin-top: 1rem;
}

@media screen and (max-width: 1200px) {
  .schedule .title-h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .schedule .title-h2__ja {
    letter-spacing: 0.055rem;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .schedule {
    padding-block: 3rem;
  }
  .schedule__list {
    padding-left: 1.25rem;
  }
  .schedule__text {
    margin-top: 0.75rem;
  }
  .single__contents {
    display: block;
  }
  .single__side {
    height: auto;
    position: static;
  }
}

/* ===================== */
/* ブロックエディタ内 */
/* ===================== */
.single__WP-contents {
  background: #455230;
  padding: var(--margin128) var(--margin80);
  display: flex;
  flex-direction: column;
  gap: var(--margin64);

  /* パターン：FAQ採用：グループ */
  .recruit__question {
    display: block;
    width: 100%;
  }
  .recruit__question-q {
    font-size: var(--18);
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.09rem;
    padding-left: 5rem;
    position: relative;
  }
  .recruit__question-q::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.30);
    width: 4rem;
    height: 1px;
    position: absolute;
    top: 1rem;
    left: 0;
  }
  .recruit__question-answer {
    font-size: var(--16);
    font-weight: 500;
    line-height: 240%;
    letter-spacing: 0.08rem;
    text-align: justify;
    margin-top: 1.5rem;
  }

  /* 採用画像（オリジナル配置） */
  .recruit__image-original--wrapper {
    margin-block: 2.5rem;
    width: 100%;
  }
  .recruit__image-original--img {
    max-width: 480px;
    margin-left: auto;
  }

  @media screen and (max-width: 767px) {
    overflow-x: hidden;
    padding-top: 3rem;

    .recruit__question-q {
      padding-left: 2.75rem;
      font-size: 0.9375rem;
      letter-spacing: 0.075rem;
    }
    .recruit__question-q::before {
      width: 2rem;
    }
    .recruit__question-answer, p {
      line-height: 220%;
      letter-spacing: 0.07rem;
    }
    .recruit__question-answer {
      margin-top: 1rem;
    }
    .recruit__image-original--wrapper {
      position: relative;
      width: 100%;
      height: 82.051282vw;
    }

    /* 採用画像（オリジナル配置） */
    .recruit__image-original--img {
      height: 100%;
      width: auto;
      max-width: none;
      aspect-ratio: 3 / 2;
      position: absolute;
      top: 0;
      right: 0;
    }
  }
}

/* ===================== */
/* その他の記事一覧 */
/* ===================== */
.other-interviews {
  background-color: #455230;
  padding-top: var(--gradation-margin);
  padding-bottom: var(--gradation-margin);
  position: relative;
}
.other-interviews::before {
  content: "";
  background: linear-gradient(0deg, #20291E 0%, rgba(32, 41, 30, 0.00) 100%);
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: var(--gradation-height);
}
.interview__articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 5rem;
}

.interviewCard {
  position: relative;
}
.interviewCard.dotted--white::after{
  top: auto;
  bottom: 0;
  right: 0;
  transform: none;
}
.interviewCard {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  height: 100%;
  gap: 1.5rem;
}
.interviewCard:not(:last-of-type)::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -2.5rem;
}

.interviewCard__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 520 / 346.91;

  img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.interviewCard__title {
  font-size: var(--20);
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05rem;
  height: auto;
  margin-right: 25%;
}
.interviewCard__texts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.interviewCard__company {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-right: 3rem;
  width: 100%;
}
.interviewCard__company,
.interviewCard__job,
.interviewCard__name {
  font-family: var(--familyNotoSans);
  font-size: var(--13);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.0325rem;
}

.other-interviews__button-wrapper {
  margin-top: var(--gradation-margin);
}
.other-interviews__button {
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .other-interviews .container {
    padding-inline: var(--margin80);
  }
}
@media screen and (max-width: 1000px) {
  .other-interviews  {
    padding-bottom: 6rem;
  }
  .interview__articles {
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .interviewCard:not(:last-of-type)::before {
    display: none;
  }
  .interviewCard:not(:first-of-type) {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .interviewCard {
    gap: 1rem;
  }
  .interviewCard:nth-of-type(2n-1) {
    padding-right: 0;
    border-right: none;
  }
  .interviewCard:nth-of-type(2n) {
    padding-left: 0;
  }
  .interviewCard__company {
    padding-right: 2.25rem;
  }
  .interviewCard__company::after {
    width: 1.5rem;
  }
  .interviewCard__title {
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-right: 2.5rem;
  }
  .other-interviews__button-wrapper {
    margin-top: 5rem;
  }
  .other-interviews__button {
    width: 100%;
  }
}