@charset "UTF-8";
/* 商品ラインナップ　
----------------------------*/
.lineup-block {
  margin: 20px auto;
}
.lineup-block .item-box {
  display: flex;
  flex-direction: column;
  min-width: 100%;
}
.lineup-block .item-box + .item-box {
  margin-top: 40px;
}
@media screen and (min-width: 990px) {
  .lineup-block .item-box + .item-box {
    margin-top: 60px;
  }
}
.lineup-block .item-box .txt-box {
  padding: 20px 0;
  order: 2;
  text-align: left;
  max-width: 480px;
  margin: auto;
}
.lineup-block .item-box .pic {
  order: 1;
  padding: 0 30px;
}
.lineup-block .item-box .pic img {
  width: auto;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lineup-block .item-box .item-name {
  max-width: 70%;
  height: auto;
  margin: auto;
}
.lineup-block .item-box .price {
  font-size: 0.875rem;
  font-family: "Urbanist", sans-serif;
}
.lineup-block .item-box .price b {
  font-size: 1.375rem;
  padding-right: 6px;
}
.lineup-block .item-box dl {
  margin-top: 1em;
}
.lineup-block .item-box dl dt {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
}
.lineup-block .item-box dl dd {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .lineup-block {
    margin: 40px auto;
  }
  .lineup-block .item-box {
    flex-direction: row;
  }
  .lineup-block .item-box .txt-box {
    min-width: 60%;
    max-width: none;
  }
  .lineup-block .item-box .pic {
    min-width: 40%;
  }
  .lineup-block .item-box .pic img {
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* 購入ボタン */
.btn-buy {
  position: relative;
  min-height: 50px;
  max-width: 200px;
  text-align: center;
}
.btn-buy::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.buy-label {
  background: #533635;
  color: #fff;
  display: block;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  cursor: pointer;
}

.hide-box {
  display: none;
  border: 1px solid #533635;
  background-color: #fff;
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 100;
  min-width: 100%;
}
.hide-box ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100%;
}
.hide-box ul li {
  width: 100%;
}
.hide-box ul li + li {
  border-top: 1px solid #533635;
}
.hide-box ul li a {
  position: relative;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 15px;
}
.hide-box ul li a::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 15px;
  display: inline-block;
  vertical-align: middle;
  color: #533635;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
.hide-box ul li a img {
  width: 100%;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hide-box ul li a:hover {
  background-color: #fffae3;
}
/*# sourceMappingURL=product.css.map */