.stock_error {color:#ff0000;margin-top:15px;}

/*お気に入りボタン*/
.product__fav-item {
 text-align:center;
  margin:10px 0;
}

.product__fav-item button {
  padding: 10px;
  width:100%;
  cursor: pointer;
  transition: .2s;
  color: #999;
  border: 0;
  outline: none;
  background: transparent;
  border:solid 1px #ccc;
}

.product__fav-item .fav-items {
  color: #ff7373;
  border:solid 1px #ff7373;
}

.product__fav-item svg {
  width: 20px;
  height: 20px;
  vertical-align: -.35em;
  fill: currentColor;
  margin-right:5px;
}

.input-prepend.input-append input {
  font-size: 0.8rem;
  width: 100px;
  text-align: center;
  border:none;
  margin:0 2px;
}

.item-order__amount__wrapper {
  border-top:solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  display:inline-block;
  padding: 6px 0;
}

.sp-slide img {
  width:100%;
  height: auto;
}
.product-description{
  margin-bottom:50px;
  border-bottom:solid 1px #ccc;
  width:60%;
}
.product-description__title {
  position: relative;
  margin: 0;
  padding: 0.625em;
  /*background-color: #000;*/
  border-top:solid 1px #ccc;
  font-weight: normal;
 /* color: #fff;*/
  cursor: pointer;
  font-weight:bold;
}
/*.product-description__title:hover,
.product-description__title:active,
.product-description__title.open { 
  background-color: #00b2ba;
}*/

.product-description__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #000;
  transition: all .3s ease-in-out;
}

.product-description__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  /*横線*/
  width: 10px;
  height: 2px;
  background: #000;
  transition: all .2s ease-in-out;
}

.product-description__title.open::before {
  transform: rotate(180deg);
}

.product-description__title.open::after {
  opacity: 0;
}
.product-description__content{
padding: 0.625em;
}
.product-description__content a, .product-description__content a:visited{
color:#000;
  font-weight:bold;
  text-decoration:underline;
}
.product-description__content a:hover, .product-description__content a:active{
  text-decoration:none;
  color:#000;
}

@media only screen and ( max-width : 768px ) {
  .product-description{
  	width:90%;
   margin: 0 auto 30px auto;
  }
.input-prepend.input-append input {
  font-size: 0.7rem;
  }
}