.product__main-image img {
  display: block;
  margin: 0 auto;
}

.product__thumbs {
  padding-top: 2px;
  margin: 0 -1px;
}

.product__thumb__unit {
  padding: 0 1px 1px;
}
.product__thumb__unit img {
  max-height: 150px;
  cursor: pointer;
}

.product__name {
  text-align: left;
}

.product__price {
  font-size: 1.5em;
  letter-spacing: .05em;
}

.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;
  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;
}

.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;*/
  background: #fcfdf7;
  padding: 80px 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;
}

@media (max-width: 980px) {
  /* ~980px */
}
@media (max-width: 768px) {
  /* ~768px */
  .product__images img {
    margin: 0 auto;
  }

  .product__name {
    text-align: center;
  }

  .product__info {
    padding: 1.5em 0;
    margin: 1.5em 0;
  }

  .product__info__list:first-child {
    margin-top: 2em;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*  クイックカートイン CSS  */

.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;
  }
}



/* 220307追加 */

#shohin_shosai220308 .clear{
	clear: both;
	}
	
#shohin_shosai220308{
	/* width:840px; */
	width:100%;
	}

#shohin_shosai220308 h3{
	margin: 0 0 25px 0;
	padding:0;
	position: relative;
	font-size:20px;
	color:#242C00;
	}

#shohin_shosai220308 h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #A8CA01, #A8CA01 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #A8CA01, #A8CA01 2px, #fff 2px, #fff 4px);
	}

/* 従来商品 */
#shohin_shosai220308 h3.jyurai:after {
	background: -webkit-repeating-linear-gradient(-45deg, #B86800, #B86800 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #B86800, #B86800 2px, #fff 2px, #fff 4px);
	}
	
/* 二重地袋 */
#shohin_shosai220308 h3.nijyu:after {
	background: -webkit-repeating-linear-gradient(-45deg, #BC4454, #BC4454 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #BC4454, #BC4454 2px, #fff 2px, #fff 4px);
	}
	
#shohin_shosai220308 p{
	margin: 0 0 15px 0;
	padding:0;
	font-size:15px;
	color: #322C19;
	line-height:160%;
	}
	
#shohin_shosai220308 p span{
	font-size:17px;
	color: #EA6100;
	font-weight: bold;
	}
	
#shohin_shosai220308 .shosai_contents01{
	width: 100%;
	}

#shohin_shosai220308 img{
	margin: 0;
	padding:0;
	}

#shohin_shosai220308 .shosai_contents01 .size_images{
	/* width:310px; */
	width:38%;
	margin: 0 2% 0 0;
	float: left;
	}

#shohin_shosai220308 .shosai_contents01 .size_images img{
	width:100%;
	height:auto;
	}

#shohin_shosai220308 .shosai_contents01 table{
	/* width:500px; */
	width:60%;
	margin: 0 0 50px 0;
	padding:0;
	float:right;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

#shohin_shosai220308 .shosai_contents01 th {
	width:90px;
	background: #A8CA01;
	border: solid 1px #CEC29D;
	font-size:15px;
	color: #FFFFFF;
	line-height:140%;
	padding: 10px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

/* 従来商品 */
#shohin_shosai220308 .shosai_contents01 th.jyurai {
	background: #B86800;
	}
	
/* 二重地袋 */
#shohin_shosai220308 .shosai_contents01 th.nijyu {
	background: #BC4454;
	}

#shohin_shosai220308 .shosai_contents01 td {
	border: solid 1px #CEC29D;
	background:#FFFFFF;
	padding: 10px;
	font-size:15px;
	color: #4D4426;
	line-height:140%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}
	
#shohin_shosai220308 .shosai_contents01 td span{
	font-size:12px;
	color: #EA6100;
	}
	
#shohin_shosai220308 .shosai_contents02{
	margin: 0 0 70px 0;
	padding:30px 0 0 0;
	}
	
#shohin_shosai220308 .shosai_contents03{
	margin: 0 0 70px 0;
	}
	
#shohin_shosai220308 .shosai_contents03 table{
	width:100%;
	margin: 0 0 20px 0;
	border-collapse: collapse; 
	text-align: center;
	}

#shohin_shosai220308 .shosai_contents03 th {
	width:90px;
	background: #A8CA01;
	border: solid 1px #CEC29D;
	font-size:15px;
	color: #FFFFFF;
	line-height:140%;
	padding: 10px 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

/* 従来商品 */
#shohin_shosai220308 .shosai_contents03 th.jyurai {
	background: #B86800;
	}
	
/* 二重地袋 */
#shohin_shosai220308 .shosai_contents03 th.nijyu {
	background: #BC4454;
	}

#shohin_shosai220308 .shosai_contents03 td {
	border: solid 1px #CEC29D;
	background:#FFFFFF;
	padding: 10px;
	font-size:15px;
	color: #4D4426;
	line-height:140%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}
	
#shohin_shosai220308 .shosai_contents04{
	margin: 0 0 50px 0;
	}

#shohin_shosai220308 .shosai_contents04 ul{
	margin: 0 0 4% 0;
	padding: 0;
	list-style: none;
	clear: both;
	}
	
#shohin_shosai220308 .shosai_contents04 li{
	width: 48%;
	margin: 0 0 4% 0;
	padding: 0;
	font-size:15px;
	color: #322C19;
	line-height:160%;
	float: left;
	}

#shohin_shosai220308 .shosai_contents04 li.text01{
	margin: 0 4% 0 0;
	}

#shohin_shosai220308 .shosai_contents04 .icon{
	width: 120px;
	height: 120px;
	margin: 0 10px 0 0;
	float: left;
	clear: both;
	}	

#shohin_shosai220308 .shosai_contents04 h4{
	margin: 0 0 10px 0;
	padding: 10px 0 0 0;
	font-size:18px;
	color:#EA6100;
	}	
	
#shohin_shosai220308 .shosai_contents04 p{
	font-weight: bold;
	}
	
#shohin_shosai220308 .shosai_contents05{
	padding:50px 0;
	}
	
#shohin_shosai220308 .shosai_contents05 table{
	border-collapse: collapse; 
	text-align: center;
	}

#shohin_shosai220308 .shosai_contents05 table.size_text01{
	width:48%;
	margin: 0 4% 0 0;
	float: left;
	}
	
#shohin_shosai220308 .shosai_contents05 table.size_text02{
	width:48%;
	float:right;
	}

#shohin_shosai220308 .shosai_contents05 th {
	width:50%;
	background: #A8CA01;
	border: solid 1px #CEC29D;
	font-size:15px;
	color: #FFFFFF;
	line-height:140%;
	padding: 10px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

/* 従来商品 */
#shohin_shosai220308 .shosai_contents05 th.jyurai {
	background: #B86800;
	}
	
/* 二重地袋 */
#shohin_shosai220308 .shosai_contents05 th.nijyu {
	background: #BC4454;
	}

#shohin_shosai220308 .shosai_contents05 td {
	width:50%;
	border: solid 1px #CEC29D;
	padding: 10px;
	font-size:15px;
	color: #4D4426;
	line-height:140%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

	

	
/* -------------------------------------------------- スマートフォン */
@media screen and (max-width:1000px) {
	/* 表示領域が1000px未満の場合に適用するスタイル */
	#shohin_shosai220308{
	width:96%;
    margin: 0 2%;
	}
	#shohin_shosai220308 .shosai_contents01 .size_images{
	width:80%;
    margin:0 10% 30px 10%;
	text-align: center;
	float: none;
	}
	#shohin_shosai220308 .shosai_contents01 table{
	width:100%;
	float: none;
	}
	#shohin_shosai220308 .shosai_contents01 th {
	font-size:14px;
	}
	#shohin_shosai220308 .shosai_contents01 td {
	font-size:14px;
	}
	#shohin_shosai220308 .shosai_contents03 th {
	width: 33.33%;
	}
	#shohin_shosai220308 .shosai_contents04 li{
	width: 100%;
	margin: 0 0 4% 0;
	clear: both;
	float: none;
	}
	#shohin_shosai220308 .shosai_contents04 li.text01{
	margin: 0 0 4% 0;
	}	
	#shohin_shosai220308 .shosai_contents04 h4{
	margin: 0 10px 10px 0;
	font-size:17px;
	}
	#shohin_shosai220308 .shosai_contents05 table.size_text01{
	width:100%;
	margin: 0 0 0 0;
	border-bottom: none;
	float: none;
	}
	#shohin_shosai220308 .shosai_contents05 table.size_text02{
	width:100%;
	float: none;
	}
}
	

/* 他商品へのリンクボタン220421 */
.other_btn{
	width: 100%;
	margin: 0 0 100px 0;
	clear: both;
	}

.other_btn01{
	width: 48%;
	float: left;
	}

.other_btn02{
	width: 48%;
	float: right;
	}


/* 従来商品ボタン */
.jyurai_btn a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 10px 20px;
	width:100%;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	background-color: #B86800;
	transition: 0.3s;
	text-decoration: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
	}

.jyurai_btn a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	transform: rotate(45deg);
	}

.jyurai_btn a:hover {
	text-decoration: none;
	background-color: #C68633;
	}


/* 薄い商品ボタン */
.usui_btn a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 10px 20px;
	width:100%;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	background-color: #558F11;
	transition: 0.3s;
	text-decoration: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
	}

.usui_btn a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	transform: rotate(45deg);
	}

.usui_btn a:hover {
	text-decoration: none;
	background-color: #77A541;
	}


/* 二重地袋ボタン */
.nijyuji_btn a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 10px 20px;
	width:100%;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	background-color: #BC4454;
	transition: 0.3s;
	text-decoration: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .2);
	}

.nijyuji_btn a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	transform: rotate(45deg);
	}

.nijyuji_btn a:hover {
	text-decoration: none;
	background-color: #C96976;
	}
	
/* -------------------------------------------------- スマートフォン */
@media screen and (max-width:600px) {
	/* 表示領域が600px未満の場合に適用するスタイル */
	.other_btn{
	width: 90%;
	margin: 0 5% 70px 5%;
	}
	.other_btn01{
	width: 100%;
	margin: 0 0 20px 0;
	float: none;
	}
	.other_btn02{
	width: 100%;
    margin: 0 0 20px 0;
	float: none;
	}
}


.box220526{
    padding:20px 20px 10px 20px;
    margin:0 0 40px 0;
    color: #474747;
    background: whitesmoke;/*背景色*/
    border-left: double 7px #ff0000;/*左線*/
    border-right: double 7px #ff0000;/*右線*/
  text-align:center;
}
.box220526 p {
    margin: 0; 
    padding: 0;
}
	
.box220526 p span{
 color: #ff0000 !important;
}