GIZMO MUSIC
WHERE GEAR NERDS PLAYWHERE GEAR NERDS PLAY
SCROLL
GIZMO MUSIC
GIZMO MUSIC
GIZMO MUSIC
GIZMO MUSIC
GIZMO MUSIC
GIZMO MUSIC
2025.10.10
東京・吉祥寺に実店舗「GIZMO MUSIC」がオープン!
Chase Bliss Loungeがオープン!"Chase Bliss Loungeがオープン!"
PICK UP ITEMS
PICK UP ITEMS
The most fanatical guitar pedal store on the planet. In the heart of Tokyo.
YOUR NEW
BEST KEPT
SECRET STORE
世界一マニアックな
ギターペダル・ストア
東京・吉祥寺に位置するGIZMO-MUSICは、
株式会社アンブレラカンパニーが運営するクリエイティブなギターペダル専門店。
国内外から厳選された数々のギターペダルやギターを揃え、
そして世界で唯一となるChase Bliss Loungeも完備。
更にワークショップや参加型イベントなど、
私たちならではのコミュニケーションで新しい音楽体験を提供します。
A new home for sonic adventurers.
CURATED AND
COMFORTABLE
CHAOS
オンライン販売は
こちら
オンラインショップでは、
ギターペダル以外にもプロオーディオ(レコーディング機材)やシンセサイザーなど、アンブレラカンパニーが取り扱う製品をすべて揃えています。
ゆっくりとショッピングをお楽しみください!
NOTES
EVENTS & INFO
INSTAGRAM
INSTAGRAM
`; instaFeeds += instaMediaDiv; }); target.innerHTML = `
${instaFeeds}
`; }).catch((error) => { console.warn(error.message); }); let targets = document.querySelectorAll('#top-content-item-01, #top-content-item-02'); // top-content-wrapアニメーション window.addEventListener('scroll', function () { let scroll = window.scrollY; let windowHeight = window.innerHeight; for (let target of targets) { let targetPos = target.getBoundingClientRect().top + scroll + 200; if (scroll > targetPos - windowHeight) { target.classList.add('is-animated'); // top-content-bg-imgにis-animatedを設定 let bgImg = target.getElementsByClassName('top-content-bg-img'); if(bgImg.length > 0) { bgImg[0].classList.add('is-animated'); } // top-content-copyにis-animatedを設定 let copyRight = target.getElementsByClassName('top-content-copy-right'); if(copyRight.length > 0) { copyRight[0].classList.add('is-animated'); } let copyLeft = target.getElementsByClassName('top-content-copy-left'); if(copyLeft.length > 0) { copyLeft[0].classList.add('is-animated'); } // top-content-text-innerにis-animatedを設定 let textWrap = target.getElementsByClassName('top-content-text-inner'); if(textWrap.length > 0) { textWrap[0].classList.add('is-animated'); } } } }); // マウスオーバー時 $("#top-content-item-01").hover( function() { $(this).find('.top-content-text-index').addClass("top-content-text-index-is-over"); $(this).find('.top-content-text-sub').addClass("top-content-text-index-is-over"); $(this).find('.top-content-bg').addClass("top-content-bg-is-over"); $(this).find('.top-content-more').addClass("top-content-more-is-animated"); }, function() { $(this).find('.top-content-text-index').removeClass("top-content-text-index-is-over"); $(this).find('.top-content-text-sub').removeClass("top-content-text-index-is-over"); $(this).find('.top-content-bg').removeClass("top-content-bg-is-over"); $(this).find('.top-content-more').removeClass("top-content-more-is-animated"); } ); $("#top-content-item-02").hover( function() { $(this).find('.top-content-text-index').addClass("top-content-text-index-is-over"); $(this).find('.top-content-text-sub').addClass("top-content-text-index-is-over"); $(this).find('.top-content-bg').addClass("top-content-bg-is-over"); $(this).find('.top-content-more').addClass("top-content-more-is-animated"); }, function() { $(this).find('.top-content-text-index').removeClass("top-content-text-index-is-over"); $(this).find('.top-content-text-sub').removeClass("top-content-text-index-is-over"); $(this).find('.top-content-bg').removeClass("top-content-bg-is-over"); $(this).find('.top-content-more').removeClass("top-content-more-is-animated"); } ); }); // 最新投稿取得(取得できるだけ) $(document).ready(function () { $.ajax({ type: "get", url: "https://gizmo-music.com/apps/note/feed/" }).done(function(result) { $(result).find("item").each(function() { //// top-notes-slider-wrapの子階層にスライド追加 // description末尾に「[…]」があれば削除 let description = $(this).find('description').text(); description = description.replace("[…]", ""); // サムネイル ない場合はno image let thumbnail = $(this).find('thumbnail').text(); if(thumbnail == "") { thumbnail = "https://img.shop-pro.jp/tmpl_img/68/prd_lst_noimage.png"; } $("#top-notes-swiper-wrapper").append('
' + '
' + ' ' + ' ' + $(this).find('title').text() + '' + '
' + '
' + '
' + ' ' + $(this).find('postDate').text() + '
' + ' |' + '
' + ' ' + $(this).find('category').text() + '
' + '
' + '
' + ' ' + $(this).find('title').text() + '
' + '
' + ' ' + description + '
' + '
' + '
' + '
' + '
'); }); // スライド追加後、Swiper作成 const swiperNotes = new Swiper(".swiper", { navigation: { nextEl: '.top-notes-swiper-button-next', prevEl: '.top-notes-swiper-button-prev', }, slidesPerView: 1, centeredSlides: true, spaceBetween: 31, loop: false, effect: 'slide', breakpoints: { 981: { slidesPerView: 2, centeredSlides: false, }, 1210: { slidesPerView: 3, centeredSlides: false, }, 1440: { slidesPerView: 4, centeredSlides: false, } }, }); }); }); // 最新お知らせ取得(1件のみ) $(document).ready(function () { $.ajax({ type: "get", url: "https://gizmo-music.com/apps/note/category/info/feed/" }).done(function(result) { $(result).find("item").each(function(i) { // 表示件数の設定 if(i === 1) { return false; }; //// top-info-wrapに取得したお知らせを追加 ////$("#top-info-wrap").append('' + ////'
' + ////' ' + $(this).find('postDate').text() + ////'
' + ////'
' + ////' ' + $(this).find('title').text() + ////'
' + ////'
' + ////' >' + ////'
' + ////'
'); }); }); }); const swiperTopMv = new Swiper(".top-mv-bg-swiper", { slidesPerView: 1, centeredSlides: true, loop: true, effect: 'fade', fadeEffect: { crossFade: true, }, speed: 4000, autoplay: { delay: 6000, waitForTransition: true, }, }); const swiperTopBanner = new Swiper(".top-banner-swiper", { navigation: { nextEl: '.top-banner-swiper-button-next', prevEl: '.top-banner-swiper-button-prev', }, slidesPerView: 1, centeredSlides: true, loop: true, effect: 'slide', breakpoints: { 981: { slidesPerView: 2, centeredSlides: false, }, }, }); const swiperPickup = new Swiper(".pickup-swiper", { navigation: { nextEl: '.top-pickup-swiper-button-next', prevEl: '.top-pickup-swiper-button-prev', }, slidesPerView: 1, centeredSlides: true, spaceBetween: 31, // autoplay: { // delay: 2000, // waitForTransition: true, // }, speed: 400, loop: true, effect: 'slide', breakpoints: { 981: { slidesPerView: 2, centeredSlides: false, }, 1210: { slidesPerView: 3, centeredSlides: false, }, 1440: { slidesPerView: 4, centeredSlides: false, } }, });