@charset "UTF-8";
/* ==========================================
   仕事を知る 詳細ページ共通スタイル
   ========================================== */
/* ヒーロー */
.work-hero {
  background: linear-gradient(135deg, #e67e3c 0%, #FFB399 100%);
  padding: 40px 0 50px;
  color: #ffffff;
}
.work-hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.work-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.work-hero__breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.work-hero__breadcrumb a:hover {
  opacity: 0.7;
}
.work-hero__breadcrumb span {
  opacity: 0.7;
}
.work-hero__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
}
@media (max-width: 768px) {
  .work-hero__title {
    font-size: 24px;
  }
}
.work-hero__description {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  max-width: 700px;
}
@media (max-width: 480px) {
  .work-hero__description {
    font-size: 14px;
  }
}

/* 詳細カード */
.work-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
.work-detail-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.work-detail-card__text--center {
  text-align: center;
}
.work-detail-card__text + .work-detail-card__text {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .work-detail-card {
    padding: 30px 20px;
  }
}
@media (max-width: 480px) {
  .work-detail-card {
    padding: 24px 16px;
  }
}

/* 担当部署ラベル */
.work-detail-department {
  font-size: 14px;
  font-weight: 600;
  color: #E97F4B;
  margin: 0 0 24px;
}

/* LEjoin オープニングメッセージ */
.lejoin-message {
  background: #FFFAF1;
  text-align: center;
}
.lejoin-message .work-detail-card__text {
  color: #333333;
  font-size: 15px;
}
.lejoin-message .work-detail-card__text + .work-detail-card__text {
  margin-top: 1em;
}
.lejoin-message .work-detail-card__text strong {
  color: #e67e3c;
  font-weight: 700;
}

/* LEjoin タグライン */
.lejoin-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #e67e3c;
  text-align: center;
  margin: 0 0 16px;
}
@media (max-width: 480px) {
  .lejoin-tagline {
    font-size: 16px;
  }
}

/* LEjoin 求人リンク */
.lejoin-jobs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lejoin-jobs__heading {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 24px 0 12px;
}
.lejoin-jobs__heading:first-child {
  margin-top: 0;
}
.lejoin-jobs li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: #ffffff;
  border: 2px solid #e89b6f;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow 0.3s, color 0.3s;
}
.lejoin-jobs li a::after {
  content: "→";
  color: #e67e3c;
  font-weight: 700;
  transition: transform 0.3s;
}
.lejoin-jobs li a:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: #e89b6f;
}
.lejoin-jobs li a:hover::after {
  transform: translateX(4px);
}

/* 求める人物像リスト */
.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ideal-list__item {
  margin-bottom: 0;
}
.ideal-list__lead {
  font-size: 14px;
  font-weight: 600;
  color: #e67e3c;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.ideal-list__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .ideal-list__title {
    font-size: 20px;
  }
}

/* プリセプター 3つの安心ポイント */
.preceptor-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .preceptor-points {
    grid-template-columns: 1fr;
  }
}
.preceptor-points__item {
  background: #FFFAF1;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.preceptor-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}
.preceptor-points__icon img {
  max-width: 100%;
  max-height: 100%;
}
.preceptor-points__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
}
@media (max-width: 480px) {
  .preceptor-points__title {
    font-size: 15px;
  }
}
.preceptor-points__text {
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* 福利厚生 制度アイテム */
.benefit-item {
  padding: 20px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.benefit-item:first-child {
  padding-top: 0;
}
.benefit-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.benefit-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
@media (max-width: 480px) {
  .benefit-item__title {
    font-size: 15px;
  }
}
.benefit-item__note {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: #e67e3c;
  padding: 2px 8px;
  border-radius: 10px;
}
.benefit-item__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}
.benefit-item__desc small {
  font-size: 12px;
  color: #666666;
}
.benefit-item__list {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.benefit-item__list li {
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}

/* 1日の流れテーブル */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.schedule-table tr:last-child {
  border-bottom: none;
}
.schedule-table th {
  font-size: 14px;
  font-weight: 600;
  color: #E97F4B;
  text-align: left;
  padding: 16px 20px 16px 0;
  vertical-align: top;
  white-space: nowrap;
  width: 100px;
}
@media (max-width: 480px) {
  .schedule-table th {
    font-size: 13px;
    padding: 12px 12px 12px 0;
    width: 80px;
  }
}
.schedule-table td {
  font-size: 14px;
  color: #333333;
  padding: 16px 0;
  line-height: 1.8;
  vertical-align: top;
}
@media (max-width: 480px) {
  .schedule-table td {
    font-size: 13px;
    padding: 12px 0;
  }
}

/* 専門職のキャリアパス（階段状ステップ） */
.career-path {
  margin-top: 8px;
}
.career-path__note {
  font-size: 13px;
  color: #666666;
  text-align: right;
  margin: 0 0 16px;
}
.career-path__steps {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
@media (max-width: 768px) {
  .career-path__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
.career-path__step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .career-path__step:nth-child(2) {
    margin-bottom: 34px;
  }
  .career-path__step:nth-child(3) {
    margin-bottom: 68px;
  }
  .career-path__step:nth-child(4) {
    margin-bottom: 102px;
  }
  .career-path__step:nth-child(5) {
    margin-bottom: 136px;
  }
}
.career-path__desc {
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
  text-align: center;
  margin: 0 0 8px;
}
@media (min-width: 769px) {
  .career-path__desc {
    min-height: 3em;
  }
}
.career-path__box {
  border-radius: 8px;
  padding: 16px 10px;
  text-align: center;
  color: #ffffff;
}
.career-path__box--1 {
  background: #f0a05a;
}
.career-path__box--2 {
  background: #ea8b3c;
}
.career-path__box--3 {
  background: #e0761d;
}
.career-path__box--4 {
  background: #c85f14;
}
.career-path__box--5 {
  background: #a8490c;
}
.career-path__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .career-path__title {
    font-size: 16px;
  }
}
.career-path__salary {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
