/* 
///////////////////////////////////////////////

SWIPEBOX

///////////////////////////////////////////////
*/

html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
          transition: -webkit-transform 0.4s ease;
          -o-transition: transform 0.4s ease;
          transition: transform 0.4s ease;
          transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/c3dpcGVib3gtbG9hZGVy.gif) no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  /* bottom: -50px; */
  bottom: 0px;
}
/* #swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
          transform: translate3d(0, -50px, 0);
} */

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/c3dpcGVib3gtaWNvbnM.png)!important;
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
          animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
          animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .3s ease;
          -o-transition: all .3s ease;
          transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
          box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
          box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin
--------------------------*/
#swipebox-overlay {
  background: #0d0d0dcc;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}


/* 
///////////////////////////////////////////////

PRODUCT

///////////////////////////////////////////////
*/

input,
button,
select,
textarea {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


main {
  margin-top: 50px;
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/c2hvcF9mb290ZXJfYm9yZGVy.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 800px;
  padding-bottom: 80px;
}


.visible__shop {
  display: block;
}

.header-viewcart {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}


#product {
  padding-top: 50px;
  padding: 50px 8%;
}

.product_container {
  margin-bottom: 50px;
}

.product_image {
  position: relative;
  padding: 20px 0;
}


@media (min-width: 680px) {

  #product {
    padding: 50px 2%;
  }

  .product_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 880px;
    width: 100%;
    margin: 0 auto 50px;
  }

  .product_content_right {
    padding: 0px 0 0 20px;
    width: 50%;
  }

  .product_image {
    width: 50%;
  }

}

/* 
///////////////////////////////////////////////
*/

/* 人気アイコン バッジで冬付与
/* 商品名で付与 */
.product_image.badge_osusume:before,
.product_image.badge_ninki:before {
  content: " ";
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 100px;
  height: 100px;
  right: -5px;
  top: 5px;
  z-index: 1;
}

.product_image.badge_ninki:before {
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/YmFkZ2Vfbmlua2k.png);
}

.product_image.badge_osusume:before {
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/YmFkZ2Vfb3N1c3VtZQ.png);
}

/* 
///////////////////////////////////////////////
*/

.product_image img {
  border-radius: 25px;
  display: block;
}

.product_image li {
  padding: 10px 0 0;
}

.product_image li:nth-child(2) {
  padding-right: 1%;
}

.product_image li:nth-child(3) {
  padding-left: 1%;
}

.product_image li:nth-child(n+4) {
  display: none;
}


.product_names {
  overflow: hidden;
  padding-top: 30px;
  width: 100%;
}


h1.product_name {
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
  margin: 0 auto 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}


.product_sexpl {
  text-align: center;
}

.product_prices {
  margin-top: 30px;
}

ul.prduct_option_price li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

ul.prduct_option_price li .product_price {
  margin-left: auto;
}

.prduct_option_price li .option_list_name {
  text-align: left;
}

.product_price {
  text-align: right;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c33720;
}

span.price_tax {
  font-size: 8px;
  color: #000;
  letter-spacing: 0.01em;
}


.product_expl_container {
  background: #d6b98f30;
  font-weight: 500;
  padding: 20px 5%;
  margin: 40px 0;
  border-radius: 16px;
}

.product_expl_container ul {
  border: 0.5px solid #000;
  margin-top: 1em;
  padding: 5px;
  border-radius: 10px;
  font-size: 0.6em;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.product_expl_container li {
  width: 50%;

}

.product_expl_container li:nth-child(2n-1) {
  border-right: 1px #000 dashed;
}

.product_expl_bottom{
  max-width: 760px;
  margin: 40px auto;
}


.product_select_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.product_select {
  font-size: 1.3em;
  width: 60%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.product_select_tit {
  margin-right: auto;
  width: 20%;
}

.input_prepend.input_append {
  width: 80%;
  text-align: center;
}

table#option_tbl {
  width: 80%;
  text-align: center;
}



.product_select input[type="text"] {
  border: none;
  width: 2em;
  padding: 0;
  text-align: center;
}


span.input_prepend a {
  display: inline-block;
  border: 1px solid #000;
  width: 25px;
  height: 25px;
  text-align: center;
  border-radius: 3px;
  font-weight: 800;
  font-size: 20px;
}


.btn-lg {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 5px;
}


.btn_addcart {
  background-color: #c33720;
  color: #fff;
  font-weight: 500;
  margin: 20px auto;
}

.btn_addcart img {
  width: auto;
  height: 26px;
}



.product_guide a::after {
  content: "▲";
  -webkit-transform: rotatez(90deg);
      -ms-transform: rotate(90deg);
          transform: rotatez(90deg);
  display: inline-block;
  font-size: 5px;
  margin-left: 10px;
}


.product_guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding-right: 3%;
}


.product_guide ul {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  line-height: 2em;
}

.produckt_review {
  margin-top: 30px;
  max-width: 768px;
  margin: auto;
}

.section_title {
  position: relative;
  text-align: center;
}

.section_title span {
  background: #fff;
  padding: 10px;
}

.section_title::after {
  content: " ";
  position: absolute;
  border-top: 1px solid #000;
  width: 100%;
  height: 1px;
  margin: auto;
  left: 0;
  right: 0;
  top: 10px;
  z-index: -10;
}



/* お客様の声 */

.review_container {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: auto;
}


.koe_container {
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.koe_container:before {
  content: " ";
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/a29lX2RhaWJ1dHN1.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 60px;
}

.koe_content {
  width: calc(100% - 60px);
}

.koe_name {
  font-weight: 600;
  font-size: 1.1em;
  margin-left: 8%;
}

.koe_text {
  position: relative;
  background: #efefef;
  font-size: 0.9em;
  margin-left: 7%;
  padding: 12px;
  border-radius: 10px;
}


.koe_text:before {
  content: " ";
  background-image: url(https://img21.shop-pro.jp/PA01494/506/etc_base64/a29lX2Z1a2lkYXNoaQ.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  top: 30%;
}


@media (min-width: 480px) {
  .koe_name {
    margin-left: 6%;
  }

  .koe_text {
    margin-left: 5%;
  }
}

@media (min-width: 680px) {
  .koe_name {
    margin-left: 4%;
  }

  .koe_text {
    margin-left: 3%;
  }
}

.review_write {
  text-align: center;
}


.review_write a {
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 10px;
}

#History {
  padding: 0 8%;
  overflow: hidden;
  width: 100%;
  max-width: 768px;
  margin: auto;
}

@media (min-width: 480px) {
  #History {
    padding: 0 2%;
  }
}

#History ul {
  padding: 20px 0;
}

#History a {
  font-size: 0.8em;
  font-weight: 500;
  text-align: center;
}


#History li:nth-child(n+4) {
  display: none;
}

#History .history_img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  height: calc(84vw * 0.2);
}


#History .history_img:before {
  display: block;
  content: " ";
  padding-top: 100%;
}

#History .history_img img {
  position: absolute;
}

@media (min-width: 480px) {
  #History .history_img {
    height: 19vw;
  }
}

@media (min-width: 768px) {
  #History .history_img {
    height: 150px;
  }
}

/* オプションテーブルの修正 */

#option_tbl .stock_head {
  display: none;
}

table#option_tbl div:has(input) {
  display: none;
}

table#option_tbl div:has(input:checked)+label {
  background: #c33720;
  color: #fff;
  font-weight: 600;
}


table#option_tbl div:has(input)+label {
  border: 1px solid #000;
  border-radius: 3px;
  padding: 5px;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 11px;
}

#prd-opt-table {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}

#option_tbl tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cell_2 .opt_soldout,
.cell_2 .table_price {
  display: none;
}

.stock_zero+.opt_soldout {
  display: block;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 5px;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  background: #aaa;
  color: #333;
  font-weight: 400;
  font-size: 14px;
}

td.cell_2 br {
  display: none;
}

.cell_2 .stock_zero {
  font-size: 9px;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 10px;
  color: #c33720;
}