@charset "UTF-8";
/* ==========================================
   選考の流れページ
   ========================================== */
/* 選考ステップフロー */
.selection-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 40px 0;
  flex-wrap: wrap;
}
.selection-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border: 2px solid #e67e3c;
  border-radius: 12px;
  background: #ffffff;
  min-width: 100px;
  text-align: center;
}
.selection-flow__step--final {
  background: #e67e3c;
}
.selection-flow__step--final .selection-flow__number,
.selection-flow__step--final .selection-flow__label {
  color: #ffffff;
}
.selection-flow__number {
  font-size: 12px;
  font-weight: 700;
  color: #e67e3c;
  letter-spacing: 0.05em;
}
.selection-flow__label {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
}
.selection-flow__connector {
  width: 24px;
  height: 2px;
  background: #e67e3c;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .selection-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .selection-flow__step {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }
  .selection-flow__label {
    font-size: 13px;
  }
  .selection-flow__connector {
    width: 2px;
    height: 16px;
    align-self: center;
  }
}
@media (max-width: 480px) {
  .selection-flow__step {
    padding: 12px 14px;
  }
  .selection-flow__label {
    font-size: 12px;
  }
}

/* CTAボタン */
.selection-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 60px;
}
.selection-cta__btn {
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
}
.selection-cta__btn--primary {
  background: #e67e3c;
  color: #ffffff;
}
.selection-cta__btn--primary:hover {
  opacity: 0.85;
}
.selection-cta__btn--secondary {
  background: #2E7D5E;
  color: #ffffff;
}
.selection-cta__btn--secondary:hover {
  opacity: 0.85;
}
@media (max-width: 480px) {
  .selection-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .selection-cta__btn {
    padding: 12px 30px;
  }
}

/* 連絡先情報 */
.contact-info__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
}
@media (max-width: 480px) {
  .contact-info__title {
    font-size: 18px;
  }
}
.contact-info__note {
  color: #666666;
  font-style: italic;
}

/* ページナビゲーション */
.selection-nav {
  background: #FFFAF1;
  padding: 0 0 80px;
}
.selection-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.selection-nav .numbered-card--active {
  border: 2px solid #e67e3c;
}
