/* カテゴリ・サブカテゴリページ */
/* PC専用 */

/* .category-list-menu
=========================================================== */
.category-list-menu {
  --currentColor: #000;
  --borderProperty: 2px solid #000;
}
.category-list-menu {
  margin-bottom: 40px;
  overflow: auto;
  background-color: transparent;

  .page-header-title.large + & {
    margin-top: -20px;
    margin-bottom: 50px;
  }

  > ul {
    display: flex;
    justify-content: center;
    overflow: auto;
  }

  > ul > li {
    > :is(a, span) {
      display: grid;
      place-items: center;
      min-width: initial;
      min-height: initial;
      padding-inline: 12px;
      border: none;
      border-left: var(--borderProperty);
      font-size: 16px;
      color: #b2b2b2;
      letter-spacing: normal;
    }

    /* 現在地 */
    > span {
      color: var(--currentColor);
    }

    &:first-of-type> :is(a, span) {
      border-left: none;
    }

    &:last-of-type > :is(a, span) {
      border-right: none;
    }
  }
}

/* .subgenre-list
=========================================================== */
.subgenre-list {
  margin: 40px 0;
}

.subgenre-lists {
  margin-top: 20px;

  a {
    font-size: 1.4rem;
  }
}