@charset "utf-8";
@media screen and (min-width: 768px){
  .fs-c-modal__inner{
    max-width: 500px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-breadcrumb{
    margin-top: 5px;
  }
}
/* -----------------p-upperMessage----------------- */
.p-upperMessage__body{
  background-color: var(--YELLOW04);
}
.p-upperMessage__body p{
  font-weight: 700;
}
.p-upperMessage__body p span{
  color: var(--PINK01);
}
.p-upperMessage__note{
  font-family: var(--FF_NOTO);
  font-weight: 400;
}
.p-upperMessage--aboutDelivery{
  display: none;
}
@media screen and (min-width: 768px){
  .p-upperMessage{
    width: var(--INNER_WIDTH);
    max-width: var(--PC_MAX_WIDTH);
    margin-inline: auto;
  }
  .p-upperMessage--aboutColor{
    margin-bottom: 10px;
  }
  .p-upperMessage--aboutDelivery{
    margin-bottom: 33px;
  }
  .p-upperMessage__body p{
    text-align: center;
    padding-inline: 20px;
    font-size: var(--FZ_16);
    padding: 6px 0;
  }
  .p-upperMessage__body p span{
    font-size: var(--FZ_22);
  }
  .p-upperMessage__note{
    margin-top: 5px;
    font-size: var(--FZ_12);
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .p-upperMessage--aboutDelivery{
    margin-bottom: 15px;
  }
  .p-upperMessage__body p{
    font-size: 10px;
    padding: 5px 10px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
  }
  .p-upperMessage__body p span{
    font-size: 12px;
  }
  .p-upperMessage__note{
    width: var(--INNER_WIDTH);
    font-size: 10px;
    margin: 3px auto 0;
  }
  .p-upperMessage--aboutColor+.p-upperMessage--aboutDelivery .p-upperMessage__body p{
    padding-top: 0;
  }
}
/* -----------------productimgarea----------------- */
@media screen and (min-width: 901px){
  .productimgarea{
    display: flex;
    width: var(--INNER_WIDTH);
    max-width: 1134px;
    margin-inline: auto;
    gap: var(--GAP_80);
    margin-bottom: 25px;
  }
  #tocart{
    flex: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px){
  .productimgarea{
    display: grid;
    gap: var(--GAP_30);
    width: var(--PRODUCT_IMG_WIDTH);
    margin-inline: auto;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 768px){
  .productimgarea{
    --PRODUCT_IMG_WIDTH: clamp( 400px, 45vw, 570px);
  }
}
@media screen and (max-width: 767px){
  .productimgarea{
    overflow: hidden;
    --PRODUCT_IMG_WIDTH: 320px;
    --THUMBNAIL_MARGIN: 10px;
    margin-bottom: 10px;
  }
}

/* -----------------productimg----------------- */
.fs-c-productCarouselMainImage{
  --ASPECT_RATIO: 3/4;
}
.fs-c-productCarouselMainImage .slick-arrow{
  display: none !important;
}
.fs-c-productCarouselMainImage__expandButton{
  display: none;
}
.fs-c-productCarouselMainImage__carousel{
  line-height: 1;
}
.fs-c-productCarouselMainImage__image{
  aspect-ratio: var(--ASPECT_RATIO);
  border-radius: 20px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  /* background-color: var(--GRAY02); */
}
.fs-c-productCarouselMainImage__image img{
  height: auto;
  max-height: unset;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
  pointer-events: none;
}
.fs-c-productCarouselMainImage__thumbnail__img{
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
  aspect-ratio: var(--ASPECT_RATIO);
  object-fit: cover;
  border-radius: 5px;
}
@media (hover: hover){
  .fs-c-productCarouselMainImage__thumbnailList li:hover{
    cursor: pointer;
  }
  .fs-c-productCarouselMainImage__thumbnailList li.slick-active:hover{
    cursor: default;
  }
}
@media screen and (min-width: 768px){
  .productimg{
    width: var(--PRODUCT_IMG_WIDTH);
  }
  .fs-c-productCarouselMainImage__carousel.slick-dotted.slick-slider{
    margin-bottom: 25px;
  }
  .fs-c-productCarouselMainImage__carousel .slick-slide{
    --WIDTH: var(--PRODUCT_IMG_WIDTH);
    min-width: var(--WIDTH);
    max-width: var(--WIDTH);
  }
  .fs-c-productCarouselMainImage__thumbnailList{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: var(--GAP_20);
  }
  .fs-c-productCarouselMainImage__thumbnailList > li{
    margin: 0;
  }
}
@media screen and (max-width: 767px){
  .productimg{
    margin-bottom: 20px;
  }
  .fs-c-productCarouselMainImage{
    display: grid;
    gap: var(--THUMBNAIL_MARGIN);
    margin-inline: auto;
  }
  .fs-c-productCarouselMainImage__carousel.slick-dotted.slick-slider{
    margin-bottom: 0px;
  }
  .fs-c-productCarouselMainImage__carousel .slick-slide{
    width: var(--PRODUCT_IMG_WIDTH);
    margin-inline: 3px;
  }
  .fs-c-productCarouselMainImage__thumbnailList{
    gap: 10px;
    -ms-overflow-style: none;/* IE, Edge 対応 */
    scrollbar-width: none;/* Firefox 対応 */
    padding-left: 25px;
  }
  .fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar{
    display: none;
  }
  .fs-c-productCarouselMainImage__thumbnailList > li{
    flex-basis: 70px;
    margin-right: 0;
  }

  /* 2枚目以降がないとき */
  .fs-c-productCarouselMainImage:not(:has(.slick-slide)){
    width: var(--PRODUCT_IMG_WIDTH);
    margin-inline: auto;
  }
}

/* -----------------#tocart----------------- */
@media screen and (max-width: 767px){
  #tocart{
    width: var(--INNER_WIDTH);
    margin-inline: auto;
  }
}

/* -----------------予約コメントパーツ----------------- */
.fs-c-productPreorderMessage{
  border: 1px solid var(--TXT_COLOR_BASE);
  margin-bottom: 10px;
  padding: var(--GAP_10);
  font-size: var(--FZ_14);
}

/* -----------------販売期間表示----------------- */
.fs-c-productSalesPeriod.g-maskingLead{
	width: 100%;
	margin: 0;
	height: unset;
}
.fs-c-productSalesPeriod.g-maskingLead p{
	width: 100%;
}

@media screen and (min-width: 768px){
  .fs-c-productSalesPeriod.g-maskingLead{
		margin-top: 8px;
		padding: 9px 13px;
    margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px){
  .fs-c-productSalesPeriod.g-maskingLead{
		margin-top: 8px;
    padding: 9px 13px;
    margin-bottom: 10px;
	}
  .fs-c-productSalesPeriod.g-maskingLead::before,
  .fs-c-productSalesPeriod.g-maskingLead::after{
    width: 4px;
  }
}

.fs-c-productSalesPeriod:has(.fs-c-productSalesPeriod__date){
  border: 1px solid var(--TXT_COLOR_BASE);
  margin-bottom: 20px;
  padding: var(--GAP_10);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* -----------------商品名----------------- */
h1.fs-c-productNameHeading{
  color: var(--TXT_COLOR_BLACK);
  font-family: var(--FF_NOTO);
  text-align: left;
  width: 100%;
  max-width: unset;
  margin-top: 0;
  font-weight: 500;
}
h1.fs-c-productNameHeading__name{
  display: block;
}
.fs-c-productNameHeading__name{
  display: block;
}
@media screen and (min-width: 768px){
  h1.fs-c-productNameHeading{
    margin-bottom: 10px;
  }
  .fs-c-productNameHeading__name{
    font-size: var(--FZ_20);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px){
  h1.fs-c-productNameHeading{
    margin-bottom: 10px;
  }
  .fs-c-productNameHeading__name{
    font-size: 18px;
    line-height: 1.5;
  }
}

/* -----------------商品番号----------------- */
.fs-c-productNumber{
  font-family: var(--FF_NOTO);
  font-weight: 400;
  color: var(--TXT_COLOR_BLACK);
  display: flex;
  align-items: center;
}
.fs-c-productNumber__label::after{
  content: ':';
  display: inline-block;
  margin-inline: 3px;
}
@media screen and (min-width: 768px){
  .fs-c-productNumber{
    font-size: 12px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-productNumber{
    font-size: 12px;
    margin-bottom: 10px;
  }
}


/* -----------------レビューパーツ----------------- */
#tocart .p-review-area{
  display: flex;
  align-items: center;
  border-top: 1px solid var(--GRAY02);
  padding-top: 10px;
  font-family: var(--FF_NOTO);
  font-weight: 400;
  color: var(--TXT_COLOR_BLACK);
}
#tocart .p-review-area:has(.ratingcount-0){
  display: none;
}
#tocart .productRating{
  display: flex;
  align-items: center;
  margin-left: 5px;
}
#tocart .review-ttl{
  font-size: 13px;
}
#tocart .fs-c-rating{
  display: flex;
  align-items: center;
}
#tocart .fs-c-reviewStars::before{
  font-size: 13px;
}
#tocart .fs-c-rating__value{
  font-size: 13px;
  margin-left: 5px;
  color: var(--TXT_COLOR_BLACK);
}
#tocart .review-amout{
  font-size: 12px;
  margin-left: 5px;
}
#tocart .review-anchor{
  font-size: 12px;
  text-decoration: underline;
  color: var(--TXT_COLOR_BLACK);
  margin-left: 10px;
}
#tocart .review-anchor:visited{
  color: var(--TXT_COLOR_BLACK);
}


/* ----------------------商品個別送料パーツ---------------------- */
.fs-c-productPostage{
  color: var(--TXT_COLOR_BLACK);
  font-family: var(--FF_NOTO);
  font-weight: 400;
  font-size: var(--FZ_12);
  margin-block: 15px 5px;
}
.fs-c-productPostage::before,
.fs-c-productPostage::after{
  content: none;
}
.fs-c-productPostage__label{
  display: inline-block;
  color: var(--PINK01);
  font-weight: 700;
  background-color: var(--BLUE05);
  font-size: var(--FZ_14);
  --FUCHI: var(--WHITE);
  text-shadow:1px 1px 0 var(--FUCHI), -1px -1px 0 var(--FUCHI),
  -1px 1px 0 var(--FUCHI), 1px -1px 0 var(--FUCHI),
  0px 1px 0 var(--FUCHI),  0 -1px 0 var(--FUCHI),
  -1px 0 0 var(--FUCHI), 1px 0 0 var(--FUCHI);
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
  padding: 2px 20px;
  letter-spacing: 0.15em;
}
.fs-c-productPostage+.fs-c-productPrices-area{
  margin-top: 0;
}

/* ----------------------商品価格---------------------- */
.fs-c-productPrices-area{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--TXT_COLOR_BLACK);
  flex-wrap: wrap;
}
.fs-c-productPrices-area .fs-c-productPrices{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.fs-c-productPrices-area *{
	line-height: 1;
}
.fs-c-productPrices-area .fs-c-productPrice{
	display: flex;
	align-items: baseline;
}
.fs-c-productPrices-area .fs-c-productPrice__main{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
.fs-c-productPrices-area .fs-c-productPrice__main__label{
	font-family: var(--FF_NOTO);
	font-weight: 400;
	letter-spacing: 0.01em;
}
.fs-c-productPrices-area .fs-c-productPrice__main__price{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
@media screen and (min-width: 768px){
	.fs-c-productPrices-area{
		margin-block: 20px 35px;
	}
  .fs-c-productPrices-area .fs-c-productPrices{
		gap: 10px;
  }
}
@media screen and (max-width: 767px){
	.fs-c-productPrices-area{
		margin-block: 15px 25px;
	}
  .fs-c-productPrices-area .fs-c-productPrices{
		gap: 5px;
  }
}
/* 通常価格 - fs-c-productPrice--listed */
.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__currencyMark{
	font-family: var(--FF_NOTO);
	font-weight: 400;
}
.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__value{
	font-family: var(--FF_NOTO);
	font-weight: 400;
	letter-spacing: 0.05em;
}
.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon{
	font-family: var(--FF_NOTO);
	font-weight: 400;
}
.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon__label{
	font-family: var(--FF_NOTO);
	font-weight: 400;
}
@media screen and (min-width: 768px){
	.fs-c-productPrices-area .fs-c-productPrice--listed{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main__label{
		font-size: 12px;
	}
  .fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon{
    font-size: 12px;
  }
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main__price{
		gap: 1px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__currencyMark{
		font-size: 12px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__value{
		font-size: 14px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon__label{
		font-size: 10px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productPrices-area .fs-c-productPrice--listed{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main__label{
		font-size: 12px;
	}
  .fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon{
    font-size: 12px;
  }
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__main__price{
		gap: 1px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__currencyMark{
		font-size: 12px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-price__value{
		font-size: 14px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--listed .fs-c-productPrice__addon__label{
		font-size: 10px;
	}
}
/* 販売価格 - fs-c-productPrice--selling */
.fs-c-productPrices-area .fs-c-productPrice--selling,
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__price{
  position: relative;
}
.fs-c-productPrices-area .fs-c-productPrice--selling::after,
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__price::before{
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom:calc(0px - var(--GAP_10));
  left: 0;
}
.fs-c-productPrices-area .fs-c-productPrice--selling::after{
  background: var(--TXT_COLOR_BASE);
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__price::before{
  background: var(--PINK01);
  z-index: 2;
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__label{
	font-weight: 700;
  color: var(--TXT_COLOR_BASE);
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__currencyMark{
	font-family: var(--FF_NOTO);
  color: var(--PINK01);
	font-weight: 700;
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__value{
	font-family: var(--FF_NOTO);
  color: var(--PINK01);
	font-weight: 700;
	letter-spacing: 0.05em;
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon{
  display: flex;
  align-items: baseline;
  color: var(--TXT_COLOR_BASE);
  font-weight: 500;
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon::before{
  content: '(';
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon::after{
  content: ')';
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon__label{
	font-family: var(--FF_NOTO);
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__addon{
  display: flex;
  align-items: baseline;
  color: var(--TXT_COLOR_BASE);
  font-weight: 500;
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__addon::before{
  content: '(';
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__addon::after{
  content: ')';
}
.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__joint{
  display: none;
}
@media screen and (min-width: 768px){
	.fs-c-productPrices-area .fs-c-productPrice--selling{
		gap: 3px;
	}
  .fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__label{
    margin-right: 17px;
  }
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__price{
		gap: 1px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__currencyMark{
		font-size: 30px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__value{
		font-size: 30px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon{
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productPrices-area .fs-c-productPrice--selling{
		gap: 1px;
	}
  .fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__label{
    font-size: 14px;
    margin-right: 7px;
  }
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main{
		gap: 3px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__main__price{
		gap: 1px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__currencyMark{
		font-size: 25px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-price__value{
		font-size: 25px;
	}
	.fs-c-productPrices-area .fs-c-productPrice--selling .fs-c-productPrice__addon{
		font-size: 11px;
	}
}
/* 通常価格と販売価格両方ある時装飾 */
/* .fs-c-productPrices-area .fs-c-productPrice--listed{
	position: relative;
  width: fit-content;
}
.fs-c-productPrices-area .fs-c-productPrice--listed::before{
	content: "";
	display: inline-block;
	background: var(--TXT_COLOR_BLACK);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.fs-c-productPrices-area .fs-c-productPrice--listed+.fs-c-productPrice--selling *{
	color: var(--RED01);
}
@media screen and (min-width: 768px){
	.fs-c-productPrices-area .fs-c-productPrice--listed+.fs-c-productPrice--selling .fs-c-productPrice__main__label{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productPrices-area .fs-c-productPrice--listed+.fs-c-productPrice--selling .fs-c-productPrice__main__label{
		font-size: 10px;
	}
} */


/* -----------------ポイントパーツ----------------- */
.fs-c-productPointDisplay{
  font-family: var(--FF_NOTO);
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-size: 12px;
  color: var(--PURPLE01);
  width: fit-content;
}
.fs-c-productPointDisplay__quantity{
  font-weight: 700;
}
@media screen and (min-width: 768px){
  .fs-c-productPointDisplay{
    margin-top: 5px;
  }
  .fs-c-productPointDisplay__quantity{
    font-size: var(--FZ_20);
  }
}
@media screen and (max-width: 767px){
  .fs-c-productPointDisplay{
    margin-top: 3px;
  }
  .fs-c-productPointDisplay__quantity{
    font-size: 16px;
  }
  .fs-c-productPointDisplay__unit{
    font-size: 10px;
  }
}

/* -----------------p-productPricesContainer----------------- */
.p-productPricesContainer{
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}
.fs-c-productPrices-area .p-productPrices{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
  margin-bottom: 10px;
}
.fs-c-productPrices-area *{
	line-height: 1;
}
.fs-c-productPrices-area .p-productPrice{
	display: flex;
	align-items: baseline;
}
.fs-c-productPrices-area .p-productPrice__main{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
.fs-c-productPrices-area .p-productPrice__main__label{
	font-family: var(--FF_NOTO);
	font-weight: 400;
	letter-spacing: 0.01em;
}
.fs-c-productPrices-area .p-productPrice__main__price{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
@media screen and (min-width: 768px){
  .fs-c-productPrices-area .p-productPrices{
    gap: 10px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-productPrices-area .p-productPrices{
    gap: 5px;
  }
}

.fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main__label{
	font-weight: 700;
  color: var(--TXT_COLOR_BASE);
}
.fs-c-productPrices-area .p-productPrice--selling .p-price__currencyMark{
	font-family: var(--FF_NOTO);
  color: var(--PINK01);
	font-weight: 700;
}
.fs-c-productPrices-area .p-productPrice--selling .p-price__value{
	font-family: var(--FF_NOTO);
  color: var(--PINK01);
	font-weight: 700;
	letter-spacing: 0.05em;
}
.fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon{
  display: flex;
  align-items: baseline;
  color: var(--TXT_COLOR_BASE);
  font-weight: 500;
}
.fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon::before{
  content: '(';
}
.fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon::after{
  content: ')';
}
.fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon__label{
	font-family: var(--FF_NOTO);
}
@media screen and (min-width: 768px){
  .fs-c-productPrices-area .p-productPrice--selling{
    gap: 3px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main__label{
    font-size: 14px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main{
    gap: 20px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main__price{
    gap: 1px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-price__currencyMark{
    font-size: 27px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-price__value{
    font-size: 27px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-productPrices-area .p-productPrice--selling{
    gap: 1px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main__label{
    font-size: 12px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main{
    gap: 10px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__main__price{
    gap: 1px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-price__currencyMark{
    font-size: 21px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-price__value{
    font-size: 21px;
  }
  .fs-c-productPrices-area .p-productPrice--selling .p-productPrice__addon{
    font-size: 11px;
  }
}
/* -----------------p-cartModalTrigger----------------- */
/* .p-cartModalTrigger__label */
.p-cartModalTrigger__label{
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-family: var(--FF_NOTO);
  font-weight: 700;
}
.p-cartModalTrigger__label::before,
.p-cartModalTrigger__label::after{
  content: "";
  display: inline-block;
  background: var(--TXT_COLOR_BASE);
  width: 2px;
  position: absolute;
  bottom: 0;
}
.p-cartModalTrigger__label::before{
  left: 0;
  transform: rotate(-20deg);
}
.p-cartModalTrigger__label::after{
  right: 0;
  transform: rotate(20deg);
}
.p-cartModalTrigger__label strong{
  color: var(--PINK01);
}
@media screen and (min-width: 768px){
  .p-cartModalTrigger__label{
    font-size: 18px;
    padding-inline: 20px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .p-cartModalTrigger__label::before,
  .p-cartModalTrigger__label::after{
    height: 20px;
  }
}
@media screen and (max-width: 767px){
  .p-cartModalTrigger{
    position: fixed;
    width: 100%;
    z-index: 99;
    left: 0;
    bottom: var(--SPMENU_HEIGHT);
    background-color: var(--PINK03);
    padding: 15px;
  }
  .p-cartModalTrigger__label{
    font-size: 14px;
    padding-inline: 20px;
    padding-bottom: 1px;
    text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
    -2px 2px 0 #FFF, 2px -2px 0 #FFF,
    0px 2px 0 #FFF,  0 -2px 0 #FFF,
    -2px 0 0 #FFF, 2px 0 0 #FFF;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: fit-content;
    white-space: nowrap;
  }
  .p-cartModalTrigger__label::before,
  .p-cartModalTrigger__label::after{
    height: 20px;
  }
}
/* p-cartModalTrigger__btn */
.formReset .p-cartModalTrigger__btn{
  width: 100%;
  background-color: var(--TXT_COLOR_BASE);
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: start;
  border-radius: 40px;
  position: relative;
}
.formReset .p-cartModalTrigger__btn::after{
  content: "";
  display: inline-block;
  --ICON: url(/asset2024/images/product/icon_open.svg);
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--WHITE);
  aspect-ratio: 1/1;
  position: absolute;
}
.formReset .p-cartModalTrigger__btn span{
  display: flex;
  align-items: center;
  font-family: var(--FF_NOTO);
  color: var(--WHITE);
  letter-spacing: 0.1em;
}
.formReset .p-cartModalTrigger__btn span::before{
  content: "";
  display: inline-block;
  --ICON: url(/asset2024/images/product/icon_cart.svg);
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--WHITE);
  aspect-ratio: 1/1;
}
@media (hover: hover){
  .formReset .p-cartModalTrigger__btn,
  .formReset .p-cartModalTrigger__btn *{
    transition: .3s;
  }
  .formReset .p-cartModalTrigger__btn:hover *{
    transform: scale(1.05);
  }
  .formReset .p-cartModalTrigger__btn:hover{
    background: var(--BROWN05);
  }
  .formReset .p-cartModalTrigger__btn::after{
    transition: .3s;
  }
  .formReset .p-cartModalTrigger__btn:hover::after{
    transform: scale(1.2);
  }
}
@media screen and (min-width: 768px){
  .formReset .p-cartModalTrigger__btn{
    height: 80px;
  }
  .formReset .p-cartModalTrigger__btn::after{
    width: 16px;
    top: 33px;
    right: 20px;
  }
  .formReset .p-cartModalTrigger__btn span{
    font-size: var(--FZ_18);
    gap: 5px;
  }
  .formReset .p-cartModalTrigger__btn span::before{
    width: 26px;
  }
  #popup-productOption .popup-content{
    max-width: 750px;
  }
}
@media screen and (max-width: 767px){
  .formReset .p-cartModalTrigger__btn{
    height: 60px;
  }
  .formReset .p-cartModalTrigger__btn::after{
    width: 12px;
    top: 26px;
    right: 20px;
  }
  .formReset .p-cartModalTrigger__btn span{
    font-size: 15px;
    gap: 5px;
  }
  .formReset .p-cartModalTrigger__btn span::before{
    width: 20px;
  }
}
/* -----------------項目選択肢、オプション----------------- */
.fs-c-productSelection,
.fs-c-productOption{
  display: grid;
}
.fs-c-productSelection,
.fs-c-productOption,
.fs-c-variationAndActions{
  font-family: var(--FF_NOTO);
}
.fs-c-productSelection input[type="text"],
.fs-c-productOption input[type="text"]{
  background-color: var(--FS_INPUT_BDCOLOR);
  border-radius: var(--FS_INPUT_BDRS);
  border: none;
  outline: none;
}
.fs-c-productSelection__selection select,
.fs-c-productOption__option select,
.fs-c-variationAndActions select{
  color: var(--TXT_COLOR_BLACK);
}
@media screen and (min-width: 768px){
  .fs-c-productSelection dt,
  .fs-c-productOption dt{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .fs-c-productSelection dd,
  .fs-c-productOption dd{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-productSelection dt,
  .fs-c-productOption dt{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .fs-c-productSelection dd,
  .fs-c-productOption dd{
    margin-bottom: 20px;
  }
}
/* ラジオボタン */
.p-cartParts .fs-c-radio__label{
  display: flex;
  word-break: unset;
}
.p-cartParts .fs-c-radio__radioLabelText{
  flex: 1;
  display: inline-block;
}
.p-cartParts .fs-c-productOption__price{
  display: inline-block;
  width: fit-content;
  margin-left: 10px;
}
@media screen and (max-width: 767px){
  .p-cartParts .fs-c-radio__radioLabelText{
    font-size: 11px;
  }
  .p-cartParts .fs-c-productOption__price{
    font-size: 11px;
  }
}

/* メッセージカード選択肢カスタム */
.fs-c-productOption__option:has(.p-msgCardOption__upperComment--detail){
  padding-bottom: var(--MSG_CARD_OPTION_GAP);
}
.fs-c-productOption__option:has([class*="p-msgCardOption__"]) input,
.fs-c-productOption__option:has([class*="p-msgCardOption__"]) textarea{
  background-color: var(--WHITE);
  color: var(--TXT_COLOR_BLACK);
}
.fs-c-productOption__option:has([class*="p-msgCardOption__"]) select{
  background-color: var(--WHITE);
}
.fs-c-productOption__option:has(.p-msgCardOption__bottomComment){
  display: grid;
}
.fs-c-productOption__option:has(.p-msgCardOption__bottomComment) .fs-c-productOption__comment{
  display: contents;
}
.fs-c-productOption__option:has(.p-msgCardOption__bottomComment) .p-msgCardOption__upperComment{
  order: 1;
}
.fs-c-productOption__option:has(.p-msgCardOption__bottomComment) .fs-c-productOption__field{
  order: 2;
}
.fs-c-productOption__option:has(.p-msgCardOption__bottomComment) .p-msgCardOption__bottomComment{
  order: 3;
}
.p-msgCardOption__upperComment,
.p-msgCardOption__bottomComment,
.fs-c-productOption__option:has(.p-msgCardOption__upperComment--detail) .fs-c-productOption__field,
.fs-c-productOption__option:has(.p-msgCardOption__upperComment--document) .fs-c-productOption__field,
.fs-c-productOption__comment > .p-msgCardOption__note{
  padding-inline: var(--MSG_CARD_OPTION_PADDING);
}
.p-msgCardOption__bottomComment--document{
  padding-bottom: var(--MSG_CARD_OPTION_PADDING);
}
.fs-c-productOption__option:has(.p-msgCardOption__upperComment--detail){
  background-color: var(--PURPLE03_OP70);
  margin-bottom: 0;
}
.fs-c-productOption__option:has(.p-msgCardOption__upperComment--document) .fs-c-productOption__field,
.p-msgCardOption__upperComment--document,
.p-msgCardOption__bottomComment--document{
  background-color: var(--BROWN04);
}
.p-msgCardOption__intro,
.p-msgCardOption__document{
  padding-top: var(--MSG_CARD_OPTION_PADDING);
}
.p-msgCardOption__heading{
  font-weight: 700;
  color: var(--TXT_COLOR_BASE);
  text-align: center;
}
.p-msgCardOption__lead{
  border: 1px solid var(--PINK01);
  background-color: var(--YELLOW03);
}
.p-msgCardOption__lead p{
  color: var(--PINK01);
}
.p-msgCardOption__lead strong{
  color: var(--PURPLE04);
}
.p-msgCardOption__lead p u{
  text-decoration: unset;
  border-bottom: 1px solid var(--PINK01);
}
.p-msgCardOption__ttl{
  color: var(--TXT_COLOR_BASE);
  font-family: var(--FF_NOTO);
}
.p-msgCardOption__note,
.p-msgCardOption__templateTrigger{
  font-weight: 400;
  font-family: var(--FF_NOTO);
  text-align: right;
  font-size: var(--FZ_12);
  color: var(--TXT_COLOR_BLACK);
}
.p-msgCardOption__templateTrigger{
  display: block;
  width: fit-content;
  margin-left: auto;
  border-bottom: 1px solid var(--TXT_COLOR_BLACK);
}
.p-msgCardOption__ttl:has(i){
  position: relative;
}
.p-msgCardOption__ttl i{
  font-style: normal;
  position: absolute;
}
.p-msgCardOption__ttl small{
  font-family: var(--FF_NOTO);
  color: var(--TXT_COLOR_BLACK);
  display: block;
  font-weight: 400;
}
.p-msgCardOption__upperComment--document .p-msgCardOption__ttl{
  color: var(--TXT_COLOR_BLACK);
}
.p-msgCardOption__ttl small span{
  color: var(--PINK01);
}
.p-msgCardOption__ttl:has(i) small{
  padding-left: 0px;
}
.p-msgCardOption__usableSymble{
  font-weight: 400;
  font-family: var(--FF_NOTO);
  color: var(--TXT_COLOR_BLACK);
  background-color: var(--PINK03);
  border: 1px solid var(--WHITE);
  padding: var(--GAP_15) var(--GAP_20);
  margin-top: 10px;
}
.p-msgCardOption__usableSymble__ttl{
  font-weight: 700;
}
.p-msgCardOption__usableSymble__body{
  font-size: 12px;
}
.p-msgCardOption__usableSymble__body strong{
  font-size: 16px;
  font-weight: 700;
  color: var(--PINK01);
}
.p-msgCardOption__usableSymble__body span{
  font-weight: 700;
}
.p-msgCardOption__note,
.p-msgCardOption__templateTrigger{
  padding-top: var(--MSG_CARD_OPTION__ADDON_PADDING_TOP);
}
.p-msgCardOption__note+.p-msgCardOption__note{
  padding-top: 3px;
}
.p-msgCardOption__note u{
  text-decoration: unset;
  border-bottom: 1px solid var(--TXT_COLOR_BLACK);
}
@media (hover: hover){
  .p-msgCardOption__templateTrigger:hover{
    color: var(--PINK01);
    border-color: var(--PINK01);
    opacity: 1;
  }
}
@media screen and (min-width: 768px){
  :root{
    --MSG_CARD_OPTION__ADDON_PADDING_TOP: 7px;
    --MSG_CARD_OPTION_GAP: 30px;
    --MSG_CARD_OPTION_PADDING: 30px;
  }
  .p-msgCardOption__intro{
    padding-bottom: 20px;
  }
  .p-msgCardOption__heading{
    font-size: var(--FZ_20);
    margin-bottom: 5px;
  }
  .p-msgCardOption__lead{
    padding: 15px 20px;
  }
  .p-msgCardOption__lead p{
    font-size: var(--FZ_14);
  }
  .p-msgCardOption__ttl{
    font-size: var(--FZ_15);
    padding-bottom: 5px;
  }
  .p-msgCardOption__ttl:has(i){
    padding-left: 25px;
  }
  .p-msgCardOption__ttl i{
    font-size: var(--FZ_20);
    top: 0;
    left: 0;
    line-height: 1.3;
  }
  .p-msgCardOption__ttl small{
    padding-left: 25px;
    font-size: 12px;
  }
  .p-msgCardOption__upperComment--document .p-msgCardOption__ttl{
    font-size: 12px;
  }
  .p-msgCardOption__upperComment--document .p-msgCardOption__ttl small{
    padding-left: 17px;
  }
}
@media screen and (max-width: 767px){
  :root{
    --MSG_CARD_OPTION__ADDON_PADDING_TOP: 5px;
    --MSG_CARD_OPTION_GAP: 25px;
    --MSG_CARD_OPTION_PADDING: 12px;
  }
  .p-msgCardOption__intro{
    padding-bottom: 10px;
  }
  .p-msgCardOption__heading{
    font-size: 14px;
    margin-bottom: 3px;
  }
  .p-msgCardOption__lead{
    padding: 12px 15px;
  }
  .p-msgCardOption__lead p{
    font-size: 12px;
  }
  .p-msgCardOption__ttl{
    font-size: 14px;
    padding-bottom: 3px;
  }
  .p-msgCardOption__ttl:has(i){
    padding-left: 21px;
  }
  .p-msgCardOption__ttl i{
    font-size: 17px;
    top: 0;
    left: 0;
    line-height: 1.3;
  }
  .p-msgCardOption__ttl small{
    padding-left: 21px;
    font-size: 12px;
  }
  .p-msgCardOption__upperComment--document .p-msgCardOption__ttl{
    font-size: 12px;
  }
  .p-msgCardOption__upperComment--document .p-msgCardOption__ttl small{
    padding-left: 13px;
  }
}

/* メッセージカードポップアップコンテンツ */
.p-msgCardOption__templateContents{
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: .3s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: var(--MAX_HEIGHT);
  overflow: hidden;
  background-color: var(--WHITE);
  z-index: 9999;
  width: 90%;
  max-width: 750px;
  box-shadow: var(--COMMON_BXSD);
}
.p-msgCardOption__templateContents.is-active{
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.p-msgCardOption__templateContents__close{
  position: absolute;
  width: fit-content;
  display: flex;
  align-items: center;
  z-index: 9999;
  letter-spacing: 0.01em;
}
.p-msgCardOption__templateContents__close::after{
  content: "";
	display: inline-block;
	background: url(/asset2024/images/common/clsoe.svg) no-repeat center center / 100%;
	aspect-ratio: 1/1;
}
.p-msgCardOption__templateContents__inner{
  max-height: var(--MAX_HEIGHT);
  overflow: scroll;
}
@media (hover: hover){
  .p-msgCardOption__templateContents__close:hover{
    cursor: pointer;
  }
}
@media screen and (min-width: 768px){
  .p-msgCardOption__templateContents{
    padding: 50px 30px;
    --MAX_HEIGHT: 90vh;
  }
  .p-msgCardOption__templateContents__close{
    top: 16px;
		right: 12px;
		font-size: 14px;
		gap: 10px;
  }
  .p-msgCardOption__templateContents__close::after{
    width: 20px;
  }
  .p-msgCardOption__templateContents__inner{
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px){
  .p-msgCardOption__templateContents{
    padding: 30px 20px;
    --MAX_HEIGHT: 80vh;
  }
  .p-msgCardOption__templateContents__close{
		top: 10px;
		right: 10px;
		font-size: 11px;
		gap: 3px;
  }
  .p-msgCardOption__templateContents__close::after{
    width: 15px;
  }
  .p-msgCardOption__templateContents__inner{
    padding-bottom: 50px;
  }
}

/* バルーン追加の説明画像 */
@media screen and (min-width: 768px){
  .p-ballonOption__img{
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px){
  .p-ballonOption__img{
    margin-bottom: 10px;
  }
}

/* -----------------カート・セレクトボックスのみパーツ----------------- */
.fs-c-variationAndActions__variationLabel{
  font-family: var(--FF_NOTO);
  font-weight: 700;
}
.fs-c-variationAndActions__stockSignLegend{
  display: none;
}
@media screen and (min-width: 768px){
  .fs-c-variationAndActions__variationLabel{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .fs-c-variationAndActions__stockSignLegend{
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-variationAndActions__variationLabel{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .fs-c-variationAndActions__stockSignLegend{
    margin-top: 3px;
  }
}

/* -----------------カートパーツ----------------- */
.p-addToCart{
  position: relative;
  margin-inline: auto;
}
.p-cartModalTrigger__btn+.p-cartParts .p-addToCart{
  padding-bottom: var(--CHILD_HEIGHT);
}
@media screen and (min-width: 768px){
  .p-addToCart{
    --GAP: 10px;
    --NUMBER_WIDTH: 55px;
    --WISH_WIDTH: 55px;
    --CHILD_HEIGHT: 55px;
    max-width: 400px;
    padding-bottom: calc(var(--CHILD_HEIGHT) + 30px);
  }
}
@media screen and (max-width: 767px){
  .p-addToCart{
    --GAP: 5px;
    --NUMBER_WIDTH: 40px;
    --WISH_WIDTH: 40px;
    --CHILD_HEIGHT: 40px;
    padding-bottom: calc(var(--CHILD_HEIGHT) + 20px);
  }
}

#popup-productOption .fs-c-button--addToCart--detail::before{
  content: '詳しいリクエストは後から入力する備考欄があります♡';
  color: var(--PINK01);
  display: block;
  width: fit-content;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -160%);
  font-size: 11px;
  letter-spacing: 0;
}
/* 数量 */
.fs-c-productQuantityAndWishlist__quantity{
  width: var(--NUMBER_WIDTH);
  height: var(--CHILD_HEIGHT);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
}
.fs-c-productQuantityAndWishlist__quantity::before{
  content: '数量';
  display: inline-block;
  font-size: var(--FZ_18);
  height: fit-content;
  transform: translateY(-5px) translateX(-2px);
}
@media screen and (min-width: 768px){
  .fs-c-productQuantityAndWishlist__quantity::before{
    transform: translateY(-10px) translateX(7px);
  }
}
@media screen and (max-width: 767px){
  .fs-c-productQuantityAndWishlist__quantity::before{
    transform: translateY(-8px) translateX(3px);
  }
}
.fs-c-productQuantityAndWishlist select.fs-system-quantity-list,
.fs-c-productQuantityAndWishlist input.fs-c-quantity__number{
  flex: 1;
  width: 100%;
  padding: 0 8px 0 10px;
  min-height: unset;
  border-radius: 10px;
  font-weight: 600;
}
.fs-c-productQuantityAndWishlist input.fs-c-quantity__number{
  font-size: 12px;
}
@media screen and (min-width: 768px){
  .fs-c-productQuantityAndWishlist select.fs-system-quantity-list{
    transform: translateY(-5px);
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-productQuantityAndWishlist select.fs-system-quantity-list{
    transform: translateY(-5px);
    font-size: 15px;
  }
}
select.fs-system-quantity-list,
input.fs-c-quantity__number{
  border: none;
  background-color: var(--GRAY01);
  box-sizing: border-box !important;
  box-shadow: unset;
}
.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message{
  display: none;
}
.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message::before{
  content: none;
}
/* お気に入り */
.fs-c-productQuantityAndWishlist__wishlist{
  background-color: var(--WHITE);
  display: inline-block;
  width: var(--WISH_WIDTH);
  height: var(--CHILD_HEIGHT);
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--GRAY02);
  position: absolute;
  bottom: 0;
  right: 0;
  margin-top: 0;
}
.fs-c-productQuantityAndWishlist__wishlist .fs-c-button__label{
  font-size: 0;
}
.fs-c-button--particular::before{
  content: "";
  display: inline-block;
  --ICON: url(/asset2024/images/common/wish.svg);
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--GRAY02);
  aspect-ratio: 1 / 1;
  width: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fs-c-button--removeFromWishList--detail.fs-c-button--particular::before{
  background-color: var(--PINK01);
}
/* カートに入れるボタン */
.fs-c-productActionButton{
  width: calc(100% - var(--NUMBER_WIDTH) - var(--WISH_WIDTH) - var(--GAP)*2);
  position: absolute;
  bottom: 0;
  right: calc(var(--WISH_WIDTH) + var(--GAP));
}
.formReset .fs-c-button--addToCart--detail{
  width: 100%;
  background-color: var(--TXT_COLOR_BASE);
  height: var(--CHILD_HEIGHT);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
}
.formReset .fs-c-button--addToCart--detail .fs-c-button__label{
  color: var(--WHITE);
}
@media (hover: hover){
  .formReset .fs-c-button--addToCart--detail{
    transition: .3s;
  }
}
@media screen and (min-width: 768px){
  .fs-c-productActionButton{
    max-width: 300px;
  }
}

/* バリエーションがあるとき */
.p-cartParts:has(.fs-c-variationAndActions){
  display: grid;
}
.p-cartParts:has(.fs-c-variationAndActions) .fs-c-productSelection{
  order: 1;
}
.p-cartParts:has(.fs-c-variationAndActions) .fs-c-productOption{
  order: 3;
}
.p-cartParts:has(.fs-c-variationAndActions) .fs-c-variationAndActions{
  order: 2;
}
.p-cartParts:has(.fs-c-variationAndActions) .p-addToCart{
  order: 4;
  width: 100%;
}
@media screen and (min-width: 768px){
  .p-cartParts:has(.fs-c-variationAndActions) .fs-c-productOption{
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px){
  .p-cartParts:has(.fs-c-variationAndActions) .fs-c-productOption{
    margin-top: 20px;
  }
}
/* -----------------在庫なしテキスト----------------- */
.fs-c-productNotice--outOfStock{
  width: 100%;
  margin: var(--GAP_20) 0;
  font-family: var(--FF_NOTO);
    background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Kw44Or44O844OXXzQ0NDUxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzAwIiBoZWlnaHQ9IjMwMCIgdmlld0JveD0iMCAwIDMwMCAzMDAiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzQ5NTY2IiBkYXRhLW5hbWU9IumVt+aWueW9oiA0OTU2NiIgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbGw9Im5vbmUiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxwYXRoIGlkPSLplbfmlrnlvaJfNDk1NjgiIGQ9Ik0wLDBIMzAwVjMwMEgwWiIgZmlsbD0iI2EwZDhkZSIvPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfNDQ0NDkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDQ0NDQ5IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8ZyBpZD0i44Kw44Or44O844OXXzQ0NDUwIiBvcGFjaXR5PSIwLjIiPgogICAgICA8cGF0aCBpZD0i44OR44K5XzI2NTk3IiBkPSJNMCwyMi41QTIyLjUzNCwyMi41MzQsMCwwLDAsMjIuNSwwSDBaIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY1OTgiIGQ9Ik0yNDcuNSwyMjVBMjIuNSwyMi41LDAsMSwwLDIyNSwyNDcuNSwyMi41MzQsMjIuNTM0LDAsMCwwLDI0Ny41LDIyNWgwIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY1OTkiIGQ9Ik05Ny41LDIyNUEyMi41LDIyLjUsMCwxLDAsNzUsMjQ3LjUsMjIuNTM0LDIyLjUzNCwwLDAsMCw5Ny41LDIyNWgwIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY2MDAiIGQ9Ik0yMi41LDE1MEEyMi41MzQsMjIuNTM0LDAsMCwwLDAsMTI3LjVIMHY0NUEyMi41MzQsMjIuNTM0LDAsMCwwLDIyLjUsMTUwaDAiIGZpbGw9IiNmZmYiLz4KICAgICAgPHBhdGggaWQ9IuODkeOCuV8yNjYwMSIgZD0iTTc1LDUyLjVBMjIuNSwyMi41LDAsMSwwLDk3LjUsNzVoMEEyMi41MzQsMjIuNTM0LDAsMCwwLDc1LDUyLjUiIGZpbGw9IiNmZmYiLz4KICAgICAgPHBhdGggaWQ9IuODkeOCuV8yNjYwMiIgZD0iTTIyNSw1Mi41QTIyLjUsMjIuNSwwLDEsMCwyNDcuNSw3NSwyMi41MzQsMjIuNTM0LDAsMCwwLDIyNSw1Mi41aDAiIGZpbGw9IiNmZmYiLz4KICAgICAgPHBhdGggaWQ9IuODkeOCuV8yNjYwMyIgZD0iTTE1MCwxMjcuNUEyMi41LDIyLjUsMCwxLDAsMTcyLjUsMTUwLDIyLjUzNCwyMi41MzQsMCwwLDAsMTUwLDEyNy41aDAiIGZpbGw9IiNmZmYiLz4KICAgICAgPHBhdGggaWQ9IuODkeOCuV8yNjYwNCIgZD0iTTEyNy41LDBBMjIuNTM0LDIyLjUzNCwwLDAsMCwxNTAsMjIuNWgwQTIyLjUzNCwyMi41MzQsMCwwLDAsMTcyLjUsMGgtNDUiIGZpbGw9IiNmZmYiLz4KICAgICAgPHBhdGggaWQ9IuODkeOCuV8yNjYwNSIgZD0iTTMwMCwyNzcuNUEyMi41MzQsMjIuNTM0LDAsMCwwLDI3Ny41LDMwMEgzMDBaIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY2MDYiIGQ9Ik0wLDI3Ny41VjMwMEgyMi41QTIyLjUzNCwyMi41MzQsMCwwLDAsMCwyNzcuNUgwIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY2MDciIGQ9Ik0xNTAsMjc3LjVBMjIuNTM0LDIyLjUzNCwwLDAsMCwxMjcuNSwzMDBoNDVBMjIuNTM0LDIyLjUzNCwwLDAsMCwxNTAsMjc3LjVoMCIgZmlsbD0iI2ZmZiIvPgogICAgICA8cGF0aCBpZD0i44OR44K5XzI2NjA4IiBkPSJNMzAwLDE3Mi41di00NWEyMi41LDIyLjUsMCwwLDAsMCw0NWgwIiBmaWxsPSIjZmZmIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfMjY2MDkiIGQ9Ik0yNzcuNSwwQTIyLjUzNCwyMi41MzQsMCwwLDAsMzAwLDIyLjVoMFYwSDI3Ny41IiBmaWxsPSIjZmZmIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
    height: unset;
    padding-block: 10px;
}
.fs-c-productNotice--outOfStock p{
  font-size: var(--FZ_16);
  width: 100%;
  padding-block: 10px;
}


/* -----------------お問い合わせパーツ----------------- */
.fs-c-inquiryAboutProduct .fs-c-button--inquiryAboutProduct{
  background-color: unset;
	-webkit-appearance: none;
	border-radius: 0;
  display: block;
  width: fit-content;
  margin-inline: auto;
  border: none;
  min-height: unset;
}
.fs-c-inquiryAboutProduct .fs-c-button__label{
  display: inline-block;
  color: var(--TXT_COLOR_BLACK);
  font-family: var(--FF_NOTO);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
.fs-c-inquiryAboutProduct .fs-c-button__label::before{
  content: "";
  display: inline-block;
  background: var(--TXT_COLOR_BLACK);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (hover: hover){
  .fs-c-inquiryAboutProduct .fs-c-button--inquiryAboutProduct:hover{
    cursor: pointer;
  }
  .fs-c-inquiryAboutProduct .fs-c-button__label{
    transition: .3s;
    position: relative;
  }
  .fs-c-inquiryAboutProduct .fs-c-button__label::after{
    content: "";
    display: inline-block;
    background: var(--PINK01);
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: .5s;
  }
  .fs-c-inquiryAboutProduct .fs-c-button--inquiryAboutProduct:hover .fs-c-button__label{
    color: var(--PINK01);
    transform: scale(1);
  }
  .fs-c-inquiryAboutProduct .fs-c-button--inquiryAboutProduct:hover .fs-c-button__label::after{
    width: 100%;
  }
}
@media screen and (min-width: 768px){
  .fs-c-inquiryAboutProduct.fs-c-buttonContainer{
    margin-block: 15px 30px;
  }
  .fs-c-inquiryAboutProduct .fs-c-button__label{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-inquiryAboutProduct.fs-c-buttonContainer{
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .fs-c-inquiryAboutProduct .fs-c-button__label{
    font-size: 14px;
  }
}
/* モーダル */
.fs-c-inquiryProduct{
  display: grid;
}
.fs-c-inquiryProduct__productImage img{
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}
.fs-c-inquiryMessage{
  font-size: 0;
}
@media screen and (min-width: 768px){
  .fs-c-inquiryProduct{
    grid-template-columns: 100px 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px){
  .fs-c-inquiryProduct{
    grid-template-columns: 80px 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
}


/* -----------------p-bnr--realshopPickup----------------- */
@media screen and (min-width: 768px){
  .p-bnr--realshopPickup{
    margin-bottom: 30px;
  }
  #popup-realshopPickup .popup-content{
    max-width: 1300px;
  }
}
@media screen and (max-width: 767px){
  .p-bnr--realshopPickup{
    margin-bottom: 20px;
  }
  #popup-realshopPickup .s-pickupFlow,
  #popup-realshopPickup .s-pickupTime{
    width: 100%;
  }
}

/* -----------------.p-delivery----------------- */
.p-delivery__box{
  border: 1px solid var(--GRAY03);
}
.formReset .p-delivery__btn{
  width: 100%;
  display: flex;
  align-items: baseline;
  position: relative;
  font-family: var(--FF_NOTO);
  color: var(--TXT_COLOR_BLACK);
  letter-spacing: 0.07em;
  text-align: left;
}
.formReset .p-delivery__btn::after{
  content: "";
  display: inline-block;
  background: url(/asset2024/images/product/icon_deliveryy.svg) no-repeat center center / 100%;
  aspect-ratio: 1/1;
  margin-left: auto;
}
.formReset [data-popup-target="#popup-normalDeliverySameDay"]{
  border-top: 1px solid var(--GRAY03);
  padding-top: 12px;
  margin-top: 12px;
}
.formReset [data-popup-target="#popup-normalDelivery"]{
  border-bottom: 1px solid var(--GRAY03);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.formReset .p-delivery__btn span{
  flex: 1;
  text-align: center;
}
.formReset .p-delivery__btn strong{
  color: var(--PINK01);
  font-weight: 700;
  text-decoration: underline;
  position: relative;
}
.p-delivery__note{
  font-family: var(--FF_NOTO);
  font-weight: 400;
  font-size: 11px;
  text-align: right;
  color: var(--TXT_COLOR_BLACK);
  margin-top: 5px;
}
.p-delivery__dateCantBeSpecified{
  color: var(--TXT_COLOR_BLACK);
  font-family: var(--FF_NOTO);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px){
  .p-delivery{
    margin-bottom: 30px;
  }
  .p-delivery__box{
    padding: 16px 18px;
  }
  .formReset .p-delivery__btn{
    font-size: var(--FZ_14);
  }
  .formReset .p-delivery__btn::after{
    width: 18px;
    transform: translateY(3px);
  }
  .formReset .p-delivery__btn strong{
    font-size: var(--FZ_16);
  }
}
@media screen and (max-width: 767px){
  .p-delivery{
    margin-bottom: 20px;
  }
  .p-delivery__box{
    padding: 15px 10px;
  }
  .formReset .p-delivery__btn{
    font-size: 10px;
  }
  .formReset .p-delivery__btn::after{
    width: 12px;
    transform: translateY(2px);
  }
  .formReset .p-delivery__btn strong{
    font-size: 12px;
  }
}

/* この商品はお急ぎでもご希望日でもお届け可能のコンテンツ */
.p-normalDeliverySameDay__intro{
  padding-bottom: var(--GENERALSEC_HALF);
  position: relative;
}
.p-normalDeliverySameDay > div:not(:last-child)::after{
  /* --DOTSIZE: 5px;
  content: "";
  background-color: transparent;
  background-image:
  radial-gradient(var(--TXT_COLOR_BASE) 30%, transparent 10%);
  background-size: var(--DOTSIZE) var(--DOTSIZE);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--DOTSIZE);
  position: absolute;
  bottom: 0;
  left: 0; */
}
.p-normalDeliverySameDay__heading{
  text-align: center;
}
.p-normalDeliverySameDay__heading strong{
  color: var(--PINK01);
  font-weight: 700;
  border-bottom: 1px solid var(--PINK01);
}
.p-normalDeliverySameDay__heading__note{
  display: block;
  text-align: center;
}
.p-normalDeliverySameDay__main{
  border-radius: 20px;
  border-style: solid;
}
.p-normalDeliverySameDay__main#DELIVERY_NORMAL{
  border-color: var(--BLUE05);
  margin-bottom: var(--GENERALSEC_HALF);
}
.p-normalDeliverySameDay__main#DELIVERY_SAMEDAY{
  border-color: var(--PURPLE03);
}
.p-normalDeliverySameDay__main__heading{
  color: var(--PINK01);
  font-weight: 700;
  text-align: center;
  background: url(/asset2024/images/migration/balloondotline.gif) no-repeat bottom center;
}
@media screen and (min-width: 768px){
  .p-normalDeliverySameDay__intro .g-btn__label{
    font-size: var(--FZ_18);
  }
  .p-normalDeliverySameDay__heading{
    font-size: var(--FZ_25);
    margin-bottom: 10px;
  }
  .p-normalDeliverySameDay__heading__note{
    font-size: var(--FZ_16);
  }
  .p-normalDeliverySameDay__main{
    padding: var(--GAP_50) var(--GAP_30);
    border-radius: 20px;
    border-width: 10px;
  }
  .p-normalDeliverySameDay__main__heading{
    font-size: var(--FZ_35);
    padding-bottom: var(--GAP_20);
    margin-bottom: var(--GAP_20);
    background-size: 600px;
  }
  .p-normalDeliverySameDay .s-sameDayAbout__top__hd,
  .p-normalDeliverySameDay .s-sameDayArea__hd{
    font-size: 20px;
  }
}
@media screen and (max-width: 767px){
  .p-normalDeliverySameDay__intro .g-btn__label{
    font-size: 16px;
  }
  .p-normalDeliverySameDay__heading{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .p-normalDeliverySameDay__heading__note{
    font-size: 12px;
  }
  .p-normalDeliverySameDay__main{
    padding: 20px 15px;
    border-radius: 15px;
    border-width: 5px;
  }
  .p-normalDeliverySameDay__main__heading{
    font-size: 23px;
    padding-bottom: 13px;
    margin-bottom: 12px;
    background-size: 400px;
  }
  .p-normalDeliverySameDay .s-sameDayAbout__top__hd,
  .p-normalDeliverySameDay .s-sameDayArea__hd{
    font-size: 17px;
    letter-spacing: 0.01em;
  }
}


/* -----------------お届け日表示----------------- */
.fs-c-estimatedDeliveryDate{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  font-family: var(--FF_NOTO);
  font-weight: 400;
  color: var(--TXT_COLOR_BLACK);
}
.fs-c-estimatedDeliveryDate__ctrl{
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.fs-c-estimatedDeliveryDate__location{
  justify-content: center;
}
.fs-c-estimatedDeliveryDate__button .fs-c-button--changeLocation{
  background-color: unset;
	color: var(--TXT_COLOR_BASE);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
  min-height: unset;
  padding-inline: 10px;
}
.fs-c-estimatedDeliveryDate__button .fs-c-button--changeLocation .fs-c-button__label{
  font-size: var(--FZ_11);
  text-decoration: underline;
  color: var(--TXT_COLOR_BLACK);
}
.fs-c-estimatedDeliveryDate__notice{
  flex: 1;
  font-weight: 700;
}
.fs-c-estimatedDeliveryDate__deliverable{
  display: flex;
  flex-direction: column;
}
.fs-c-estimatedDeliveryDate__condition__time,
.fs-c-estimatedDeliveryDate__info__date{
  color: var(--PINK01);
}
.fs-c-estimatedDeliveryDate__condition__time::after{
  content: '（正午）';
  display: inline-block;
  margin-inline: 3px;
}
.fs-c-estimatedDeliveryDate__info__date::before{
  content: '最短';
  display: inline-block;
  margin-right: 2px;
  color: var(--TXT_COLOR_BLACK);
}
@media screen and (min-width: 768px){
  .fs-c-estimatedDeliveryDate{
    gap: var(--GAP_20);
  }
  .fs-c-estimatedDeliveryDate__location{
    font-size: var(--FZ_16);
  }
  .fs-c-estimatedDeliveryDate__notice{
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
  .fs-c-estimatedDeliveryDate{
    gap: 10px;
  }
  .fs-c-estimatedDeliveryDate__location{
    font-size: 14px;
  }
  .fs-c-estimatedDeliveryDate__notice{
    letter-spacing: 0.05em;
    font-size: 11px;
  }
}

/* -----------------p-popupContents----------------- */
.p-popupContents{
  border-top: 1px solid var(--GRAY03);
}
.formReset .p-popupContents__btn{
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--GRAY03);
  font-family: var(--FF_NOTO);
  font-weight: 400;
  color: var(--TXT_COLOR_BLACK);
  display: flex;
  align-items: center;
}
.formReset .p-popupContents__btn::before{
  content: "";
  display: inline-block;
  background: no-repeat left center / 100%;
  aspect-ratio: 1/1;
  width: 20px;
  margin: 0;
}
.formReset .p-popupContents__btn--message::before{
  background-image: url(/asset2024/images/product/icon_message.svg);
}
.formReset .p-popupContents__btn--ballonFloat::before{
  background-image: url(/asset2024/images/product/icon_point.svg);
}
@media (hover: hover){
  .p-popupContents__btn__label{
    transition: .3s;
  }
  .formReset .p-popupContents__btn:hover .p-popupContents__btn__label{
    transform: translateX(10px);
  }
  .formReset .p-popupContents__btn::before{
    transition: .3s;
  }
  .formReset .p-popupContents__btn:hover::before{
    transform: translateX(10px);
  }
}
@media screen and (min-width: 768px){
  .p-popupContents{
    margin-bottom: 30px;
  }
  .formReset .p-popupContents__btn{
    padding: var(--GAP_20);
    gap: 10px;
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
  .p-popupContents{
    margin-bottom: 10px;
  }
  .formReset .p-popupContents__btn{
    padding: 15px 0 15px 15px;
    gap: 5px;
    font-size: 12px;
  }
}


/* p-messageCard */
.p-messageCard > div:not(:last-child){
  padding-bottom: var(--GENERALSEC);
  position: relative;
  margin-bottom: var(--GENERALSEC);
}
.p-messageCard > div:not(:last-child)::after{
  --DOTSIZE: 5px;
  content: "";
  background-color: transparent;
  background-image:
  radial-gradient(var(--TXT_COLOR_BASE) 30%, transparent 10%);
  background-size: var(--DOTSIZE) var(--DOTSIZE);
  background-repeat: repeat-x;
  width: 100%;
  height: var(--DOTSIZE);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-messageCard__lead{
  font-family: var(--FF_NOTO);
  font-weight: 400;
}
.p-messageCard__lead span{
  font-weight: 700;
  color: var(--PINK01);
}
@media screen and (min-width: 768px){
  .p-messageCard__lead{
    font-size: var(--FZ_16);
    text-align: center;
  }
}
@media screen and (max-width: 767px){
  .p-messageCard .g-search__type__heading__ja{
    font-size: 23px;
  }
  .p-messageCard__lead{
    line-height: 1.8;
  }
}
/* MESSAGE_CARD_TYPE */
.p-messageCard__main__heading{
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-align: center;
  color: var(--PINK01);
}
.p-messageCard__main__heading::before{
  content: "";
  display: inline-block;
  --MASK: var(--ICON) no-repeat center center / 100%;
  mask: var(--MASK);
  -webkit-mask: var(--MASK);
  background-color: var(--PINK01);
  aspect-ratio: 1/1;
  margin-inline: auto;
}
.p-messageCard__type{
  display: grid;
}
.p-messageCard__type__ttl span{
  font-weight: 700;
  display: inline-block;
  color: var(--PINK01);
}
.p-messageCard__type__ttl small{
  display: inline-block;
  border: 1px solid var(--TXT_COLOR_BASE);
  font-weight: 700;
}
.p-messageCard__type__lead{
  font-family: var(--FF_NOTO);
  font-weight: 400;
}
.p-messageCard__type__box{
  background-color: var(--PINK03);
}
.p-messageCard__type__example__img span{
  display: block;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.p-messageCard__type__example__img span::before,
.p-messageCard__type__example__img span::after{
  content: "";
  display: inline-block;
  background: var(--TXT_COLOR_BASE);
  height: 1px;
  position: absolute;
  bottom: 0;
}
.p-messageCard__type__example__img span::before{
  transform: rotate(50deg);
  left: 0;
  transform-origin: right bottom;
}
.p-messageCard__type__example__img span::after{
  transform: rotate(-50deg);
  right: 0;
  transform-origin: left bottom;
}
.p-messageCard__type__example__explain{
  font-family: var(--FF_NOTO);
  font-weight: 400;
  line-height: 1.7;
}
.p-messageCard__type__example__explain span{
  color: var(--PINK01);
}
.p-messageCard__type__example__note li{
  font-family: var(--FF_NOTO);
  font-weight: 400;
  position: relative;
  line-height: 1.8;
}
.p-messageCard__type__example__note li::before{
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}
.p-messageCard__type__remarks,
.p-messageCard__type__wedding{
  background-color: var(--WHITE);
  border-radius: 10px;
}
.p-messageCard__type__remarks{
  position: relative;
}
.p-messageCard__type__remarks::before{
  content: "";
  display: inline-block;
  background: url(/asset2024/images/product/people.png) no-repeat center center / 100%;
  aspect-ratio: 45/78;
  position: absolute;
}
.p-messageCard__type__remarks p{
  font-family: var(--FF_NOTO);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.p-messageCard__type__remarks p span{
  color: var(--PINK01);
}
.p-messageCard__type__wedding__ttl{
  width: fit-content;
  border-bottom: 1px solid var(--TXT_COLOR_BASE);
  margin-inline: auto;
  font-weight: 700;
}
.p-messageCard__type__wedding__txt{
  display: grid;
  font-family: var(--FF_NOTO);
  font-weight: 400;
}
.p-messageCard__type__wedding__txt span{
  color: var(--PINK01);
  font-weight: 700;
  text-decoration: underline;
}
@media screen and (min-width: 768px){
  #popup-messageCard .popup-content{
    max-width: 1100px;
  }
  .p-messageCard{
    max-width: 900px;
    margin-inline: auto;
  }
  .p-messageCard__main__heading{
    font-size: var(--FZ_25);
    gap: 10px;
    margin-bottom: var(--GAP_50);
  }
  .p-messageCard__main__heading::before{
    width: 50px;
  }
  .p-messageCard__type{
    gap: var(--GAP_50);
  }
  .p-messageCard__type__ttl{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .p-messageCard__type__ttl span{
    width: fit-content;
    font-size: var(--FZ_20);
  }
  .p-messageCard__type__ttl small{
    font-size: var(--FZ_16);
    padding: 1px 12px 0px;
  }
  .p-messageCard__type__lead{
    font-size: var(--FZ_16);
    margin-bottom: 20px;
    text-align: center;
  }
  .p-messageCard__type__box{
    margin-top: 20px;
    padding-block: var(--GAP_50);
  }
  .p-messageCard__type__example,
  .p-messageCard__type__remarks,
  .p-messageCard__type__wedding{
    width: 95%;
    max-width: 700px;
    margin-inline: auto;
  }
  ul.p-messageCard__type__example{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--GAP_50);
  }
  .p-messageCard__type__example__img span{
    width: 90%;
    font-size: var(--FZ_18);
    margin-bottom: 10px;
  }
  .p-messageCard__type__example__img span::before,
  .p-messageCard__type__example__img span::after{
    width: 20px;
  }
  .p-messageCard__type__example__body{
    margin-top: 10px;
  }
  .p-messageCard__type__example__explain{
    font-size: var(--FZ_16);
  }
  .p-messageCard__type__example__note{
    margin-top: 3px;
  }
  .p-messageCard__type__example__note li{
    font-size: var(--FZ_12);
    padding-left: 15px;
  }
  div.p-messageCard__type__example{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
    gap: var(--GAP_50);
  }
  .p-messageCard__type__remarks{
    margin-top: var(--GAP_30);
    padding: 20px 5px 20px 120px;
  }
  .p-messageCard__type__remarks::before{
    width: 44px;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
  }
  .p-messageCard__type__remarks p{
    font-size: var(--FZ_14);
  }
  .p-messageCard__type__wedding{
    margin-top: var(--GAP_30);
    padding: var(--GAP_35) var(--GAP_30);
  }
  .p-messageCard__type__wedding__ttl{
    font-size: var(--FZ_18);
    margin-bottom: var(--GAP_30);
  }
  .p-messageCard__type__wedding__txt{
    gap: var(--GAP_20);
    font-size: var(--FZ_16);
  }
}
@media screen and (max-width: 767px){
  .p-messageCard__main__heading{
    font-size: 20px;
    gap: 5px;
    margin-bottom: 20px;
  }
  .p-messageCard__main__heading::before{
    width: 30px;
  }
  .p-messageCard__type{
    gap: 20px;
  }
  .p-messageCard__type__ttl{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
  }
  .p-messageCard__type__ttl span{
    width: fit-content;
    font-size: 16px;
  }
  .p-messageCard__type__ttl small{
    font-size: 14px;
    padding: 1px 8px 0px;
  }
  .p-messageCard__type__lead{
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
  }
  .p-messageCard__type__box{
    margin-top: 10px;
    padding: 20px 12px;
  }
  ul.p-messageCard__type__example{
    display: grid;
    gap: 20px;
  }
  .p-messageCard__type__example__img span{
    width: fit-content;
    font-size: 16px;
    margin-bottom: 10px;
    padding-inline: 30px;
  }
  .p-messageCard__type__example__img span::before,
  .p-messageCard__type__example__img span::after{
    width: 15px;
    bottom: 5px;
  }
  .p-messageCard__type__example__img img{
    width: 60%;
    margin-inline: auto;
  }
  .p-messageCard__type__example__body{
    margin-top: 10px;
  }
  .p-messageCard__type__example__explain{
    font-size: 14px;
  }
  .p-messageCard__type__example__note{
    margin-top: 3px;
  }
  .p-messageCard__type__example__note li{
    font-size: 12px;
    padding-left: 10px;
  }
  div.p-messageCard__type__example{
    display: grid;
    gap: 20px;
  }
  .p-messageCard__type__remarks{
    margin-top: var(--GAP_30);
    padding: 10px 5px 10px 56px;
  }
  .p-messageCard__type__remarks::before{
    width: 34px;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
  }
  .p-messageCard__type__remarks p{
    font-size: var(--FZ_14);
  }
  .p-messageCard__type__wedding{
    margin-top: 20px;
    padding: 20px 12px;
  }
  .p-messageCard__type__wedding__ttl{
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .p-messageCard__type__wedding__txt{
    gap: 20px;
    font-size: 13px;
  }
}

/* MESSAGE_CARD_TEMPLATE */
.p-messageCard__main__lead{
  font-family: var(--FF_NOTO);
  font-weight: 400;
}
.p-messageCard__template{
  display: grid;
}
.p-messageCard__template__ttl{
  font-weight: 700;
  color: var(--PINK01);
  border-bottom: 1px solid var(--PINK01);
}
.p-messageCard__template__list{
  display: grid;
}
.p-messageCard__template__list > li{
  display: flex;
  flex-direction: column;
}
.p-messageCard__template__list > li > p{
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.01em;
}
.p-messageCard__template__list > li > p span{
  color: var(--PINK01);
  text-decoration: underline;
  font-weight: 700;
}
.p-messageCard__template__list > li > div{
  flex: 1;
  border: 1px solid var(--BROWN03);
  font-family: var(--FF_NOTO);
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px){
  .p-messageCard__main__lead,
  .p-messageCard__template{
    width: 95%;
    max-width: 700px;
    margin-inline: auto;
  }
  .p-messageCard__main__lead{
    font-size: var(--FZ_14);
    margin-bottom: var(--GAP_50);
  }
  .p-messageCard__template{
    gap: var(--GAP_50);
  }
  .p-messageCard__template__ttl{
    font-size: var(--FZ_20);
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .p-messageCard__template__list{
    grid-template-columns: repeat(2, 1fr);
    gap: var(--GAP_50);
  }
  .p-messageCard__template__list > li > p{
    font-size: var(--FZ_16);
    margin-bottom: 10px;
  }
  .p-messageCard__template__list > li > div{
    padding-block: var(--GAP_20);
  }
}
@media screen and (max-width: 767px){
  .p-messageCard__template{
    gap: 30px;
  }
  .p-messageCard__main__lead{
    font-size: 14px;
    margin-bottom: 30px;
  }
  .p-messageCard__template__ttl{
    font-size: 16px;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  .p-messageCard__template__list{
    gap: 30px;
  }
  .p-messageCard__template__list > li > p{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .p-messageCard__template__list > li > div{
    padding-block: 20px;
  }
}


/* -----------------レビューパーツ----------------- */
.fs-c-productReview{
  display: grid;
}
.fs-c-productReview__aggregateRating{
  display: none;
  order: 1;
}
.fs-c-productReview__reviewList{
  display: grid;
  font-family: var(--FF_NOTO);
  font-weight: 400;
  order: 2;
}
.fs-c-reviewRating{
  order: 1;
}
.fs-c-reviewInfo__date{
  margin-left: 7px;
  order: 3;
}
.fs-c-reviewInfo__date dt{
  display: none;
}
.fs-c-reviewList__item{
  padding: 0;
}
.fs-c-reviewList__item__info{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--GRAY02);
}
.fs-c-reviewInfo__reviewer{
  display: flex;
  margin-left: auto;
  order: 2;
}
.fs-c-reviewInfo__reviewer .fs-c-reviewer__name::after{
  content: 'さま';
}
.fs-c-productReview__allReviews{
  order: 4;
  margin-top: 0;
}
.fs-c-productReview__addReview{
  order: 3;
}
.fs-c-productReview__addReview{
  text-align: center;
  margin-bottom: 20px;
}
.fs-c-button--addReview--detail{
  font-family: var(--FF_NOTO);
  font-weight: 400;
  font-size: 12px;
  color: var(--TXT_COLOR_BASE);
  text-decoration: underline;
  min-height: unset !important;
}
@media screen and (min-width: 768px){
  .fs-c-productReview__reviewList{
    gap: var(--GAP_50);
    margin-block: var(--GAP_80) var(--GAP_30);
  }
  .fs-c-reviewInfo__date{
    font-size: 14px;
  }
  .fs-c-reviewList__item__info{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .fs-c-reviewInfo__reviewer{
    font-size: var(--FZ_14);
  }
  .fs-c-reviewList__item__body{
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
  .fs-c-productReview__reviewList{
    gap: 30px;
    margin-block: 20px 20px;
  }
  .fs-c-reviewList__item__info{
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .fs-c-reviewInfo__date{
    font-size: 12px;
  }
  .fs-c-reviewInfo__reviewer{
    font-size: 12px;
  }
  .fs-c-reviewList__item__body{
    font-size: 12px;
    padding: 0;
  }
}
/* レビューがないとき */
.fs-c-productReview:not(:has(.fs-c-productReview__reviewList)){
  position: relative;
  padding-top: 40px;
}
.fs-c-productReview:not(:has(.fs-c-productReview__reviewList))::before{
  content: 'まだレビューはありません';
  font-family: var(--FF_NOTO);
  color: var(--TXT_COLOR_BLACK);
  white-space: nowrap;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
/* -----------------おすすめ商品----------------- */
@media screen and (min-width: 768px){
  .fs-c-featuredProduct__header{
    margin-bottom: var(--GAP_30);
  }
  .fs-c-featuredProduct__title{
    text-align: center;
    font-size: var(--FZ_20);
  }
}
@media screen and (max-width: 767px){
  .fs-c-featuredProduct__header{
    margin-bottom: 20px;
  }
  .fs-c-featuredProduct__title{
    text-align: center;
    font-size: 16px;
  }
}
body:not(:has(.fs-c-featuredProduct)) .g-review{
  margin-bottom: 0;
}

/* -----------------ページトップ----------------- */
@media screen and (max-width: 767px){
  .pagetop{
    display: block !important;
    width: 85px;
    bottom: 146px;
    right: 0px;
    z-index: 99;
  }
}

/* -----------------調整用----------------- */
/* 総合ランキング */
.g-ranking{
  margin-top: var(--GENERALSEC);
}
@media screen and (max-width: 767px){
  /* パンくず */
  nav.fs-c-breadcrumb li, nav.fs-c-breadcrumb li a{
    color: var(--TXT_COLOR_BLACK);
  }
}


/* -----------------メイクショップ説明文----------------- */
.fs-p-productDescription--full{
  width: var(--INNER_WIDTH);
  margin-inline: auto;
  font-family: var(--FF_NOTO);
}
.fs-p-productDescription--full:not(:has(*)){
  margin-bottom: 0;
}
/* .fs-p-productDescription--full div[align="center"] img{
  width: 100%;
}
.fs-p-productDescription--full img[width="350"],
.fs-p-productDescription--full img[width="355"]{
  width: 100%;
} */
.fs-p-productDescription--full table{
  width: 100%;
}
.fs-p-productDescription--full img{
  width: 100%;
}

.fs-p-productDescription--full img[style*="width: 350px"]{
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 768px){
  .fs-p-productDescription--full #p-makeshopDesc{
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px){
  .fs-p-productDescription--full{
    width: 100%;
    margin-bottom: 10px;
  }
  .fs-p-productDescription--full #p-makeshopDesc{
    width: var(--INNER_WIDTH);
    margin-inline: auto;
  }
  .fs-p-productDescription--full *{
    max-width: 100%;
  }
  .fs-p-productDescription--full img{
    max-width: 100%;
  }
  .style10{
    font-size: 5px;
  }
}

.product-comment_9{
  width: var(--INNER_WIDTH);
  margin-inline: auto;
  font-family: var(--FF_NOTO);
}
.product-comment_9:not(:has(*)){
  margin-bottom: 0;
}
/* .product-comment_9 div[align="center"] img{
  width: 100%;
}
.product-comment_9 img[width="350"],
.product-comment_9 img[width="355"]{
  width: 100%;
} */
.product-comment_9 table{
  width: 100%;
}
.product-comment_9 img{
  width: 100%;
}

.product-comment_9 img[style*="width: 350px"]{
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 768px){
  .product-comment_9 #p-makeshopDesc{
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px){
  .product-comment_9{
    margin-bottom: 10px;
  }
  .product-comment_9 *{
    max-width: 100%;
  }
  .product-comment_9 img{
    max-width: 100%;
  }
}


/* セレクトの数量にarrow追加 */
.fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget{
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48IS0tIUZvbnQgQXdlc29tZSBGcmVlIDYuNy4yIGJ5IEBmb250YXdlc29tZSAtIGh0dHBzOi8vZm9udGF3ZXNvbWUuY29tIExpY2Vuc2UgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbS9saWNlbnNlL2ZyZWUgQ29weXJpZ2h0IDIwMjUgRm9udGljb25zLCBJbmMuLS0+PHBhdGggZD0iTTE0MyAzNTIuM0w3IDIxNi4zYy05LjQtOS40LTkuNC0yNC42IDAtMzMuOWwyMi42LTIyLjZjOS40LTkuNCAyNC42LTkuNCAzMy45IDBsOTYuNCA5Ni40IDk2LjQtOTYuNGM5LjQtOS40IDI0LjYtOS40IDMzLjkgMGwyMi42IDIyLjZjOS40IDkuNCA5LjQgMjQuNiAwIDMzLjlsLTEzNiAxMzZjLTkuMiA5LjQtMjQuNCA5LjQtMzMuOCAweiIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
}
.fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget::after{
  content: "";
  display: inline-block;
  background-color: var(--GRAY01);
  position: absolute;
  z-index: -1;
  border-radius: 10px;
}
.fs-c-quantity__select.fs-system-quantity-list{
  background: transparent;
}
@media screen and (min-width: 768px){
  #fs_ProductDetails .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget{
    background-position: right 1px bottom 7px;
  }
  #fs_ProductDetails .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget{
    background-size: 13px;
  }
  .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget::after{
    width: 60px;
    height: 35px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}
@media screen and (max-width: 767px){
  #fs_ProductDetails .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget{
    background-position: right 1px bottom 2px;
  }
  #fs_ProductDetails .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget{
    background-size: 11px;
  }
  .fs-c-productQuantityAndWishlist__quantity.fs-c-quantity.fs-system-assistTarget::after{
    width: 45px;
    height: 24px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
}


