/* 全体リセット */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    padding: 0;
    margin: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-color: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.st_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
    overflow: hidden;
}

.sub_bar {
    max-width: 700px;
    width: 90%;
    margin: 3% auto 6%;
    text-align: center;
}

/*========== タブメニュー ==========*/
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 95%;
}

.tab-wrap::after {
    content: '';
    width: 100%;
    height: 3px;
    background: #000;
    display: block;
    order: -1;
}

.tab-label {
    color: White;
    font-size: 17px;
    background: #999;
    font-weight: bold;
    text-align: center;
    padding: 10px 0.5em;
    order: -1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
    margin-right: 5px;
    z-index: 1;
}

.tab-label:last-of-type {
    margin-right: 0;
}

.tab-switch {
    display: none;
}

.tab-switch:checked + .tab-label {
    background: #000;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: opacity 0.5s;
}

.tab-switch:checked + .tab-label + .tab-content {
    height: auto;
    overflow: visible;
    padding: 30px 0;
    opacity: 1;
}

.brand_list{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5% 2.25%;
}

.brand_list .brand{
    width: 18.2%;
    margin-bottom: 2%;
    text-align: center;
    border: 1px solid #000000;
    background: #fff;
    transition: background 0.3s;
    overflow: hidden;
}

.brand_list .brand:hover {
    background-color: #f0f0f0;
}

.brand_list .brand a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    width: 100%;
    min-height: 60px;
    padding: 10px 5px;
}

.brand_list .brand p {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    word-break: break-word;
}

/* 下部ボタン */
.btn1_1 {
    width: 400px;
    list-style: none;
    margin: 40px auto;
    padding: 0;
}

.btn_cate2 a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    background-color: #000;
    padding: 15px 10px;
    display: block;
    text-align: center;
    border-radius: 4px;
}

/*========== モバイル対応 (max-width: 750px) ==========*/
@media only screen and (max-width: 750px) {
	.st_wrap {
		width: 100%;
	}
	
    .tab-label {
        font-size: 13px;
    }

    .brand_list {
        gap: 2% 2%;
    }
	
    .brand_list .brand {
		width: 32%;
    }	

    .brand_list .brand p {
        font-size: 11px;
    }

    .btn1_1 {
        width: 80%;
    }
}