/* =====================
   Job Detail 共通
   ===================== */

.job-detail {
  padding: 80px 0;
}

.job-detail .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   ページ大見出し（募集職種）
   ===================== */

.job-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd;
}

.job-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 8px;
}

.job-lead {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* =====================
   中セクション（仕事内容・募集要項）
   ===================== */

.job-section {
  margin-bottom: 32px;
}

.job-section:last-child {
  margin-bottom: 0;
}

/* 中見出し */
.job-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  padding: 0;
}

/* 左ライン装飾は完全に無効 */
.job-section .section-title::before {
  display: none;
}

/* =====================
   仕事内容
   ===================== */

.job-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.job-description p {
  margin: 0 0 12px;
}

.job-description p:last-child {
  margin-bottom: 0;
}

/* =====================
   募集要項
   ===================== */

.job-require {
  margin-top: -16px;
}

.job-dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px 24px;
  padding: 28px;
  background: #f7f9fb;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
}

.job-dl dt {
  font-weight: 700;
  color: #333;
}

.job-dl dd {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.job-dl .highlight {
  color: #b40000;
  font-weight: 700;
}

.job-dl small {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: #777;
}

/* =====================
   応募ボタン
   ===================== */

.job-apply {
  margin-top: 56px;
  text-align: center;
}

.job-apply .btn {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* =====================
   SP対応（コンパクト重視）
   ===================== */

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

  .job-header {
    margin-bottom: 28px;
    padding-bottom: 16px;
  }

  .job-section {
    margin-bottom: 24px;
  }

  .job-section .section-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .job-dl {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .job-dl dt {
    margin-top: 10px;
  }

  .job-apply {
    margin-top: 40px;
  }

  .job-apply .btn {
    padding: 16px 36px;
    font-size: 1rem;
  }
}
