/* ================================================================
================================================================
 * ▼▼▼ カスタム ▼▼▼
================================================================
================================================================== */

/*----------------------------------------------------
	商品詳細 - 商品画像 スライダー
----------------------------------------------------*/
.p-product-img ul, .p-product-img ol, .p-product-img dl {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}
/* 全体 div */
.p-product-img {
    display: block;
    width: 550px; /* 商品画像 */
    margin: 0 auto 30px auto;
    padding: 0;
}
@media screen and (max-width: 980px) {
  .p-product-img {
    max-width: 100%;
  }}
/* 画像 div */
.p-product-img__main {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.p-product-img__main-item {
  position: relative;
  text-align: center;
}
.p-product-img__main-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-img__main-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-product-img__main-item img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

/* サムネイル ul */
.p-product-img__thumb {
    padding-left: 20px;
    padding-right: 20px;
}
.p-product-thumb-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
}
@media screen and (max-width: 1025px) {
  .p-product-thumb-list {
    flex-wrap: nowrap;
  }}
.p-product-thumb-list__item {
  box-sizing: border-box;
  margin-bottom: 8px;
  margin-right: 10px;
  padding-left: 0;
  padding-right: 0;
  width: 12.5%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-thumb-list__item:hover,
.p-product-thumb-list__item.is-current {
  opacity: 0.6;
  cursor: pointer;
  border: 1px solid #1a0dab;
}
 .p-product-thumb-list__item img { width: 100%; }

.p-product-thumb-list__img {
  /* overflow用 */
  position: relative;
  text-align: center;
}
.p-product-thumb-list__img {
  width: 100%;
  text-align: center;
}
.p-product-thumb-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-thumb-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}
/* slider 矢印 */
.slider-arrow {
  position: absolute;
  background-color: rgba(0,0,0,0.3);
  top: 50%;
  margin-top: -15px;  /* 高さの半分だけネガティブマージン */
  font-size: 30px; font-size: 3.0rem; /* 矢印 サイズ */
  color: #FFF;
  cursor: pointer; /* ポインター 指 */
  z-index: 10;  /* 重要 */
}
.slider-prev {
  left: 0;
  padding: 15px 5px 15px 3px; /* 左矢印 padding */
}
.slider-next {
  right: 0;
  padding: 15px 3px 15px 5px; /* 右矢印 padding */
}
