/* ----------------------------------- */
/* SP fixed accordion nav (outside .page-intro, appended to body) */
/* ----------------------------------- */
.page-intro-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0.8rem;
  left: 1.8rem;
  right: 1.8rem;
  z-index: 100;
  border-radius: 0.8rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .page-intro-mobile-nav.is-visible {
    display: block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .page-intro-mobile-nav .page-intro-mobile-nav__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.1rem 2rem;
    background: #ffffff;
    border-radius: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.04em;
    color: #E50011;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .page-intro-mobile-nav.is-open .page-intro-mobile-nav__toggle {
    border-radius: 0.8rem 0.8rem 0 0;
  }
  .page-intro-mobile-nav .page-intro-mobile-nav__icon {
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .page-intro-mobile-nav .page-intro-mobile-nav__icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .page-intro-mobile-nav .page-intro-mobile-nav__icon-v {
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  .page-intro-mobile-nav.is-open .page-intro-mobile-nav__icon-v {
    transform: scaleY(0);
  }
  .page-intro-mobile-nav .page-intro__nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.9rem 1.6rem;
    list-style: none;
    padding: 0 1.5rem;
    margin: 0;
    background: #ffffff;
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .page-intro-mobile-nav.is-open .page-intro__nav {
    max-height: 40rem;
    padding: 1.3rem 1.5rem 2.4rem;
  }
  .page-intro-mobile-nav .page-intro__nav-item {
    width: 47%;
    max-width: 16.5rem;
    padding-bottom: 1.4rem !important;
    border-bottom: 1px solid #cecece;
    color: #000000 !important;
    position: relative;
    gap: 0.3rem;
  }
  .page-intro-mobile-nav .page-intro__nav-item::before {
    background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
  }
  .page-intro-mobile-nav .page-intro__nav-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E50011;
    transition: width 0.35s ease;
  }
  .page-intro-mobile-nav .page-intro__nav-item.is-active::after {
    width: 100%;
  }
}

/* ----------------------------------- */
/* Page Intro (2-column: text + image) */
/* ----------------------------------- */
.page-intro__nav {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  position: sticky;
  top: 13rem;
  align-self: flex-start;
  padding-top: 0rem;
  z-index: 2;
}
.page-intro__nav .page-intro__nav-item {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  padding: 0.1rem 0 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  letter-spacing: 0.05em;
  padding-left: 1.7rem;
  position: relative;
}
.page-intro__nav .page-intro__nav-item::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: transparent;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .page-intro__nav .page-intro__nav-item::before {
    position: absolute;
    left: 0;
    top: 0.8rem;
  }
}
@media screen and (min-width: 769px) {
  .page-intro__nav .page-intro__nav-item:hover {
    color: #000000;
  }
}
.page-intro__nav .page-intro__nav-item.is-active {
  color: #000000;
}
.page-intro__nav .page-intro__nav-item.is-active::before {
  background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
}

.page-intro__item {
  padding-top: 12.5rem;
}

.page-intro {
  padding: 7.8rem 0 0.2rem;
  overflow-x: clip;
}
.page-intro .page-intro__inner {
  display: flex;
  align-items: flex-start;
}
.page-intro .page-intro__sections {
  flex: 0 0 88.8rem;
  width: 88.8rem;
  position: relative;
}
.page-intro .page-intro__group {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  width: 100%;
}
.page-intro .page-intro__content {
  flex: 1;
}
.page-intro .page-intro__title {
  margin: 0 0 2.4rem;
}
.page-intro .page-intro__title .page-intro__title-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  font-family: "Poppins", sans-serif;
}
.page-intro .page-intro__title .page-intro__title-text {
  font-size: 3.2rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  letter-spacing: 0.08em;
}
.page-intro .page-intro__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #000000;
  margin: 0 0 3.2rem;
}
.page-intro .page-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 1.2rem;
  min-width: 18rem;
  justify-content: space-between;
  position: relative;
}
.page-intro .page-intro__link::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E50011;
  transition: width 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-intro .page-intro__link:hover::after {
    width: 100%;
  }
}
.page-intro .page-intro__link.is-active::after {
  width: 100%;
}
.page-intro .page-intro__link img {
  width: 2rem;
  height: auto;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-intro .page-intro__link:hover img {
    transform: translateX(0.8rem);
  }
}
.page-intro .page-intro__tabs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.page-intro .page-intro__tab {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  color: #FFFFFF;
  background-color: #003bff;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-intro .page-intro__tab:hover {
    opacity: 0.8;
    color: #FFFFFF;
  }
}
.page-intro .page-intro__cards {
  flex: 0 0 45.6rem;
  width: 84rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.page-intro .page-intro__card {
  border-radius: 1.6rem;
  padding: 6rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: none;
}
.page-intro .page-intro__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  height: 0.4rem;
  background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
}
.page-intro .page-intro__card:nth-child(1) {
  background-color: #f9ebec;
}
.page-intro .page-intro__card:nth-child(2) {
  background-color: #fef9e6;
}
.page-intro .page-intro__card .page-intro__card-image {
  margin-bottom: 3.2rem;
  text-align: center;
  position: relative;
}
.page-intro .page-intro__card .page-intro__card-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 1.2rem;
}
.page-intro .page-intro__card .page-intro__card-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #003bff;
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.page-intro .page-intro__card .page-intro__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 2rem;
  color: #000000;
  text-align: center;
}
.page-intro .page-intro__card .page-intro__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
  flex: 1;
}
.page-intro .page-intro__card .page-intro__card-list--special {
  margin-bottom: 2.4rem;
}
.page-intro .page-intro__card .page-intro__card-list-item {
  display: flex;
  align-items: baseline;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.2rem;
}
.page-intro .page-intro__card .page-intro__card-list-item img {
  width: 1.6rem;
  height: auto;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.page-intro .page-intro__card .page-intro__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  gap: 7.4rem;
  width: 100%;
  min-height: 5.6rem;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 2.7rem;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-intro .page-intro__card .page-intro__card-link:hover {
    background-color: #E50011;
    color: #FFFFFF;
    opacity: 1;
  }
}
.page-intro .page-intro__card .page-intro__card-link img {
  width: 1.8rem;
  height: 1.2rem;
  display: block;
  flex-shrink: 0;
}
.page-intro .page-intro__image {
  flex: 0 0 45.6rem;
  width: 45.6rem;
}
.page-intro .page-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.8rem;
}
@media screen and (max-width: 768px) {
  .page-intro {
    padding: 3.4rem 0 3.4rem;
  }
  .page-intro .page-intro__inner {
    flex-direction: column;
    padding: 0 1.8rem;
    gap: 3.1rem;
  }
  .page-intro .page-intro__sections {
    flex: 0 0 100%;
    width: 100%;
  }
  .page-intro .page-intro__nav {
    display: flex;
    position: static;
    padding-top: 0;
    width: 100%;
    flex-direction: row !important;
    flex-wrap: wrap;
    max-width: 100% !important;
    gap: 1.3rem 1.5rem;
    padding: 0;
    margin-top: -0.1rem;
    margin-bottom: 1.9rem;
  }
  .page-intro .page-intro__nav-item {
    width: 47%;
    max-width: 16.5rem;
    padding-bottom: 1.4rem !important;
    border-bottom: 1px solid #cecece;
    color: #000000 !important;
    position: relative;
    align-items: flex-start;
  }
  .page-intro .page-intro__nav-item::before {
    background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
  }
  .page-intro .page-intro__nav-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E50011;
    transition: width 0.35s ease;
  }
  .page-intro .page-intro__item {
    padding-top: 3rem;
  }
  .page-intro .page-intro__group {
    flex-direction: column;
    gap: 3rem;
  }
  .page-intro .page-intro__title .page-intro__title-text {
    font-size: 2rem;
  }
}
.page-intro .page-intro__steps {
  width: 100%;
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-intro .page-intro__step {
  display: flex;
  align-items: flex-start;
  gap: 3.2rem;
  padding: 4rem 0;
  border-bottom: 2px solid #EAEAEA;
}
.page-intro .page-intro__step-media {
  flex: 0 0 10rem;
  width: 10rem;
}
.page-intro .page-intro__step-media img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.8rem;
  display: block;
}
.page-intro .page-intro__step-body {
  flex: 1;
}
.page-intro .page-intro__step-label {
  font-size: 1.2rem;
  color: #E50011;
  letter-spacing: 0.05em;
  margin: 0;
  font-family: var(--font-en);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.page-intro .page-intro__step-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 3.2rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.page-intro .page-intro__step-text {
  font-size: 1.5rem;
  line-height: 2;
  color: #000000;
  margin: 0 0 2rem;
}
.page-intro .page-intro__step-text-paragraph {
  margin: 0;
}
.page-intro .page-intro__step-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  counter-reset: step-counter;
}
.page-intro .page-intro__step-number {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
  background-color: #F5F5F5;
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  counter-increment: step-counter;
}
.page-intro .page-intro__step-number::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #E50011;
  background: linear-gradient(115deg, #E50011 22%, #FED867 75%);
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.page-intro .page-intro__step-caution {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .page-intro .page-intro__step-caution:hover {
    opacity: 0.8;
    color: #FFFFFF;
  }
}
.page-intro .page-intro__step-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-intro .page-intro__step-note {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
.page-intro .page-intro__step-note img {
  width: 1.6rem;
  height: auto;
  flex-shrink: 0;
}
.page-intro .page-intro__prohibited {
  width: 100%;
  margin-top: 6rem;
  background-color: #F5F5F5;
}
.page-intro .page-intro__prohibited-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #000000;
  margin: 0;
  padding: 1rem 2rem;
  display: inline-block;
}
.page-intro .page-intro__prohibited-list {
  list-style: none;
  padding: 4rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.page-intro .page-intro__prohibited-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #000000;
}
.page-intro .page-intro__prohibited-item img {
  width: 1.6rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ----------------------------------- */
/* Recruit Page Animations             */
/* ----------------------------------- */
@keyframes slideInRightSwoosh {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/* ----------------------------------- */
/* Recruit Page                        */
/* ----------------------------------- */
.breadcrumb {
  margin-bottom: 0;
  padding-bottom: 1.4rem;
}

.page-intro {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  padding-top: 8.3rem;
}
.page-intro .page-intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 69.8rem;
  background: url("../../images/recruit/page-intro-background.png") no-repeat center bottom/cover;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__background {
    height: 88rem;
    top: 9.9%;
    background: url("../../images/recruit/background-sp.png") no-repeat center bottom/cover;
  }
}
.page-intro .page-intro__background-image {
  position: absolute;
  width: 92.8rem;
  right: 0;
  top: 49.1rem;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: hard-light;
  animation-name: slideInRightSwoosh;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.21, 0.85, 0.35, 1);
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.page-intro .page-intro__background-image img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-intro .page-intro__background-image {
    width: 35.9rem;
    top: 105.6rem;
    z-index: 1;
  }
}

/* ----------------------------------- */
/* Recruit Message                     */
/* ----------------------------------- */
.recruit-message {
  position: relative;
  height: 76.1rem;
  padding: 0 0 10rem;
  overflow: hidden;
  color: #000000;
  isolation: isolate;
}
.recruit-message .recruit-message__inner {
  position: relative;
  padding: 0;
  padding-top: 3.7rem;
  z-index: 2;
}
.recruit-message .recruit-message__content {
  max-width: 70rem;
}
.recruit-message .recruit-message__heading {
  margin: 0 0 4.5rem;
  color: #000000;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 4.8rem;
  letter-spacing: 0.08em;
}
.recruit-message .recruit-message__body {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.recruit-message .recruit-message__text,
.recruit-message .recruit-message__body p {
  margin: 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
}

/* ----------------------------------- */
/* Recruit Interview                   */
/* ----------------------------------- */
.page-intro__sections .recruit-interview {
  background: #eeeeee;
  padding: 6.3rem 0 11.8rem 8.8rem;
  margin-left: -8.8rem;
  margin-right: -4rem;
  border-radius: 0.8rem;
}
.page-intro__sections .recruit-interview__inner {
  position: relative;
  z-index: 1;
  padding: 0;
}
.page-intro__sections .recruit-interview__layout {
  display: block;
}
.page-intro__sections .recruit-interview__content {
  width: 100%;
}
.page-intro__sections .recruit-interview__heading {
  margin: 0 0 4.7rem;
  color: #000000;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 4.8rem;
  text-align: left;
  letter-spacing: 0.08em;
}
.page-intro__sections .recruit-interview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 266px));
  justify-content: left;
  gap: 2.2rem;
}
.page-intro__sections .recruit-interview__card {
  position: relative;
  width: 26.4rem;
  padding: 3.4rem 2.2rem 7rem;
  background: #FFFFFF;
  border-radius: 2.4rem;
  border: 0.2rem solid #EAEAEA;
}
.page-intro__sections .recruit-interview__card::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 15%;
  width: 70%;
  height: 0.4rem;
  background: linear-gradient(90deg, #E50011 0%, #fed867 100%);
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-interview__card::before {
    width: 72%;
    left: 14%;
  }
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-interview__card {
    padding: 3.4rem 2.7rem 7.8rem;
    width: 100%;
  }
}
.page-intro__sections .recruit-interview__image {
  display: block;
  width: 100%;
  height: 12rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}
.page-intro__sections .recruit-interview__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-interview__image {
    height: 15.6rem;
  }
}
.page-intro__sections .recruit-interview__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.6rem;
}
.page-intro__sections .recruit-interview__name {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.page-intro__sections .recruit-interview__detail {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.page-intro__sections .recruit-interview__detail span {
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-right: 1.2rem;
  font-weight: 600;
}
.page-intro__sections .recruit-interview__button {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: auto;
  width: 100%;
  padding: 0.7rem 1.4rem 0.7rem 2.2rem;
  display: inline-flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
  background: linear-gradient(90deg, #E50011 0%, #fed867 100%);
  color: #ffffff;
  border: none;
  border-radius: 0 0 2.4rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
  z-index: 1;
}
.page-intro__sections .recruit-interview__button::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("../../images/recruit/equal.svg") no-repeat center center/contain;
  z-index: 1;
  position: relative;
  top: 0.2rem;
}
.page-intro__sections .recruit-interview__button::before {
  content: "";
  position: absolute;
  background: #E50011;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 0 0 2.4rem 2.4rem;
}
.page-intro__sections .recruit-interview__button:hover::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-interview__button {
    padding: 1.1rem 1.4rem 1.1rem 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-interview {
    padding: 4.8rem 1.8rem 4.5rem;
    margin-top: 11.6rem;
    margin-left: -1.8rem;
    margin-right: -1.8rem;
    position: relative;
    top: 3.1rem;
  }
  .page-intro__sections .recruit-interview__heading {
    margin-bottom: 3.1rem;
    font-size: 2rem;
    line-height: 1.5;
  }
  .page-intro__sections .recruit-interview__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .page-intro__sections .recruit-interview__info {
    min-height: auto;
  }
}

/* ----------------------------------- */
/* Recruit Interview Modal             */
/* ----------------------------------- */
.recruit-interview-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
}
.recruit-interview-modal.is-open {
  display: flex;
}
.recruit-interview-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 11000;
}
.recruit-interview-modal__wrapper {
  position: relative;
  width: 90%;
  max-width: 91.6rem;
}
.recruit-interview-modal__content {
  position: relative;
  z-index: 11001;
  background: #ffffff;
  border-radius: 2rem;
  padding: 6.7rem 9.4rem 6.4rem;
  max-height: 75.8vh;
  overflow-y: auto;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.2);
}
.recruit-interview-modal__content::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 10.3%;
  width: 79.4%;
  height: 0.4rem;
  background: linear-gradient(90deg, #e50011 0%, #fed867 100%);
}
.recruit-interview-modal__close {
  position: absolute;
  top: -3.7rem;
  right: -3.8%;
  width: 7.2rem;
  height: 7.2rem;
  border: none;
  background: #E50011;
  color: #ffffff;
  border-radius: 50%;
  font-size: 3.6rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11003;
}
.recruit-interview-modal__body {
  display: grid;
  gap: 4.7rem;
}
.recruit-interview-modal__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 44.6rem);
  grid-template-areas: "main right" "info right";
  gap: 11.8rem 0;
  align-items: stretch;
  margin-bottom: 0;
  padding-bottom: 6.2rem;
  border-bottom: 1px solid #ccc;
}
.recruit-interview-modal__header-main {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  grid-area: main;
}
.recruit-interview-modal__info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 42rem;
}
.recruit-interview-modal__right {
  grid-area: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-interview-modal__title {
  margin: 0;
  font-size: 4.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-top: -0.4rem;
  background: linear-gradient(90deg, #e50011 0%, #fed867 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1441px) {
  .recruit-interview-modal__title {
    font-size: 4.3rem;
  }
}
.recruit-interview-modal__location {
  margin: 0;
  font-size: 1.4rem;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.recruit-interview-modal__wrapper-info {
  display: flex;
  flex-direction: row;
}
.recruit-interview-modal__name {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  line-height: 3.2rem;
  letter-spacing: 0.08em;
  margin-right: 1.4rem;
}
.recruit-interview-modal__detail {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-top: 1rem;
  letter-spacing: 0.07em;
}
.recruit-interview-modal__qa {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
}
.recruit-interview-modal__qa-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recruit-interview-modal__qa-item:last-child .recruit-interview-modal__qa-content {
  border-bottom: none;
  padding-bottom: 0;
}
.recruit-interview-modal__qa-item.text-right .recruit-interview-modal__qa-content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .recruit-interview-modal__qa-item.text-right .recruit-interview-modal__qa-content {
    flex-direction: column;
  }
}
.recruit-interview-modal__qa-label {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #E50011;
  letter-spacing: 0.04em;
  font-family: "Poppins", sans-serif;
}
.recruit-interview-modal__qa-title {
  margin: -0.3rem 0 1.9rem;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  line-height: 2.9rem;
  letter-spacing: 0.08em;
}
.recruit-interview-modal__qa-content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  padding-bottom: 4.6rem;
  border-bottom: 1px solid #ccc;
}
.recruit-interview-modal__qa-content--reverse {
  flex-direction: row-reverse;
}
.recruit-interview-modal__qa-image {
  min-width: 28.2rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.recruit-interview-modal__qa-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.recruit-interview-modal__qa-text {
  margin: -0.2rem 0 0;
  font-size: 1.6rem;
  color: #000000;
  line-height: 2.8rem;
  letter-spacing: 0.04em;
  word-break: break-word;
}
.recruit-interview-modal__image {
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}
.recruit-interview-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.recruit-interview-modal__nav {
  position: absolute;
  top: 48.3%;
  left: 50.7%;
  transform: translate(-50%, -50%);
  width: calc(97% + 8.5rem);
  max-width: 100.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 11002;
}
.recruit-interview-modal__nav-btn {
  pointer-events: auto;
  width: 7.2rem;
  height: 7.2rem;
  border: none;
  background: #000000;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .recruit-interview-modal__nav-btn:hover:not(:disabled) {
    background: #E50011;
    color: #ffffff;
    border-color: #E50011;
    transform: scale(1.05);
  }
}
.recruit-interview-modal__counter {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .recruit-interview-modal__nav-btn img {
    height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-interview-modal__content {
    max-width: 100%;
    padding: 3.6rem 4.8rem 4.8rem;
  }
  .recruit-interview-modal__content::before {
    left: 14.2%;
    width: 71.4%;
  }
  .recruit-interview-modal__body {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .recruit-interview-modal__header {
    gap: 0.5rem;
    align-items: start;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .recruit-interview-modal__header-main {
    gap: 1.6rem;
    order: 1;
  }
  .recruit-interview-modal__title {
    font-size: 3.2rem;
  }
  .recruit-interview-modal__right {
    order: 2;
  }
  .recruit-interview-modal__info {
    order: 3;
    padding-top: 0.6rem;
    padding-bottom: 2rem;
    gap: 0;
  }
  .recruit-interview-modal__location {
    font-size: 1.2rem;
  }
  .recruit-interview-modal__name {
    font-size: 1.8rem;
    margin-right: 0.4rem;
  }
  .recruit-interview-modal__detail {
    font-size: 1.2rem;
  }
  .recruit-interview-modal__image {
    width: 100%;
  }
  .recruit-interview-modal__image img {
    width: 100%;
    height: auto;
    max-height: 18rem;
    object-fit: cover;
    border-radius: 1rem;
  }
  .recruit-interview-modal__close {
    right: -1.1rem;
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.4rem;
    top: -1.8rem;
  }
  .recruit-interview-modal__nav {
    width: calc(92% + 8.5rem);
    left: 50%;
    top: 19.3rem;
    padding: 0 1.8rem;
  }
  .recruit-interview-modal__nav-btn {
    width: 4.8rem;
    height: 4.8rem;
    pointer-events: auto;
  }
  .recruit-interview-modal__nav-btn img {
    height: 1.6rem;
  }
  .recruit-interview-modal__qa {
    gap: 3.1rem;
  }
  .recruit-interview-modal__qa-content {
    flex-direction: column;
    gap: 2.3rem;
    padding-bottom: 2.6rem;
    border-bottom: 1px solid #eee;
  }
  .recruit-interview-modal__qa-image {
    min-width: 100%;
  }
  .recruit-interview-modal__qa-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.8rem;
  }
  .recruit-interview-modal__qa-item {
    gap: 0.4rem;
  }
  .recruit-interview-modal__qa-label {
    font-size: 1.2rem;
  }
  .recruit-interview-modal__qa-title {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
  }
  .recruit-interview-modal__qa-text {
    font-size: 1.5rem;
  }
}

/* ----------------------------------- */
/* Recruit Part-time                   */
/* ----------------------------------- */
.page-intro__sections .recruit-parttime {
  padding: 12rem 0 11.8rem;
}
.page-intro__sections .recruit-parttime__inner {
  position: relative;
  z-index: 1;
  padding: 0;
}
.page-intro__sections .recruit-parttime__layout {
  display: block;
}
.page-intro__sections .recruit-parttime__content {
  width: 100%;
}
.page-intro__sections .recruit-parttime__heading {
  margin: 0 0 4.8rem;
  color: #000000;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 4.6rem;
  text-align: left;
  letter-spacing: 0.08em;
}
.page-intro__sections .recruit-parttime__body {
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #e50011;
}
.page-intro__sections .recruit-parttime__btn-wrap {
  display: flex;
  align-items: center;
}
.page-intro__sections .recruit-parttime__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.4rem 1.4rem;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  max-width: 26.4rem;
  width: 100%;
}
.page-intro__sections .recruit-parttime__link:hover {
  background-color: #E50011;
  opacity: 1;
}
.page-intro__sections .recruit-parttime__link:hover .fill {
  fill: #E50011;
}
@media screen and (max-width: 768px) {
  .page-intro__sections .recruit-parttime {
    padding: 9.5rem 0 4.6rem;
  }
  .page-intro__sections .recruit-parttime__heading {
    margin-bottom: 3.1rem;
    font-size: 2rem;
    line-height: 1.5;
  }
  .page-intro__sections .recruit-parttime__link {
    width: 100%;
    max-width: 25.2rem;
    padding-bottom: 1.5rem;
    padding-right: 1.6rem;
  }
}

/* ----------------------------------- */
/* Mobile Overrides                    */
/* ----------------------------------- */
@media screen and (max-width: 768px) {
  .page-title {
    padding-bottom: 5.2rem;
  }
  .page-title .page-title__category {
    margin-bottom: 1rem;
  }
  .recruit-page {
    display: block;
    padding-top: 6.2rem;
  }
  .page-intro__sections .recruit-message {
    min-height: 86.5rem;
    padding: 5.2rem 0 8.8rem;
    background-position: center bottom;
  }
  .page-intro__sections .recruit-message .recruit-message__inner {
    display: block;
  }
  .page-intro__sections .recruit-message .recruit-message__content {
    max-width: none;
    margin-left: -0.1rem;
  }
  .page-intro__sections .recruit-message .recruit-message__heading {
    margin-bottom: 2.8rem;
    font-size: 2rem;
    line-height: 1.5;
  }
  .page-intro__title {
    margin: 0 0 3.3rem !important;
  }
  .page-intro__title-text {
    font-size: 2rem !important;
  }
  .is-block-pc {
    display: none !important;
  }
}
/* ----------------------------------- */
/* Recruit Empty Notice                */
/* ----------------------------------- */
.recruit-empty-notice {
  padding: 2rem 0;
}
.recruit-empty-notice .container {
  color: #E50011;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.recruit-empty {
  color: #E50011;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 3rem 0;
}

main .recruit-empty {
  background: #f5f5f5;
  padding: 4.9rem 9.4rem;
  color: #E50011;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 12rem;
  max-width: 110.4rem;
}
@media screen and (max-width: 768px) {
  main .recruit-empty {
    padding: 2rem;
    font-size: 1.4rem;
    margin-bottom: 4.6rem;
    max-width: 90%;
  }
}
