@charset "UTF-8";

/* ============================================================
   recruit.css - 採用情報ページ固有スタイル
   ※ 中ページ共通スタイル（.page-hero / .inner-title 等）は common.css に記述
   ============================================================ */

/* ===== 採用担当からのメッセージ ===== */
.recruit-message {
  background: #ffffff;
  padding: 60px 0;
}

.message-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.message-photo {
  flex-shrink: 0;
}

.message-body {
  flex: 1;
}

.message-lead {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #102487;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho B1', 'Yu Mincho', '游明朝', serif;
}

.message-body p {
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 16px;
}

.message-name {
  font-size: 1rem;
  font-weight: 700;
  color: #102487;
  text-align: right;
  margin-top: 24px;
  margin-bottom: 0 !important;
}

/* ===== 会社の特徴・働く環境 ===== */
.recruit-features {
  background: #f5f5f5;
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.feature-item {
  background: #ffffff;
  padding: 28px 24px;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: #102487;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #102487;
  margin-bottom: 12px;
  line-height: 1.5;
}

.feature-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.9;
  text-align: left;
}

/* ===== 募集職種・募集要項 ===== */
.recruit-jobs {
  background: #ffffff;
  padding: 60px 0;
}

.job-item {
  margin-bottom: 48px;
}

.job-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  background: #4a6fa5;
  padding: 10px 20px;
  margin-bottom: 16px;
}

.job-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.job-table th,
.job-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

.job-table th {
  width: 160px;
  white-space: nowrap;
  color: #102487;
  font-weight: 500;
  background: #f5f5f5;
}

.job-table td {
  color: #333;
}

/* ===== よくある質問（FAQ） ===== */
.recruit-faq {
  background: #f5f5f5;
  padding: 60px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  overflow: hidden;
}

.faq-q,
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
}

.faq-q {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

.faq-a {
  background: #f9f9f9;
}

.faq-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

.faq-q .faq-label {
  background: #102487;
  color: #ffffff;
}

.faq-a .faq-label {
  background: #f79824;
  color: #000000;
}

.faq-q p,
.faq-a p {
  font-size: 1rem;
  color: #333;
  line-height: 1.9;
  padding-top: 4px;
}

.faq-q p {
  font-weight: 700;
  color: #102487;
}

/* ===== 応募ボタンエリア ===== */
.recruit-apply {
  background: #102487;
  padding: 60px 0;
}

.apply-box {
  text-align: center;
}

.apply-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 500;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f79824;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 16px 60px;
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}

.apply-btn i {
  transition: transform 0.2s;
}

.apply-btn:hover {
  background: #e08800;
}

.apply-btn:hover i {
  transform: translateX(8px);
}

/* ===== 戻るリンク ===== */
.back-link-wrap {
  margin-top: 32px;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: #102487;
  text-decoration: none;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* メッセージ */
  .message-layout {
    flex-direction: column;
    align-items: center;
  }

  /* 特徴グリッド */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* 募集要項テーブル */
  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
  }

  .job-table th {
    border-bottom: none;
  }

  /* 応募ボタン */
  .apply-btn {
    padding: 16px 32px;
    width: 100%;
    justify-content: center;
  }
}
