@charset "UTF-8";

/* #category .box-title .sub {
  color: #7c7c7c;
} */
#category .ct-list {
  border-bottom: 1px solid #dcdcdc;
}
#category .ct-contents {
  border-top: 1px solid #dcdcdc;
}
#category .ct-contents dl {
  margin: 0;
  padding: 15px 0;
}
#category .ct-ctList_icon img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#category .ct-contents dt {
  width: 100%;
  font-size: 14px;
  line-height: 26px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #000;
}
#category .ct-contents dd {
  padding: 0 11px;
  margin-left: 0;
}
#category .ct-contents dd .ct-ctList_ctType-contents {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
#category .ct-contents dd .ct-ctList_ctType-contents li {
  width: 20%;
  color: rgb(116, 116, 116);
}
#category .ct-contents dd a {
  display: inline-block;
  height: 100%;
  font-size: 12px;
  line-height: 26px;
}
#category .ct-contents dd a span {
  padding-left: 5px;
}

@media (max-width: 767px) {
  #category {
      padding: 0 10px;
  }
  #category .ct-list {
    border-bottom: 0;
  }

  /* toggle area */
  #category .ct-contents dl {
    border: solid 1px rgb(0, 0, 0);
    padding: 0;
  }
  #category .ct-contents dt {
    font-size: 11px;
    padding-bottom: 0;
    font-weight: normal;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 11px 16px;
    width: calc(100% - 30px);
  }
  #category .ct-contents dd {
    display: none;
    padding: 0;
  }
  #category .ct-contents dd .ct-ctList_ctType-contents li {
    width: 43%;
    font-size: 10px;
    padding: 0 8px 0 16px;
  }
  #category .ct-contents dd .ct-ctList_ctType-contents li:nth-child(even) {
    padding: 0 16px 0 8px;
  }
  #category .ct-contents dd a {
    display: inline-block;
    width: 100%;
    height: auto;
    border-top: 1px solid #ccc;
    padding: 15px 0;
    font-size: 10px;
    display: grid;
    line-height: 15px;
  }
  #category .ct-contents dd a span {
    padding-left: 0;
  }
  #category .ct-contents {
    margin-bottom: 10px;
    border-top: 0;
  }

  /* toggleボタン */
  .ct-contents dt:before,
  .ct-contents dt:after {
    content: '';
    position: absolute;
    right: 9px;
    width: 15px;
    height: 1px;
    background: #000;
    transition: all .3s;
  }
  .ct-contents dt:after {
    transform: rotate(0);
  }
  .ct-contents dt.selected:before,
  .ct-contents dt.selected:after {
    transition: all .3s;
  }
  .ct-contents dt:before {
    opacity: 0;
  }
  .ct-contents dt.selected:before {
    opacity: 1;
  }
  .ct-contents dt.selected:after {
    transform: rotate(90deg);
  }
}