@charset "UTF-8";

/* ファッション　モーダル */
.main .js_fashion_modal .modal_modmicro_overlay {
  padding: 20px 0;
}
@media screen and (768px <= width) {
  .main .js_fashion_modal .modal_modmicro_overlay {
    padding: 20px 20px;
  }
}
.main .js_fashion_modal .swiper {
  --swiper-pagination-bullet-inactive-color: #b4b4b4;
  --swiper-pagination-color: #000;
  padding: 0 0 10px;
}
.main .js_fashion_modal .modal_modmicro_container {
  max-width: 800px;
}
.main .js_fashion_modal .swiper-slide {
  text-align: center;
}
.main .js_fashion_modal .swiper-slide img {
  width: 100% !important;
  max-width: none;
}
.main .js_fashion_modal .swiper-pagination {
  position: static;
  margin: 10px 0 0;
}
.main .js_fashion_modal .swiper-button-next,
.main .js_fashion_modal .swiper-button-prev {
  display: none;
}
@media screen and (992px <= width) {
  .main .js_fashion_modal .swiper-button-next,
  .main .js_fashion_modal .swiper-button-prev {
    display: block;
    color: #000;
  }
}
/* ファッション　モーダル */

/* ---- Slide Section ---- */
.slide_section {
  padding-block: 1em;
  background: #edaec6;
}
.slide_section_header {
  padding-bottom: 1.5em;
  padding-inline: 1em;
}
.slide_section_head img {
  width: 100%;
  min-width: 76px;
  height: auto;
  display: block;
}
.slide_swiper_wrap {
  position: relative;
}
.js-slide-swiper {
  overflow: hidden;
}
.js-slide-swiper .swiper-slide {
  width: auto;
}
.js-slide-swiper .slide_img_wrap {
  position: relative;
  display: block;
}
.js-slide-swiper .swiper-slide img {
  width: auto;
  height: auto;
  display: block;
}
.slide_text {
  padding-top: 0.5em;
  text-align: center;
  color: #fff;
}
.slide_cooming_soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  pointer-events: none;
}
/*
 * .swiper-wrapper には gap / justify-content を指定しないこと。
 * Swiper は slidesPerView:'auto' 時にスライド幅 + spaceBetween で位置を計算するため、
 * gap を足すと 1枚ごとに位置がズレ、justify-content:center は溢れた分だけ行全体が
 * 左にはみ出して、loop 時に末尾へ空白が出る。スライド間隔は JS 側の spaceBetween で指定する。
 */
.js-slide-swiper .swiper-wrapper {
  align-items: center;
}
/* ---- Slide Section ---- */

/* ---- 商品ラベル ---- */
.main .item {
  position: relative;
  cursor: pointer;
  background: #e3e3e3;
}
.main .item img {
  display: block;
}
.main .item .label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.88);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.main .item.is-active .label {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.main .item .label_inner {
  position: relative;
  color: #fff;
  padding-inline: 0.8em;
  padding-block: 0.6em 0.2em;
  border-radius: 0.5em;
  width: min(calc(220 / 768 * 100vw), 220px);
}

.main .item .coming_soon {
  background-color: #fff;
  text-transform: uppercase;
  color: #666;
  padding-inline: 0.1em;
  margin-bottom: 0.2em;
  white-space: nowrap;
  text-align: center;
}
.main .item .label .title {
  text-align: center;
}

.main .label_inner::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 10px 8px; /* 上 右 下 左 */
  border-style: solid;
}

.main .label_inner.bgtype_1 {
  background: rgba(0, 0, 0, 0.6);
}
.main .label_inner.bgtype_1::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.6) transparent;
}

.main .label_inner.bgtype_2 {
  background: rgba(120, 167, 27, 0.6);
}
.main .label_inner.bgtype_2::after {
  border-color: transparent transparent rgba(120, 167, 27, 0.6) transparent;
}

.main .label_inner.bgtype_3 {
  width: min(calc(400 / 768 * 100vw), 400px);
  background: rgba(0, 0, 0, 0.6);
}
.main .label_inner.bgtype_3::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.6) transparent;
}
/* ---- 商品ラベル ---- */

/* ---- 動画モーダル ---- */
.youtube_short {
  width: 70%;
  max-width: 400px;
  margin: auto;
}
.youtube_short iframe {
  aspect-ratio: 9 / 16;
  width: 100%;
  height: 100%;
}
/* ---- 動画モーダル ---- */

.item_img03,
.item_img06,
.item_img07{
      background: #edaec6!important;
}