.category_tag-toggle-check {
  display: none;
}

.category_tag-list {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.category_tag-list a {
  display: inline-block;
  margin: 4px 6px;
  font-size: 14px;
  color: #006699;
  text-decoration: underline;
}

.category_tag-toggle-label {
  display: block;
  text-align: center;
  color: #006699;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
}

/* ✅ 展開処理：input → div → label なので、以下の順で書く！ */
.category_tag-toggle-check:checked + .category_tag-list {
  max-height: 1000px;
  overflow: visible;
}

.category_tag-toggle-check:checked + .category_tag-list + .category_tag-toggle-label::before {
  content: "－ 閉じる";
}

.category_tag-toggle-label::before {
  content: "＋ もっと見る";
}
