/* ========================================
  Recruit Intro (採用メッセージ)
======================================== */
.recruit-intro {
  background: #fff;
  overflow: hidden;
}

.recruit-intro__inner {
  max-width: 100rem;
  margin: 0 auto;
}

.recruit-intro__content {
  position: relative;
  margin-left: auto;
  max-width: 42.4rem;
  padding: 8.8rem 0 10rem;
}

.recruit-intro__image {
  position: absolute;
  top: 0;
  right: calc(100% + 6.4rem);
  width: 200rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.recruit-intro__image-img {
  width: 101rem;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
  flex-shrink: 0;
}

.recruit-intro__image-img-sp {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-intro__heading {
  font-size: 4.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.5;
}

.recruit-intro__heading-accent {
  color: #f87a3b;
}

.recruit-intro__text {
  margin-top: 4rem;
}

.recruit-intro__text p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.recruit-intro__text p:last-child {
  margin-bottom: 0;
}

.recruit-intro__sign {
  margin-top: 2.4rem;
  text-align: right;
}

.recruit-intro__sign-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.9;
}

.recruit-intro__sign-name {
  font-size: 2.4rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.9;
  margin-left: 1em;
}

/* ========================================
  Recruit Strengths (3つの強み)
======================================== */
.recruit-strengths {
  background: #fff;
  padding: 10rem 0 12rem;
}

.recruit-strengths__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-strengths__header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 5.2rem;
}

.recruit-strengths__heading {
  font-size: 4.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.4;
}

.recruit-strengths__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* --- Strength Card --- */
.strength-card {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.strength-card--reverse {
  flex-direction: row-reverse;
}

.strength-card__image {
  width: 40rem;
  height: 30rem;
  border-radius: 1.2rem;
  overflow: hidden;
  flex-shrink: 0;
}

.strength-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strength-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.strength-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  font-weight: 400;
  color: #f87a3b;
  line-height: 1.2;
}

.strength-card__title {
  font-size: 2.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.5;
}

.strength-card__desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.9;
}

/* ========================================
  Recruit Schedule (1日のスケジュール)
======================================== */
.recruit-schedule {
  background: #f5f1e9;
  padding: 10rem 0 12rem;
}

.recruit-schedule__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-schedule__header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 5.2rem;
}

.recruit-schedule__heading {
  font-size: 4.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.4;
}

/* --- Timeline --- */
.schedule-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.schedule-timeline__line {
  position: absolute;
  left: 10.9rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #f87a3b;
  opacity: 0.3;
}

/* --- Schedule Item --- */
.schedule-item {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.schedule-item__time {
  width: 11rem;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 1.8rem;
  padding-right: 3rem;
  position: relative;
}

.schedule-item__time-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f87a3b;
  line-height: 3.8rem;
  text-align: right;
}

.schedule-item__dot {
  position: absolute;
  right: -0.6rem;
  top: 3.1rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #f87a3b;
  border: 3px solid #f5f1e9;
  border-radius: 50%;
  z-index: 2;
}

.schedule-item__card {
  flex: 1;
  margin-left: 2rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.schedule-item__title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.73;
}

.schedule-item__desc {
  font-size: 1.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.69;
}

/* ========================================
  Recruit Guidelines (募集要項)
======================================== */
.recruit-guidelines {
  background: #fff;
  padding: 10rem 0 12rem;
}

.recruit-guidelines__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 15.5rem;
  align-items: flex-start;
  padding: 0 2.4rem;
}

.recruit-guidelines__header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  flex-shrink: 0;
}

.recruit-guidelines__heading {
  font-size: 4.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.4;
}

.recruit-guidelines__table {
  flex: 1;
}

/* --- Guidelines Table --- */
.guidelines-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d6d3d1;
}

.guidelines-table th,
.guidelines-table td {
  padding: 1.6rem 2.4rem;
  border-bottom: 1px solid #d6d3d1;
  font-size: 1.6rem;
  color: #44403c;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.guidelines-table th {
  width: 16.6rem;
  background: #f5f1e9;
  font-weight: 700;
  white-space: nowrap;
}

.guidelines-table td {
  font-weight: 500;
  background: #fff;
}

/* ========================================
  Recruit FAQ (よくある質問)
======================================== */
.recruit-faq {
  background: #f5f1e9;
  padding: 10rem 0 10rem;
}

.recruit-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.recruit-faq__header {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.recruit-faq__heading {
  font-size: 4.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.4;
}

.recruit-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: -1.8rem;
}

/* --- FAQ Item --- */
.faq-item {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2.8rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.faq-item__question,
.faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.faq-item__question {
  align-items: center;
}

.faq-item__badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-item__badge--q {
  background: #f87a3b;
}

.faq-item__badge--a {
  background: #375b58;
}

.faq-item__q-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f87a3b;
  line-height: 1.69;
}

.faq-item__a-text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: #44403c;
  line-height: 1.9;
}

/* --- Contact Card (FAQ 内) --- */
.recruit-faq .contact__card {
  padding: 5.2rem 5rem;
}

.contact__card-lead {
  font-size: 1.8rem;
  font-weight: 700;
  color: #44403c;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* ========================================
  SP Responsive (max-width: 767px)
======================================== */
@media (max-width: 767px) {

  /* Recruit Intro SP */
  .recruit-intro {
    overflow: visible;
  }

  .recruit-intro__content {
    position: static;
    margin-left: 0;
    max-width: 100%;
    padding: 6rem 2rem 0rem;
  }

  .recruit-intro__image-img-sp {
    width: 100%;
    display: block;
    margin-top: 2rem;
  }

  .recruit-intro__heading {
    font-size: 3.2rem;
    line-height: 1.4;
  }

  .recruit-intro__text {
    margin-top: 2.4rem;
  }

  .recruit-intro__text p {
    font-size: 1.5rem;
    margin-bottom: 1.6rem;
  }

  .recruit-intro__sign {
    margin-top: 2rem;
  }

  .recruit-intro__sign-title {
    font-size: 1.4rem;
  }

  .recruit-intro__sign-name {
    font-size: 2rem;
  }

  /* Strengths SP */
  .recruit-strengths {
    padding: 6rem 2rem 8rem;
  }

  .recruit-strengths__header {
    margin-bottom: 3.6rem;
  }

  .recruit-strengths__heading {
    font-size: 3.2rem;
  }

  .recruit-strengths__list {
    gap: 4rem;
  }

  .strength-card {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .strength-card--reverse {
    flex-direction: column-reverse;
  }

  .strength-card__image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
  }

  .strength-card__num {
    font-size: 3rem;
  }

  .strength-card__title {
    font-size: 2.2rem;
  }

  .strength-card__desc {
    font-size: 1.5rem;
  }

  /* Schedule SP */
  .recruit-schedule {
    padding: 6rem 2rem 8rem;
  }

  .recruit-schedule__header {
    margin-bottom: 3.6rem;
  }

  .recruit-schedule__heading {
    font-size: 3.2rem;
  }

  .schedule-timeline__line {
    left: 1.5rem;
  }

  .schedule-item__time {
    width: auto;
    padding-right: 0;
    padding-top: 0;
    padding-left: 3.6rem;
    margin-bottom: 0.4rem;
  }

  .schedule-item {
    flex-direction: column;
  }

  .schedule-item__dot {
    left: 1rem;
    right: auto;
    top: 0.6rem;
  }

  .schedule-item__time-text {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .schedule-item__card {
    margin-left: 3.6rem;
    padding: 1.4rem 1.6rem;
  }

  .schedule-item__title {
    font-size: 1.8rem;
  }

  .schedule-item__desc {
    font-size: 1.4rem;
  }

  /* Guidelines SP */
  .recruit-guidelines {
    padding: 6rem 2rem 8rem;
  }

  .recruit-guidelines__inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0;
  }

  .recruit-guidelines__heading {
    font-size: 3.2rem;
  }

  .guidelines-table th {
    display: block;
    width: 100%;
  }

  .guidelines-table td {
    display: block;
    width: 100%;
  }

  .guidelines-table th,
  .guidelines-table td {
    padding: 1.2rem 1.6rem;
    font-size: 1.5rem;
  }

  .guidelines-table td {
    border-bottom: 1px solid #d6d3d1;
  }

  /* FAQ SP */
  .recruit-faq {
    padding: 6rem 2rem 6rem;
  }

  .recruit-faq__inner {
    gap: 5rem;
  }

  .recruit-faq__heading {
    font-size: 3.2rem;
  }

  .recruit-faq__list {
    gap: 1.6rem;
    margin-top: -1.2rem;
  }

  .faq-item {
    padding: 2rem 2rem;
    gap: 1.2rem;
  }

  .faq-item__q-text {
    font-size: 1.6rem;
  }

  .faq-item__a-text {
    font-size: 1.4rem;
  }

  .faq-item__badge {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.4rem;
  }

  /* Contact Card SP (within FAQ) */
  .recruit-faq .contact__card {
    padding: 3rem 2rem;
  }

  .contact__card-lead {
    font-size: 1.5rem;
  }
}