.category_base img {width: 100%;}
.category_base h2 {
    margin-bottom: 7px;
    padding-left: 10px;
    border-left: solid 6px #0dab8a;
}

/*カテゴリボタン*/
.category_base ul[class^="col_"]>li a, .connection ul[class^="col_"]>li a {
    border: 1px solid #222222;
    border-radius: 5px;
    padding: 7px 1px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*アコーディオン*/
.category_base ul[class^="brand_"] {
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px;
}
.category_base .accordion {
	width: 100%;
	margin: 0 auto;
}
.category_base .menu {
	font-size: 18px;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	user-select: none;
	background-color: #efefef;
	margin-bottom: 10px;
}
.category_base .contents {
	text-align: center;
	/* display: none; */
	/* transition-duration: 0.4s; */
	margin-bottom: 20px;
}
.category_base .contents.is-open {
	border: solid 1px #000;
	padding: 10px;
	display: block;
}
.category_base ul[class^="brand_"] li:hover {
	transform: scale(1.1);
	transition-duration: 0.4s;
}
/*アコーディオン +-*/
.category_base .menu {
	position: relative;
}
/* .category_base .menu::before {
	position: absolute;
    top: 50%;
    right: 3%;
    display: inline-block;
    content: "";
    width: 14px;
    height: 2px;
    margin-top: -2px;
    background-color: #333;
}
.category_base .menu::after {
	position: absolute;
    top: 50%;
    right: 3%;
    display: inline-block;
    content: "";
    width: 14px;
    height: 2px;
    margin-top: -2px;
    background-color: #333;
}
.category_base .menu::after {
    transform: rotate(90deg);
    transition: transform 0.5s;
}
.category_base .menu.is-open::after {
    transform: rotate(0deg);
} */

/*------------------------------------------
タブアコーディオン
------------------------------------------*/
.category_base .wrap_tab {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* background-color: #eee; */
    margin: 3% 0;
}
/* タブ中身 */
.category_base .tab-container{
    width: 100%;
    display: flex;
    border: 0;
}
.category_base .tab-container > li {
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-grow: 1;
    height: 3em;
    border: #222 1px solid;
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
    transition: 0.5s all;
    line-height: 1.2em;
    background-color: #fff;
    border-radius: 50px;
    position: relative;
}
.category_base .tab-container > li::after {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    /*top: -4px;*/
    right: 11%;
    /* transform: translateY(-50%); */
    border-top: solid 1px #222;
    border-right: solid 1px #222;
    transform: rotate(135deg);
}

.category_base .tab-container > li:nth-child(1):after {
    /*transform: rotate(45deg);
    top: 17px;*/
    right: 11%;
}

.category_base .tab-container > li.current::after{
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
.category_base .tab-container > li.tab.current {
    color: #fff;
    background-color: #0dac8c;
    transition: 0.5s all;
}
.category_base .arrow {
    position: relative;
    display: inline-block;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
}
.category_base .arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.category_base .menu-container {
    position: relative;
    width: 100%;
    padding: 0;
}
.category_base .menu-container > .menu-box {
    display: none;
    padding: 10px 0 0;
    /* background-color: #eee; */
}
.category_base .menu-box {
    box-sizing: border-box;
    padding: 30px 20px 20px;
}
.category_base .tab-container > li.tab:hover,
.category_base .tab-container > li.tab.current:hover{
    opacity: 1;
}

.category_base .menu-container{
    position: relative;
    width: 100%;
    padding: 0;
}
.category_base .menu-container > .menu-box{
    display: none;
    padding: 10px 0 0;
    /* background-color: #eee; */
    border: none;
}
.category_base .menu-container > .menu-box.current{
    display: block;
}

.category_base ul[class^="col_"]>li a {
    height: 63px;
}