/* 全体のセクション設定 */
.recruit-summary {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f9fbfd;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.section-lead {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* 4列のグリッドレイアウト */
.summary-grid {
  display: grid;
/* 4列のグリッドレイアウト */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
/* 5列のグリッドレイアウト */
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

/* 各カードのデザイン */
.summary-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-inner {
  padding: 30px 20px;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.card-value {
  font-size: 1.8rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0066cc; /* コーポレートカラーに合わせて変更 */
  margin-bottom: 5px;
}

.card-detail {
  font-size: 0.85rem;
  color: #888;
}
