#product-detail {
	position: relative;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
	padding: 48px 48px 80px 48px;
   background-image: url(https://img02.shop-pro.jp/PA01130/551/etc/back-paper.jpg?cmsp_timestamp=20201016144802);
}

#product-detail .bred {
  display: flex;
  flex-wrap: wrap;
}
#product-detail .bred ul {
	font-family: sans-serif;
	text-align: left;
	display: flex;
	box-sizing: border-box;
	overflow: hidden;
	flex-wrap: wrap;
}
#product-detail .bred ul li {
  margin: 0px 3px 3px 0px;
}
#product-detail .bred ul li a {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	padding: 6px 6px 3px 6px;
	font-size: 90%;
	color: #666;
	background: #FFF;
	border: 1px solid #888;
	border-radius: 3px;
}
#product-detail .bred ul li a:hover {
	text-decoration: none;
}

#product-detail h2 {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	font-size: 220%;
	line-height: 1.6;
	padding-top: 24px;
	padding-bottom: 24px;
}

#product-detail .left-side {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	float: left;
	width: 50%;
	padding-right: 24px;
}
#product-detail .right-side {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	float: right;
	width: 50%;
	padding-left: 24px;
}

#product-detail #photo-main {
}
#product-detail #photo-main img {
	position: relative;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
	height: auto;
	float: left;
}
#product-detail #photo-sumnail {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
  height: auto;
}
#product-detail #photo-sumnail img {
	width: calc(100% / 3 - 12px);
	height: calc(100% / 3 - 12px);
	padding-top: 12px;
	padding-right: 12px;
	object-fit: contain;
}

#product-detail dl {
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
	font-size: 120%;
	margin-bottom: 24px;
}
#product-detail dt {
	float: left;
	width: 30%;
	padding: 12px 0px;
	font-family: sans-serif;
	font-weight: normal;
	line-height: 1.6;
	border-top: 1px solid #CCC;
	font-size: 90%;
}
#product-detail dd {
	width: 70%;
	padding: 12px 0px;
	padding-left: 30%;
	line-height: 1.6;
	border-top: 1px solid #CCC;
}
#product-detail dd.price {
	font-size: 140%;
}
#product-detail input.p-num {
	border: 1px solid #AAA;
	width: 36px;
	text-align: center;
}
#product-detail span.updown i {
	font-size: 100%;
	padding: 0px 3px 0px 3px;
}
#product-detail button {
	width: 100%;
	height: 54px;
	line-height: 48px;
	font-size: 120%;
	border: none;
	background: #CCC;
	border-radius: 6px;
}
#product-detail button:hover {
	background: #AA3;
	color: #FFF;
	transition: 0.3s;
}
#product-detail button.soldout:hover {
	background: #CCC;
        color: #999;
	cursor: auto;
}
#product-detail ul.addlink, #product-detail ul.sns {
	font-size: 100%;
	margin-top: 48px;
	margin-bottom: 24px;
	padding-left: 24px;
	line-height: 2.0;
}
#product-detail ul.sns {
	text-align: right;
}
#product-detail .note {
	position: relative;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
	width: 30%;
	float: right;
}
.clearfix {
	clear: both;
}

@media (max-width: 768px) {
  #product-detail {
    padding: 24px;
    font-size: 90%;
  }
  #product-detail h2 {
    font-size: 2.0rem;
  }
  #product-detail dd.price {
    font-size: 1.8rem;
  }
	#product-detail .left-side {
		float: none;
		width: 100%;
		padding: 0;
	}
	#product-detail .right-side {
		float: none;
		width: 100%;
		padding: 0;
		margin-top: 36px;
	}
	#product-detail button {
		background: #AA3;
		color: #FFF
	}
	#product-detail button:hover {
		background: #AA3;
		color: #FFF;
		transition: 0;
	}
	#product-detail button.soldout {
		background: #CCC;
		color: #999;
	#product-detail button.soldout:hover {
		background: #CCC;
		color: #999;
}