@charset "utf-8";
/* カテゴリーnav */
.nav_category {
  background-color: #fff;
  margin: 0 auto 2em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 1040px;
}

.category_list {
  display: flex;
}

.category_list_item {
  display: flex;
  position: relative;
}

.category_list_item .line {
  position: absolute;
  top: 50%;
  right: -0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background-color: #082839;
}

.category_list_item .link {
  position: relative;
  display: inline-block;
  font-size: var(--font-size-small);
  word-break: keep-all;
  padding: 0.3em  1.3em;
  margin: 0.7em 0.5em; 
}

.category_list_item .link::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #082839;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s; 
  }
  
  .category_list_item .link:hover::after {
  transform: scale(1, 1);
  }

/* nav アクティブ時のアクション */
.category_list_item.active {
  background-color: #082839;
  color: #fff;
}

/* クリエイター一覧 */
.creator_catalog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5em;
  margin-bottom: 2em;
}

.creator_detail_wrapper {
  width: 48%;
  margin-bottom: 1em;
}

.js-based{
  display: none;
}

.creator_detail_img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.creator_detail_txt {
  margin-top: 0.5em;
}

@media screen and (min-width: 1000px) {
  .creator_catalog {
    justify-content: start;
    padding-left: 1em;
  }

  .creator_detail_wrapper {
    width: 19%;
    margin-bottom: 2em;
  }

  .js-based{
    display: none;
  }
}

/* ページネーション */

.pagination {
  text-align: center;
}

.pagination_btn {
  width: 2em;
}