/* ============================= */
/* 求人情報ページ（recruit.html）  */
/* ============================= */

/* --- ページ全体 --- */
.recruit {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

/* --- ヒーロー --- */
.recruit-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.recruit-hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.recruit-hero p {
  line-height: 2.2;
  max-width: 600px;
  margin: 0 auto;
}

.recruit-bonus {
  font-size: 1.1rem;
  color: #d87b00;
  margin-top: 1.5rem;
}

/* --- ジョブカード共通 --- */
.job-card {
  background: #fdf8f2;
  border-radius: 10px;
  padding: 2rem 2.5rem 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.job-card-title {
  color: #d87b00;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ef7a00;
}

/* interior-page.css の h2::after を上書きで無効化 */
.recruit .job-card-title::after {
  display: none;
}

/* interior-page.css の h3 margin-top を上書き */
.recruit .job-item h3 {
  margin-top: 0;
}

/* --- 2カラムグリッド --- */
.job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  align-items: start;
}

/* --- 各項目 --- */
.job-item {
  margin-bottom: 1.8rem;
}

.job-item h3 {
  color: #d87b00;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  padding: 0.4rem 0.6rem;
  background: rgba(239, 122, 0, 0.08);
  border-left: 3px solid #ef7a00;
  border-bottom: none;
  border-radius: 0 4px 4px 0;
}

.job-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0 0 0.4rem;
  padding-left: 0.2rem;
}

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

.job-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-item ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.95rem;
  line-height: 1.8;
}

.job-item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #d87b00;
}

.job-item strong {
  font-size: 1.05rem;
}

.job-item a {
  color: #d87b00;
  text-decoration: underline;
}

.job-item a:hover {
  text-decoration: none;
}

/* --- 全職種共通カード --- */
.job-common {
  background: #fff;
  border: 2px solid #ef7a00;
}

.job-doctor-cta {
  text-align: center;
  padding: 1rem 0 1.2rem;
}

.job-doctor-btn {
  display: inline-block;
  background: #d87b00;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.8rem 2.4rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.job-doctor-btn:hover {
  background: #b86a00;
}

/* --- 応募リンク --- */
.job-apply-link {
  text-align: center;
  font-size: 0.95rem;
  padding: 0.8rem 0 1rem;
  margin: 0;
}

.job-apply-link a {
  color: #d87b00;
  text-decoration: underline;
}

.job-apply-link a:hover {
  text-decoration: none;
}

/* --- CTAボタン --- */
.recruit-cta {
  text-align: center;
  padding: 1rem 0 3rem;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .job-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .job-card {
    padding: 1.5rem 1.2rem 0.5rem;
    margin-bottom: 1.5rem;
  }

  .recruit-hero h1 {
    font-size: 1.4rem;
  }

  .recruit {
    padding: 1rem 0.8rem 0;
  }
}
