/******************************/
/* category */
/******************************/
.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 {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-category-list__item {
  box-sizing: border-box;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-category-list__item {
    margin-bottom: 15px;
    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;
  }
}
.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;
}

/*===========================================================

    以下、追加分

============================================================*/
.p-item-list-head {
  padding: 10px 20px;
  margin-bottom: 30px;
  background-color: #f7f7f7;
  border: none;
}

@media screen and (max-width: 768px) {
  .p-item-list-head {
    padding: 5px 10px;
  }
}

.p-item-list-num,
.p-item-sort-list {
  font-size: 1.4rem;
}

.p-item-sort-list__item {
  margin: 0;
}

.p-item-sort-list__item:not(:last-child):after {
  content: "|";
  display: inline-block;
  padding: 0 1em;
}

.p-item-sort-list__item span {
  text-decoration: none;
  color: #7f191d;
}

.c-item-list {
  margin-left: -15px;
  margin-right: -15px;
}

.c-item-list__item {
  padding: 0 15px;
}

.c-item-list__img {
  margin-bottom: 15px;
}

.c-item-list__ttl {
  font-size: 1.6rem;
  line-height: 1.3;
}

.c-item-list__price {
  font-size: 1.4rem;
  color: #343434;
  margin-top: 5px;
}

.c-item-list__btn {
  position: static;
  margin: 10px 0 0 auto;
}

.c-item-list__btn.is-added {
  color: #7f191d;
}

.c-pager-list__item {
  margin-right: 6px;
  margin-left: 6px;
}

.c-pager-list__link {
  border: 1px solid #7f191d;
  border-radius: 50%;
  min-width: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  color: #7f191d;
}

.c-pager-list__link.is-current {
  background-color: #7f191d;
  color: #fff;
}

.c-pager-list__link.is-prev,
.c-pager-list__link.is-next {
  background-color: transparent;
  border: none;
}

.c-pager-list__link.is-prev:before,
.c-pager-list__link.is-next:before {
  width: 10px;
  height: 10px;
  border: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-pager-list__link.is-prev:before {
  border-left: 2px solid #7f191d;
  border-bottom: 2px solid #7f191d;
  margin-left: -3px;
}

.c-pager-list__link.is-next:before {
  border-top: 2px solid #7f191d;
  border-right: 2px solid #7f191d;
  margin-left: -6px;
}

.c-pager-list__link.is-prev.is-disabled:before {
  border-right-color: #7f191d;
}

.p-shop-info {
  margin-top: 80px;
}

.p-shop-info .secTitle01 {
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .p-shop-info {
    margin-top: 40px;
  }
}

.p-shop-info .u-contents-s {
  background-color: #f7f7f7;
  padding: 40px;
  width: calc((100% - 20px) / 2);
}

.p-shop-info .u-contents-s:nth-of-type(even) {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .p-shop-info .u-contents-s {
    width: auto;
    padding: 30px 10px;
  }
  .p-shop-info .u-contents-s:nth-of-type(even) {
    margin-left: inherit;
  }
  .p-shop-info .u-contents-s:nth-of-type(n + 2) {
    margin-top: 60px;
  }
}

.p-staff {
  padding: 0;
}

.p-calendar {
  padding: 0;
  min-width: inherit;
}

.p-staff-box dt {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-staff-box dd {
  margin: 0;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-staff-box dt {
    font-size: 1.4rem;
  }
}

.tbl_calendar th,
.tbl_calendar td {
  border-bottom: none !important;
}

.tbl_calendar caption {
  font-size: 1.6rem;
  margin-bottom: 10px;
}


@media screen and (max-width: 768px) {
  .secItemList {
    display: none;
  }
}