/** Shopify CDN: Minification failed

Line 300:11 Unexpected "{"
Line 300:20 Expected ":"
Line 300:26 Unexpected ","

**/
/* --- ベース設定 --- */
slideshow-component {
  position: relative;
  display: flex;
  flex-direction: column;
}

slideshow-component .slideshow.banner {
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  gap: 0;
}

.slideshow__slide {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0 !important;
  height: auto !important;
}

.slideshow__text.banner__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54.5rem;
}

.slideshow__text > * {
  max-width: 100%;
}

/* --- オートプレイ・コントロール --- */
.slideshow__controls {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
}


.slideshow__control-wrapper {
  display: flex;
}

.slideshow__autoplay {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow__autoplay .icon {
  opacity: 1;
  transition: transform 150ms ease, opacity 150ms ease;
}

.slideshow__autoplay--paused .icon-pause,
.slideshow__autoplay:not(.slideshow__autoplay--paused) .icon-play {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.slideshow__autoplay:hover svg {
  transform: scale(1.1);
}

.slideshow__autoplay path {
  fill: rgba(var(--color-foreground), 0.75);
}

.slideshow__autoplay:hover path {
  fill: rgb(var(--color-foreground));
}

/* ===== スライドショー画像（共通） ===== */
.slideshow img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  z-index: 1 !important;
  aspect-ratio: 16 / 9;
}

/* ===== スライドショー本体（共通） ===== */
.slideshow {
  position: relative;
  z-index: 99;
  pointer-events: auto;
  height: auto;
  overflow: hidden;
}

/* ===== スライドショーの外枠（共通） ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  background-color: #fff;
  z-index: 1;
}

/* ===== 固定ヘッダー ===== */
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background-color: white;
}

/* ===== スライドショー下の余白を防ぐ ===== */
.slideshow-container + .shopify-section,
.shopify-section {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/* ===== モバイル専用の調整 ===== */
@media screen and (max-width: 768px) {
  .slideshow img {
    max-height: 400px;
  }

  .slideshow {
  width: 100%; /* コンテナの幅をデバイス幅いっぱいに広げる */
  display: flex; /* 子要素（スライド）を横に並べるための設定 */
  flex-direction: row; /* スライドを横一列に並べる（デフォルトでもOK） */
  scroll-snap-type: x mandatory; /* 横方向（x軸）のスナップを強制する → 指を離すとピタッと止まる */
  scroll-behavior: smooth; /* スクロールを滑らかにアニメーションさせる */
  overflow-x: auto; /* 横方向のスクロールを許可する */
  overflow-y: visible !important; /* ← ここが一番重要です */
  white-space: nowrap; /* 子要素が折り返さず横に並ぶようにする */
  touch-action: pan-x; /* 指で横方向のスワイプのみを許可する（縦は制限） */
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロールを有効にする（ぬるっと動く） */
}


  .slideshow__slide {
  flex: 0 0 100%; /* 各スライドを「幅100%・固定サイズ」に設定（画面に1枚ずつ表示） */
  scroll-snap-align: start; /* スライドの先頭（左端）にスナップするように指定 */
  white-space: normal; /* スライド内のテキストは普通に折り返す（nowrapを無効化） */
}


  body {
    padding-top: 56px;
  }
  
} /* ←←←←← モバイルCSSここで閉じます */

/* 公開時だけ非表示にする（エディターでは表示） */
body:not(.shopify-design-mode) .hidden-heading,
body:not(.shopify-design-mode) .hidden-subtitle {
  display: none !important;
}

/* ================================
   スライドショーとビデオの重なり制御・リンク有効化
   ================================ */

/* スライドショー本体 */
.slideshow {
  z-index: 99;
  pointer-events: auto;
}

/* スライド画像のクリックを有効に */
.slideshow__media {
  position: relative;
  z-index: 1;
  pointer-events: auto !important;
  aspect-ratio: 16 / 9;
}

.slideshow__media a {
  display: block;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.slideshow__media a:hover {
  opacity: 0.95;
}

/* バナーの装飾影響防止 */
.banner__media::after {
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ビデオセクションのクリック干渉を防ぐ */
.video-section {
  position: relative;
  z-index: 5;
  pointer-events: none;
}

.video-section video {
  pointer-events: auto;
}

/* adapt_imageによる::before余白の無効化 */
.slideshow.banner--adapt_image::before,
.slideshow .media::before,
.slideshow .banner__content::before {
  display: none !important;
}

/* スライド内リンクが効かない問題を解消（特に1枚目） */
.slideshow__slide[aria-hidden="false"] .slideshow__media a {
  pointer-events: auto !important;
}

/* テキストボックスを非表示にしているときの余白を詰める */
.slideshow__text-wrapper.banner--desktop-transparent {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* テキストコンテナ内部も確認 */
.slideshow__text {
  padding: 0 !important;
  margin: 0 !important;
}

.slider-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* すべてのスライド画像リンクを有効にする */
.slideshow__media a {
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

/* 特に1枚目（最初に表示されるスライド）に確実に適用 */
.slideshow__slide[aria-hidden="false"] .slideshow__media a {
  pointer-events: auto !important;
  z-index: 10 !important;
}



@media screen and (max-width: 768px) {
  /* 全体レイアウト調整 */
  html, body {
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body, main#MainContent {
    padding-top: 0 !important;
    margin-top: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .header {
    height: 56px !important; /* 固定ヘッダーの高さ */
  }

  .shopify-section:first-of-type {
    padding-top: 50px !important; /* ヘッダー分の余白 */
  }

 /* スライドショーと関連要素の高さ制御 */
  .slideshow,
  .slideshow__slide,
  .slideshow__media,
  slideshow-component,
  #Slider-{{ section.id }},
  .shopify-section {
    height: auto !important;
    overflow: visible !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block !important;
  }


  /* スライドショー画像制限 */
  .slideshow img {
    max-height: 400px;
  }

  /* 横スクロールスライダー設定 */
  .slider--everywhere {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: auto !important;
  }

  /* スライド画像エリアのタッチ操作許可（縦スクロールを妨げないように） */
  .slideshow__media,
  .slideshow__media a {
    touch-action: auto !important;
    -ms-touch-action: auto !important;
  }

  /* ::beforeによる余白を完全に無効化 */
  .slideshow.banner--adapt_image::before,
  .slideshow .media::before,
  .slideshow .banner__content::before,
  [id^="Slider-"]::before,
  [id^="Slider-"] .media::before,
  [id^="Slider-"]:not(.banner--mobile-bottom) .banner__content::before {
    display: none !important;
    content: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
  }

  /* スライドショーの余白調整 */
  .slideshow.banner--adapt_image {
    margin: 0 !important;
    padding: 0 !important;
  }

/* スライドショーや動画の z-index を下げる */
.slideshow,
.slider,
.video-slider,
.slider__content {
  z-index: 1 !important;
}

/* リンクエリアは上に来るように */
.multicolumn-card__image-link,
.collection-card__link,
.feature-card a {
  position: relative;
  z-index: 10;
}




}
