.l-bottom {
  border-top: 1px solid #f2f2f2; 
}

.product_list .u-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .product_list .u-container {
    padding: 0 8.3%;
  }
}

@media screen and (min-width: 1200px) {
  .product_list .u-container {
    padding: 0 100px;
  }
}

/* パンくず */
.product_list .c-breadcrumbs {
  color: var(--text-gray-color);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-top: 21px;
}

@media screen and (min-width: 768px) {
  .product_list .c-breadcrumbs {
    font-size: 14px;
    padding-top: 48px;
  }
}

.product_list .c-breadcrumbs a {
  color: var(--text-gray-color);
}

.product_list .c-breadcrumbs__current {
  color: var(--text-green-color);
}

/* 小カテ、小グループ */
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .p-category-list {
    row-gap: 35px;
    margin-bottom: 80px;
  }
}

.p-category-list__item {
  position: relative;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  box-sizing: border-box;
  width: 33.3333%;
  /*height: 96px;
  padding-bottom: 12px;*/
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-category-list__item { 
    width: 20%;
    font-size: 14px;
    /*height: 130px;
    padding-bottom: 14px;*/
  }
}

.p-category-list__item img {
  margin: 0;
}

.p-category-list__name {
  /*position: absolute;
  bottom: 0;
  left: 0;
  right: 0;*/
  font-weight: 500;
  line-height: 1;
  padding-top: 10px;
  text-align: center;  
}

@media screen and (min-width: 768px) {
  .p-category-list__name {
    padding-top: 20px;
  }
}

/* 一覧 */
.p-pl-wrap.u-container {
  padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .p-pl-wrap.u-container {
    padding-bottom: 100px;
  }
}

.product_list .c-item-list {
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 40px;
  margin-left: 0;
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .product_list .c-item-list {
    column-gap: 32px;
    row-gap: 50px;
  }
}

.product_list .c-item-list__item {
  margin-left: 0;
  margin-right: 0;
  width: calc(50% - 5px);
}

@media screen and (min-width: 768px) {
  .product_list .c-item-list__item {
    width: calc(25% - 24px);
  }
}

.p-category__ttl {
  display: flex;
  align-items: center;  
  font-family: 'Roboto', 'Noto Sans JP', 'Meiryo', 'メイリオ', Helvetica, Arial, sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 15px 0 35px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .p-category__ttl {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 40px 0 40px;
    height: 80px;
  }
}
.p-category__ttl img {
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .p-category__ttl img {
    margin-right: 20px;
  }
}
.p-item-list-head {
  display: none;
  position: relative;
  margin-left: auto;
  padding: 12px 12px;
  width: 88px;
}

@media screen and (min-width: 768px) {
  .p-item-list-head {
    padding: 22px 15px;
    width: 102px;
  }
}

.p-item-list-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -7px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #282D32;
  border-bottom: 1px solid #282D32;
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-item-list-head select {
  color: var(--text-green-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 2.14;
  appearance: none;
  border: none;
  padding: 0 10px;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .p-item-list-head select {
    color: var(--text-green-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 2.14;
    appearance: none;
    border: none;
    padding: 0 15px;
    width: 100%;
    height: 100%;
  }
}