/* 全体 */
body {
  margin: 0;
  font-family: sans-serif;
}

/* 商品全体 */
.product-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* 画像エリア */
.product-image {
  max-width: 800px;      /* ← Takeo Paperのサイズ感 */
  margin: 0 auto;
}

/* Swiper本体 */
.product-swiper {
  width: 100%;
}

/* 画像 */
.product-swiper img {
  width: 100%;
  height: auto;
  display: block;
}


/* 矢印（） */
.swiper-button-next,
.swiper-button-prev{
  color:#fff; 
}

.swiper-button-next::after,
.swiper-button-prev::after{
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
}


/* ドット（下の丸） */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #333;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .product-image {
    max-width: 90%;
  }
}
// Scss Document



