/* パートナーエリア全体のスタイリング */
.partners-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", "Meiryo", verdana, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

.partners-title {
  font-size: 2.6em;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  color: #111;
}

/* カテゴリーごとのブロック */
.partners-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.05em;
}

/* ロゴのリスト */
.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* 縦幅がバラバラでも、上下中央で綺麗に揃えます */
  gap: 24px; /* ロゴ間の余白 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.partners-list li a {
  display: block;
  transition: opacity 0.3s ease;
}

.partners-list li a:hover {
  opacity: 0.6; /* ホバー時の透過エフェクト */
}

/* ★固定サイズ指定を解除し、画像の本来のサイズで表示 */
.partners-list li img {
  max-width: 100%; /* 親要素（画面幅など）をはみ出さないためのストッパー */
  height: auto;
  display: block;
}

/* --- スマートフォン用のレスポンシブ対応 --- */
@media screen and (max-width: 768px) {
  .partners-area {
    padding: 40px 16px;
  }
  
  .partners-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .partners-category {
    margin-bottom: 40px;
  }

  .partners-list {
    gap: 16px; /* スマホ時の余白を少し詰める */
  }
}