@charset "utf-8";



/* ----------------------------------
 cart-parallel [2line up(横並び)]
---------------------------------- */

.cart-parallel {
  margin: 20% auto auto;
  padding: 20% 0;
  background-color: var(--white);
}

/* --- LOGO --- */
.cart-LOGO {
  margin: auto auto 25% 8%;
  width: 53%;
}

/* --- SPEC --- */
.cart-SPEC2 {
  margin: auto auto 5%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.cart-SPEC2 > p {
  width: fit-content;
  font-family: "ShipporiMin", serif;
  font-weight: 500;
  font-size: var(--fs_11);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
  position: absolute;
  top: 102%;
  left: 6%;
}

/* TEXT */
.cart-SPEC2-TXT {
  margin: 0 6%;
  width: 46%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cart-SPEC2-TXT::after {
  content: "";
  width: 116%;
  height: min(0.2vw,1.5px);
  background-color: var(--black);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0) scale(1,0.5);
}

.cart-SPEC2-TXT h2 {
  font-family: "ShipporiMin", serif;
  font-weight: 500;
  font-size: var(--fs_18);
  line-height: 3;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.cart-SPEC2-TXT h2::before {
  content: "";
  width: 116%;
  height: min(0.2vw,1.5px);
  background-color: var(--black);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,0) scale(1,0.5);
}

/* 表（table） */
.cart-SPEC2-TXT__table {
  margin: auto;
  width: fit-content;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cart-SPEC2-TXT__table table th,
.cart-SPEC2-TXT__table table td {
  font-family: "GenjyuuGLP", sans-serif;
  font-weight: 300;
  font-size: var(--fs_13);
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cart-SPEC2-TXT__table table th {
  width: fit-content;
  text-align: left;
}

.cart-SPEC2-TXT__table table tr td:nth-of-type(1) {
  padding: 0 0.25em;
}

/* PHOTO */
.cart-SPEC2-PHOTO {
  width: 42%;
}

/* --- LIMIT (販売数量制限) --- */
.cart-limit {
  margin: 15% auto;
  width: 88%;
  background-color: rgba(0,0,0,20%);
}

.cart-limit p {
  width: 100%;
  font-family: "GenjyuuGLP", sans-serif;
  font-weight: 400;
  font-size: var(--fs_15);
  letter-spacing: 0.05em;
  line-height: 3;
  text-align: center;
  white-space: nowrap;
}

/* --- 価格 --- */
.cart-price {
  margin: 15% auto 10%;
}

.cart-price p {
  margin: auto;
  width: fit-content;
  font-family: "GenjyuuGLP", sans-serif;
  font-weight: 300;
  font-size: var(--fs_15);
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.cart-price p span.f1 {
  font-size: 80%;
}

/* --- emsカート --- */
.cart-parallel .cartbox {
  position: relative;
  padding: 3%;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
} 

#HFrosoku .cart-parallel .cartbox {
  margin-top: 12%;
} 



.cart-parallel .cartbox .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin: auto;
  width: 95%;
}

.cart-parallel .cartbox .row form {
  width: 100%;
}

.cart-parallel .cart_button.soldout {
  width: 100% !important;
}

.cart-parallel .item_stock,
.cart-parallel .item_soldout,
.cart-parallel .item_count,
.cart-parallel .item_count select {
  margin-bottom: 3%;
  font-family: "GenjyuuGLP", sans-serif;
  font-weight: 300;
  font-size: var(--fs_15);
}

.cart-parallel .item_count span {
  margin-right: 0.5em;  
}

.cart-parallel .item_stock span.item_stock_text,
.cart-parallel .item_soldout span.item_stock_text {
  font-weight: 900;
}

.cart-parallel .cart_button.in,
.cart-parallel .cart_button.soldout {
  margin: 1.5em auto auto;
  width: 100%;
  max-width: none;
  padding: 0.5em 0 0.75em;
  font-size: var(--fs_15);
}

.cart-parallel .item_stock {
  display: none;
}



/*-------------------------
 区切りライン
--------------------------*/
.cart-line {
  margin: 5% auto;
  width: 88%;
  height: min(0.2vw,1.5px);
  background-color: var(--black);
  transform: scale(1,0.5);
}



/*-------------------------
 emsカートボタン
--------------------------*/

.cartbox .cart_button.in img {
  margin: auto;
  width: 100%;
}
.cartbox .cart_button.resale img {
  margin: auto;
  width: 100%;
}

