/* ===== 一覧全体 ===== */
.brand-list {
  width: 760px;
  margin: 40px auto;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  box-sizing: border-box;
}

/* ===== 枠（aではなくdiv） ===== */
.brand-item {
  flex: 0 0 calc(25% - 12px);
  box-sizing: border-box;
  min-width: 0;
}

/* ===== リンク ===== */
.brand-item > a {
  display: block;
  height: 100%;
  padding: 8px;

  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.brand-item > a:hover {
  border-color: #111;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* ===== 画像 ===== */
.brand-image {
  height: 96px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.brand-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== ブランド名 ===== */
.brand-name {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  white-space: normal;
  word-break: break-word;     /* 英字・長文対応 */
  overflow-wrap: anywhere;    /* モダンブラウザ対策 */
  line-height: 1.25;
  margin-bottom: 0;
}

/* ===== スマホ ===== */
@media screen and (max-width: 768px) {
  .brand-list {
    width: 100%;
    padding: 0 12px;
  }

  .brand-item {
    flex: 0 0 100%;
  }
}
