/* ==========================================================================
   requirement.css — 採用情報
   ワイヤー: Figmaノード 59:1240
   ========================================================================== */

/* company.css と同じ最大幅 */
.req-positions > .container,
.req-orientation > .container,
.req-flow > .container {
  max-width: var(--container-article);
}

/* --------------------------------------------------------------------------
   1. 募集職種
   -------------------------------------------------------------------------- */
.req-positions {
  padding: 60px 0 80px;
}

.req-positions .section-heading {
  margin-bottom: 48px;
}

.req-positions__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- カード --- */
.req-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.req-card.fade-in-up:hover,
.req-card:hover {
  transform: scale(1.03);
}

.req-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.req-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-base);
  font-feature-settings: "palt";
}

.req-card__salary {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-navy);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- タグ --- */
.req-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.req-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}

.req-card__tag--type {
  background-color: rgba(234, 139, 15, 0.12);
  color: var(--color-orange);
}

.req-card__tag--location {
  background-color: #f3f4f6;
  color: #555;
}

.req-card__tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- 応募資格 --- */
.req-card__reqs {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 24px;
}

.req-card__reqs-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #888;
  margin-bottom: 10px;
}

.req-card__reqs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.req-card__reqs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-base);
  font-feature-settings: "palt";
}

.req-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-orange);
}

.req-card__reqs-none {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: #888;
}

/* --- CTAボタン --- */
.req-card__action {
  text-align: left;
}

.req-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--radius-small);
  background-color: var(--color-navy);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  font-feature-settings: "palt";
  transition: opacity 0.2s ease;
}

.req-card__btn:hover {
  opacity: 0.8;
}

.req-card__btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. 会社説明会
   -------------------------------------------------------------------------- */
.req-orientation {
  padding: 80px 0;
}

.req-orientation .section-heading {
  margin-bottom: 48px;
}

.req-orientation__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.req-orientation__card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.req-orientation__card.fade-in-up:hover,
.req-orientation__card:hover {
  transform: scale(1.03);
}

.req-orientation__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #888;
  margin-bottom: 6px;
}

.req-orientation__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-base);
  font-feature-settings: "palt";
  margin-bottom: 10px;
}

.req-orientation__btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--radius-small);
  background-color: var(--color-navy);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  font-feature-settings: "palt";
  text-align: center;
  transition: opacity 0.2s ease;
}

.req-orientation__btn:hover {
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   3. 選考フロー
   色味: 評価制度(merit-rating)のフロー準拠
   -------------------------------------------------------------------------- */
.req-flow {
  padding: 80px 0 120px;
}

.req-flow .section-heading {
  margin-bottom: 48px;
}

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

.req-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* 番号: 丸＋数字、オレンジグラデーション背景 */
.req-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea8b0f, #f6b204);
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.req-flow__step:hover .req-flow__number {
  transform: scale(1.1);
}

/* カード: 白背景+ボーダー（募集職種カード準拠） */
.req-flow__body {
  flex: 1;
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 32px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.req-flow__step:hover .req-flow__body {
  transform: scale(1.03);
}

.req-flow__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-base);
  font-feature-settings: "palt";
  margin-bottom: 4px;
}

.req-flow__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: #666;
  font-feature-settings: "palt";
  margin-bottom: 4px;
}

/* 目安: オレンジ色（評価制度のアクセントカラー準拠） */
.req-flow__duration {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-orange);
  font-feature-settings: "palt";
}

/* --- 0件メッセージ --- */
.req-positions__empty,
.req-orientation__empty {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   4. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .req-positions {
    padding: 60px 0 60px;
  }

  .req-orientation {
    padding: 60px 0;
  }

  .req-flow {
    padding: 60px 0 80px;
  }
}

@media (max-width: 768px) {
  .req-positions {
    padding: 48px 0;
  }

  .req-positions .section-heading,
  .req-orientation .section-heading,
  .req-flow .section-heading {
    margin-bottom: 32px;
  }

  .req-positions__empty,
  .req-orientation__empty {
    font-size: 20px;
  }

  .req-card {
    padding: 24px;
  }

  .req-card__header {
    flex-direction: column;
    gap: 4px;
  }

  .req-card__title {
    font-size: 22px;
  }

  .req-card__salary {
    font-size: 18px;
    white-space: normal;
  }

  .req-card__tags {
    flex-wrap: wrap;
  }

  .req-card__reqs-list li {
    font-size: 15px;
  }

  .req-card__btn {
    font-size: 15px;
  }

  .req-orientation {
    padding: 48px 0;
  }

  .req-orientation__card {
    padding: 24px;
  }

  .req-orientation__title {
    font-size: 22px;
  }

  .req-orientation__btn {
    font-size: 16px;
    padding: 16px 20px;
  }

  .req-flow {
    padding: 48px 0 64px;
  }

  .req-flow__step {
    gap: 16px;
  }

  .req-flow__number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .req-flow__body {
    padding: 20px 24px;
  }

  .req-flow__title {
    font-size: 18px;
  }

  .req-flow__desc {
    font-size: 15px;
  }
}
