@charset "utf-8";

#shop-list .item-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px 20px;
}
#shop-list .item a {
	text-decoration: none;
}
#shop-list .item .thumb {
	width: 100%;
	height: 265px;
	position: relative;
	margin-bottom: 20px;
	border-radius: var(--radius);
	overflow: hidden;
}
#shop-list .item .thumb .image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}
#shop-list .item .thumb .image img {
	max-width: 100%;
	max-height: 100%;
}
#shop-list .item .thumb .no-image {
	width: 100%;
	height: 100%;
	color: #999;
	display: table;
	text-align: center;
	background: #f7f7f7;
}
#shop-list .item .thumb :before {
	content: '';
	display: block;
	margin: 0;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 1;
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
}
#shop-list .item .thumb .no-image span {
	display: table-cell;
	vertical-align: middle;
}
#shop-list .item .thumb .icon-wrap {
	position: absolute;
	left: 10px;
	bottom: 10px;
}
#shop-list .item .info {
	color: #252525;
}
#shop-list .item .info .goodsname {
	height: 45px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 20px;
}
#shop-list .item .info .discount-title {
	font-size: 13px;
	font-weight: 500;
	color: #d00;
}
#shop-list .item .info .discount-rate {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	color: #d00;
	margin-right: 3px;
}
#shop-list .item .info .now-price {
	display: inline-block;
	font-size: 22px;
	font-weight: 600;
	color: #222;
	margin-right: 3px;
}
#shop-list .item .info .fix-price {
	display: inline-block;
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}
#shop-list .item .info .icon-wrap {
	margin-top: 3px;
}

/* view */
#shop-view .breadcrumb {
	background: none;
	color: #666;
	margin-bottom: 25px;
}
#shop-view .breadcrumb > li + li:before {
	content: ">\00a0";
	color: #666;
}
#shop-view .breadcrumb a {
	color: #666;
}
#shop-view .breadcrumb li:last-child a {
	color: #333;
}
#shop-view .thumb-info-wrap {
	overflow: hidden;
	margin-bottom: 100px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
}
#shop-view .thumb-wrap {
	flex: 0 0 560px;
}
#shop-view .info-wrap {
	flex: 1;
}
#shop-view .thumb-wrap .thumb {
	width: 100%;
	height: 560px;
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
#shop-view .thumb-wrap .thumb:before {
	content: '';
	display: block;
	margin: 0;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	z-index: 1;
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: -o-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: -moz-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
	background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
}
#shop-view .thumb-wrap .thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#shop-view .thumb-wrap .detail-img {
	overflow: hidden;
	padding-left: 10px;
}
#shop-view .thumb-wrap .detail-img .thumb-small {
	width: 68px;
	height: 68px;
	display: table;
	border: 1px solid #e5e5e5;
	padding: 2px;
	float: left;
	margin-right: 15px;
	margin-bottom: 4px;
}
#shop-view .thumb-wrap .detail-img .thumb-small:nth-of-type(5n) {
	margin-right: 0;
}
#shop-view .thumb-wrap .detail-img .thumb-small div {
	display: table-cell;
	width: 100%;
	height: 62px;
	vertical-align: middle;
	text-align: center;
}
#shop-view .thumb-wrap .detail-img .thumb-small div img {
	max-width: 100%;
	max-height: 100%;
}
#shop-view .info-wrap .goodsname {
	font-size: 22px;
	font-weight: bold;
	line-height: 130%;
	padding-top: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--line-color);
}
#shop-view .info-wrap table {
	width: 100%;
	border-collapse: collapse;
	border-bottom: 1px solid var(--line-color);
}
#shop-view .info-wrap table th,
#shop-view .info-wrap table td {
	height: 50px;
	padding: 8px 0;
}
#shop-view .info-wrap table th {
	font-weight: 500;
	font-size: 14px;
	color: var(--font-color);
}
#shop-view .info-wrap select {
	border: 1px solid var(--line-color);
	height: 35px;
	font-size: 14px;
	outline: none;
	padding: 8px 10px;
}
#shop-view .icon-wrap {
	margin-bottom: 3px;
}
#shop-view .fix-price {
	font-size: 13px;
	text-decoration: line-through;
}
#shop-view .now-price {
	font-size: 15px;
	font-weight: 500;
}
#shop-view .discount-rate {
	font-size: 15px;
	font-weight: 500;
	color: #d00;
}
#shop-view .option-list {
	display: table;
	width: 100%;
	padding: 8px 0;
}
#shop-view .option-list.option2 {
	margin-top: -10px;
}
#shop-view .option-list .title {
	width: 130px;
	display: table-cell;
	font-weight: 500;
	font-size: 14px;
	color: var(--font-color);
}
#shop-view .option-list .content {
	display: table-cell;
}
#shop-view .option-list .content select {
	width: 100%;
}
#shop-view .quantity-area {
	float: right;
	width: 105px;
}
#shop-view .option-result-wrap {
	margin-top: 20px;
}
#shop-view .option-result-list {
	display: flex;
	align-items: center;
	background: #f9f9f9;
	padding: 7px 10px;
	margin-bottom: 2px;
}
#shop-view .option-result-list .option-name {
	flex-basis: 250px;
	font-size: 14px;
}
#shop-view .option-result-list .quantity-area {
	flex-basis: 105px;
}
#shop-view .no-option-quantity {
	margin: 10px 0;
	overflow: hidden;
}
#shop-view .option-result-list .option-remove {
	flex-basis: 32px;
	text-align: right;
}
#shop-view .option-result-list .option-price {
	flex: 1;
	text-align: right;
	font-weight: 500;
	font-size: 14px;
}
#shop-view .total-price {
	font-size: 14px;
	font-weight: 600;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}
#shop-view .total-price .title {
}
#shop-view .total-price .content {
	font-size: 25px;
	font-weight: bold;
}
#shop-view .button-area {
	display: flex;
	gap: 10px;
}
#shop-view .button-area a {
	min-width: auto;
	flex: 1;
}
#shop-view .button-area button {
	flex: 2;
}
#shop-view .detail-content-wrap h3 {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 20px;
}
#shop-view .detail-content-wrap img {
	max-width: 100%;
}
#option-area {
	border-bottom: 1px solid var(--line-color);
}










