@charset "utf-8";
/* details css */
/* よりどり商品、選択エリア */
#selectGoodsArea {
	padding-top: 10px;
	margin-bottom: 50px;
}


/* よりどり商品、商品を選択するボタン */
#selectItem {
	background: #f6f6f6;
	color: #808080;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px 20px 10px 15px;
	cursor: pointer;
	margin-bottom: 5px;
}
#selectItem:hover {
	opacity: .7;
}
#selectItem::before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	padding-right: 10px;
}


/* よりどり商品、選択説明文 */
.goodsSelectionNumItemWrap {
	font-size: 12px;
	margin-bottom: 20px;
}


/* よりどり商品、対象商品見出し */
.itemSelectionGoodsTitle {
	display: block;
	font-size: 1.2em;
	border-bottom: 1px solid #ccc;
	margin: 0 0 10px;
	padding: 5px;
}


/* よりどり商品、対象商品リスト */
#itemSelectionGoodsList,
#itemSelectionGoodsList tr,
#itemSelectionGoodsList td {
	display: block;
}
#itemSelectionGoodsList tbody {
	display: flex;
	flex-wrap: wrap;
}
#itemSelectionGoodsList tbody > tr {
	width: 50%;
}
#itemSelectionGoodsList tbody > tr {
	display: block;
	position: relative;
	width: 50%;
	padding-right: 10px;
	margin-bottom: 20px;
}
#itemSelectionGoodsList tr:after {
	content: "";
	display: block;
	clear: both;
}
#itemSelectionGoodsList tr:before {
	content: "";
	display: block;
	clear: both;
}
#itemSelectionGoodsList td {
	background-color: transparent !important;
}
#itemSelectionGoodsList td a {
	float: left;
}
#itemSelectionGoodsList td .goodsSelectionImgThumb {
	width: 40%;
	margin-right: 10px;
}
#itemSelectionGoodsList td .goodsSelectionImgThumb img {
	width: 100%;
	display: block;
}
#itemSelectionGoodsList td .goodsName {
	width: calc(60% - 20px);
	margin-bottom: 40px;
	font-size: 14px;
}
#itemSelectionGoodsList td .goodsCountWrap {
	position: absolute;
	bottom: 0;
	right: 90px;
	font-size: 14px;
}

@media screen and (max-width: 641px) {
	#itemSelectionGoodsList td .goodsSelectionImgThumb {
		width: 100%;
	}
	#itemSelectionGoodsList td .goodsName {
		width: 100%;
		margin-top: 5px;
		margin-bottom: 10px;
	}
	#itemSelectionGoodsList td .goodsCountWrap {
		position: relative;
		right: auto;
		bottom: auto;
		text-align: center;
	}
}


/* よりどり商品、数量プルダウン */
.goodsCount {
	width: 60px;
	padding: 5px 10px;
	font-size: 18px;
}


/* よりどり商品、現在個数、最大個数 */
.selectedNumItemWrap {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}
.goodsSelectionNum, .selectedNum {
	font-size: 22px;
	font-weight: bold;
	color: #ff0000;
}
#goodsSelectionNumItemWrap .redBold {
	color: #ff0000;
}


/* よりどり商品、プログレスバー */
.selectedNumItemWrap progress {
	position: relative;
	top: -7px;
	display: inline-block;
	width: 220px;
	margin: -5px 0 5px auto;
	appearance: none;
	background-color: #efefef;
	border: 1px solid #2675ff;
	border-radius: 4px;
	color: #2675ff; /* IE */
	height: 4px;
}
/* IE */
.selectedNumItemWrap progress.just {
	border: 1px solid #15b862;
}
.selectedNumItemWrap progress[value].just {
	color: #15b862;
}
.selectedNumItemWrap progress.over {
	border: 1px solid #e43e3e;
}
.selectedNumItemWrap progress[value].over {
	color: #e43e3e;
}
/* chrome */
.selectedNumItemWrap progress {
	border: 1px solid #2675ff;
}
.selectedNumItemWrap progress[value]::-webkit-progress-bar {
	background-color: #efefef;
}
.selectedNumItemWrap progress[value]::-webkit-progress-value {
	background-color: #2675ff;
}
.selectedNumItemWrap progress.just {
	border: 1px solid #15b862;
}
.selectedNumItemWrap progress[value].just::-webkit-progress-value {
	background-color: #15b862;
}
.selectedNumItemWrap progress.over {
	border: 1px solid #e43e3e;
}
.selectedNumItemWrap progress[value].over::-webkit-progress-value {
	background-color: #e43e3e;
}
/* firefox */
.selectedNumItemWrap progress {
	border: 1px solid #2675ff;
}
.selectedNumItemWrap progress[value]::-moz-progress-bar {
	background-color: #2675ff;
}
.selectedNumItemWrap progress.just {
	border: 1px solid #15b862;
}
.selectedNumItemWrap progress[value].just::-moz-progress-bar {
	background-color: #15b862;
}
.selectedNumItemWrap progress.over {
	border: 1px solid #e43e3e;
}
.selectedNumItemWrap progress[value].over::-moz-progress-bar {
	background-color: #e43e3e;
}


/* よりどり商品、選択した商品を注文する */
#orderSelectedGoodsItemWrap {
	text-align: center;
}
#addCartBySelectedItems a {
	display: inline-block;
	margin: 0 auto;
	text-decoration: none;
	background: #f6f6f6;
	color: #333;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px 20px;
}
#addCartBySelectedItems a {
	pointer-events: none;
	cursor: default;
	color: #9e9e9e;
}
#addCartBySelectedItems a:hover {
	opacity: 1;
}
#addCartBySelectedItems a.active {
	background-color: #c26f71;
	border: 1px solid #c26f71;
	color: #fff;
	pointer-events: auto;
	cursor: pointer;
}
#addCartBySelectedItems a.active:hover {
	opacity: .7;
}

.itemSelectionGoodsList .matrix-body {
	display: flex;
	flex-flow: row;
}

#salePeriodOut,#soldOut,#salePeriodOutUpperGoods,#soldOutUpperGoods {
	background-color: #aaa;
	cursor: auto;
    opacity: 1;
}

.reviewContentAreaTop a {
	text-decoration: none;
    color: inherit;
}

.reviewAverageTop {
	margin-bottom: 27px;
	font-size: 2rem;
	letter-spacing: 0.04em;
	text-align: left;
}

.reviewNumTop {
	border-bottom:1px solid
}

@media only screen and (max-width: 749px) {
	.reviewAverageTop {
		font-size: 100%;
	}
}
