  /* 既存スタイルとの重複を防ぐためのラッパー */
  .sc-wrapper {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden; /* コンテナ外の見切れをラッパーでクリップ */
  }
  .sc-wrapper *, .sc-wrapper *::before, .sc-wrapper *::after {
    box-sizing: border-box;
  }

  /* セクション共通 */
  .sc-section {
    margin-bottom: 70px;
  }
  
  /* 上部のネイビー細線 */
  .sc-border-line {
    width: 100%;
    height: 1px;
    background-color: #001855; /* 画像の濃いネイビー */
    margin: 0 auto 35px auto;
  }

  .sc-header {
    text-align: center;
    margin-bottom: 35px;
  }
  .sc-header h2 {
    font-size: 26px;
    color: #001855;
    margin: 0 0 8px 0;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .sc-header p {
    font-size: 13px;
    color: #333;
    margin: 0;
  }

  /* スライダー外枠 */
  .sc-slider-outer {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  /* Swiperベースの書き換えクラス */
  .swipercool {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }
  .swipercool-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }
  .swipercool-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }

  /* --- 左右ナビゲーション矢印の再現 --- */
  .sc-nav-btn {
    position: absolute;
    top: 30%; /* 画像の縦中央付近に配置 */
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
  }
  .sc-nav-btn::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: 1px solid #333; /* 画像通りの極細の矢印線 */
    border-right: 1px solid #333;
  }
  .sc-nav-btn.swipercool-button-disabled {
    opacity: 0.2;
    cursor: auto;
    pointer-events: none;
  }
  
  /* 左矢印 */
  .sc-nav-btn[class*="prev"] {
    left: -15px;
  }
  .sc-nav-btn[class*="prev"]::after {
    transform: rotate(-135deg);
  }
  /* 右矢印 */
  .sc-nav-btn[class*="next"] {
    right: -15px;
  }
  .sc-nav-btn[class*="next"]::after {
    transform: rotate(45deg);
  }


  /* ==========================================
     RECOMMEND (おすすめ商品) スタイル
  ========================================== */
  .recommend-outer {
    max-width: 750px;
  }
  .recommend-outer .swipercool {
    overflow: visible; /* 左右の見切れを実現するためにコンテナ外を表示 */
  }

  .sc-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
  }
  .sc-prod-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形画像 */
    overflow: hidden;
    margin-bottom: 20px;
  }
  .sc-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sc-prod-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 10px;
  }
  .sc-prod-title {
    font-size: 15px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-weight: bold;
    min-height: 3em; /* タイトルの高さを確保してズレを防止 */
  }
  .sc-prod-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.7;
    /* 3行で収まるように制限し、高さを統一 */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 6.8em; 
  }
  
  /* 商品はこちらボタンの配置エリア */
  .sc-btn-area {
    margin-top: auto; /* カードの一番下に固定 */
    text-align: center;
  }
  .sc-btn {
    display: inline-block;
    width: 100%;
    max-width: 220px;
    padding: 10px 15px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    border: 1px solid #333; /* 細い1本線ボーダー */

    border-radius: 0; /* 完全な長方形 */
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .sc-btn:hover {
    background-color: #333;
    color: #fff;
  }


  /* ==========================================
     COORDINATION (おすすめコーデ) スタイル
  ========================================== */
  .coord-outer {
    max-width: 750px;
    padding: 0 20px;
  }
  .sc-coord-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .sc-coord-img {
    width: 100%;
    aspect-ratio: 3 / 4; /* 縦長比率 */
    overflow: hidden;
    margin-bottom: 20px;
  }
  .sc-coord-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* コーデ商品のリンクボタン配置 */
  .sc-coord-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
  }
  .sc-coord-tag {
    display: block;
    width: 100%;
    max-width: 240px;
    padding: 8px 15px;
    font-size: 12px;
    color: #333;
    border: 1px solid #333;
    background: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px; /* 画像通りのちょっとした角丸 */
    transition: all 0.3s ease;
  }
  .sc-coord-tag:hover {
    background: #f8f8f8;
  }


  /* ==========================================
     レスポンシブ（スマホ設定: 〜767px）
  ========================================== */
  @media screen and (max-width: 767px) {
    .sc-section {
      margin-bottom: 50px;
    }
    .sc-border-line {
      margin-bottom: 25px;
    }
    .sc-header h2 {
      font-size: 22px;
    }

    /* スマホナビの調整 */
    .sc-nav-btn {
      width: 35px;
      height: 35px;
    }
    .sc-nav-btn::after {
      width: 14px;
      height: 14px;
    }
    .sc-nav-btn[class*="prev"] { left: -10px; }
    .sc-nav-btn[class*="next"] { right: -10px; }

    /* RECOMMEND スマホ時（幅100％に2枚表示 / 説明文非表示） */
    .recommend-outer {
      padding: 0 15px; /* スマホ左右に見切れを作らず100%表示 */
    }
    .recommend-outer .swipercool {
      overflow: hidden;
    }
    .sc-prod-desc {
      display: none; /* 説明文を非表示 */
    }
    .sc-prod-title {
      font-size: 13px;
      margin-bottom: 12px;
      min-height: 2.6em; /* 2行確保してボタン位置をスマホでも綺麗に揃える */
    }
    .sc-btn {
      max-width: 100%; /* ボタン幅をスライドいっぱいに */
      padding: 8px 5px;
      font-size: 11px;
    }

    /* COORDINATION スマホ時（真ん中に1枚） */
    .coord-outer {
      padding: 0 40px; /* 左右矢印が被らないスペースを確保 */
    }
  }