/**
 * トップページ - ブランド一覧 6カラムグリッド
 */

.top_brand .brand_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top_brand .brand_grid li {
  margin-bottom: 0;
  padding: 1rem;
  box-sizing: border-box;
}

.top_brand .box {
  padding: 3rem 3rem 2rem
}

.top_brand .brand_added {
  margin-top: 4rem;
}

.top_brand .brand_added .top_ttl {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .top_brand .brand_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
