/*カートに入れるボタン固定*/
.fixed-cart-btn {
 display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: #F0E7E1;
  padding: 12px 0;
  width: 100%;
   opacity: 0;
  transition: opacity 0.5s ease;
}

.fixed-product-name {
 font-size: 1rem; 
  margin-bottom: 10px;
}

.fixed-price {
 font-size: 1rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.fixed-cart-block .cart_button {
 display: block;
 }

.fixed-cart-block button {
	color: #FFF;
    font-weight: bold;
    text-shadow: 0 -1px #997e6b;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b2937d), color-stop(25%, #b2937d), color-stop(26%, #b2937d), color-stop(100%, #997e6b));
    border-bottom: 1px solid #ad988b;
    border-top: 1px solid #917869;
  border-left: none;
  border-right: none;
  font-size: 1rem;
  display: block;
  padding: 10px 0;
  width: 280px;
}

.top-cart-block {
 margin-top: 10px;
}

.top-cart-block button {
	color: #FFF;
    font-weight: bold;
    text-shadow: 0 -1px #997e6b;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b2937d), color-stop(25%, #b2937d), color-stop(26%, #b2937d), color-stop(100%, #997e6b));
    border-bottom: 1px solid #ad988b;
    border-top: 1px solid #917869;
  border-left: none;
  border-right: none;
  font-size: 1rem;
  display: block;
  padding: 10px 0;
  width: 280px;
}