

/*********************************************
	product 商品
*********************************************/

.product__main-image img {
	display: inline-block;
	margin: 0 auto;
	max-width: 400px;
   min-width:400px;
  }
  
  .product__thumbs {
	padding-top: 2px;
	margin: 0 -1px;
  }
  
  .product__thumb__unit {
	padding: 0 1px 1px;
  }
  .product__thumb__unit img {
	max-height: 150px;
	cursor: pointer;
  }
  .productWrap{
	  padding-bottom: 25px;
	  display: flex;
	  justify-content: space-between;
  }
  .product_about{
	font-size: 14px;
	letter-spacing: .1em;
	line-height: 2;
	margin: 30px 0 35px;
  }	
  .product__name {
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
  }
  .product_banner{
	padding-top: 97px;
  }
  .product__order__btn{
	margin-left: 37px;
  }
  .product_right{
	width: 43.86%;
	margin-left: 40px;
  }
  .product__price {
	font-size: 1.5em;
	margin-bottom: 32px;
	letter-spacing: .05em;
	color: #4D4D4D;
	font-size: 28px;
  }
  
  .product__option__block th, .product__option__block td {
	text-align: center;
  }
  .product__option__block label {
	margin: 1em 0 0;
	font-size: .9em;
  }
  
  .product__init .dl-vertical-list__content {
	margin-bottom: 0;
  }
  
  .product__init-num {
	font-size: 1.5em;
	border-radius: 0;
	padding-top: .5em;
	padding-bottom: .5em;
	text-align: right;
	width: 50px;
	border: 2px solid #999;
	display: inline-block;
  }
  
  .product__init-updw {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	line-height: .9;
  }
  
  .product__order__btns {
	list-style-type: none;
	margin: 2em 0;
  }
  
  .product__order__btn {
	margin-bottom: 1em;
  }
  .product__order__btn i {
	margin-right: .8em;
  }
  
  .btn--addcart {
	padding: .7em 0;
  }
  
  .btn--quick-order {
	padding: .4em 0;
  }
  
  .btn--soldout {
	padding: .7em 0;
	border: none;
	opacity: 1;
	-ms-filter: "alpha(opacity=100)";
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  }
  .btn--soldout:hover {
	background: #ddd;
  }
  
  .product__info {
	background: #f5f5f5;
	padding: 2em 0;
	margin: 3em 0;
  }
  
  .product__info__list {
	margin: 2em 0 0;
	list-style-type: none;
  }
  .product__info__list:first-child {
	margin-top: 0;
  }
  
  .product__info__list__unit {
	font-size: .9em;
	line-height: 1.8;
	margin: .5em 0;
  }
  .product__info__list__unit:first-child {
	margin-top: 0;
  }
  .product__info__list__unit a {
	color: #111;
  }
  
  .text-titles {
	margin: 0 auto 2em;
  }
  .text-titles-list__detail-text {
	width: 100%;
	height: 30px;
	padding: .5em;
	border: 1px solid #ccc;
	display: inline-block;
  }

  .product__images{
	  padding: 0;
  }
  
  @media (max-width: 1080px) {
	.product__order__btn{
		margin-left: 0;
	}
  }
  @media (max-width: 980px) {
	/* ~980px */
  }
  @media (max-width: 768px) {
	/* ~768px */

	.product_banner{
		padding-top: 37px;
		padding-bottom: 100px;
	}
	.product__images img {
	  margin: 0 auto;
	}
	.product__init-num {
		width: 85px;
	}
	.buy_num{
		position: relative;
    left: 54%;
    width: 50%;
	}
	.product__price{
		position: absolute;
		bottom: 80px;
      font-size:24px;
	}
	.productCont{
		margin-top: 15px;
	}
  
	.product__name {
		text-align: left;
		margin-top: 40px;
	}
	.productWrap{
		flex-direction: column;
	}
	.product__main-image{
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}
	.product_right{
		position: relative;
		margin-left: 0;
		width: 100%;
	}
	.product__main-image img{
		max-width: unset;
		width: 100%;
		min-width: unset;
	}
	.product__info {
	  padding: 1.5em 0;
	  margin: 1.5em 0;
	}
  
	.product__info__list:first-child {
	  margin-top: 2em;
	}
  }
  @media (max-width: 480px) {
	/* ~480px */
  }
  




/*********************************************
	クイックカートイン
*********************************************/
  
  .cart_in_modal,
  .cart_in_error_modal {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .7);
	z-index: 20000;
	display: flex;
	overflow: auto;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal,
	.cart_in_error_modal {
	  align-items: center;
	}
  }
  
  .cart_in_modal__bg {
	background-color: rgba(0, 0, 0, .7);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 20000;
  }
  
  .cart_in_modal__outline {
	width: 90%;
	margin: 20px 5%;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .4);
	box-sizing: border-box;
	text-align: center;
	position: absolute;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__outline {
	  width: 900px;
	  margin: auto;
	  padding: 20px 70px;
	  position: relative;
	}
  }
  
  .cart_in_modal__heading {
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0;
	line-height: 1.4;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__heading {
	  font-size: 26px;
	  margin: 30px 0;
	  line-height: 1.2;
	}
  }
  
  .cart_in_error_modal__heading {
	font-size: 20px;
	font-weight: bold;
	margin: 40px 0 20px;
	line-height: 1.4;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_error_modal__heading {
	  margin: 30px 0;
	  line-height: 1.2;
	}
  }
  
  .cart_in_modal__detail {
	display: flex;
	padding: 20px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	align-items: center;
	flex-direction: column;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__detail {
	  flex-direction: row;
	}
  }
  
  .cart_in_modal__name {
	font-size: 16px;
	flex: 1;
	line-height: 1.4;
	text-align: left;
	margin: 0;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__name {
	  font-size: 18px;
	}
  }
  
  .cart_in_modal__image-wrap {
	padding: 5px;
	width: 170px;
	height: 170px;
	background: rgba(0, 0, 0, .1);
	position: relative;
	border: 5px solid transparent;
	box-sizing: border-box;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__image-wrap {
	  margin: 0 30px 0 0;
	  flex-basis: 170px;
	}
  }
  
  .cart_in_modal__image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
  }
  
  .cart_in_modal__text-link {
	color: #2169f3;
	cursor: pointer;
	position: relative;
	display: inline-block;
	margin: 20px 0 0;
	padding: 0 0 0 20px;
	line-height: 1.15;
  }
  .cart_in_modal__text-link::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #2169f3;
	border-right: 2px solid #2169f3;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
  }
  
  .cart_in_modal__button-wrap {
	width: 100%;
	margin: 30px auto;
	font-size: 17px;
  }
  
  @media screen and (min-width: 960px) {
	.cart_in_modal__button-wrap {
	  width: 350px;
	}
  }
  .cart_in_modal__button {
	font-size: 17px;
	font-weight: bold;
	line-height: 23px;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	vertical-align: middle;
	text-decoration: none;
	color: #fff;
	border: 0;
	border-radius: 4px;
	width: 100%;
	height: 58px;
	padding: 15px;
	background: #2169f3;
	box-shadow: 0 2px 0 #1a54c2;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
  
  .cart_in_modal__button:hover,
  .cart_in_modal__button:focus {
	height: 58px;
	color: #e9f0fe;
	background-color: #1e5fdb;
	box-shadow: none;
	transform: translate3d(0, 2px, 0);
  }
  
  .cart_in_modal__close-icon {
	cursor: pointer;
  }
  
  .cart_in_modal__close-icon::before,
  .cart_in_modal__close-icon::after {
	content: "";
	width: 35px;
	height: 6px;
	display: block;
	position: absolute;
	top: 30px;
	right: 20px;
	background: #eee;
	border-radius: 4px;
  }
  
  .cart_in_modal__close-icon::before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  }
  
  .cart_in_modal__close-icon::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  
  .spinner::before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 100px;
	width: 100px;
	margin-top: -50px;
	margin-left: -50px;
	border-radius: 50%;
	border: 5px solid #eee;
	border-top-color: #fd7f23;
	animation: spinner 0.5s linear infinite;
  }
  
  @keyframes spinner {
	to {
	  transform: rotate(360deg);
	}
  }
  
  @media screen and (min-width: 960px) {
	.sp-br {
	  display: none;
	}
  }
  
  .linkWrap{
	  margin-top:15px;
		position:relative;
  }
  
  .linkWrap::before {
	content: "";
	position: absolute;
	left: 70px;
	top: 8px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #2169f3;
	border-right: 2px solid #2169f3;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
  }


/*********************************************
	Slingle MENU
*********************************************/
.singleMenu {
	margin: auto;
}
.singleList {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 938px;
	margin: 60px auto 120px;
	list-style: none;
	justify-content: space-between;
}
.singleList.setmenu{
	margin-bottom: -40px;
}
.singleList_item {
	max-width: 188px;
	width: 100%;
	margin-bottom: 75px;
	position: relative;
	justify-content: space-between;
	display: flex;
	flex-direction: column;
}

.cartjs_sk_link_other{
display: none;}


@media (max-width: 768px) {
	.linkWrap::before {
		left: 35px;
	}
		
	.singleList {
		max-width: 91.53%;
	}
	.singleList_item {
		max-width: 134px;
	}
	.singleList_item {
		margin-bottom: 45px;
	}
}
@media (max-width: 375px) {
	.singleList {
		max-width: 85.53%;
	}
}

/*********************************************
	最近チェックした商品
*********************************************/
.cartjs_cart_in input{
	font-size: 14px !important;
	background-color: black !important;
	border-radius: 0 !important;
	max-width: 188px !important;
	max-height: 40px !important;
	width: 100% !important;
}
.item_name {
	font-size: 19px;
	padding: 19px 0;
	text-align: center;
    font-weight: 700;
    letter-spacing: .15em;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.item_price{
	font-size:14px;
	color: #414141;
	font-weight: 300;
	border-top: 1px solid;
    padding: 14px 0 12px;
    text-align: end;
}
.plus_btn{
	position: absolute;
    right: -15px;
    top: -17px;
	z-index: 100;
	max-width: 45px;
}
.item_img{
	border: 1px solid black;
    padding: 13px;
    width: 85.0%;
}
.cartjs_box{
	padding: 0 !important;
}
.cartjs_product_table table{
	display: none !important;
}
.singleList::before {
    content: "";
    display: block;
    width: 188px;
    order: 1;
}
.singleList::after{
	content: "";
	display: block;
	width: 188px;
}
.section__title-h2{
	border-top: 1px solid black;
	padding-top: 100px;
	font-weight: 700;
}

@media (max-width: 768px) {
	.singleList::after{
		content: "";
		display: block;
		width: 134px;
	}
  	.singleList::before{
		content: "";
		display: block;
		width: 134px;
	}
  
}
@media (max-width: 767px) {
	.plus_btn{
		max-width: 32px;
		right: -10px;
    	top: -11px;
	}
	.singleList{
		margin-top: 30px;
	}
	.item_img{
		width: 79%;
	}
	.item_name{
		font-size: 14px;
		padding: 10px 0;
	}
	.item_price{
		font-size: 13px;
		padding: 6px 0;
	}
	.cartjs_cart_in input{
		font-size: 10px !important;
		max-height: 23.5px !important;
	}
	.singleList::after{
		content: "";
		display: block;
		width: 134px;
	}
  	.singleList::before{
		content: "";
		display: block;
		width: 134px;
	}
	.section__title-h2{
		border-top: 1px solid black;
    max-width: 92.53%;
    padding-left: 7%;
	text-align: left;
    padding-top: 50px;
	}
}
@media (max-width: 320px) {
	.singleList{
		max-width: 93.53%;
	}
	.singleList_item{
		max-width: 125px;
	}
	.item_img{
		width: 77%;
	}
	.section__title-h2{
    	padding-left: 4%;
	}
}

.banner-list__unit{
	width: 423px !important;
	margin-left: 2px;
}
.banner_img{
	object-fit: cover;
	height: 200px;
}
#wrapper .bx-wrapper .bx-controls .bx-controls-direction a{
	width: 30px;
	height: 30px;
	border-radius: 50% !important;
	border: 1px solid black;
	margin-top:-16px;
}
.bx-prev{
	border-left: 1px solid black !important;
	left: 60px !important;
	background-size: 4px !important;
	background-position: center !important;
	background-image: url(https://img07.shop-pro.jp/PA01362/550/etc/prev2.png?cmsp_timestamp=20210906165059) !important;
}

.bx-next{
	border-right: 1px solid black !important;
	background-size: 5px !important;
	background-position: center !important;
	background-image: url(https://img07.shop-pro.jp/PA01362/550/etc/next1.png?cmsp_timestamp=20210906165148) !important;
	right: 60px !important;
}
@media (max-width: 768px) {
	.banner-list__unit{
		margin-left: 1px;
		margin-right: 1px;
		width: 384px !important;
	}
	.banner_img{
		object-fit: cover;
		height:200px;
	}
}
@media (max-width: 767px) {
	.banner-list__unit{
		width: 187px !important;
	}
	.banner_img{
		object-fit: cover;
		height: 100px;
	}
}



/*********************************************
	カートインボタン
*********************************************/
.btn-primary{
	background: black !important;
	border: none;
	font-weight:700;
	border: none;
}
.dl-vertical-list__title{
	font-size: 12px;
	font-weight: 400;
}


.icon-next{
    width: 12px;
    padding-top: 12px;
    display: block;
    background-size: 12px;
    background-repeat: no-repeat;
	background-image: url(https://img21.shop-pro.jp/PA01474/393/etc/down.png?cmsp_timestamp=20210928154610);
}
.icon-prev{
    width: 12px;
    padding-top: 12px;
    display: block;
    background-size: 12px;
    background-repeat: no-repeat;
	background-image: url(https://img21.shop-pro.jp/PA01474/393/etc/up.png?cmsp_timestamp=20210928154647);
}

.bx-prev{
	display: none !important;
}
.bx-next{
	display: none !important;
}
.bx-pager{
	display: none !important;
}

@media (max-width: 768px) {
	.icon-next{
		width: 14px;
		padding-top: 14px;
		display: block;
		background-size: 14px;
	}

	.icon-prev{
		width: 14px;
		padding-top: 14px;
		display: block;
		background-size: 14px;
	}
	.bx-pager-link{
		width: 64px !important;
		border: 1px solid black !important;
		height: 5px !important;
		border-radius: 8px;
		background: #fff !important;
	}
	.bx-pager-link.active{
		background: black !important;
	}
	.bx-pager{
		bottom: -40px !important; 
		display: block !important;
	}
	.bx-prev{
		display: none !important;
	}
	.bx-next{
		display: none !important;
	}
}
