.category-anker {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-anker li {
  position: relative;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.category-anker li.disabbled {
  background: #D2D2D0;
}

.category-anker a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .category-anker li:hover {
    background: #F1C72F;
    transition: 0.3s;
  }

  .category-anker li:hover a {
    color: #333;
    text-decoration: none;
    opacity: 1;
    transition: 0.3s;
  }
}

.category-anker li.disabbled a {
  pointer-events: none;
  color: #A2A2A2;
}

.category-list {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.category-item {
  width: 100%;
  margin-top: 20px;

}

.category-item-title {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.category-item-title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.category-item-title.active {
  background: #333;
  color: #fff;
}

.category-item-title.active::after {
  content: "-";
}

.category-item-list {
  display: none;
  padding: 0 20px;
}

.category-item-list-item {
  margin-top: 15px;
  padding-left: 1em;
  list-style: inside;
}

.category-item-list-item:first-child {
  padding-left: 0;
  list-style: none;
}

.category-item-list-item a {
  text-decoration: underline;
  letter-spacing: 0.04em;
}

.category-item-list-item:first-child a {
  
}

@media screen and (max-width: 600px) {
  .category-anker {
    width: 230px;
    margin: 20px auto 0;
    flex-wrap: wrap;
  }

  .category-anker li {
    margin: 0 5px;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .category-anker li:nth-child(n + 6) {
    margin-top: 10px;
  }

  .category-anker a {
    font-size: 14px;
  }

  .category-list {
    padding: 0;
  }

  .category-item-title {
    padding: 8px 12px;
    font-size: 14px;
  }

  .category-item-list {
    padding: 0 10px;
  }

  .category-item-list-item a {
    font-size: 14px;
  }
}

/*メーカー
*********************************/
.maker-anker {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maker-anker li {
  position: relative;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.maker-anker li.disabbled {
  background: #D2D2D0;
}

.maker-anker a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .maker-anker li:hover {
    background: #F1C72F;
    transition: 0.3s;
  }

  .maker-anker li:hover a {
    color: #333;
    text-decoration: none;
    opacity: 1;
    transition: 0.3s;
  }
}

.maker-anker li.disabbled a {
  pointer-events: none;
  color: #A2A2A2;
}

.maker-list {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.maker-item {
  width: calc(50% - 10px);
  margin-top: 20px;
}

.maker-item-title {
  display: block;
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 600px) {
  .maker-item-title:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
  }
}

@media screen and (max-width: 600px) {
  .maker-anker {
    width: 230px;
    margin: 20px auto 0;
    flex-wrap: wrap;
  }

  .maker-anker li {
    margin: 0 5px;
    width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .maker-anker li:nth-child(n + 6) {
    margin-top: 10px;
  }

  .maker-anker a {
    font-size: 14px;
  }

  .maker-list {
    padding: 0;
  }

  .maker-item {
    width: 100%;
  }

  .maker-item-title {
    padding: 8px 12px;
    font-size: 14px;
  }
}

