/* ==============================
   recruit.css
   採用情報ページ固有のスタイル
   global.css / layout.css の共通クラスを前提とする
   ============================== */

/* ナビゲーションのアクティブ状態 */
.nav__item--active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 採用ページ専用ヘッダー（PC） */
@media (min-width: 1401px) {
  .recruit-header__container {
    gap: 0;
  }

  .recruit-header__nav {
    display: flex;
    min-width: 0;
    margin-left: 80px;
    gap: clamp(24px, 2.5vw, 40px);
  }

  .recruit-header__nav-item {
    flex-shrink: 0;
    font-size: clamp(11px, 1.05vw, 14px);
    white-space: nowrap;
  }

  .recruit-header__buttons {
    gap: clamp(8px, 0.8vw, 14px);
  }

  .recruit-header__entry-button,
  .recruit-header__casual-button {
    padding-right: clamp(10px, 1.1vw, 18px);
    padding-left: clamp(10px, 1.1vw, 18px);
    font-size: clamp(11px, 0.95vw, 14px);
  }
}

/* btn--cta: 最終ボタン共通スタイル */
.btn--cta {
  width: 240px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}

/* ==============================
   1. ファーストビュー
   ============================== */
.recruit-hero {
  min-height: 650px;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

.recruit-hero__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.222fr;
  gap: 50px;
  align-items: center;
}

.recruit-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit-hero__label {
  margin-bottom: 18px;
  color: #4a6080;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.recruit-hero__title {
  margin-bottom: 24px;
  color: #003d70;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.4;
}

.recruit-hero__description {
  max-width: 500px;
  color: #003d70;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.recruit-hero__right {
  width: 100%;
  height: 600px;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.recruit-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
/* ==============================
   2. 私たちが考える
   「落ち着いて開発できる環境」
   ============================== */
.recruit-appeal {
  padding: 80px 60px;
  background-color: #f7f9fc;
}

.recruit-appeal__container {
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-appeal .section-header {
  margin-bottom: 36px;
}

/* 導入文 */
.recruit-appeal__intro {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 48px;

  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}

.recruit-appeal__intro p {
  margin: 0;
}

.recruit-appeal__intro p + p {
  margin-top: 20px;
}

/* 写真 */
.recruit-appeal__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin: 20px 0 0;
}

.recruit-appeal__photo-item {
  margin: 0;
}

.recruit-appeal__photo {
  width: 100%;
  height: 340px;
  margin-bottom: 14px;
  overflow: hidden;
  background-color: #e8eef5;
  border-radius: 4px;
}

.recruit-appeal__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.recruit-appeal__photo-item:hover .recruit-appeal__photo img {
  transform: scale(1.02);
}

.recruit-appeal__caption {
  color: #003d70;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

/* 6カード */
.recruit-appeal__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.recruit-appeal__card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  height: 100%;
  padding: 28px 24px 30px;
  background-color: #f4f7fb;
  border: 1px solid #e2e9f1;
  border-radius: 6px;
}

.recruit-appeal__card-icon {
  width: 72px;
  height: 72px;
  color: #003d70;
}

.recruit-appeal__card-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-appeal__card-content {
  min-width: 0;
}

.recruit-appeal__card-title {
  margin-bottom: 12px;
  color: #003d70;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.recruit-appeal__card-text {
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.85;
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
  .recruit-appeal {
    padding: 60px 40px;
  }

  .recruit-appeal__intro {
    margin-bottom: 44px;
    font-size: 16px;
  }

  .recruit-appeal__photos {
    gap: 30px;
    margin: 20px 0 0;
  }

  .recruit-appeal__photo {
    height: 300px;
  }

  .recruit-appeal__cards {
    gap: 20px;
  }

  .recruit-appeal__card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 22px 28px;
  }

  .recruit-appeal__card-icon {
    width: 64px;
    height: 64px;
  }

  .recruit-appeal__card-title {
    font-size: 19px;
  }

  .recruit-appeal__card-text {
    font-size: 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 900px) {
  .recruit-appeal {
    padding: 60px 30px;
  }

  .recruit-appeal .section-header {
    margin-bottom: 32px;
  }

  .recruit-appeal__intro {
    max-width: 400px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.9;
  }

  .recruit-appeal__photos {
    gap: 24px;
    margin: 20px 0 0;
  }

  .recruit-appeal__photo {
    height: 260px;
  }

  .recruit-appeal__caption {
    font-size: 14px;
  }

  .recruit-appeal__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-appeal__card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
  }

  .recruit-appeal__card-icon {
    width: 60px;
    height: 60px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 640px) {
  .recruit-appeal {
    padding: 40px 16px;
  }

  .recruit-appeal .section-header {
    margin-bottom: 28px;
  }

  .recruit-appeal__intro {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.9;
  }

  .recruit-appeal__intro p + p {
    margin-top: 16px;
  }

  .recruit-appeal__photos {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 20px 0 0;
  }

  .recruit-appeal__photo {
    height: 240px;
    margin-bottom: 12px;
  }

  .recruit-appeal__caption {
    font-size: 13px;
  }

  .recruit-appeal__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruit-appeal__card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px 24px;
  }

  .recruit-appeal__card-icon {
    width: 54px;
    height: 54px;
  }

  .recruit-appeal__card-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .recruit-appeal__card-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .recruit-appeal__bracket {
    display: none;
  }
}

/* ==============================
   3. 入社からプロジェクト参画まで
   ============================== */
.recruit-project-flow {
  padding: 80px 60px;
  background-color: #fff;
}

.recruit-project-flow__container {
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-project-flow .section-header {
  margin-bottom: 32px;
}

.recruit-project-flow__label {
  margin-bottom: 8px;
  color: #668aa8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.recruit-project-flow__intro {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 48px;
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}

.recruit-project-flow__intro p {
  margin: 0;
}

.recruit-project-flow__intro p + p {
  margin-top: 20px;
}

.recruit-project-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: project-step;
}

.recruit-project-flow__step {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 48px 28px 28px;
  border: 1px solid #dce6f0;
  border-radius: 4px;
  background-color: #f7f9fc;
  text-align: center;
}

.recruit-project-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -37px;
  width: 24px;
  color: #668aa8;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.recruit-project-flow__step:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.recruit-project-flow__step:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.recruit-project-flow__step:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.recruit-project-flow__step:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.recruit-project-flow__step:nth-child(3)::after {
  content: "↓";
  top: auto;
  right: 50%;
  bottom: -33px;
  transform: translateX(50%);
}

.recruit-project-flow__step:nth-child(4)::after,
.recruit-project-flow__step:nth-child(5)::after {
  content: "←";
  right: auto;
  left: -37px;
}

.recruit-project-flow__number {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  color: #fff;
  background-color: #003d70;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.recruit-project-flow__visual {
  display: block;
}

.recruit-project-flow__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
}

.recruit-project-flow__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-project-flow__title {
  margin-bottom: 12px;
  color: #003d70;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.recruit-project-flow__text {
  color: #003d70;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.recruit-project-flow__follow {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  padding: 28px 32px;
  border-left: 4px solid #003d70;
  background-color: #eef3f9;
}

.recruit-project-flow__follow-mark {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: #003d70;
  font-size: 20px;
  font-weight: 700;
}

.recruit-project-flow__follow-title {
  margin-bottom: 6px;
  color: #003d70;
  font-size: 20px;
  font-weight: 700;
}

.recruit-project-flow__follow-text {
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

/* ==============================
   4. 開発メンバーの声
   ============================== */
.recruit-voices {
  padding: 80px 60px;
  background-color: #f7f9fc;
}

.recruit-voices__container {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-voices .section-header {
  margin-bottom: 24px;
}

.recruit-voices__intro {
  margin-bottom: 40px;
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.recruit-voices__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.recruit-voices__card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 230px;
  padding: 32px;
  border: 1px solid #dce6f0;
  border-radius: 4px;
  background-color: #fff;
}

.recruit-voices__icon,
.recruit-voices__message-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border: 1px solid #cbd9e8;
  border-radius: 50%;
  background-color: #f8fbff;
}

.recruit-voices__icon img,
.recruit-voices__message-icon img {
  display: block;
  width: 64px;
  height: 64px;
}

.recruit-voices__title {
  margin-bottom: 10px;
  color: #003d70;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.recruit-voices__text {
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.recruit-voices__message {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 4px;
  background: linear-gradient(90deg, #eef3f9 0%, #f7f9fc 100%);
}

.recruit-voices__message-title {
  margin-bottom: 8px;
  color: #003d70;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.recruit-voices__message-text {
  color: #003d70;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.recruit-voices__note {
  margin-top: 10px;
  color: #668aa8;
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

/* ==============================
   5. 募集要項
   ============================== */
.recruit-requirements {
  background-color: #fff;
  padding: 72px 60px;
}

.recruit-requirements__container {
  max-width: 900px;
  margin: 0 auto;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.recruit-table tr {
  border-bottom: 1px solid #e8eef5;
}

.recruit-table tr:first-child {
  border-top: 1px solid #e8eef5;
}

.recruit-table__label {
  width: 180px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #003d70;
  background-color: #f4f7fb;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}

.recruit-table__value {
  padding: 16px 20px;
  font-size: 16px;
  color: #003d70;
  line-height: 1.7;
  font-weight: 600;
  vertical-align: top;
  background-color: #fff;
}

.recruit-requirements__note {
  font-size: 12px;
  color: #668aa8;
  font-weight: 600;
  margin-top: 12px;
}

/* ==============================
   6. 求める人物像
   ============================== */
.recruit-person {
  background-color: #f7f9fc;
  padding: 72px 60px;
}

.recruit-person__container {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-person__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  align-items: center;
}

.recruit-person__image-wrap {
  overflow: hidden;
  border-radius: 4px;
}

.recruit-person__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recruit-person__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recruit-person__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #003d70;
  line-height: 1.6;
}

.recruit-person__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #003d70;
  margin-top: 1px;
}

.recruit-person__check img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==============================
   7. 選考プロセス
   ============================== */
.recruit-process {
  background-color: #fff;
  padding: 72px 60px;
}

.recruit-process__container {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.recruit-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.recruit-process__step-left,
.recruit-process__step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-process__step-content {
  text-align: center;
}

.recruit-process__num {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #003d70;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.recruit-process__icon {
  width: 64px;
  height: 64px;
  color: #003d70;
  margin-bottom: 16px;
}

.recruit-process__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-process__title {
  font-size: 16px;
  font-weight: 700;
  color: #003d70;
  margin-bottom: 8px;
}

.recruit-process__text {
  font-size: 14px;
  color: #003d70;
  line-height: 1.6;
  font-weight: 600;
}

.recruit-process__arrow {
  font-size: 24px;
  color: #aabbcc;
  padding: 0 8px;
  margin-top: 68px;
  flex-shrink: 0;
}

/* ==============================
   9. カジュアル面談CTA
   ============================== */
.recruit-cta {
  background-color: #eef3f9;
  padding: 72px 60px;
  text-align: center;
}

.recruit-cta__container {
  max-width: 760px;
  margin: 0 auto;
}

.recruit-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: #003d70;
  margin-bottom: 16px;
}

.recruit-cta__text {
  font-size: 16px;
  color: #003d70;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 36px;
}

.recruit-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==============================
   Responsive - Tablet (1200px)
   ============================== */
@media (max-width: 1200px) {
  .recruit-hero {
    min-height: 560px;
    padding: 32px 30px;
  }

  .recruit-hero__inner {
    grid-template-columns: 1fr 1.222fr;
    gap: 40px;
  }

  .recruit-hero__label {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .recruit-hero__title {
    font-size: 40px;
  }

  .recruit-hero__description {
    font-size: 15px;
  }

  .recruit-hero__right {
    height: 520px;
  }

  .recruit-requirements {
    padding: 60px 40px;
  }

  .recruit-project-flow {
    padding: 60px 40px;
  }

  .recruit-voices {
    padding: 60px 40px;
  }

  .recruit-voices__card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 24px;
  }

  .recruit-voices__icon,
  .recruit-voices__message-icon {
    width: 80px;
    height: 80px;
  }

  .recruit-voices__icon img,
  .recruit-voices__message-icon img {
    width: 56px;
    height: 56px;
  }

  .recruit-person {
    padding: 60px 40px;
  }

  .recruit-person__layout {
    gap: 0 48px;
  }

  .recruit-process {
    padding: 60px 40px;
  }

  .recruit-cta {
    padding: 60px 40px;
  }

  .recruit-cta__title {
    font-size: 28px;
  }

  .recruit-project-flow__title {
    font-size: 19px;
  }

  .recruit-project-flow__text {
    font-size: 16px;
  }
  .recruit-project-flow__follow-title {
    font-size: 19px;
  }

  .recruit-project-flow__follow-text {
    font-size: 16px;
    line-height: 1.7;
  }
}
/* ==============================
   Responsive - Mobile (900px)
   ============================== */
/* ヘッダー */
@media (max-width: 900px) {
  .recruit-header__casual-button {
    display: none;
  }

  .recruit-header__entry-button {
    display: inline-flex;
    font-size: 12px;
  }

  /* ファーストビュー */
  .recruit-hero {
    min-height: auto;
    padding: 40px 30px;
    overflow: visible;
  }

  .recruit-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit-hero__left {
    padding: 0;
    order: 1;
  }

  .recruit-hero__right {
    width: 100%;
    height: 420px;
    order: 2;
  }

  .recruit-hero__label {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .recruit-hero__title {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .recruit-hero__description {
    font-size: 15px;
  }

  /* 入社からプロジェクト参画まで */
  .recruit-project-flow {
    padding: 60px 30px;
  }

  .recruit-project-flow__intro {
    max-width: 400px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.9;
  }

  .recruit-project-flow__steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recruit-project-flow__step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px;
    text-align: left;
  }

  .recruit-project-flow__step:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .recruit-project-flow__step:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -30px;
    left: auto;
    transform: translateX(50%);
  }

  .recruit-project-flow__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .recruit-project-flow__number {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  .recruit-project-flow__icon {
    margin: 0;
  }

  .recruit-project-flow__content {
    align-self: center;
  }

  .recruit-project-flow__title {
    font-size: 17px;
  }

  .recruit-project-flow__text {
    font-size: 15px;
  }

  .recruit-project-flow__follow {
    margin-top: 36px;
  }

  .recruit-project-flow__follow-title {
    font-size: 17px;
  }

  .recruit-project-flow__follow-text {
    font-size: 15px;
    line-height: 1.7;
  }

  /* 開発メンバーの声 */
  .recruit-voices {
    padding: 60px 30px;
  }

  .recruit-voices__intro {
    max-width: 400px;
    margin-right: auto;
    margin-bottom: 36px;
    margin-left: auto;
    line-height: 1.9;
    text-align: left;
  }

  .recruit-voices__grid {
    grid-template-columns: 1fr;
  }

  .recruit-voices__card {
    min-height: 0;
  }

  .recruit-voices__message {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 24px;
  }

  /* 募集要項 */
  .recruit-requirements {
    padding: 60px 30px;
  }

  .recruit-table__label {
    width: 140px;
  }

  /* 求める人物像 */
  .recruit-person {
    padding: 60px 30px;
  }

  .recruit-person__layout {
    grid-template-columns: 1fr;
    gap: 36px 0;
  }

  .recruit-person__image {
    height: 280px;
  }

  /* 選考プロセス */
  .recruit-process {
    padding: 60px 30px;
  }

  .recruit-process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .recruit-process__step {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 24px 0;
    border-bottom: 1px solid #e8eef5;
    gap: 20px;
  }

  .recruit-process__step:last-child {
    border-bottom: none;
  }

  .recruit-process__step-left {
    flex-shrink: 0;
    width: 80px;
    align-items: center;
  }

  .recruit-process__step-content {
    flex: 1;
    align-items: flex-start;
    text-align: left;
    justify-content: center;
  }

  .recruit-process__num {
    margin-bottom: 8px;
  }

  .recruit-process__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
  }

  .recruit-process__arrow {
    display: none;
  }

  /* CTA */
  .recruit-cta {
    padding: 60px 30px;
  }

  .recruit-cta__title {
    font-size: 26px;
  }

  .recruit-cta__text {
    font-size: 16px;
  }
}

/* ==============================
   Responsive - Small Mobile (640px)
   ============================== */
@media (max-width: 640px) {
  .recruit-hero {
    padding: 32px 16px 20px;
  }

  .recruit-hero__inner {
    gap: 20px;
  }

  .recruit-hero__left {
    padding: 0;
  }

  .recruit-hero__label {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .recruit-hero__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.5;
  }

  .recruit-hero__description {
    font-size: 14px;
    line-height: 1.8;
  }

  .recruit-hero__right {
    height: 320px;
  }

  .recruit-hero__buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .recruit-hero__buttons .btn {
    width: 100%;
  }

  .recruit-project-flow {
    padding: 40px 16px;
  }

  .recruit-project-flow .section-header {
    margin-bottom: 24px;
  }

  .recruit-project-flow__label {
    font-size: 12px;
  }

  .recruit-project-flow__intro {
    max-width: 100%;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.9;
  }

  .recruit-project-flow__intro p + p {
    margin-top: 16px;
  }

  .recruit-project-flow__step {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 18px 14px;
  }

  .recruit-project-flow__number {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .recruit-project-flow__icon {
    width: 52px;
    height: 52px;
  }

  .recruit-project-flow__title {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .recruit-project-flow__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .recruit-project-flow__follow {
    display: block;
    padding: 22px 20px;
  }

  .recruit-project-flow__follow-mark {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .recruit-project-flow__follow-title {
    font-size: 17px;
  }

  .recruit-project-flow__follow-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .recruit-voices {
    padding: 40px 16px;
  }

  .recruit-voices .section-header {
    margin-bottom: 24px;
  }

  .recruit-voices__intro {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 15px;
  }

  .recruit-voices__grid {
    gap: 16px;
  }

  .recruit-voices__card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .recruit-voices__icon,
  .recruit-voices__message-icon {
    width: 64px;
    height: 64px;
  }

  .recruit-voices__icon img,
  .recruit-voices__message-icon img {
    width: 44px;
    height: 44px;
  }

  .recruit-voices__title {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .recruit-voices__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .recruit-voices__message {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
    padding: 22px 18px;
  }

  .recruit-voices__message-title {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .recruit-voices__message-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .recruit-voices__note {
    font-size: 11px;
  }

  .recruit-requirements {
    padding: 40px 16px;
  }

  /* テーブル縦積み */
  .recruit-table,
  .recruit-table tbody,
  .recruit-table tr,
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }

  .recruit-table tr {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .recruit-table tr:first-child {
    border-top: none;
  }

  .recruit-table__label {
    width: 100%;
    padding: 10px 14px 6px;
    border-top: 1px solid #e8eef5;
    white-space: normal;
    font-size: 14px;
  }

  .recruit-table__value {
    padding: 4px 14px 10px;
    border-bottom: 1px solid #e8eef5;
    font-size: 14px;
  }

  .recruit-person {
    padding: 40px 16px;
  }

  .recruit-person__item {
    font-size: 15px;
    gap: 10px;
  }

  .recruit-process {
    padding: 40px 16px;
  }

  .recruit-cta {
    padding: 40px 16px;
  }

  .recruit-cta__title {
    font-size: 22px;
  }

  .recruit-cta__text {
    font-size: 15px;
  }

  .recruit-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .recruit-cta__buttons .btn--cta {
    width: 100%;
    max-width: 320px;
  }
}

/* FAQ Section */
.faq {
  background-color: #fff;
  padding: 70px 60px;
  border-top: 1px solid #eef2f8;
}

.faq__container {
  max-width: 1160px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.faq__column {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq__item {
  background-color: #f7f9fc;
  border-radius: 3px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  color: #003d70;
}

.faq__question:hover {
  background-color: #eef2f8;
}

.faq__question-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  flex: 1;
  color: #003d70;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #003d70;
  width: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq__answer {
  padding: 12px 18px 18px;
  background-color: #fff;
  border-top: 1px solid #e8eef5;
}

.faq__answer[hidden] {
  display: none;
}

.faq__answer-text {
  font-size: 13px;
  color: #003d70;
  line-height: 1.7;
  font-weight: 600;
}

.faq__footer {
  margin-top: 44px;
  text-align: center;
}

.faq__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  padding: 0;
}

@media (max-width: 1200px) {
  .faq {
    padding: 60px 40px;
  }

  .faq__grid {
    gap: 0 24px;
  }
}

@media (max-width: 900px) {
  .faq {
    padding: 60px 30px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq__column {
    gap: 3px;
  }

  .faq__column + .faq__column {
    margin-top: 3px;
  }
}

@media (max-width: 640px) {
  .faq {
    padding: 40px 16px;
  }

  .faq__header {
    margin-bottom: 36px;
  }

  .faq__question-text {
    font-size: 13px;
  }

  .faq__footer {
    margin-top: 32px;
  }

  .faq__more-btn {
    width: 100%;
    max-width: 320px;
  }

  .faq__question-text {
    font-size: 15px;
  }
}
