/* ================================
   HKS-5002 専用CSS
   /css/hks5002.css
   ================================ */

.hks5002-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.hks5002-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 6px solid #005bac;
  padding-left: 12px;
}

.hks5002-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hks-card {
  background: #f8f8f8;
  border-left: 6px solid #005bac;
  padding: 20px;
  border-radius: 4px;
}

.hks-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.hks-card p {
  line-height: 1.7;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .hks5002-cards {
    grid-template-columns: 1fr;
  }

  .hks5002-title {
    font-size: 24px;
  }
}