/** Shopify CDN: Minification failed

Line 424:10 Unexpected "{"
Line 424:19 Expected ":"
Line 678:10 Unexpected "{"
Line 678:19 Expected ":"
Line 685:12 Unexpected "{"
Line 685:21 Expected ":"
Line 689:12 Unexpected "{"
Line 689:21 Expected ":"
Line 696:12 Unexpected "{"
Line 696:21 Expected ":"
... and 12 more hidden warnings

**/
/* ==========================================================================
   1. アニメーション定義（元のコードをすべて維持）
   ========================================================================== */
@keyframes reveal {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
@keyframes zoomOut {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes fadeOut {
  0% { opacity: 0.0001; }
  100% { opacity: 1; }
}
/* ベンダープレフィックス付きも維持 */
@-webkit-keyframes reveal { 0% { -webkit-transform: scaleX(1); } 100% { -webkit-transform: scaleX(0); } }
@-webkit-keyframes zoomOut { 0% { -webkit-transform: scale(1.1); } 100% { -webkit-transform: scale(1); } }

/* ==========================================================================
   2. レイアウト・画像固定設定 (SPとPCの完全切り分け)
   ========================================================================== */

/* --- 全デバイス共通 --- */
.collapsible-content .container {
  display: flex;
  width: 100%;
}

.slide-inner-content {
  display: flex;
  width: 100% !important;
}

/* --- SP版 (749px以下): 縦に並べて重なりを防止 --- */
@media screen and (max-width: 749px) {
  .collapsible-content .container,
  .slide-inner-content {
    flex-direction: column !important;
    align-items: center !important;
  }

  .collapsible-content__gallery,
  .custom-fade-gallery {
    width: 100% !important;
    height: 250px !important; /* お好みの高さ */
    position: relative !important; /* stickyを解除して重なり防止 */
    top: 0 !important;
    margin-bottom: 20px; /* 画像とテキストの間の余白 */
    overflow: hidden;
  }
}

/* --- PC版 (750px以上): 横並び・上端揃え・画像サイズ固定 --- */
@media screen and (min-width: 750px) {
  .collapsible-content .container {
    flex-direction: row; 
    align-items: flex-start !important; /* 上揃え */
    justify-content: center;
    width: 1000px;
    margin: 0 auto;
  }
  .slide-inner-content {
    flex-direction: row !important;
    align-items: flex-start !important; /* 上揃え */
    justify-content: center !important;
    gap: 40px;
  }
  .collapsible-content__gallery,
  .custom-fade-gallery {
    flex-shrink: 0;
    
    /* 位置を一番上に固定し、アコーディオンに引きずられないようにする */
    align-self: flex-start !important; 
    position: sticky !important;
    top: 40px; 
    margin-top: 50px; /* 右側のアコーディオンのパディング開始位置と合わせる */
    overflow: hidden;
  }

  .collapsible-content__info {
    width: 500px;
    flex-shrink: 0;
  }
}
  @media screen and (max-width: 749px) {
  /* これを追加して固定幅を破壊します */
  .collapsible-content__info,
  .collapsible-content__content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
  
  .collapsible-content__content {
    padding: 50px 0 0 50px; /* 上の余白を画像と合わせる */
  }


/* 画像自体の表示設定 (歪み防止) */
.custom-fade-img,
.collapsible-content__image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* ==========================================================================
   3. アコーディオン設定（滑らかな開閉 & 競合排除）
   ========================================================================== */

/* 1. JSが有効な場合、まず一旦すべての回答エリアを「閉じ」の状態にする */
.js .collapsible-content__answer {
  display: grid !important; 
  grid-template-rows: 0fr;    /* 高さを0に */
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
  margin: 0;
  padding: 0;
}

/* 2. activeクラス（JSで制御）がついている項目「だけ」を開く */
.js .collapsible-content__item.active > .collapsible-content__answer {
  grid-template-rows: 1fr;    /* 高さを中身に合わせる */
  opacity: 1;
  padding-bottom: 1.6rem;
}

/* 3. 中身がはみ出して「開いたまま」に見えないようにする */
.collapsible-content__answer-inner {
  display: block;
  overflow: hidden;
}

/* アイコンの回転 */
.collapsible-content__item.active .collapsible-content__icon svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   4. パーツごとの詳細スタイル（元の見た目を維持）
   ========================================================================== */
   @media screen and (min-width: 750px) {
    .collapsible-content__content {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 50px 0 0 50px;

    }
    .collapsible-content__heading {
      font-size: 15px;
      font-weight: 600;
      padding-left: 10px;
      line-height: 1.8;
    }
    .collapsible-content__content h3{
      font-size: 14px;
    }
    .collapsible-content__content p{
      font-size: 12px;
    }
   }
@media screen and (max-width: 749px) {
  .collapsible-content__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;

  }
  .collapsible-content__heading {
    font-size: 3.5vw;
    font-weight: 600;
    padding-left: 10px;
    line-height: 1.8;
    margin: 0 3vw 1.5vh;
  }
  .collapsible-content__content h3{
    font-size: 3vw;
  }
  .collapsible-content__content p{
    font-size: 2.7vw;
  }
  .collapsible-content__item {
    border-bottom: 0.1rem solid rgba(var(--color-border));
    transition: opacity var(--duration-default);
    padding-left: 2vw;
    padding-right: 2vw;
    margin: 0 3vw;
  }
}
@media screen and (min-width: 750px) {
  .collapsible-content__item {
    border-bottom: 0.1rem solid rgba(var(--color-border));
    transition: opacity var(--duration-default);
    padding-left: 10px;
    padding-right: 10px;
  }
}
.collapsible-content__item:first-child {
  border-top: 0.1rem solid rgba(var(--color-border));
}

/* 【修正】クリック反応のためのtoggleクラス */
.collapsible-content__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  cursor: pointer;
  transition: opacity var(--duration-default) ease;
  position: relative;
  z-index: 1;
}

.menu-price {
  text-align: right;
  padding-right: 10px;
  color: #e8382f;
  font-weight: bold;
  font-family: "Noto Sans Japanese";
}
.note-price {
  text-align: right;
  color: #666666;
  font-size: 9px !important;
  font-weight: 400;
  font-family: "Noto Sans Japanese";
}

.menu-price-big {
  text-align: right;
  padding-right: 14px;
  color: #e8382f;
  font-weight: bold;
}
.price-red {
  color: #e8382f;
  font-size: 14px !important;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .price-red {
    color: #e8382f;
    font-size: 3.2vw !important;
  }
  .menu-price-big {
    text-align: right;
    padding-right: 3.2vw!important;
    color: #e8382f;
    font-weight: bold;
  }
  .note-price {
    text-align: right;
    color: #666666;
    font-size: 2vw !important;
    font-weight: 400;
    font-family: "Noto Sans Japanese";
  }
}

/* アイコン部分の設定 */
.collapsible-content__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
}
.collapsible-content__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: var(--duration-default);
  pointer-events: none;
}
.collapsible-content__question {
  margin: 0;
  pointer-events: none;
  line-height: 1.7;
  font-family: "Noto Sans Japanese";
}

@media screen and (min-width: 1200px) {
  .collapsible-content__icon svg { width: 1.4rem; height: 1.4rem; }
  .collapsible-content__items:has(.active) .collapsible-content__item:not(.active) {
    opacity: 0.5;
  }
}

/* アニメーション用オーバーレイ */
.collapsible-content__gallery.observe-me .collapsible-content__animated-overlay {
  display: block;
  position: absolute;
  top: 0; right: -1px; bottom: 0; left: 0;
  background: rgb(var(--color-background));
  z-index: 1;
}
.collapsible-content__gallery.observe-me.is-inview .collapsible-content__animated-overlay {
  transform-origin: right center;
  animation: reveal 0.6s ease-in-out;
}

/* スライダー内部の横並びを定義 */
.slide-inner-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .slide-inner-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

/* カスタムタブ（リスト）の見た目 */
.splide__pagination--custom {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.splide__pagination__item {
  padding: 1rem 0;
  cursor: pointer;
  color: #aaa;
  font-weight: bold;
  font-size: 1.3rem;
  border-bottom: 2px solid transparent;
}
.splide__pagination__item.is-active {
  color: #000;
  border-bottom: 2px solid #000;
}


@media screen and (max-width: 749px) {
  .menu-collapsible .splide__pagination--custom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0rem;
    list-style: none;
    padding: 0 7vw;
    margin-bottom: 1rem;
  }
  .menu-collapsible .splide__pagination--custom .splide__pagination__item {
    flex: 0 0 30%;
    text-align: center;
  }
}
/* 矢印を左右の端に飛ばす */
.splide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.splide__arrow {
  pointer-events: auto;
  background: none;
  border: none;
}
.splide__arrow--prev { transform: translateY(-50%) rotate(90deg) !important; }
.splide__arrow--next { transform: translateY(-50%) rotate(-90deg) !important; }

.splide__arrow svg { fill: transparent !important; }
.splide__arrow { background: transparent !important; }

/* セクションタイトル */
.collapsible-content__top-heading {
  text-align: center;
  margin-bottom: 4rem;
  width: 100%;
}

.collapsible-content__gallery--image-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}

.slide-inner-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .slide-inner-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.section-{{ section.id }} .collapsible-content__gallery--image-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
}

.collapsible-content__section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.slide-inner-content {
  display: flex;
  width: 100% !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

/* 【修正】フェード画像のPC版サイズ固定 */
@media screen and (min-width: 750px) {
  .custom-fade-gallery {
    width: 400px !important;
    height: 400px !important;
    min-width: 400px !important;
    max-height: 400px !important;
    position: sticky;
    top: 2rem;
    align-self: flex-start; /* 伸び防止 */
    flex-shrink: 0;
    overflow: hidden;
  }
}

.custom-fade-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.custom-fade-image.is-active {
  opacity: 1;
  z-index: 2;
}

.custom-fade-image .collapsible-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 749px) {
  .splide__pagination--custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.splide__pagination__item {
  padding: 1rem 0;
  cursor: pointer;
  color: #aaa;
  font-weight: bold;
  font-size: 1.3rem;
  position: relative;
  transition: color 0.3s ease;
}
.splide__pagination__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 1px;
  background-color: #666666;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
@media screen and (max-width: 749px) {
  .splide__pagination__item {
    font-size: 2.7vw;
    margin: 0 6vw;
  }
  .menu-collapsible .splide__pagination__item {
    text-align: center;
  }
}
.splide__pagination__item.is-active {
  color: #343434;
  border-bottom: none;
}
.splide__pagination__item.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
@media screen and (max-width: 749px) {
  .splide__pagination__item.is-active {
    color: #343434;
    border-bottom: none;
    position: relative;
  }
  .splide__pagination__item.is-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;
    height: 1px;
    background-color: #666666;
  }
}

.collapsible-content__section-header-custom {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.custom-fade-wrapper { width: 100%; height: 100%; }
.custom-fade-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.custom-fade-img.is-active { opacity: 1 !important; z-index: 2; }

@media screen and (max-width: 749px) {
  .slide-inner-content { flex-direction: column !important; }
  .custom-fade-gallery { width: 100% !important; height: 250px !important; }
}

.collapsible-content__header-custom {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}

.menu-collapsible .collapsible-content__section-description p{
  font-size: 1.1rem;
  color: #666;
  margin: 3rem 0 0 ;
}
.collapsible-content__section-description p{
  font-size: 1.1rem;
  color: #666;
  margin: 3vh ;
}



@media screen and (max-width: 749px) {
  .slide-inner-content {
    flex-direction: column !important;
  }
}

.collapsible-content__header-custom {
  width: 100%;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}



@media screen and (max-width: 749px) {
  .custom-fade-gallery {
    width: 100% !important;
    height: 250px !important;
    overflow: hidden;
  }
  .collapsible-content__gallery,
  .custom-fade-gallery {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3; /* 高さを固定せず比率にする */
    margin: 0 0 20px 0 !important;
  }
  
}


.custom-fade-img,
.collapsible-content__image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.menu-collapsible {
  margin: 50px auto 100px !important;
}
@media screen and (max-width: 749px) {
  .menu-collapsible {
    margin: 0 auto !important;
  }
}
.list__container {
  margin: 3rem 0 5rem;
  padding: 0;
}
.list__contents {
  display: flex;
  justify-content: left !important;
  border-top: .5px solid #cccccc;
}
.list__contents:last-child {
  border-bottom: .5px solid #cccccc;
}
.list__contents .contents-heading {
  background-color: #f0f1f0;
  width: 30%;
}
/* .list__contents:last-child{
  border-bottom: none !important;
} */
.list__contents p {
  padding: 2rem 0 2rem 1.5rem;
  margin: 0;
}

@media screen and (max-width: 749px) {
  .list__container {
    padding: 0;
  }
  .list__contents {
    display: flex;
    justify-content: space-between;
  }
  .list__contents .contents-heading {
    background-color: #f0f1f0;
    width: 30%;
  }
  .list__contents p {
    padding: 2vh 0 2vh 2vw;
  }
}

/* --- セクション下の巨大な空白を消す修正 --- */

/* スライダー全体の高さを中身に合わせる */
.section-{{ section.id }} .splide__track {
  height: auto !important;
  min-height: 0 !important;
}

/* SP版での高さをリセット */
@media screen and (max-width: 749px) {
  .section-{{ section.id }} .splide__list {
    height: auto !important;
  }
  
  .section-{{ section.id }} .slide-inner-content {
    height: auto !important;
    min-height: 0 !important;
    display: block !important; /* flexによる高さの引き伸ばしを防止 */
  }

  /* sticky（固定）がSPで残っていると空白の原因になるため強制解除 */
  .section-{{ section.id }} .custom-fade-gallery,
  .section-{{ section.id }} .collapsible-content__gallery {
    position: relative !important;
    height: 250px !important; /* またはお好みの高さ */
    top: 0 !important;
  }
}
/* ページ全体のスムーズスクロール */
/* 1. スムーズスクロール */
html { scroll-behavior: smooth !important; }

/* 2. テーマが生成する「a:after」などのオーバーレイを無効化 */
.section-{{ section.id }}::after,
.section-{{ section.id }}::before,
.section-{{ section.id }} a::after {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

/* 3. 着地位置の調整（見えない目的地を上にずらす） */
#{{ section.settings.custom_id | handle }} {
  display: block;
  padding-top: 180px; /* ヘッダー分 */
  margin-top: -180px;
  visibility: hidden;
  pointer-events: none;
}