@charset "euc-jp";
/******************************/
/* category */
/******************************/
.p-category__ttl {
    margin: 0 0 0.75em 0;
    line-height: 1.4;
    font-size: 2.6rem;
    font-weight: 700;
    color: #006A64;
  }
  .p-category-free {
    margin-bottom: 60px;
    line-height: 2;
  }
@media screen and (max-width: 767px) {
  .p-category__ttl {font-size: 2rem;}
}
  /***** カテゴリ一覧 *****/
  .p-category-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #F9F9F9;
  }
  @media screen and (max-width: 767px) {
    .p-category-list {
      display: block;
      margin-top: 30px;
      margin-bottom: 30px;
      padding: 5px 15px;
    }
  }
  .p-category-list__item {
    box-sizing: border-box;
    margin: 0.5em 0;
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
    font-size: 16px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .p-category-list__item {
      padding-left: 0;
      padding-right: 0;
      width: auto;
      text-align: left;
    }
  }
  .p-category-list__link {
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .p-category-list__link {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 0.5em 0;
    }
  }
  .p-category-list__link:hover {
    text-decoration: none;
  }
  @media screen and (max-width: 767px) {
    .p-category-list__link:before {
      content: "";
      position: absolute;
      top: 50%;
      right: 5px;
      margin-top: -6px;
      width: 8px;
      height: 8px;
      border-right: 1px solid #aaaaaa;
      border-bottom: 1px solid #aaaaaa;
      transform: rotate(-45deg);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
  }
  .p-category-list__img {
    display: block;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 767px) {
    .p-category-list__img {
      margin-right: 10px;
      margin-bottom: 0;
      width: 75px;
    }
  }
  .p-category-list__name:hover {
    text-decoration: underline;
  }
  @media screen and (max-width: 767px) {
    .p-category-list__name:hover {
      text-decoration: none;
    }
  }
  @media screen and (max-width: 767px) {
    .p-category-list__name {
      flex: 1;
    }
  }
  /***** 商品件数・ソート *****/
  .p-item-list-head {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 50px;
    border-top: 1px solid #ddd;
  }
  @media screen and (max-width: 767px) {
    .p-item-list-head {
      padding: 20px 0 30px;
    }
  }
  .p-item-list-num {
    font-size: 16px;
  }
  @media screen and (max-width: 767px) {
    .p-item-list-num {
      font-size: 14px;
    }
  }
  .p-item-sort-list {
    display: flex;
    flex-wrap: wrap;
  }
  .p-item-sort-list__item {
    margin-left: 30px;
  }
  @media screen and (max-width: 767px) {
    .p-item-sort-list__item {
      margin-left: 15px;
      font-size: 1.3rem;
    }
  }
  .p-item-sort-list__item:first-child {
    margin-left: 0;
  }
  .p-item-sort-list__item span {
    text-decoration: underline;
  }
  