/* CSS Document */
@media screen and (max-width:768px) {
  /* -----------------------------------------------------------------
  商品詳細ページ　在庫表 
  ----------------------------------------------------------------- */
   #option_matrix {
      overflow-x: scroll;
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
   }
   .opt-list {
      width: 150%;
   }  
}

/*------------------------------以下、PC------------------------------*/

@media print, screen and (min-width:769px) {
  /* -----------------------------------------------------------------
  オプション表 
  ----------------------------------------------------------------- */
  .opt-list {
    display: table;
    table-layout: fixed;
    border-bottom: 1px solid #ccc;
    width: calc(100% - 1px);
  }

  .opt-list>dl {
    display: table-row
  }

  .opt-list>dl>dd, .opt-list>dl>dt {
    display: table-cell;
    width: 13%;
    box-sizing: border-box;
    padding-left: 8px;
  }

  .opt-list-head-item {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }

  .opt-list-head-item-empty {
    border-right: 1px solid #ccc;
  }

  .opt-list-data-item-head {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }

  .opt-list-data-item {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 3px;
  }

  .opt-list img {
    width: 66px;
    vertical-align: middle;
    margin: 5px;
    border: 3px solid #ccc;
    border-radius: 100%;
  }
  .opt-list-data-item-head div,
  .opt-list-head-item div {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
  }

}
/* 追加分*/
@media print, screen and (max-width:768px) {
  .image-wrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  /*  商品詳細ページ 在庫表 */
  #option_matrix {
      overflow-x: scroll;
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
   }
   div#option_matrix::-webkit-scrollbar {
     height: 5px;
   }
   div#option_matrix::-webkit-scrollbar-track {
     background: #f1f1f1;
   }
   div#option_matrix::-webkit-scrollbar-thumb {
     background: #bcbcbc;
   }
   .opt-list {
      width: 150%;
   }   
  .opt-list {
    display: table;
    table-layout: fixed;
    border-bottom: 1px solid #ccc;
  }
  .opt-list-data-item-head {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1pxsolid #ccc;
  }
  .opt-list>dl {
    display: table-row;
  }
  .opt-list>dl>dd, .opt-list>dl>dt {
    display: table-cell;
    width: 13%;
    box-sizing: border-box;
  }
  .opt-list-data-item-head {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .opt-list-head-item {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 10px;
  }
  .opt-list-data-item {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 2px;
  }
  .opt-list img {
    width: 66px;
    vertical-align: middle;
    margin: 5px;
    border: 3px solid #ccc;
    border-radius: 100%;
  }
}

/***** スワイプ矢印　*****/
.text {
display: none;
}
.text-prev {
font-size: 2em;
position: fixed;
top: 40%;
left: -3%;
transform: translate(50%, -50%);
opacity: 0;
transition: opacity .3s;
}
.text-next {
font-size: 2em;
position: fixed;
top: 40%;
right: -3%;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity .3s;
}

.text-overflow-prev {
font-size: 2em;
position: fixed;
top: 40%;
left: -3%;
transform: translate(50%, -50%);
color: rgb(0, 122, 255);
opacity: 0.8;
}
.text-overflow-next {
font-size: 2em;
position: fixed;
top: 40%;
right: -3%;
transform: translate(-50%, -50%);
color: rgb(0, 122, 255);
opacity: 0.8;
}
.item-option-wrap {
  position: relative;
}
/****  スワイプ矢印ここまで　*****/
