/* 社員募集ページ専用スタイル */

/* タブナビ（学校案内ページは6列） */
.tab-nav__list {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ===== ヒーロー（社員募集ページ専用背景） ===== */
.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.7), rgba(196, 30, 58, 0.7)), 
              url('../images/ttl_recruit_.jpg') center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero__content h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: 4px;
}

.hero__content p {
  font-size: 18px;
  font-weight: 300;
}

/* アラートボックス（募集状況） */
.alert-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 15px;
  padding: 25px 30px;
  border-left: 5px solid #ffc107;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #856404;
  text-align: center;
}

.alert-box--active {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 5px solid #28a745;
  color: #155724;
}

/* 募集要項テーブル */
.recruitment-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.recruitment-table th,
.recruitment-table td {
  padding: 25px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.recruitment-table th {
  background: linear-gradient(135deg, #dc3545 0%, #c41e3a 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  width: 30%;
  vertical-align: top;
}

.recruitment-table td {
  font-size: 16px;
  color: #444;
  line-height: 1.9;
}

.recruitment-table tr:last-child th,
.recruitment-table tr:last-child td {
  border-bottom: none;
}

.recruitment-table tr:hover td {
  background: #fff5f5;
}

/* お問い合わせボックス */
.contact-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  border: 2px solid #dc3545;
}

.contact-box__title {
  font-size: 20px;
  color: #666;
  margin-bottom: 15px;
}

.contact-box__tel {
  font-size: 42px;
  font-weight: 900;
  color: #dc3545;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Meiryo", sans-serif;
  letter-spacing: 2px;
}

.contact-box__detail {
  font-size: 15px;
  color: #666;
  margin-top: 15px;
}

/* インフォボックス */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 15px;
  padding: 30px;
  border-left: 5px solid #2196f3;
  margin: 30px 0;
}

.info-box__title {
  font-size: 20px;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 15px;
}

.info-box__text {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

/* 特徴カードグリッド */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 2px solid #f0f0f0;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.15);
  border-color: #dc3545;
}

.feature-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.feature-card__icon {
  font-size: 48px;
  color: #dc3545;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* タブレット対応 (768px - 1024px) */
@media (max-width: 1024px) {
  .tab-nav__list {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .tab-nav__item {
    padding: 16px 15px;
    font-size: 13px;
    min-height: 55px;
  }
}

/* スマホ対応 */
@media (max-width: 767px) {
  .hero {
    height: 300px;
  }

  .hero__content h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero__content p {
    font-size: 14px;
  }

  .tab-nav__list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  
  .tab-nav__item {
    padding: 18px 12px;
    font-size: 14px;
    border-radius: 8px;
    min-height: auto;
  }

  .recruitment-table {
    font-size: 14px;
  }

  .recruitment-table th,
  .recruitment-table td {
    padding: 18px 15px;
    display: block;
    width: 100%;
  }

  .recruitment-table th {
    border-bottom: none;
    padding-bottom: 10px;
  }

  .recruitment-table td {
    padding-top: 0;
  }

  .recruitment-table tr {
    display: block;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
  }

  .recruitment-table tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .contact-box__tel {
    font-size: 32px;
  }

  .info-box {
    padding: 25px 20px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card__icon {
    font-size: 40px;
  }

  .feature-card__title {
    font-size: 18px;
  }
}
.indeed-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.indeed-btn {
  display: inline-block;
  background: #003087;
  color: #fff;
  padding: 15px 50px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.indeed-btn:hover {
  background: #0044cc;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 48, 135, 0.3);
}