@charset "utf-8";

.product-flex {
  margin: 45px auto 0;
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-flex img {
  border-radius: 10px;
  width: 60%;
  height: auto;
  margin-right: 60px;
}

.details h3 {
  font-size: 26px;
}

.details p {
  margin-top: 25px;
  color: #302833;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.price small {
  font-weight: 700;
}

.discription {
  margin-top: 45px;
}

.discription p {
  font-family: "Shippori Mincho", serif;
}

.data {
  margin-top: 45px;
}

.data p {
  font-size: 14px;
  margin-top: 5px;
}

.details dl {
  margin-top: 30px;
  display: flex;
}

.details input {
  margin-right: 5px;
  background: none;
  border: solid 1px #302833;
  border-radius: 5px;
  width: 45%;
  line-height: 100%;
  height: 100%;
  padding-inline-start: 1em;
}

.details dl dt {
  display: block;
  height: 100%;
  font-size: 14px;
  list-style: 1.6em;
  margin-top: auto;
  font-family: "Shippori Mincho", serif;
}

dl dd span {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.into-cart {
  margin-top: 45px;
  display: block;
  background-image: url(../img/bg-dkgreen.png);
  width: 100%;
  height: 37px;
  border-radius: 5px;
  text-align: center;
}

.into-cart a,
.add-fav a {
  line-height: 35px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #302833;
}

.add-fav {
  margin-top: 20px;
  display: block;
  border: solid 1px #5c8b1b;
  width: 100%;
  height: 35px;
  border-radius: 5px;
  text-align: center;
}

.into-cart:hover,
.add-fav:hover {
  opacity: 50%;
}

/* -----recommend----- */
.recommend {
  margin: 45px auto 0;
  max-width: 1200px;
  width: 90%;
}

.goods-category {
  margin-top: 80px;
  width: 100%;
}

.goods-flex {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.goods-flex li {
  width: 22%;
}

.goods-flex li img {
  width: 100%;
  border-radius: 10px;
}

.goods-category a {
  display: block;
  text-align: right;
}

.goods-category a:hover {
  opacity: 50%;
}

.goods-category a:last-of-type {
  margin-top: 30px;
}

@media(max-width:800px) {
  .product-flex img {
    width: 45%;
  }

  .details h3 {
    font-size: 24px;
  }

  .details p {
    margin-top: 5px;
  }

  .price {
    font-size: 20px;
  }

  .discription {
    margin-top: 20px;
  }

  .data {
    margin-top: 20px;
  }

  .data p {
    font-size: 14px;
    margin-top: 5px;
  }

  .details dl {
    margin-top: 20px;
    display: flex;
  }

  .into-cart {
    margin-top: 25px;
  }

  .add-fav {
    margin-top: 20px;
  }
}

@media(max-width:600px) {
  .product-flex {
    flex-direction: column;
    align-items: center;
  }

  .product-flex img {
    width: 100%;
    margin: 0 auto;
  }

  .details {
    margin-top: 25px;
  }

  .goods-flex{
    flex-wrap: wrap;
  }

  .goods-flex li{
    width: 45%;
  }

}