@charset "UTF-8";

/* 時限切換え　*/
.branch_icon_area{
  display: flex; justify-content: center;
}
body:has(.is_release_before):has(.is_platinum) .branch_icon_area{
  display: none;
}
body:has(.is_release_after) .branch_icon_area{
  display: none;
}

.branch_icon_coming{
  color: #fff; line-height: 1.1; background-color: #0e6eb8; text-align: center; padding: 0.3em 1em;
  font-size: min(calc(24/768*100vw), 16px)
}
.branch_main_area{
  display: none;
}
body:has(.is_release_before):has(.is_platinum) .branch_main_area{
  display: block;
}
body:has(.is_release_after) .branch_main_area{
  display: block;
}

/* priceの表示、非表示 */
body:has(.is_release_after) .branch_price_before{
  display: none;
}
.branch_price_after{
  display: none;
}
body:has(.is_release_after) .branch_price_after{
  display: block;
}

/* 共通　*/
.main img{
  vertical-align: top;
}
.main .bg01{
  background-color: #b679af;
}
.main .bg02{
  background-color: #fef5f8;
}
.main .bg03{
  background-color: #867775;
}
.main .bg11{
  background-image: url(../img/bg11.webp);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.main .bg12{
  background-image: url(../img/bg12.webp);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}
.main .bg13{
  background-image: url(../img/bg13.webp);
  background-size: cover;
  background-position: center top;
}
.main .color01{
  color: #523841;
}
.main .bar01{
  line-height: 0;
}

.main .pdt1px{
  padding-top: 1px;
}
.main .pdt005{
  padding-top: 0.5%;
}
.main .mgt005{
  margin-top: 0.5%;
}
.main .shrink0{
  flex-shrink: 0;
}
.main .relative{
  position: relative; z-index: 0;
}
.main .lh18{
  line-height: 1.8;
}

/* ヘッド */
.main .head{
  position: relative; z-index: 0; overflow: hidden;
}
.main .head_price{
  position: absolute; z-index: 0; top: 0; left: 0; margin: 41% 0 0 4%;
}
.main .head_catch{
  color: #fff; font-weight: bold; letter-spacing: 0.13em; text-align: center; background-color: #ec88a8; padding: 0.6em 0;
}



/* 商品 */
.main .ttl01{
  display: flex; align-items: center; gap: 0 0.3em;
  width: fit-content; color: #ec84a5; letter-spacing: 0.1em; font-weight: bold; background-color: #fff; padding: 0.4em 1em;
  border-radius: 0 1.15em 1.15em 0;
}
.main .ttl01_icon{
  width: 1.2em; line-height: 0; margin: 0 0 0.1em;
}
.main .item_desc{
  position: relative; z-index: 0; font-weight: bold;
}
.item_desc::after{
  content: "";
  position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  filter: blur(0.5em);
}



/* アニメーション */
.main .block{
  position: relative; z-index: 0;
}
.main .fixed-block > img{
  position:absolute;
  user-select:none;
  -webkit-user-drag:none;
}

.main .sparkle-target{ position: relative; isolation: isolate; }
.main .sparkle-layer{
  position:absolute; z-index: 4; inset:0;
  pointer-events:none;
}

.main .overlay-layer{
  position:absolute; z-index: 2;
  inset:0;
  pointer-events:none;
  
}

.main .overlay-img{
  position:absolute;
  will-change: opacity;
}

.main .placeholder{
  opacity: 1;
  transition: opacity 160ms linear;
}
.main .gif{
  opacity: 0;
  transition: opacity 180ms linear;
}
.main .gif.is-show{
  opacity: 1;
}


.main .js-item01 .overlay-img{
  width: calc(342/768*100%); top: 0; right: 0; margin: 20% 4% 0 0;
}
.main .js-item02 .overlay-img{
  width: calc(342/768*100%); top: 0; left: 0; margin: 3% 0 0 4%;
}
.main .js-item03 .overlay-img{
  width: calc(342/768*100%); top: 0; right: 0; margin: 15% 3% 0 0;
}

/* Sparkle */
.main .sparkle{
  position:absolute;
  left:0; top:0;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(1.2px) drop-shadow(0 0 10px rgba(255,255,255,.55));
  will-change: transform, opacity, filter;
  animation: twinkle var(--dur, 1800ms) ease-in-out forwards;
}
.main .sparkle i{
  position:absolute;
  inset:0;
  margin:auto;
  display:block;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,.98) 10%,
    rgba(255,255,255,.70) 48%,
    rgba(255,255,255,0) 86%);
  box-shadow:
    0 0 22px rgba(255,255,255,.72),
    0 0 60px rgba(180,220,255,.42);
}
.main .sparkle i.line{ width: 3px; height: 100%; }
.main .sparkle i.h{ transform: rotate(90deg); }

@keyframes twinkle{
  0%{   opacity:0; transform: translate(-50%,-50%) scale(.10) rotate(var(--rot0, 0deg)); }
  18%{  opacity:1; transform: translate(-50%,-50%) scale(1.18) rotate(calc(var(--rot0, 0deg) + var(--rotDelta, 90deg) * .55)); }
  55%{  opacity:.95;transform: translate(-50%,-50%) scale(1.00) rotate(calc(var(--rot0, 0deg) + var(--rotDelta, 90deg))); }
  100%{ opacity:0; transform: translate(-50%,-50%) scale(.25) rotate(calc(var(--rot0, 0deg) + var(--rotDelta, 90deg))); }
}

html.is-sparkle-off .sparkle-layer{ display:none !important; }

html.is-sparkle-android-ultra .sparkle{
  filter: none;
  mix-blend-mode: normal;
}
html.is-sparkle-android-ultra .sparkle i{
  box-shadow: none;
}

html.is-sparkle-light .sparkle{
  filter: blur(0.6px);
}
html.is-sparkle-light .sparkle i{
  box-shadow: 0 0 18px rgba(255,255,255,.55);
}


/* 商品　調整 */
.main .fixed-block .item_main{
  position: static;
}
.main .item_block.ver11{ margin: -13% 0 0; }
.main .item_block.ver13{ margin: -9% 0 0; }

.main .item_like{
  position: absolute; z-index: 2; top: 0; left: 0;
}
.main .item_like.ver11{ margin: 21% 0 0 42%; }
.main .item_like.ver12{ margin: 4% 4% 0 0; left: auto; right: 0; }
.main .item_like.ver13{ margin: 16% 0 0 43%; }

.main .item_cart{
  position: relative; z-index: 1; min-height: 68px;
}
@media screen and (600px <= width) {
  .main .item_cart{
    min-height: 140px;
  }
}
.main .item_cart.ver11{ margin: -18% 50% 0 3%; }
.main .item_cart.ver12{ margin: -18% 3% 0 50%; }
.main .item_cart.ver13{ margin: -18% 50% 0 3%; }

.main .point{
  width: calc(720/768*100%); margin: 0 auto;
}
.main .mirror{
  display: block; width: calc(628/768*100%); margin: 0 auto;
}

/* 使い方 */
.main .how{
  color: #523841; background-color: #fef8f9; padding: 3% 3%;
}
.main .how_ttl{
  font-family: var(--font-family); font-size: min(calc(36/768*100vw), 36px); line-height: 1; padding: 0 0 0.2em; margin: 0 0 0.5em;
  border-style: solid; border-color: #503838; border-width: 0 0 2px;
}
.main .how_row{
  display: grid; grid-template-columns: 1fr min(calc(142/768*100vw), 142px); gap: 0 1em;
}

/* その他の商品 */
.main .subitem_row{
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0 min(calc(5/768*100vw), 5px); 
}
.main .subitem_catch{
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: bold; line-height: 1.3; text-align: center; background-color: #523841; padding: 0.4em 0.5em;
}
.main .subitem_catch.ver01{
  grid-column-end: span 2;
}
.main .subitem{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 1% 0 0;
  border-style: solid; border-color: #d5d5d5; border-width: 0 1px 1px;
}
.main .subitem_like{
  display: flex; justify-content: end;
}
.main .subitem_fig{
  width: min(calc(135/768*100vw), 135px, 100%); margin: 0 auto;
}
.main .subitem_name{
  color: #523841; font-weight: bold; line-height: 1.3; margin: 3% 6% 0;
}
.main .subitem_down{
  padding: 0 0 9%; margin: 0 6%;
}
.main .subitem_price{
  margin: 3% 0 0;
}
.main .subitem_cart{
  margin: 3% 0 0;
}
.main .subitem_link{
  display: flex; align-items: center; justify-content: center; gap: 0 0.4em;
  color: #fff; line-height: 2; background-color: #6c5e63; border-radius: 1em; margin: 1em 0 0;
}
.main .subitem_link::before{
  content: ""; width: 0.5em; height: 0.6em; background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* バナー */
.main .text_rb{
  width: calc(557/768*100%); margin: 0 auto;
}

/* カート調整 */
.main .i_cart_icon{
  font-size: min(calc(24/768*100vw), 16px)
}
/* @media screen and ( max-width : 767px) {
  .main .item_cart .i_cart101_btn.ver_cq,
  .main .item_cart .i_cart101_btn.ver_cq_seibun{
    width: 40px;
  }
  .main .item_cart .i_cart101_btn{
    height: 40px;
  }
  .main .item_cart select{
    padding-left: 10px;
  }
} */



/* ズーム */
.youtube_short{
  width: min(400px,100%); margin: auto;
}
.youtube_short iframe{
  aspect-ratio: 9 / 16; width: 100%; height: 100%;
}
.main .zoom_movie_video{
  object-fit: cover;
  width: min(400px,100%);  aspect-ratio: 1 / 1.5;
}
.main .zoom_back_btn{
  display: flex; align-items: center; justify-content: center; margin: 20px auto 0;
  width: 7em; color: #fff; text-decoration: none; line-height: 2; background: #666; padding: 0; border-radius: 1em;
}
.main .zoom_back_btn::before{
  content: ""; width: 0.5em; height: 0.6em; background: #fff; margin: 0 0.5em 0 0;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* .main .drw_target{
  display: none;
}
.main .drw_btn{
  position: relative; z-index: 1; color: #6e5e4d; font-weight: bold; background-color: #f2f3eb; padding: 0.8em 2.75em 0.8em 1em; border-radius: 10px; margin: 5% 6% 0; cursor: pointer;
  border-style: solid; border-color: #c8c4b4; border-width: 2px;
}
.main .drw_btn.ver02{
  padding: 0.3em 2.75em 0.3em 1em;
}
.main .drw_btn_icon{
  position: absolute; top: 0; bottom: 0; right: 1em;
  width: 1.5em; height: 1.5em; border: 2px solid #6e5e4d; background-color: #fff;  margin: auto;
}
.main .drw_btn_icon::before,
.main .drw_btn_icon::after{
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; background: #6e5e4d;
}
.main .drw_btn_icon::before{
  width: 1em; height: 0.2em;
}
.main .drw_btn_icon::after{
  width: 0.2em; height: 1em;
}
.main .active .drw_btn_icon::after{
  display: none;
}
.main .drw_target{
  display: none;
  position: relative; z-index: 0; top: -30px; margin: 0 6% -30px;
}
.main .drw_target.open{
  display: block;
}
.main .drw_target_in{
  background-color: #fffffc; padding: calc(30px + 4%) 0 4%;
  border-style: solid; border-color: #c8c4b4; border-width: 0 1px 1px; border-radius: 0 0 10px 10px;
}
.main .drw_target_relative{
  position: relative;
} */

/* サイズ等 */
/* .main .item_note{
  display: flex; flex-direction: column; gap: 1em 0;
  position: relative; z-index: 1;
  line-height: 1.8; margin: 0 3%;
  border-radius: 1em 1em;
}
.main .item_note_row{
  display: flex; align-items: flex-start; gap: 0.5em 1em;
}
.main .item_note_row02{
  display: flex; align-items: flex-start;
}
.main .item_note_l{
  flex-shrink: 0;
  width: 5em; text-align: center; background-color: #fff; margin: -0.1em 0 0;
  border-style: solid; border-color: #d2d2d2; border-width: 1px 1px;
}
.main .item_note_l02{
  flex-shrink: 0;
}
.main .item_note_r{
  display: flex; flex-wrap: wrap; gap: 0 1em;
} */