@charset "utf-8";

/*=============================================================
 stock
=============================================================*/
.r-list-price {
	counter-reset: count;
	overflow-x: hidden;
	overflow-y: auto;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	height: 432px;
	margin-top: 24px;

	> div {
		padding-block: 18px;
		border-bottom: 1px dotted #666;

		@media only screen and (max-width:599px) {
			padding-block: 12px;
		}
	}

	dt,
	dd {
		display: inline;

		@media only screen and (max-width:599px) {
			display: block;
		}
	}

	dt {
		counter-increment: count;

		&::before {
			content: "（" counter(count) "）";
			margin-right: 8px;
		}
	}

	dd {
		margin-left: 32px;

		@media only screen and (max-width:599px) {
			margin-left: 0;
		}
	}
}
