コンテンツに進む
オンラインストア
search icon

    BLUE LABELブルーレーベル

    • account icon ログイン | 会員登録
    • account icon
      お気に入り
    • account icon
      カート(0)
    • ニュース
    • ストーリー
    • スタイリング
    • ランキング
    • 店舗一覧
    • ABOUT
    • 全てのアイテム

    ブランド

    • BLACK LABEL CRESTBRIDGE
    • CB CRESTBRIDGE

    アウターウェア

    • コート
    • ジャケット/ブルゾン

    トップス

    • ブラウス
    • 二ットウェア
    • カットソー

    ドレス

    ボトムス

    • パンツ
    • スカート

    バッグ&財布

    • バッグ
    • ウォレット/ポーチ

    アクセサリー小物

    • アクセサリー
    • シューズ
    • ハット/キャップ/グローブ
    • マフラー/ストール

    BLUE LABELブルーレーベル

    • cart icon
    search icon
      オンラインストアへ
      • account icon ログイン
        新規会員登録
      • account icon ご注文履歴
      • account icon お気に入り
      • support icon カスタマー
        サポート
      • account icon スタイリング
      • account icon 店舗一覧
      • account icon ABOUT
      ランキング
      最近チェックしたアイテム
      ニュース
      • thumbnail

        2026.08.07

        【PICK UP】NEW CB CHECK "MIST BLUE"

      • thumbnail

        2026.08.05

        【PICK UP】EVERYDAY BAGS

      • thumbnail

        2026.07.31

        【PICK UP】BUSTIER DRESS - Staff Styling -

      ニュース一覧へ
      カテゴリ
      • 全てのアイテム
      • WEB限定
      • アウターウェア
      • トップス
      • ドレス
      • ボトムス
      • バッグ&財布
      • アクセサリー小物
      • ブランド
      • BLUE LABEL CRESTBRIDGE
      • BLACK LABEL CRESTBRIDGE
      • CB CRESTBRIDGE
      British inspiration,contemporary style
      SHOP NOW

      PICK UP

      EXTRA SALE

      EXTRA SALE

      クレストブリッジオンラインストアにて対象セールアイテムがさらに10%オフになるキャンペーンを開催いたします。

      是非この機会にお買い物をお楽しみください。

      対象セールアイテム10%OFF

      詳細はこちら

      10th ANNIVERSARY

      10th ANNIVERSARY

      BLUE LABEL CRESTBRIDGE、BLACK LABEL CRESTBRIDGEのアニバーサリーシーズンをぜひご一緒にお楽しみください。

      詳細はこちら

      NEW ARRIVALS

      アイテム一覧へ

      NEWS

        ニュース 一覧へ

        STORY

        2026 AUTUMN WINTER COLLECTION AUGUST

        ストーリー一覧へ
        最近チェックしたアイテム 5 20 large off horizontal off #000000 #000000 #ffffff let timerRV = setInterval(function() { if ($ && $.fn && $.fn.slick) { mainRV(); clearInterval(timerRV); } else { console.log('waiting for jQuery and slick'); console.log('jQuery', $); console.log('jQuery.fn', $.fn); console.log('jQuery.fn.slick', $.fn.slick); } }, 1000); document.querySelector('#spHeaderBrand__topMenu__btn').addEventListener('click', function() { $('.sidebar-recentlyview').slick('unslick'); $(".sidebar-recentlyview").slick({ slidesToShow: 2.5, slidesToScroll: 1, arrows: true, infinite: false, autoplay: false, initialSlide: 0 }); }); function mainRV() { var divParent = document.createElement('div'); divParent.setAttribute('class', 'sidebar-recentlyview-main'); $('.spHeaderBrand__detailMenu__recentlyViewedItems__header .information-accordion').append(divParent); var divChild = document.createElement('div'); divChild.setAttribute('class', 'sidebar-recentlyview'); $('.sidebar-recentlyview-main').append(divChild); const sidebarAppend = document.querySelectorAll('.Qe_Recently-view .slick-slide:not(.slick-cloned)'); Array.from(sidebarAppend).forEach((element, index) => { var eleHtml = element.innerHTML; $('.sidebar-recentlyview').append(eleHtml); }); $(".sidebar-recentlyview").slick({ slidesToShow: 2.5, slidesToScroll: 1, arrows: true, infinite: false, autoplay: false, initialSlide: 0 }); $('.recently_sliders').slick('unslick'); $('.recently_sliders').slick({ slidesToShow: 5, infinite: false, slidesToScroll: 1, centerMode: false, responsive: [{ breakpoint: 749, settings: { slidesToShow: 2.5 } }] }); $('.Qe_Recently-view').addClass('slick-active'); $(".product_price_regular").each(function() { var salePriceElement = $(this).find('s').next(); var regularPriceElement = $(this).text(); console.log('salePriceElement', salePriceElement); console.log('regularPriceElement', regularPriceElement); var regularPriceTextArray = regularPriceElement.split(/\s+/); console.log('regularPriceTextArray', regularPriceTextArray); var salePriceText = regularPriceTextArray[1]; console.log('regularPriceTextArray[1]', regularPriceTextArray[1]); var regularPriceText = regularPriceTextArray[0]; console.log('regularPriceTextArray[0]', regularPriceTextArray[0]); $(this).empty(); var regularPriceNumber = Number(regularPriceText.slice(1).replace(/,/g, '')); console.log('regularPriceNumber', regularPriceNumber); var salePriceNumber = Number(salePriceText.slice(1).replace(/,/g, '')); console.log('salePriceNumber', salePriceNumber); var differenceInPrice = regularPriceNumber - salePriceNumber; console.log('differenceInPrice', differenceInPrice); var discountPercent = Math.round(differenceInPrice / regularPriceNumber * 100); console.log('discountPercent', discountPercent); var wrapperElement = document.createElement('div'); wrapperElement.setAttribute('class', 'products-card__price'); if (discountPercent !== 0) { var discountElement = document.createElement('span'); discountElement.setAttribute('class', 'products-card__price__discount'); discountElement.innerHTML = discountPercent + '%OFF'; wrapperElement.appendChild(discountElement); } var priceElement = document.createElement('span'); priceElement.setAttribute('class', 'products-card__price'); if (discountPercent !== 0) { priceElement.classList.add('onSale'); } priceElement.innerHTML = salePriceText; var taxElement = document.createElement('span'); taxElement.setAttribute('class', 'products-card__price__tax'); taxElement.innerHTML = '税込'; if (discountPercent !== 0) { taxElement.classList.add('onSale'); } wrapperElement.appendChild(priceElement); wrapperElement.appendChild(taxElement); $(this).append(wrapperElement); }); } ¥

        Instagram

        もっと見る
        Invalid password
        Enter
        • ブランド

        • CRESTBRIDGE MEMBERSHIP

        • カスタマーサポート

        • 企業情報

        • logo
          • sns icon
          • sns icon
          • sns icon
          • sns icon
          • sns icon CRESTBRIDGE 公式アプリ
            詳細はこちら
          • BLUE LABEL CRESTBRIDGE
          • BLACK LABEL CRESTBRIDGE
          • CB CRESTBRIDGE
          • 会員登録・特典・退会
          • ポイントサービス・ステージ
          • 会員ログイン・各種変更・マイページ
          • メルマガ・通知
          • 会員規約
          • 返品・交換・キャンセル
          • 配送・送料
          • お支払方法
          • FAQ・よくあるご質問
          • お問い合わせ
          • 企業サイト
          • プライバシーポリシー
          • サイトポリシー
          • サイトマップ
          • 特定商取引法に基づく表示

        © Sanyo Shokai LTD. All rights reserved

        • ブランド
          • BLUE LABEL CRESTBRIDGE
          • BLACK LABEL CRESTBRIDGE
          • CB CRESTBRIDGE
        • CRESTBRIDGE MEMBERSHIP
          • 会員登録・特典・退会
          • ポイントサービス・ステージ
          • 会員ログイン・各種変更・マイページ
          • メルマガ・通知
          • 会員規約
        • カスタマーサポート
          • 返品・交換・キャンセル
          • 配送・送料
          • お支払方法
          • FAQ・よくあるご質問
          • お問い合わせ
        • 企業情報
          • 企業サイト
          • プライバシーポリシー
          • サイトポリシー
          • サイトマップ
          • 特定商取引法に基づく表示
        logo
        • sns icon
        • sns icon
        • sns icon
        • sns icon
        • sns icon CRESTBRIDGE 公式アプリ
          詳細はこちら

        © Sanyo Shokai LTD. All rights reserved

        • 選択結果を選ぶと、ページが全面的に更新されます。
        • 新しいウィンドウで開きます。