/* 全体 */
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%;
  }
}

/* ▼ 料金表の基本 */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ▼ テーブルは縮めない */
.table-wrap table {
  border-collapse: separate;  
  border-spacing: 2px;       
  min-width: 1200px;
}
}

/* ▼ 折り返し防止 */
.table-wrap th,
.table-wrap td {
  white-space: nowrap;
  font-size: 12px;
  padding: 4px 8px;
}

/* ▼ 左列固定 */
.table-wrap th:first-child {
  position: sticky;
  left: 0;
  background: #edd0ba;
  z-index: 2;
}

/* ▼ スマホ用調整 */
@media screen and (max-width: 768px) {
  #haku {
    width: 95% !important;
  }
}

// Scss Document



