h2#RecommendBrandTitle {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 0;
}
#RecommendBrandTitle span {
    padding: 0;
}
#RecommendBrandWrap {
    border-top: 1px solid #dbdbdb;
    margin: 0 auto;
    padding: 1.4em 1em 1em;
}
#RecommendBrandListWrap {
    display: grid;
    gap: 15px;
    margin: 0 auto;
    padding: 0;
}
#RecommendBrandListWrap .BrandList dt {
    border: 1px solid #c7c7c7;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3px;
    height: 60px;
    overflow: hidden;
    text-align: center;
}
#RecommendBrandListWrap .BrandList dt a {
    display: block;
}
#RecommendBrandListWrap .BrandList dd {
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
}
#RecommendBrandListWrap h3 {
    text-align: center;
}
/* PC時（7カラム） */
@media (min-width: 768px) {
    #RecommendBrandListWrap {
        grid-template-columns: repeat(7, 1fr);
    }
    .BrandList {
        display: block;
    }
}

/* SP時（3カラム、9つまで表示） */
@media (max-width: 767px) {
    #RecommendBrandListWrap {
        grid-template-columns: repeat(3, 1fr);
    }
    .BrandList {
        display: none;
    }
    .BrandList:nth-child(-n+9) {
        display: block;
    }
}

#toggleButton {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #4f4f4f;
    cursor: pointer;
    font-weight: bold;
}