/* ==========================================
  商品グループページ
========================================== */
/* タイトルエリア */
.product-group-title-area {
  margin-top: 32px;
}

@media screen and (min-width:768px) {
  .product-group-title-area {
    margin-top: 40px;
  }
}

.product-group-title-area__title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .product-group-title-area__title {
    font-size: 38px;
  }
}

.product-group-title-area__content {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .product-group-title-area__content {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 40px;
  }
}
.product-group-title-area__image {
  max-width: 322px;
  aspect-ratio: 322 / 181;
  flex-shrink: 0;
}

.product-group-title-area__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-group-title-area__text {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .product-group-title-area__text {
    font-size: 18px;
  }
}

/* ==========================================
  商品グループ表示パーツ（下層カテゴリ）
========================================== */
.fs-c-subgroup {
  margin-top: 50px;
}

@media screen and (min-width:768px) {
  .fs-c-subgroup {
    margin-top: 70px;
  }
}

.fs-c-subgroup .fs-c-listControl {
  display: none;
}

.fs-c-subgroupList {
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fs-c-subgroupList__item {
  width: 146px;
  height: 40px;
  flex-grow: unset;
  flex-basis: unset;
  margin: 0;
}

@media screen and (min-width:768px) {
  .fs-c-subgroupList__item {
    width: 260px;
    height: 50px;
  }
}

.fs-c-subgroupList__link {
  padding: 0 4px;
  border: none;
  text-align: center;
  font-size: 12px;
  color: var(--body-font-color);
  background-color: #f3f3f3;
}

@media screen and (min-width:768px) {
  .fs-c-subgroupList__link {
    font-size: 14px;
  }
}

.fs-c-subgroupList__link::after {
  display: none;
}



/* ==========================================
  商品グループエリア
========================================== */
/* フィルター */
.fs-c-productList__controller {
  flex-direction: row-reverse;
}

/* 下部のフィルターは非表示 */
.fs-c-productList__controller:not(:first-of-type) {
  display: none;
}

.fs-c-sortItems {

}

.fs-c-listControl {
  justify-content: flex-start;
}

.fs-c-productList__list__item {
  border: none;
}

/* デフォルトの画像と説明を非表示 */
.fs-c-subgroupList__image {
  display: none;
}

.fs-c-subgroupList__comment {
  display: none;
}