.main.recruit{
  position: relative;
}

.recruit__background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url(../images/pc/recruit/bg.webp);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: var(--z-background);
}


@media (max-width: 750px) {
  .recruit__background{
    background-image: url(../images/sp/recruit/bg.webp);
    position: absolute; 
  }
}


.br-pc{
  display: block;
}
@media (max-width: 750px) {
  .recruit-intro__slider {
    position: relative;
    right: 0;
    top: 0;
    max-width: none;
  }
}

/* ===================================
   Common Text Styles
=================================== */
.recruit-interview__title,
.recruit-job__title{
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 9.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9; 
}
.interview-card__answer,
.recruit-job__item{
  color: var(--color-light);
  font-family: var(--font-strong);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07rem;
  width: 100%;
}

@media (max-width: 750px) {
  .recruit-interview__title,
  .recruit-job__title{
    font-size: 4rem;
    line-height: 1.25; 
  }
}

/* Hero Section */
.recruit-hero{
  width: 100%;
  height: calc(100vh - var(--header-height-pc));
  position: relative;
  overflow: hidden;
}
.recruit-hero__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recruit-hero__image {
  width: 100%;
  height: 150%;
  object-fit: cover;
  will-change: transform;
  display: block;
  position: absolute;
  top: -25%;
  left: 0;
}
.recruit-hero__title-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.recruit-hero__title{
  color: var(--color-light);
  text-align: center;
  font-family: var(--font-main);
  font-size: 10rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.5;
  padding: 6rem 0;
}
@media (max-width: 750px) {
  .recruit-hero{
    height: calc(100vh - var(--header-height-sp));
  }
  .recruit-hero__title{
    font-size: 4.8rem;
    line-height: 1.04;
  }
}
/* Introduction Section */
.recruit-intro{
  font-size: 0.694444vw !important;
  display: flex;
  flex-direction: row;
  position: relative;
}
.recruit-intro__content{
  display: flex;
  flex-direction: column;
  gap: 3.35em;
  max-width: 73.8em;
  width: 100%;
  margin: 19em 0 14.35em 19.5em;
}
.recruit-intro__heading{
  color: var(--color-dark);
  font-family: var(--font-strong);
  font-size: 3em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
}
.recruit-intro__text{
  color: var(--color-dark);
  font-family: var(--font-strong);
  font-size: 1.6em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07em;
}

/* スライドショー */
.recruit-intro__slider {
  overflow: hidden;
  width: 100%;
}

.recruit-intro__slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 43.5em;
  position: absolute;
  right: 0;
  top: 8em;
}

@media (max-width: 750px) {
  /* Introduction Section */
  .recruit-intro{
    font-size: 10px !important;
    flex-direction: column;
  }
  .recruit-intro__text{
    font-size: 1.4rem;
    letter-spacing: 0.07rem;
  }
  .recruit-intro__content{
    gap: 2rem;
    max-width: none;
    padding: 6rem 3rem;
    margin: 0;
  }
  .recruit-intro__heading{
    font-size: 2.4rem;
  }

  /* スライドショー */
  .recruit-intro__slider img{
    position: relative;
    right: 0;
    top: 0;
    max-width: none;
  }
}
/* Navigation Links */
.recruit-nav{
  padding: 11.6rem 2rem 15.1rem;
}
.recruit-nav__list{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6rem;
}

.recruit-nav__item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(9.4rem, 25vw, 26.8rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color-light);
  transition: all 0.3s ease;
}
.recruit-nav__link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-light);
  text-align: center;
  font-family: var(--font-main);
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
}
.recruit-nav__item:hover{
  border: 1px solid #EEE9E5;
  background-color: var(--color-dark);
}
@media (max-width: 750px) {
  .recruit-nav{
    padding: 6rem 2rem;
  }
  .recruit-nav__list{
    gap: 2.1rem;
  }

  .recruit-nav__item{
    width: 9.4rem;
    height: 9.4rem;
    border-radius: 50%;
  }
  .recruit-nav__link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    line-height: 1.16;
  }
}
/* Top Message Section */ 
.recruit-message__header{
  width: 100%;
  height: auto;
  background-image: url(../images/pc/recruit/top-message.webp);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6.5rem 5%;
}
.recruit-message__title{
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.62;
  padding: 6rem 0;
  text-align: right;
}
.recruit-message__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.recruit-message__text-wrapper{
  max-width: 72rem;
  width: 100%;
  margin: 5.9rem auto 0;
}
.recruit-message__text{
  color: var(--color-light);
  text-align: center;
  font-family: var(--font-strong);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07rem;
}

/* 段落区切り用スペース */
.recruit-message__text .paragraph-break {
  display: none;
}

/* 英語環境での改行調整 */
:lang(en) .recruit-message__text br {
  display: none;
}

:lang(en) .recruit-message__text .paragraph-break {
  display: block;
  height: 1.4rem;
}

:lang(en) .recruit-message__text {
  line-height: 1.6;
}
.recruit-message__picture{
  align-self: center;
}
.recruit-message__picture img{
  width: 100%;
  max-width: 20.1rem;
  height: auto;
  object-fit: cover;
  margin-bottom: 18rem;
}
@media (max-width: 750px) {
  /* Top Message Section */ 
  .recruit-message__header{
    background-image: url(../images/sp/recruit/top-message.webp);
    padding: 5.573rem 2.5rem 5.827rem;
  }
  .recruit-message__title{
    font-size: 2.4rem;
    line-height: 0.56;
    padding: 1.62rem 0;
  }
  .recruit-message__content{
    gap: 1.6rem;
    padding: 0 3rem;
  }
  .recruit-message__text-wrapper{
    max-width: 72rem;
    width: 100%;
    margin: 3rem auto 0;
  }
  .recruit-message__text{
    font-size: 1.3rem;
    line-height: 1.69;
    letter-spacing: 0.065rem;
  }

  /* 英語環境での改行調整 (SP) */
  :lang(en) .recruit-message__text br {
    display: none;
  }

  :lang(en) .recruit-message__text .paragraph-break {
    display: block;
    height: 1.3rem;
  }

  :lang(en) .recruit-message__text {
    line-height: 1.5;
  }
  .recruit-message__picture img{
    max-width: 15.96rem;
    margin-bottom: 10.8rem;
  }
}

/* Employee Interview Section */

.recruit-interview__list{
  padding: 12rem 2rem;
}

.recruit-interview__item{
  display: flex;
  flex-direction: row;
  gap: 5%;
  max-width: 120rem;
  margin: 0 auto;
}

.interview-card__picture img{
  height: auto;
  max-width: 60rem;
  width: 100%;
  object-fit: cover;
}

.interview-card__content{
  max-width: 42.1rem;
  width: 100%;
}

.interview-card__department{
  color: var(--color-light);
  font-family: var(--font-strong);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07rem;
}
.interview-card__name{
  color: var(--color-light);
  font-family: var(--font-strong);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.12rem;
  margin: 1rem 0;
}
.interview-card__name-en{
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.7px;
  background: linear-gradient(196deg, #EEE9E5 36.04%, #477C98 89.59%, #002246 97.78%);
  /* background: linear-gradient(233deg, #EEE9E5 -1.96%, #477C98 73.59%, #002246 89.78%); */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 中国語環境でも英語表記を維持 */
:lang(zh) .interview-card__name-en,
:lang(zh-CN) .interview-card__name-en,
:lang(zh-TW) .interview-card__name-en {
  font-family: var(--font-main);
}

.interview-card__qa{
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.interview-card__qa-item{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.interview-card__question{
  color: var(--color-light);
  font-family: var(--font-strong);
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
.recruit-interview__divider{
  width: 100%;
  margin: 9rem 0 6rem;
}
@media (max-width: 750px) {
  /* Employee Interview Section */

  .recruit-interview__header{
    margin-bottom: 1.86rem;
  }

  .recruit-interview__list{
    padding: 0;
    margin-bottom: 12rem;
  }

  .recruit-interview__item{
    flex-direction: column;
    gap: 2,7rem;
    max-width: none;
  }

  .interview-card__picture{
    order: 2;
  }
  .interview-card__picture img{
    max-width: none;
  }

  .interview-card__content{
    max-width: 42.1rem;
    width: 100%;
    display: contents;
  }
  .interview-card__header{
    order: 1;
    padding: 1.86rem 3rem 2rem;
  }

  .interview-card__department{
    font-size: 1.2rem;
    line-height: 2.16;
    letter-spacing: 0.06rem;
  }
  .interview-card__name{
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.1rem;
    margin: 0.4rem 0;
  }
  .interview-card__name-en{
    font-size: 1.2rem;
    line-height: 2.16;
    letter-spacing: 0.06rem;
  }

  /* 中国語環境でも英語表記を維持 */
  :lang(zh) .interview-card__name-en,
  :lang(zh-CN) .interview-card__name-en,
  :lang(zh-TW) .interview-card__name-en {
    font-family: var(--font-main);
  }
  .interview-card__qa{
    gap: 4rem;
    padding: 2.7rem 3rem 0;
    order: 3;
  }
  .interview-card__qa-item{
    gap: 2rem;
  }

  .recruit-interview__divider{
    margin: 6rem 0;
  }
}

/* Job Description Section */
.span-sp{
  display: none;
}
.recruit-job{
  display: flex;
  flex-direction: column;
  gap: 12rem;
  padding-bottom: 12rem;
}
.recruit-job__text, 
.recruit-job__note,
.recruit-job__li,
.recruit-job__text--appeal,
.recruit-job__text--trial
{
  padding-left: 1rem;
}

.recruit-job__list{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 72rem;
  width: 100%;
  align-items: flex-start;
}


@media (max-width: 750px) {
  /* Job Description Section */
  .span-sp{
    display: inline;
  }
  .span-sp-block {
    display: block;
    text-align: center;
  }
  .recruit-job{
    gap: 2rem;
    padding-bottom: 9rem;
  }
  .recruit-job__text{
    padding-left: 0;
  }
  .recruit-job__list{
    padding: 0 3rem;
    max-width: none;
  }
}

/* Contact Section */
.recruit-contact{
  background-color: var(--color-dark);
  padding: 6.5rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 9rem;
}

.recruit-contact__header{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.recruit-contact__title{
  color: var(--color-light);
  font-family: var(--font-main);
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.04;
}
.recruit-contact__lead{
  color: var(--color-light);
  font-family: var(--font-strong);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.07rem;
}
.recruit-contact__button{
  color: var(--color-light);
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.57;
  display: flex;
  max-width: 30.16rem;
  width: 100%;
  height: 6.3rem;
  padding: 0.542rem 4.478rem;
  justify-content: center;
  align-items: center;
  gap: 1.35rem;
  border-radius: 5rem;
  border: 1px solid var(--color-light);
  transition: 0.4s ease;
}
.recruit-contact__button:hover{
  background-color:var(--color-light);
  color: var(--color-dark);
}
@media (max-width: 750px) {
  /* Contact Section */
  .recruit-contact{
    padding: 6rem 3rem;
    flex-direction: column;
    gap: 1.1rem;
  }

  .recruit-contact__header{
    gap: 1rem;
  }
  .recruit-contact__title{
    font-size: 2.4rem;
    line-height: 2.08;
    text-align: center;
  }
  .recruit-contact__lead{
    font-size: 1.3rem;
    line-height: 1.69;
    letter-spacing: 0.065rem;
    text-align: center;
  }
  .recruit-contact__button{
    font-size: 1.4rem;
    max-width: 12.9rem;
    height: 4.2rem;
    padding: 0.4rem 3.3rem;
    gap: 1rem;

  }
}