<strong>CARRERA
<strong>CARRERA
<strong>CARRERA
<strong>CARRERA

CARRERA (カレラ)

CARRERA Helmet Helper(ゴーグル延長ストラップ)

CARRERA Helmet Helper
CARRERA Helmet Helper(ゴーグル延長ストラップ)
1,320円(本体1,200円、税120円)
購入数
・この商品について問い合わせる ・返品について ・特定商取引法に基づく表記

DETAIL

CARRERA Helmet Helper ---
「 カレラ ゴーグル延長ストラップ 」

☆ヘルメット使用時に、ゴーグルストラップが短い時に使用するヘルメットヘルパー(延長ストラップ)。

縦 41mm
幅 130mm(バックル部分を含まない最小時、ゴム製のため伸びます)
バックル内寸 40mm
バックルピン径 3mm
※ご注文前に、お持ちのゴーグルバックルの形状・サイズのご確認をお願いします。
モデルにより、本品と合わない場合があります。



進化し続けるブランドーCARRERA
1956年に生まれたCarrera。特に1976年のインスブルクでのオリンピックにてフランツクランマーの滑りは当時のスキーヤーを虜にしました。半世紀以上に渡りCarreraは常に新しいスタンダードを提唱し、スキーシーンを牽引してきました。
イノベーションはCarreraの主軸であり、あらゆるチャレンジを実現。近年ではそこにデザイン性が加わりました。Carreraにとってデザインは一つのアイディア。コンセプトを考え、その美しさと機能性のバランスを大切に、壊さないようなアイディアを生み出します。その探究心は今も絶やすことなく進化し続けます。





0 && productPrice>0) { let grossRate = 100 - (productPrice*100 / listPrice); let rate = Math.round(grossRate); let discountDisplay = document.querySelector(".c-product-priceDiscount"); if(rate > 0 && discountDisplay){ if(discountDisplay.innerHTML === ""){ discountDisplay.innerHTML = (rate == grossRate ? "" : CLASSIC.discountPrefix) + rate + "%OFF"; } } } } } let optionsTable = document.querySelector(".c-product-optionsTable"); let optionsTableScrollBar = document.querySelector(".c-product-optionsTableScrollBar"); if(optionsTable){ CLASSIC.setDraggable(optionsTable); if(optionsTableScrollBar){ let span = document.createElement("span"); optionsTableScrollBar.appendChild(span); CLASSIC.publicCache.optionsTable = optionsTable; CLASSIC.publicCache.optionsTableScrollBar = optionsTableScrollBar; CLASSIC.publicCache.optionsTableScrollBarPointer = span; optionsTableScrollHandler(); } } let reviewList = document.querySelector(".c-product-reviewList"); let reviewListScrollBar = document.querySelector(".c-product-reviewListScrollBar"); if(reviewList){ CLASSIC.setDraggable(reviewList); if(reviewListScrollBar){ let span = document.createElement("span"); reviewListScrollBar.appendChild(span); CLASSIC.publicCache.reviewList = reviewList; CLASSIC.publicCache.reviewListScrollBar = reviewListScrollBar; CLASSIC.publicCache.reviewListScrollBarPointer = span; reviewListScrollHandler(); } } let optionsModalData = document.querySelector(".c-optionsModalData"); let optionsModalDataScrollBar = document.querySelector(".c-optionsModalDataScrollBar"); if(optionsModalData){ CLASSIC.setDraggable(optionsModalData); if(optionsModalDataScrollBar){ let span = document.createElement("span"); optionsModalDataScrollBar.appendChild(span); CLASSIC.publicCache.optionsModalData = optionsModalData; CLASSIC.publicCache.optionsModalDataScrollBar = optionsModalDataScrollBar; CLASSIC.publicCache.optionsModalDataScrollBarPointer = span; optionsModalDataScrollHandler(); } } let optionsModalOpen = document.querySelector(".c-product-optionsModalOpen"); if(optionsModalOpen){ optionsModalOpen.addEventListener("click",function(){ jQuery(".l-optionsModal").addClass("active"); let optionsModalData = document.querySelector(".c-optionsModalData"); if(optionsModalData){ optionsModalData.scrollTop = 0; } if(window.innerWidth <= 1024){ jQuery(document.body).addClass("preventScroll"); } }); } let optionsModalClose = document.querySelector(".c-optionsModalClose"); if(optionsModalClose){ optionsModalClose.addEventListener("click",function(){ jQuery(".l-optionsModal").removeClass("active"); jQuery(document.body).removeClass("preventScroll"); }); } let optionsModal = document.querySelector(".l-optionsModal"); if(optionsModal){ optionsModal.addEventListener("mousedown",function(e){ if(e.target == this){ jQuery(".l-optionsModal").removeClass("active"); jQuery(document.body).removeClass("preventScroll"); } }); optionsModal.addEventListener("touchstart",function(e){ if(e.target == this){ jQuery(".l-optionsModal").removeClass("active"); jQuery(document.body).removeClass("preventScroll"); } }); } let quantityMinus = document.querySelector(".c-product-quantityMinus"); if(quantityMinus){ quantityMinus.addEventListener("click",function(){ let minQuantity = document.querySelector(".c-product-quantity input"); if(minQuantity){ minQuantity = parseInt(minQuantity.dataset.initial); if(isNaN(minQuantity)){ minQuantity = 1; } } else { minQuantity = 1; } let quantity = document.querySelector(".c-product-quantity input"); if(!quantity){return;} let q = parseInt(quantity.value); if(isNaN(q)){ quantity.value = 1; return; } else if(q > 1){ quantity.value = q-1 > minQuantity ? q-1 : minQuantity; } }); } let quantityPlus = document.querySelector(".c-product-quantityPlus"); if(quantityMinus){ quantityPlus.addEventListener("click",function(){ let maxQuantity = document.querySelector(".c-product-stock"); if(maxQuantity){ maxQuantity = parseInt(maxQuantity.innerHTML.replace(/[^0-9]/g,"")); if(isNaN(maxQuantity)){ maxQuantity = 999; } } else { maxQuantity = 999; } let quantity = document.querySelector(".c-product-quantity input"); if(!quantity){return;} let q = parseInt(quantity.value); if(isNaN(q)){ quantity.value = 1; return; } else{ quantity.value = q+1 < maxQuantity ? q+1 : maxQuantity; } }); } let quantity = document.querySelector(".c-product-quantity input"); if(quantity){ quantity.addEventListener("change",function(){ this.value = this.value .replace("0","0") .replace("1","1") .replace("2","2") .replace("3","3") .replace("4","4") .replace("5","5") .replace("6","6") .replace("7","7") .replace("8","8") .replace("9","9") ; this.value = this.value.replace(/[^0-9]/g,""); if(isNaN(parseFloat(this.value))){ this.value = 1; return; } if(this.value < 1){ this.value = 1; return; } let maxQuantity = document.querySelector(".c-product-stock"); if(maxQuantity){ maxQuantity = parseInt(maxQuantity.innerHTML.replace(/[^0-9]/g,"")); if(isNaN(maxQuantity)){ maxQuantity = 999; } } else { maxQuantity = 999; } if(this.value > maxQuantity){ this.value = maxQuantity; } }); } }); function productPageHandler(){ CLASSIC.publicCache.productInformationWrapper.style.minHeight = CLASSIC.publicCache.productImageWrapper.clientHeight+"px"; window.requestAnimationFrame(productPageHandler); } function optionsModalDataScrollHandler(){ if(!CLASSIC.publicCache.hasOwnProperty("optionsModalData")){return;} if(!CLASSIC.publicCache.hasOwnProperty("optionsModalDataScrollBar")){return;} if(!CLASSIC.publicCache.hasOwnProperty("optionsModalDataScrollBarPointer")){return;} if(CLASSIC.publicCache.optionsModalData.clientHeight >= CLASSIC.publicCache.optionsModalData.scrollHeight){ if(CLASSIC.publicCache.optionsModalDataScrollBar.className.indexOf("active") != -1){ CLASSIC.publicCache.optionsModalDataScrollBar.className = CLASSIC.publicCache.optionsModalDataScrollBar.className.replace(" active",""); } } else { if(CLASSIC.publicCache.optionsModalDataScrollBar.className.indexOf("active") == -1){ CLASSIC.publicCache.optionsModalDataScrollBar.className += " active"; } let pointerSize = CLASSIC.publicCache.optionsModalData.clientHeight / CLASSIC.publicCache.optionsModalData.scrollHeight; pointerSize *= CLASSIC.publicCache.optionsModalDataScrollBar.clientHeight; let r = CLASSIC.publicCache.optionsModalData.scrollTop/(CLASSIC.publicCache.optionsModalData.scrollHeight-CLASSIC.publicCache.optionsModalData.clientHeight); r = (CLASSIC.publicCache.optionsModalDataScrollBar.clientHeight - pointerSize) * r; CLASSIC.publicCache.optionsModalDataScrollBarPointer.style.top = r.toFixed(5)+"px"; CLASSIC.publicCache.optionsModalDataScrollBarPointer.style.height = pointerSize.toFixed(5)+"px"; } window.requestAnimationFrame(optionsModalDataScrollHandler); } function optionsTableScrollHandler(){ if(!CLASSIC.publicCache.hasOwnProperty("optionsTable")){return;} if(!CLASSIC.publicCache.hasOwnProperty("optionsTableScrollBar")){return;} if(!CLASSIC.publicCache.hasOwnProperty("optionsTableScrollBarPointer")){return;} if(CLASSIC.publicCache.optionsTable.clientWidth >= CLASSIC.publicCache.optionsTable.scrollWidth){ if(CLASSIC.publicCache.optionsTableScrollBar.className.indexOf("active") != -1){ CLASSIC.publicCache.optionsTableScrollBar.className = CLASSIC.publicCache.optionsTableScrollBar.className.replace(" active",""); } } else { if(CLASSIC.publicCache.optionsTableScrollBar.className.indexOf("active") == -1){ CLASSIC.publicCache.optionsTableScrollBar.className += " active"; } let pointerSize = CLASSIC.publicCache.optionsTable.clientWidth / CLASSIC.publicCache.optionsTable.scrollWidth; pointerSize *= CLASSIC.publicCache.optionsTableScrollBar.clientWidth; let r = CLASSIC.publicCache.optionsTable.scrollLeft/(CLASSIC.publicCache.optionsTable.scrollWidth-CLASSIC.publicCache.optionsTable.clientWidth); r = (CLASSIC.publicCache.optionsTableScrollBar.clientWidth - pointerSize) * r; CLASSIC.publicCache.optionsTableScrollBarPointer.style.left = r.toFixed(5)+"px"; CLASSIC.publicCache.optionsTableScrollBarPointer.style.width = pointerSize.toFixed(5)+"px"; } window.requestAnimationFrame(optionsTableScrollHandler); } function reviewListScrollHandler(){ if(!CLASSIC.publicCache.hasOwnProperty("reviewList")){return;} if(!CLASSIC.publicCache.hasOwnProperty("reviewListScrollBar")){return;} if(!CLASSIC.publicCache.hasOwnProperty("reviewListScrollBarPointer")){return;} if(CLASSIC.publicCache.reviewList.clientHeight >= CLASSIC.publicCache.reviewList.scrollHeight){ if(CLASSIC.publicCache.reviewListScrollBar.className.indexOf("active") != -1){ CLASSIC.publicCache.reviewListScrollBar.className = CLASSIC.publicCache.reviewListScrollBar.className.replace(" active",""); } } else { if(CLASSIC.publicCache.reviewListScrollBar.className.indexOf("active") == -1){ CLASSIC.publicCache.reviewListScrollBar.className += " active"; } let pointerSize = CLASSIC.publicCache.reviewList.clientHeight / CLASSIC.publicCache.reviewList.scrollHeight; pointerSize *= CLASSIC.publicCache.reviewListScrollBar.clientHeight; let r = CLASSIC.publicCache.reviewList.scrollTop/(CLASSIC.publicCache.reviewList.scrollHeight-CLASSIC.publicCache.reviewList.clientHeight); r = (CLASSIC.publicCache.reviewListScrollBar.clientHeight - pointerSize) * r; CLASSIC.publicCache.reviewListScrollBarPointer.style.top = r.toFixed(5)+"px"; CLASSIC.publicCache.reviewListScrollBarPointer.style.height = pointerSize.toFixed(5)+"px"; } window.requestAnimationFrame(reviewListScrollHandler); } { let thumbnail = document.querySelectorAll(".c-product-imageThumbnail"); for(let i=0;i

CHECKED

CALENDAR

店舗営業時間 10:00-18:00
店休日
2025年12月
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
2026年1月
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Last Update 2025/10/23
Copyright(C) 2007 スポーツたきぐち スポーツたきぐち 倶知安店【公式】サイバーショップ NISEKO POWDER SKI SHOP "SPOTAKI"