@media (min-width: 768px) {
    .item-list .members-price {
        font-size: 13px;
        line-height: 1.76923;
    }
}

.members-price .members-price-tax {
    font-size: 11px;
    display: inline-block;
    line-height: 1;
  }


/* ==================================================
 商品詳細上のバナーカルーセルCSS
================================================== */

/* 1. デフォルト（PC表示）は非表示 */
.sp-banner-section {
  display: none;
  width: 100%;
  background-color: #fcfcfc;
  padding: 10px 0;
  position: relative;
  box-sizing: border-box;
}

/* 2. スマホ表示（画面幅767px以下）の時のスタイル */
@media screen and (max-width: 767px) {
  .sp-banner-section {
    display: block; /* スマホの時だけ表示 */
  }

  /* Swiperコンテナの調整 */
  .sp-banner-section .swiper {
    width: 100%;
    padding: 0 40px; /* 左右のチラ見せ用の余白 */
    box-sizing: border-box;
    overflow: hidden;
  }

  /* スライド枠を3:1の比率に固定 */
  .sp-banner-section .swiper-slide {
    width: 85%; /* 中央バナーの横幅 */
    aspect-ratio: 3 / 1; /* 枠を3:1に固定 */
    height: auto;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    box-sizing: border-box;
    transition: opacity 0.3s, transform 0.3s;
  }

  /* 中央以外のスライドを少し薄く、小さくする */
  .sp-banner-section .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
    transform: scale(0.97);
  }

  .sp-banner-section .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* 画像を見切れさせない設定 */
  .sp-banner-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* 矢印ボタンデザイン */
  .sp-banner-section .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    pointer-events: auto;
    font-size: 14px;
    color: #4d4c4c;
    user-select: none;
    padding: 0;
    margin: 0;
  }

  /* 左ボタンの配置 */
  .sp-banner-section .p-btn {
    left: 10px;
  }

  /* 右ボタンの配置 */
  .sp-banner-section .n-btn {
    right: 10px;
  }

  /* ボタンが無効な状態のクラスを隠す */
  .sp-banner-section .swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
  }
}

/* ==================================================
 商品詳細上のバナーカルーセルCSSここまで
================================================== */
