/** Shopify CDN: Minification failed

Line 235:50 Expected ":"
Line 236:51 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-slideshow (INDEX:13) */
.custom-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-slideshow__track {
  position: relative;
}

.custom-slideshow__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.custom-slideshow__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.custom-slideshow__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0px 0px rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 1;
}

/* height と max-height は {% style %} タグで動的に制御 */
.custom-slideshow__slide img,
.custom-slideshow__slide .placeholder-svg {
  width: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease;
}

.custom-slideshow__slide.is-active img,
.custom-slideshow__slide.is-active .placeholder-svg {
  transform: scale(1.08);
}

.custom-slideshow__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  width: 90%;
  z-index: 2;
}

.custom-slideshow__heading {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.custom-slideshow__subheading {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
}

.custom-slideshow__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.custom-slideshow__button:hover {
  opacity: 0.8;
}

.custom-slideshow__prev,
.custom-slideshow__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  border-radius: 4px;
  transition: background 0.2s;
}

.custom-slideshow__prev:hover,
.custom-slideshow__next:hover {
  background: rgba(0,0,0,0.7);
}

.custom-slideshow__prev { left: 1rem; }
.custom-slideshow__next { right: 1rem; }

.custom-slideshow__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.custom-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.custom-slideshow__dot.is-active {
  background: #fff;
}

@media (max-width: 749px) {
  .custom-slideshow__prev,
  .custom-slideshow__next {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
  }
}
/* END_SECTION:custom-slideshow */

/* START_SECTION:featured-products-carousel (INDEX:18) */
.featured-carousel-window {
  overflow: hidden;
  width: 100%;
}
.featured-carousel-track {
  display: flex;
  gap: var(--fc-gap, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.2s ease;
}
.featured-carousel-item {
  flex: 0 0 var(--fc-item-width-desktop, calc(25% - 1.2rem));
  min-width: 14rem;
}
@media (max-width: 749px) {
  .featured-carousel-item {
    flex: 0 0 var(--fc-item-width-mobile, calc(50% - 0.8rem));
  }
}

/* カードスタイル */
.featured-carousel-item .card-wrapper {
  background: var(--fc-card-bg, transparent);
  border-radius: var(--fc-card-radius, 0px);
  overflow: hidden;
}
.featured-carousel-item .card__information {
  background: var(--fc-card-bg, transparent);
}

/* タイトル */
.featured-carousel-item .card__heading a,
.featured-carousel-item .card__heading {
  font-size: var(--fc-title-size, 1.4rem) !important;
  color: var(--fc-title-color, rgb(var(--color-foreground))) !important;
}

/* 価格 */
.featured-carousel-item .price__regular .price-item,
.featured-carousel-item .price__sale .price-item {
  font-size: var(--fc-price-size, 1.2rem) !important;
  color: var(--fc-price-color, rgb(var(--color-foreground))) !important;
}

/* ボタン */
.featured-carousel-btn {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  background: rgb(var(--color-background));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: rgb(var(--color-foreground));
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.featured-carousel-btn:hover {
  border-color: rgba(var(--color-foreground), 0.5);
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
}
.featured-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.featured-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: var(--fc-padding-top, 3.6rem);
  padding-bottom: var(--fc-padding-bottom, 3.6rem);
  padding-left: var(--fc-padding-left, 0px);   ← 追加
  padding-right: var(--fc-padding-right, 0px);  ← 追加
}


.featured-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
/* スライドパネル */
.fc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.fc-overlay.active { display: block; }

.fc-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(42rem, 100vw);
  height: 100%;
  background: rgb(var(--color-background));
  z-index: 1000;
  transition: right 0.35s ease;
  overflow-y: auto;
  padding: 2.4rem;
  box-sizing: border-box;
}
.fc-panel.active { right: 0; }

.fc-panel__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgb(var(--color-foreground));
  padding: 0.4rem;
}

.fc-panel__content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--fc-card-radius, 0px);
  margin-bottom: 1.6rem;
}
.fc-panel__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
  color: rgb(var(--color-foreground));
}
.fc-panel__price {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: rgb(var(--color-foreground));
}
.fc-panel__description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 2rem;
}
.fc-panel__link {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  text-align: center;
  text-decoration: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  box-sizing: border-box;
}
.fc-panel__link:hover { opacity: 0.85; }

/* スマホ：タッチ時にセカンダリ画像を表示 */
@media screen and (max-width: 749px) {
  .featured-carousel-item.is-touch-hover .media--hover-effect > img:last-child {
    opacity: 1 !important;
  }
}
/* END_SECTION:featured-products-carousel */

/* START_SECTION:featured-products-showcase (INDEX:19) */
.fps-section {
    width: 100%;
    font-family: inherit;
  }

  /* ── 特集エリア ── */
  .fps-hero {
    padding: 40px 20px;
  }

  .fps-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .fps-hero__title {
    margin: 0 0 12px;
    font-weight: 700;
  }

  .fps-hero__desc {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #555;
  }

  .fps-hero__img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  /* ── カルーセルエリア ── */
  .fps-carousel {
    padding: 32px 20px;
  }

  .fps-carousel__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .fps-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: var(--fps-gap-pc, 16px);
    padding-bottom: 12px;
    list-style: none;
    margin: 0;
    padding-left: 0;
  }

  .fps-carousel__track::-webkit-scrollbar {
    height: 6px;
  }
  .fps-carousel__track::-webkit-scrollbar-track { background: #eee; }
  .fps-carousel__track::-webkit-scrollbar-thumb { background: #aaa; border-radius: 3px; }

  .fps-carousel__item {
    flex: 0 0 calc(
      (100% - (var(--fps-cols-pc, 4) - 1) * var(--fps-gap-pc, 16px))
      / var(--fps-cols-pc, 4)
    );
    scroll-snap-align: start;
    min-width: 0;
  }

  /* ── 商品カード ── */
  .fps-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .fps-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  .fps-card__img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
  }

  .fps-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .fps-card:hover .fps-card__img {
    transform: scale(1.04);
  }

  .fps-card__body {
    padding: 10px 12px 14px;
  }

.fps-card__title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #111111 !important;
}


  .fps-card__price {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #111;
  }

  /* ── レスポンシブ ── */
  @media (max-width: 768px) {
    .fps-hero__title {
      font-size: var(--fps-hero-title-sp, 22px) !important;
    }
    .fps-hero__desc {
      font-size: var(--fps-hero-desc-sp, 14px) !important;
    }
    .fps-hero__img {
      height: var(--fps-hero-img-sp, 220px) !important;
    }
    .fps-carousel__item {
      flex: 0 0 calc(
        (100% - (var(--fps-cols-sp, 2) - 1) * var(--fps-gap-sp, 10px))
        / var(--fps-cols-sp, 2)
      );
    }
    .fps-carousel__track {
      gap: var(--fps-gap-sp, 10px);
    }
  }
/* END_SECTION:featured-products-showcase */