/* categoryの見出し */
h2.category-index {
  margin: 0;
  margin-bottom: 20px;
}

/* categoryの説明 */
.product-list__freespace {
  margin: 0;
}

.category-exp-area {
  text-align: center;
}

@media (max-width: 480px) {
  .category-exp-area {
     text-align: left;
  }
}

.category-exp-area h6 {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 16px;
}

.category-exp-area h6:first-of-type {
  margin-top: 0;
}

/* categoryのイメージ画像 */
.category-exp-area img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.category-exp-area .sp-image {
  display: none;
}

@media (max-width: 480px) {
  .category-exp-area  .pc-image {
	display: none;
  }
  
  .category-exp-area .sp-image {
    display: block;
  }
}




/*------川嶋追加------*/


.category-exp-area-bottom {
  text-align: center;
}


















/* 商品一覧 */
.product-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 70px;
  list-style-type: none;
}

.product-list__unit__inner {
  position: relative;
}

.product-list__unit {
  margin-bottom: 70px;
  width: 33%;
}

@media (max-width: 960px) {
  .product-list__unit {
    width: 30%;
  }
}

@media (max-width: 640px) {
  .product-list__unit {
    width: 50%;
  }
  
  .product-list__unit__inner {
    padding: 0 10px;
  }
}


/* お気に入りボタン */
.favorite-button {
  position: absolute;
  bottom: 0;
  right: 20px;
}

@media (max-width: 640px) {
  .favorite-button {
     right: 10px;
  }
｝  