/******************************/
/* category */
/******************************/
.p-category {
  overflow: hidden;
}
.p-category__ttl {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 500;
  word-break: break-all;
/*	background-color: #f7f5f0;
    padding: 10px 10px;*/
    font-size: 1.5rem;
	
}
@media screen and (max-width: 767px) {
  .p-category__ttl {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-category-free {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .p-category-free {
    margin-bottom: 45px;
  }
}
.p-category-search {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-category-search {
    margin-bottom: 20px;
    text-align: center;
  }
}
/***** カテゴリ一覧 *****/
.p-category-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
  margin-left: -10px;
  margin-right: -10px;
	border-bottom: #b3b2b2 solid 1px;
	padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-category-list {
    margin-left: -10px;
    margin-right: -10px;
  }
} 
@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: 20px;
  padding-left: 10px;
  padding-right: 15px;
  width: 33.33%;
  word-break: break-all;
}
@media screen and (max-width: 1023px) {
  .p-category-list__item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-category-list__item {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  /*  width: auto;*/
  }
}
.p-category-list__link {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
 /* padding: 10px;
  min-height: 100px;*/
  font-size: 12px;
 /* background: #f6f6f6;*/
}
@media screen and (max-width: 767px) {
  .p-category-list__link {
    min-height: 70px;
    font-size: 15px;
  }
}
.p-category-list__link:hover {
 /* background: #f0f0f0;*/
  text-decoration: none;
	opacity: 0.7;
}
.p-category-list__img {
  display: block;
  margin-right: 15px;
  width: 80px;
}
@media screen and (max-width: 1023px) {
  .p-category-list__img {
    width: 50px;
  }
}
.p-category-list__name {
  display: block;
  flex: 1;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-category-list__name {
    font-size: 14px;
  }
}
/***** 商品件数・ソート *****/
.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 only 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;
}
/******************************/
/* category page */
/******************************/

.intro {
	font-size:16px;
	font-weight: 600;
	}
.readmore {
  position: relative;
  margin: 50px auto 0;
  padding: 0 0 75px;
}
	

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 200px;
  padding: 7px 0;
  color: #51b1d4;
  text-align: center;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration:underline;
	
}

.readmore label::before{
  content: '...続きを見る';
}

.readmore input[type="checkbox"]:checked ~ label::before {
  content: '元に戻す';
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}
.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}	
