@charset "utf-8";

/* CSS Document */
/*---------------------------------------------------

下層

-----------------------------------------------------*/

/*---------------------------------------------------
カテゴリ絞り込み
-----------------------------------------------------*/
.item > input[type='radio'] {
  position: absolute;
  left: -9999px;
}

.filters {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.filters * {
  display: inline-block;
}

.filters label {
  font-size: 0.9rem;
  text-align: center;
  padding: 0.25rem 1rem;
  margin-bottom: 0.25rem;
  min-width: 50px;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #3a2a11;
  background: #fff;
  border-radius: 1rem;
}

.filters label:hover {
  background: #3a2a11;
  color: #fff;
}

[value='All']:checked ~ .filters [for='All'],
[value='cat_01']:checked ~ .filters [for='cat_01'],
[value='cat_02']:checked ~ .filters [for='cat_02'],
[value='cat_03']:checked ~ .filters [for='cat_03'],
[value='cat_04']:checked ~ .filters [for='cat_04'],
[value='cat_05']:checked ~ .filters [for='cat_05'],
[value='cat_06']:checked ~ .filters [for='cat_06'],
[value='cat_07']:checked ~ .filters [for='cat_07'],
[value='cat_08']:checked ~ .filters [for='cat_08'],
[value='cat_09']:checked ~ .filters [for='cat_09'],
[value='cat_10']:checked ~ .filters [for='cat_10'],
[value='cat_11']:checked ~ .filters [for='cat_11'] {
  background: #3a2a11;
  color: #fff;
}

.filters li:has(input:checked) {
  background: #3a2a11;
}

[value='All']:checked ~ .targets [data-category] {
  display: block;
}

[value='cat_01']:checked ~ .targets .target:not([data-category~='cat_01']),
[value='cat_02']:checked ~ .targets .target:not([data-category~='cat_02']),
[value='cat_03']:checked ~ .targets .target:not([data-category~='cat_03']),
[value='cat_04']:checked ~ .targets .target:not([data-category~='cat_04']),
[value='cat_05']:checked ~ .targets .target:not([data-category~='cat_05']),
[value='cat_06']:checked ~ .targets .target:not([data-category~='cat_06']),
[value='cat_07']:checked ~ .targets .target:not([data-category~='cat_07']),
[value='cat_08']:checked ~ .targets .target:not([data-category~='cat_08']),
[value='cat_09']:checked ~ .targets .target:not([data-category~='cat_09']),
[value='cat_10']:checked ~ .targets .target:not([data-category~='cat_10']),
[value='cat_11']:checked ~ .targets .target:not([data-category~='cat_11']) {
  display: none;
}

/* フィルタリングアニメーション  */
[value='cat_01']:checked ~ .targets .target,
[value='cat_02']:checked ~ .targets .target,
[value='cat_03']:checked ~ .targets .target,
[value='cat_04']:checked ~ .targets .target,
[value='cat_05']:checked ~ .targets .target,
[value='cat_06']:checked ~ .targets .target,
[value='cat_07']:checked ~ .targets .target,
[value='cat_08']:checked ~ .targets .target,
[value='cat_09']:checked ~ .targets .target,
[value='cat_10']:checked ~ .targets .target,
[value='cat_11']:checked ~ .targets .target {
  animation: checked_animation 0.4s ease-in-out both;
}

/* All を追加 */
/* [value="All"]:checked ~ .targets [data-category] {
  animation: checked_animation 0.4s ease-in-out both;
} */

/* アニメーション */

/* .checked_animation {
  animation: checked_animation 0.4s ease-in-out both;
} */

@keyframes checked_animation {
  0% {
    transform: translate(0, 300px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*---------------------------------------------------
商品画像スライダー
-----------------------------------------------------*/
/* swiper */
#xmas2025 .swiper-container.gallery-top,
#xmas2025 .swiper-container.gallery2-top {
  width: 100%;
  max-width: 585px;
  height: 450px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
#xmas2025 .swiper-container {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

#xmas2025 .swiper-container.gallery-thumbs,
#xmas2025 .swiper-container.gallery2-thumbs {
  height: 55px;
}

#xmas2025 .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#xmas2025 .swiper-fade .swiper-slide {
  transition-property: opacity !important;
}
#xmas2025 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイルが非アクティブな時の透明度 */
#xmas2025 .swiper-container.gallery-thumbs .swiper-slide,
#xmas2025 .swiper-container.gallery2-thumbs .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

/* サムネイルがアクティブな時のスタイル */
#xmas2025 .swiper-container.gallery-thumbs .swiper-slide-thumb-active,
#xmas2025 .swiper-container.gallery2-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/* 3枚表示のサムネイルのスライド幅 */
#xmas2025 .swiper-container.gallery-thumbs .swiper-slide {
  width: calc((100% - 20px) / 3);
}

/* 2枚表示のサムネイルのスライド幅 */
#xmas2025 .swiper-container.gallery2-thumbs .swiper-slide {
  width: calc((100% - 10px) / 2);
}

#xmas2025 .swiper-container.gallery2-thumbs .swiper-wrapper {
  width: 65.33%;
}

/*---------------------------------------------------





PC





-----------------------------------------------------*/

@media screen and (min-width: 737px) {
}

/*---------------------------------------------------





SP





-----------------------------------------------------*/

@media screen and (max-width: 736px) {
  /* 商品画像スライダー */
  #xmas2025 .swiper-container.gallery-top,
  #xmas2025 .swiper-container.gallery2-top {
    width: 100%;
    max-width: 83vw;
    height: auto;
    margin: 0 auto 1rem;
    overflow: hidden;
  }
  #xmas2025 .swiper-container.gallery-thumbs,
  #xmas2025 .swiper-container.gallery2-thumbs {
    height: 50px;
  }
  #xmas2025 .swiper-container {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  #xmas2025 .detail_h1 {
    margin: 0.5rem 0 1rem;
  }

  #xmas2025 .detail .nav ul {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 0.2rem;
  }

  #xmas2025 .detail .nav a {
    line-height: 1em;
    padding: 0.4rem;
  }

  #xmas2025 .detail .nav a span {
    /* padding: .2rem 0.1rem;
    outline-offset: .2rem; */
    padding: 0.2rem 0;
    outline-offset: 3px;
  }

  #xmas2025 .detail .nav a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #dbd4b7;
    border-right: 2px solid #dbd4b7;
    position: absolute;
    top: 39%;
    right: 5%;
    transform: rotate(45deg);
  }

  #xmas2025 .detail .nav li:first-child span {
    line-height: 2;
  }

  /* .mask-soldout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
  }

  .mask-soldout .soldout {
    background: rgba(63, 57, 57, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 10px;
  } */

  /* .mask-soldout .soldout>p {
    font-size: clamp(40px, 3.2vw, 48px);
    font-weight: bold;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }

  .mask-soldout .soldout>p>span {
    display: block;
    font-size: 1.9rem;
  } */

  #xmas2025 .sale {
    margin: 0.2rem 0;
  }

  #xmas2025 .sale_price {
    font-size: 1.2rem;
  }

  #xmas2025 .sale_price_tit {
    margin-right: 0.5rem;
  }

  #xmas2025 .single .sale_price {
    font-size: 1rem;
  }

  #xmas2025 .sale .yen {
    font-size: 1.4rem;
  }

  .filters {
    text-align: left;
  }
}
