﻿.category_tab {
  margin-top: 30px;
  width: 100%;
  min-height: 1px;
  zoom: 1;
  display: flex;
}
.category_tab > li {
  display: flex;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 12.5%;
  height: 52px;
  background-color: #bbb;
}
.category_tab .category_tab__link {
  display: flex;
  padding: 0 5px;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  border-left: solid 1px #fff;
  border-top: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
}
.category_tab .category_tab__link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
}
.category_tab .is-current.category_tab__link {
  color: #666;
  background-color: #fff;
}
.category_tab li:nth-of-type(1) .is-current.category_tab__link {
  border-left: solid 1px #bbb;
}
.category_tab li:nth-last-of-type(1) .is-current.category_tab__link {
  border-right: solid 1px #bbb;
}
.category_tab .is-current.category_tab__link:hover {
  color: #666;
}
@media screen and (max-width: 767px) {
  .category_tab {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .category_tab .category_tab__link {
    width: 100%;
    height: 42px;
    font-size: 0.87rem;
    line-height: 1em;
    border:none;
  }
  .category_tab .is-current.category_tab__link {
    color: #666;
    border:none;
  }
  .category_tab > li {
    width: 25%;
    height: 42px;
    border: none;
    box-shadow: 0 0 0 1px #ddd;
  }
  .category_tab > li:first-child {
    width: 100%;
  }
  .category_tab > li:nth-child(n+6) {
    width: 33.3%;
  }
  .category_tab > li:nth-child(8) {
    width: 33.4%;
  }
  .category_tab li:nth-of-type(1) .is-current.category_tab__link {
    border-left: none;
  }
  .category_tab li:nth-last-of-type(1) .is-current.category_tab__link {
    border-right: none;
  }
}

.more_btn{
  display: table;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 40px;
  color: #fff;
  text-decoration: none;
  background-color: #aaa;
  background-image: url("/common/images/module_link-list_icon_s.png");
  background-size: 28px 8px;
  background-position: 20px center;
  background-repeat: no-repeat;
  cursor: pointer;
}