/******************************/
/* category */
/******************************/
.l-main {
    padding-top: 40px;
}

@media screen and (max-width: 1030px) {
  .l-main {
    margin-top: 0px !important;
    padding-top: 0;
  }
}

.p-category__ttl {
  margin: 10px 0 30px 0;
  line-height: 1.4;
  font-size: 30px;
  font-weight: normal;
}
.p-category-free {
  margin-bottom: 60px;
  line-height: 2;
}
/***** カテゴリ一覧 *****/
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  margin-bottom: 60px;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 767px) {
  .p-category-list {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-category-list__item {
box-sizing: border-box;
    width: 33%;
    text-align: center;
    background: #f5f5f5;
    margin-bottom:4px;
    margin-right: 0.3%;
    padding: 10px 15px;
}
@media screen and (max-width: 767px) {
  .p-category-list__item {
    text-align: left;
    width: 48%;
    margin-right: 0.5%;
    padding: 10px 15px;
  }
}
.p-category-list__link {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-category-list__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
.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;
  border-top: 1px solid #7d7d7d;
}
@media screen and (max-width: 767px) {
  .p-item-list-head {
    padding: 30px 0;
  }
}
.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: 25px;
  }
}
.p-item-sort-list__item:first-child {
  margin-left: 0;
}
.p-item-sort-list__item span {
  text-decoration: underline;
}

/* ==== サイドメニュー調整（フォントサイズUP・メリハリ） ==== */

/* 見出し：造り手で選ぶ / カテゴリで選ぶ */
.l-side-navi__ttl {
  font-size: 18px !important; /* 元より少し大きく */
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}

/* 親カテゴリ */
.l-side-navi-list__link {
  font-size: 15px !important; /* 基本サイズUP */
  font-weight: 500;
  padding: 14px 16px;
}

/* 子カテゴリ（開いたときのリスト） */
.l-side-navi-sub-list__link {
  font-size: 14px !important;
  padding: 10px 16px 10px 24px;
}

/* hover時の分かりやすさ */
.l-side-navi-list__link:hover,
.l-side-navi-sub-list__link:hover {
  background: #fafafa;
  text-underline-offset: 4px;
}