/* エリア別求人一覧ページ専用スタイル */

/* エリアヘッダーセクション */
.area-header-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #AC0700 0%, #8B0000 100%);
  color: #FFFFFF;
}

.area-header {
  text-align: center;
}

.area-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.area-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.job-count {
  font-size: 1.2rem;
  font-weight: 600;
}

.count-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
}

/* 求人一覧セクション */
.job-list-section {
  padding: 40px 0;
  background-color: #f9fafb;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.company-logo {
  text-align: center;
  margin-bottom: 15px;
}

.company-logo img {
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #6c757d;
  font-size: 2rem;
}

.job-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-header {
  margin-bottom: 15px;
}

.job-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-title a {
  color: #3D3D3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.job-title a:hover {
  color: #AC0700;
}

.company-name {
  font-size: 1rem;
  color: #6c757d;
}

.company-name a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-name a:hover {
  color: #AC0700;
}

.job-details {
  margin-bottom: 15px;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}

.detail-item i {
  margin-right: 8px;
  color: #AC0700;
  width: 16px;
}

.job-description {
  margin-bottom: 15px;
}

.job-description p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 0;
}

.job-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.tag.employment-type {
  background-color: #e3f2fd;
  color: #1976d2;
}

.tag.qualifications {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.job-actions {
  display: flex;
  gap: 10px;
}

.job-actions .btn {
  font-size: 0.85rem;
  padding: 6px 16px;
}

/* 検索結果なし */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.no-results-content i {
  font-size: 4rem;
  color: #dee2e6;
  margin-bottom: 20px;
}

.no-results-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3D3D3D;
}

.no-results-content p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* エリアリンクセクション */
.area-links-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.area-links {
  margin-top: 30px;
}

.area-link-card {
  display: block;
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  color: #3D3D3D;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.area-link-card:hover {
  background-color: #AC0700;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(172, 7, 0, 0.2);
  text-decoration: none;
}

.area-icon {
  margin-bottom: 15px;
}

.area-icon i {
  font-size: 2.5rem;
  color: #AC0700;
  transition: color 0.3s ease;
}

.area-link-card:hover .area-icon i {
  color: #FFFFFF;
}

.area-link-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 991.98px) {
  .area-title {
    font-size: 2rem;
  }
  
  .job-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .job-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .area-header-section {
    padding: 30px 0;
  }
  
  .area-title {
    font-size: 1.8rem;
  }
  
  .area-description {
    font-size: 1rem;
  }
  
  .count-number {
    font-size: 1.5rem;
  }
  
  .job-card {
    padding: 20px;
  }
  
  .job-title {
    font-size: 1.1rem;
  }
  
  .area-link-card {
    padding: 20px 15px;
  }
  
  .area-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .area-title {
    font-size: 1.5rem;
  }
  
  .job-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .job-actions .btn {
    width: 100%;
  }
  
  .area-links .row {
    margin: 0 -5px;
  }
  
  .area-links .col-6 {
    padding: 0 5px;
  }
}
