/* ===========================================
   採用情報ページ専用スタイル
   job_openings.css
   =========================================== */

/* パンくずリスト */
.breadcrumb {
  padding: 16px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  color: var(--slate-light);
}

.breadcrumb-list a {
  color: var(--text-medium);
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--navy);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}

/* ページヒーロー */
.page-hero {
  padding: 60px 0 50px;
  text-align: center;
  background: 
    radial-gradient(600px 300px at 30% 0%, rgba(201,169,97,.12), transparent 70%),
    radial-gradient(500px 300px at 70% 100%, rgba(26,35,50,.06), transparent 60%),
    var(--bg-warm);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}

/* 採用コンテンツ */
.recruit-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.recruit-message {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow);
}

.recruit-message p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}

.recruit-message p:last-child {
  margin-bottom: 0;
}

.recruit-note {
  font-size: 16px !important;
  color: var(--text-medium) !important;
  font-weight: 500;
}

/* 採用イントロ */
.recruit-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.recruit-intro p {
  font-size: 16px;
  line-height: 2;
  color: var(--text-medium);
}

/* 求人カード */
.job-card {
  max-width: 760px;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.job-card:last-of-type {
  margin-bottom: 0;
}

.job-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
}

.job-card__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.job-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 4px;
}

.job-card__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.job-card__tag {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,169,97,.15);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
}

.job-card__body {
  padding: 40px;
}

/* 求人詳細テーブル */
.job-detail {
  margin: 0;
}

.job-detail__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.job-detail__row:first-child {
  padding-top: 0;
}

.job-detail__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.job-detail dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 3px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.job-detail dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
}

.job-detail dd p {
  margin: 0 0 8px;
}

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

@media (max-width: 768px) {
  .job-card__header {
    padding: 24px 24px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .job-card__tag {
    margin-left: 0;
  }

  .job-card__body {
    padding: 28px 24px;
  }

  .job-detail__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }

  .job-detail dt {
    color: var(--gold);
    font-size: 12px;
  }
}

/* CTAセクション */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(600px 300px at 20% 50%, rgba(201,169,97,.15), transparent 70%),
    radial-gradient(500px 300px at 80% 50%, rgba(201,169,97,.08), transparent 60%);
  pointer-events: none;
}

.cta-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ナビゲーション現在地表示 */
.nav a.is-current {
  color: var(--navy);
  background: var(--gold-pale);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 36px;
  }
  
  .recruit-message {
    padding: 40px 24px;
  }
  
  .recruit-message p {
    font-size: 16px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ===========================================
   フッタースタイル
   =========================================== */

.footer {
  background: var(--navy-dark);
  color: var(--slate-pale);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h4 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.footer p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.75;
}

.footer-tel a {
  color: inherit;
  text-decoration: none;
}

.footer-tel a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
  font-size: 13px;
  color: var(--slate);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer h4 {
    margin-bottom: 16px;
  }
}
