/** stacking-prices **/
.stacking-prices {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
	padding-right: 1em;
	position: relative;
}
.stacking-prices::after {
	content: "↓";
	width: 1em;
	height: 1em;
	line-height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0 auto auto;
	right: 0;
}
.stacking-price {
	line-height: 100%;
	text-align: right;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
.stacking-price::after {
	content: "円";
}
.stacking-prices-base {
	color: #888;
}
.auxiliary-stacking-prices {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
}
.auxiliary-stacking-prices > li {
	margin: 0;
	padding: 0 2px;
}
.auxiliary-stacking-prices-limit::after {
	content: "本限定";
}
.auxiliary-stacking-prices-off_number::before {
	content: "割引率";
}
.auxiliary-stacking-prices-off_number::after {
	content: "％";
}
.zero-difference .stacking-prices {
	padding-right: 0;
}
.zero-difference .not-zero-difference
, .zero-difference .stacking-prices::after
{
	display: none;
}
/** stacking-prices **/

/** stacking-cart **/
.stacking-cart {
	width: 100%;
	margin-top: 5px;
	border-radius: 5px;
	box-shadow: 0 0 4px rgba(0,0,0,0.4);
	overflow: hidden;
}
.stacking-cart-button {
	display: block;
	width: 100%;
	box-sizing:border-box;
	border-style: none;
	background-color: gold;
	padding: .75em 0;
	line-height: 100%;
	margin: auto;
	font-size: 9pt;
	cursor: pointer;
}
.stacking-cart-button:hover {
	filter: brightness(110%);
}
.stacking-cart-detail {
	margin-top: 1px;
	text-decoration: none;
	color: black;
}
.stacking-cart-detail:hover {
	color: black;
}
.stacking-cart-submit {
	display: flex;
	justify-content: center;
	align-items: center;
}
.stacking-cart-submit::before {
	content: "\e900";
	display: block;
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 16pt;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.stacking-cart-submit::after {
	content: "カートに入れる";
	display: block;
}
.stacking-cart-detail::after {
	content: "詳細";
}
.no-stacking-cart-detail .stacking-cart-submit {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
/** stacking-cart **/	