
// Carouselの初期化
new Carousel(
  document.getElementById('myCarousel'),
  {
    // Your custom options
    Dots: false,
    Thumbs: {
      type: 'classic',
    },
  },
  { Thumbs }
);

// Fancyboxの初期化
Fancybox.bind('[data-fancybox="gallery"]', {
  // カスタムFancyBoxオプションを設定できます

});

