/*-------------------- SLIDER --------------------*/

#product .bx-wrapper {
	border: none;
	background: transparent;
	box-shadow: none;
	-webkit-box-shadow: none;
}
#product .bx-viewport {
	margin-left: 1% !important;
}
#product .thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#product .thumbs .thumbs-item {
	display: block;
	flex-basis: 18%;
	margin: 1%;
}
#product .thumbs .thumbs-item.pager-active {
	border: 2px solid #E62954;
}
#product .thumbs .img-thumb {
	width: 100%;
	max-width: 100%;
}

/*-------------------- 商品名 --------------------*/
.product-name .title {
	font-size: 18px;
}


/*-------------------- オプション --------------------*/
#product-option select {
	display: block;
	width: 100%;
	max-width: 250px;
	height: 40px;
	border: 1px solid #280017 !important;
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
}

/*-------------------- 商品価格 --------------------*/
#product-price {
	font-size: 24px;
	font-weight: bold;
	color: #E62954;
}

/*-------------------- 商品価格 --------------------*/
.product_num {
	width: 100px;
	height: 40px;
	border: 1px solid #280017 !important;
	padding: 10px;
}

/*-------------------- カートボタン --------------------*/

.btn-addcart {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	color: white;
	background: #280017;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

}
.btn-addcart:hover {
	background: #E62954;
}

/*-------------------- 商品関連リンク --------------------*/
.product-info ul {
	list-style: none;
	padding-left: 0;
}


/*-------------------- 商品テーブル --------------------*/
#option_tbl {
	width: 100%;
}
#option_tbl tr {
	border-bottom: 1px solid #ccc;
}
#option_tbl tr:last-of-type {
	border: none;
}
#option_tbl .cell_1 {
	padding-right: 20px;
}
#option_tbl .cell_2 {
	position: relative;
}
#option_tbl div input[type="radio"] {
  position: absolute;
  height: 0;
  top: 15px;
  left: 0;
}
#option_tbl label {
	margin: 10px 0 10px 30px;
}
#option_tbl div input[type="radio"]:before {
  content: '';
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: absolute;
  top: -0.2em;
  left: 0;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
#option_tbl div input[type="radio"]:checked:before {
  background-color: #E62954;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
#option_tbl div input[type="radio"]:focus:before {
  outline: none;
  border-color: #E62954;
}
#option_tbl div input[type="radio"]:disabled:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
#option_tbl div input[type="radio"]:empty:before {
  margin-right: 0;
}




/*-------------------- responsive --------------------*/
@media (max-width: 991px) {
	#product .bx-wrapper {
		margin-bottom: 40px;
	}
	.product-image,
	.product-name,
	#product-option,
	#product-price,
	.product-order,
	.product-comment {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	#product .thumbs {
		justify-content: center;
	}
}

@media (min-width: 991px) {
	#product .bx-wrapper {
		margin-bottom: 10px;
	}
	#product .bx-wrapper .bx-pager {
		display: none;
	}
}