@charset "UTF-8";
/* ==========================================
   キャリア、研修制度ページ
   ========================================== */
/* カード内タイトル */
.career-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
}
@media (max-width: 480px) {
  .career-card__title {
    font-size: 18px;
  }
}

/* キャリアステップ */
.career-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.career-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 2px solid #e67e3c;
  border-radius: 12px;
  background: #ffffff;
  min-width: 120px;
  text-align: center;
}
.career-steps__label {
  font-size: 13px;
  font-weight: 700;
  color: #e67e3c;
}
.career-steps__desc {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
}
.career-steps__connector {
  width: 24px;
  height: 2px;
  background: #e67e3c;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .career-steps__item {
    padding: 12px 16px;
    min-width: 90px;
  }
  .career-steps__connector {
    width: 16px;
  }
  .career-steps__label, .career-steps__desc {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .career-steps {
    flex-wrap: wrap;
    gap: 8px;
  }
  .career-steps__item {
    padding: 10px 12px;
    min-width: 80px;
  }
}

/* キャリアパス詳細 */
.career-path-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.career-path-list__item {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #e67e3c;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .career-path-list__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
    text-align: center;
  }
}
.career-path-list__rank {
  font-size: 20px;
  font-weight: 700;
  color: #e67e3c;
}
@media (max-width: 480px) {
  .career-path-list__rank {
    font-size: 18px;
  }
}
.career-path-list__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
}
.career-path-list__salary {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  text-align: right;
}
@media (max-width: 768px) {
  .career-path-list__salary {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .career-path-list__salary {
    font-size: 16px;
  }
}

.career-path-note {
  font-size: 12px;
  color: #666666;
  margin-top: 16px;
  text-align: right;
}

/* CTAボタン */
.benefits-cta {
  text-align: center;
  margin: 40px 0;
}
.benefits-cta__btn {
  display: inline-block;
  background: #2E7D5E;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 80px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s;
}
.benefits-cta__btn:hover {
  opacity: 0.85;
}
@media (max-width: 480px) {
  .benefits-cta__btn {
    padding: 14px 40px;
    font-size: 14px;
    display: block;
  }
}

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

/*# sourceMappingURL=career.css.map */
