/* 全体 */
.clients {
  background: #f9fafb;
  padding: 80px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.clients-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}

.clients-sub {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 50px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.industry {
  border-right: 1px solid #e5e7eb;
  padding-right: 16px;
}

.industry:nth-child(5),
.industry:nth-child(10) {
  border-right: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ヘッダー（アイコン＋タイトル） */
.industry-header {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 10px;
  min-height: 52px;
}


.industry-header h3 {
  line-height: 1.5;
  margin: 0;
}

.industry-header img {
  width: 40px;
  height: 40px;
  margin: 0;
  display: block;
}

/* 折りたたみ */
.more {
  display: none;
}

/* ボタン */
.toggle-btn {
  margin-top: 8px;
  font-size: 12px;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.toggle-btn:hover {
  text-decoration: underline;
}

/* タイトル */
.clients-title {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
}

/* スマホ */
@media (max-width: 640px) {
  .clients-title {
    font-size: 22px;
    line-height: 1.6;
    padding: 0 10px;
  }
}

.clients-sub {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 50px;
}

/* グリッド */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 16px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* 各業界 */
.industry {
  border-right: 1px solid #e5e7eb;
  padding-right: 16px;
}

.industry:nth-child(5),
.industry:nth-child(10) {
  border-right: none;
}

/* 業界タイトル */
.industry h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

/* リスト */
.industry ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry li {
  position: relative;
  padding-left: 1em;   /* 中黒分の余白 */
  font-size: 13px;
  line-height: 1.7;    /* ←重要：2行でも見やすい */
  color: #374151;
  margin-bottom: 6px;
}

/* 中黒を疑似要素で追加 */
.industry li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }
}