/* =========================================
   job_post.css – 求人詳細ページ専用CSS（一覧系は recruit.css に統合）
========================================= */

/* --- 求人詳細ページレイアウト --- */
.job-heading {
  background-color: #00b050; /* 緑背景 */
  color: white;              /* 白文字 */
  text-align: center;        /* 中央寄せ */
  font-weight: bold;
  font-size: 1.6rem;         /* サイズ調整は任意 */
  padding: 1rem 2rem;        /* 上下左右の余白 */
  margin: 0rem auto 10rem;         /* 上下余白＋中央寄せ */
  max-width: 100%;           /* 幅いっぱい */
  box-sizing: border-box;    /* パディングを含めた幅計算 */
}

.job-single {
  max-width: 960px;
  margin: 400px auto 0;
  padding: 2rem 1rem;
}

.job-detail-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 2rem;
}

.job-detail-table th,
.job-detail-table td {
  padding: 1rem;    
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.job-detail-table th {
  width: 18%;
  background: #f8f8f8;
  text-align: left;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}

.job-detail-table td {
  width: 82%;
  background: #fff;
  color: #444;
  font-size: 1.6rem;    
}

.job-apply {
  text-align: center;
  margin: 8rem auto;
}

.btn-apply {
  background: #2ecc71;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

/* --- 応募の流れ --- */
.application-flow ol {
  list-style: decimal inside;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

/* --- 認定・スタッフ画像 --- */
.certification img,
.staff-message img {
  display: block;
  max-width: 100%;
  margin: 2rem auto;
}

/* --- FAQセクション --- */
.faq {
  background: #f1f1f1;
  padding: 2rem;
  margin-top: 2rem;
}

.faq-list dt {
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
}

.faq-list dd {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.faq-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
.job-single {
  margin: 0px auto 0;
}
        
.job-detail-table th {
  width: 25%;
  font-size: 1.4rem;
}

.job-detail-table td {
  width: 75%;
  font-size: 1.4rem;    
}    
}    