/******************************/
/* category */
/******************************/
.p-category__ttl {
  margin: 0 0 10px;
  line-height: 1.4;
  font-size: 30px;
  color: #A3D3FF;
  font-weight:bold
}

.p-category-free {
  margin-bottom: 60px;
  line-height: 2;
}

.l-side-navi-list__link {
  color: #ffafd3;
  text-decoration: none;
}

.l-side-navi-list__link:hover {
  color: #ffafd3;
  text-decoration: none;
}


/***** カテゴリ一覧 *****/
/* 共通スタイル */
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -15px;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.p-category-list__item {
  padding: 0 10px;
}

.p-category-list__link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  margin: 4px 0;
}

.p-category-list__name {
  display: inline-block;
  min-width: 150px;
  padding: 10px 5px;
  background-color: #fff;
  border: 2px solid #ffafd3;
  border-radius: 50px;
  font-weight: bold;
  color: #ffafd3;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

/* ホバー時に反転 */
.p-category-list__link:hover .p-category-list__name {
  background-color: #ffafd3;
  color: #fff;
}


/* ------------------------------
   レスポンシブ対応（スマホ）
------------------------------ */
@media screen and (max-width: 767px) {
  .p-category-list {
    margin: 0 -10px 30px;
    justify-content: flex-start;
  }

  .p-category-list__item {
    padding: 0 10px;
  }

  .p-category-list__name {
    width: 140px;
    padding: 10px 0;
    margin: 4px 0;
  }

  .p-category-list__link:before {
    display: none !important;
  }

  .p-category-list__img {
    margin-right: 10px;
    margin-bottom: 0;
    width: 75px;
  }
}

.p-category-list__link,
.p-category-list__link:hover,
.p-category-list__link:focus {
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
}




/***** 商品件数・ソート *****/
.p-item-list-head {
  width: 100%;
  padding: 10px 15px 20px;
  box-sizing: border-box;
}

.p-item-list-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.p-item-list-num {
  white-space: nowrap;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 0;
}

.p-item-sort-wrapper {
  display: flex;
  align-items: center; 
  gap: 10px; 
  position: relative;
  overflow: visible;
  z-index: 10;
}


.p-item-sort-select {
  appearance: none;
  background-color: white;
  border: 1px solid #ccc;
  padding: 0px 30px 5px 10px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 100;


}

/* ▼ピンク矢印 */
.p-item-sort-wrapper {
  overflow: visible;
  position: relative;
  z-index: 10;
}

.p-item-sort-wrapper::after {
  content: "▼";
  color: #FF93BA;
  font-size: 12px;
  position: absolute;
  right: 14px;
  top: 12%;

  pointer-events: none;
}

/* IE/Edge対策 */
.p-item-sort-select::-ms-expand {
  display: none;
}



