/* 商品一覧category */
/******************************/
/* category */
/******************************/
.p-category {
  overflow: hidden;
}
.p-category__ttl {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.4;
  font-size: 28px;
  font-weight: normal;
  word-break: break-all;
  text-align: center;
  color: #FF8000;
}
@media screen and (max-width: 767px) {
  .p-category__ttl {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
.p-category-free {
  margin-top: 40px;
  margin-bottom: 40px;
  line-height: 2;
}
/***** カテゴリ一覧 *****/
.p-category-list {
  overflow-x: auto;
  white-space: nowrap;
  margin-top: 70px;
  margin-bottom: 50px;
  padding: 20px;
  background: #f5f5f5;
  text-align: center;
}
.p-category-list__item {
  display: inline-block;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  word-break: break-all;
}
.p-category-list__link {
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-category-list__link {
    font-size: 15px;
  }
}
.p-category-list__img {
  display: block;
  margin-right: 20px;
  width: 80px;
}
@media screen and (max-width: 1023px) {
  .p-category-list__img {
    width: 50px;
  }
}
.p-category-list__name {
  display: block;
  flex: 1;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-category-list__name {
    font-size: 16px;
  }
}
/***** 商品件数・ソート *****/
.p-item-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-item-list-head {
    display: block;
  }
}
.p-item-list-num {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-item-list-num {
    margin-bottom: 15px;
    text-align: center;
  }
}
.p-item-sort {
  display: flex;
  align-items: center;
}
.p-item-sort__ttl {
  white-space: nowrap;
  margin-right: 10px;
}
.p-item-sort__select {
  padding: 10px;
  border: 1px solid #b3b2b2;
  border-radius: 3px;
  height: auto;
  min-width: 180px;
  line-height: 1.4;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-item-sort__select {
    flex: 1;
  }
}
.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;
}

.c-item-list__ttl a {
  color: #704112 !important;
}

.c-item-list__txt {
  position: static;
  padding: 10px;
  background: transparent;
  opacity: 1;
  color: #704112;
}


/* 数量 */
.p-product-form {
  text-align: center;
  position: absolute;
  bottom: -180px;
  width: 100%;
}
.p-product-form-stock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.p-product-form-stock__ttl {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-product-form-stock__ttl {
    font-size: 13px;
  }
}
.p-product-form-stock__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-product-form-stock__box {
    font-size: 13px;
  }
}
.p-product-form-stock__input {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #b3b2b2;
}
.p-product-form-stock__input input[type=text] {
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  width: 50px;
  height: 50px;
  font-size: 18px;
  text-align: center;
}
.p-product-form-stock__add {
  overflow: hidden;
  display: block;
  position: relative;
  white-space: nowrap;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
}
.p-product-form-stock__add:hover {
  background: #f5f5f5;
}
.p-product-form-stock__add::before, .p-product-form-stock__add::after {
  content: "";
  position: absolute;
}
.p-product-form-stock__add.is-down::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__add.is-up::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__add.is-up::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__unit {
  margin-left: 10px;
}
.p-product-form-stock__stock {
  flex: 1;
  margin-left: 15px;
  font-size: rem(14px);
}
/* ボタン */
.p-product-form-btn {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
}
@media screen and (max-width: 767px) {
  .p-product-form-btn {
    /* width: 335px; */
  }
}
.p-product-form-btn__cart {
  margin-top: 25px;
  margin-bottom: 30px;
}
.p-product-form-btn-member {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 10px;
}
.p-product-form-btn-member__item {
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
.p-product-form-btn__favorite {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-form-btn__favorite svg {
  position: relative;
  top: 1px;
  fill: #d8d8d8;
}
.p-product-form__error-message {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #a10000;
  text-align: center;
}
.c-item-list__item {
  margin-bottom: 25px;
}





.p-product-form-stock__add {
  overflow: hidden;
  display: block;
  position: relative;
  white-space: nowrap;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.p-product-form-stock__add.is-down::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}

.p-product-form-stock__add.is-up::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}

.p-product-form-stock__add.is-up::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background: #000000;
  transform: translate(-50%, -50%);
}