@charset "UTF-8";

.block-topic-path {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.pane-topic-path .block-topic-path--list {
  align-items: center;
}

.block-topic-path--btn {
  padding: 3px 30px 2px 12px;
  background-color: #303030;
  border-radius: 16px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
  user-select: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif
}
.block-topic-path--btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 10px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg)
}
.block-topic-path--btn:hover {
  opacity: 0.8;
}

.block-topic-path.is-open {
  max-height: 1000px !important;
}

.block-topic-path.is-open .block-topic-path--btn {
  display: none;
}

.block-topic-path--list li:last-of-type {
  margin-right: 0;
  padding-right: 10px
}
.block-topic-path--list li:last-of-type::after {
  content: none;
}