<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "Shift_JIS";

.discount {
	display: flex;
	position: relative;
	width: 100%;
}

.discount_box,
.discount_box_off
{
	border-radius: 8px;
	border: solid 4px #afd0f8;
	padding: 0.8rem;
	margin: 0!important; 
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 1;
}

.discount_box_off
{
	border: solid 4px #ffb8b8;
	background:#fff3ef;
}

.discount_box a,
.discount_box_off a
 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.discount_box span,
discount_box_off span
 {
	white-space: nowrap;
}

.discount p {
	display: flex;
	justify-content: center; 
	align-items: center;
	margin: 0;
}

.discount p span.price
{
	display:block;
} 

#mainColumn .discount p {
	margin: 0.3rem;
	font-weight:bold;
	color:#316099;
}

@media screen and (max-width: 767px) {
	.discount {
		display: table;
		width: 100%;
	}
	
	#mainColumn .discount p {
		transform: rotate(90deg);
		margin: 1rem;
	}
}

span.price_torikeshi
{
	text-decoration:line-through;
	color: #b5b5b5;
}


span.discount_price
{
	font-weight:bold;
	color: #f00;
	font-size: 1.2rem;
}

span.off_price
{
	position: relative;
	font-weight:bold;
	text-align:center;
	color: #fff;
	font-size:1.2rem;
	background: #f00;
	width:100%;
	border-radius: 100px;
	margin-top:5px;
	padding-top:3px;
}


@media screen and (max-width: 767px) {
	span.off_price
	{
	width:70%;
		padding-top:5px
	}
}


span.off_price:after
{
	content: "";
	position: absolute;
	top: -15px;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom: 10px solid #f00;
}


</pre></body></html>