@charset "utf-8";
#fs_preview_header{
  display: none;
}
:root{
	/* アニメーション */
	--anime-fade-in: fadeIn .5s ease-in-out 0s forwards;
	--anime-fade-out: fadeOut .5s ease-in-out 0s forwards;

  --fs-btn-bg-c-primary: var(--MAIN_RED);
  /* カラー */
  --c-black: #000;
  --c-black-op50: rgba(0, 0, 0, 0.5);
  --c-white: #fff;

  /* アイコン */
  --data-icon-popup-close: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODk2QjU4O30KPC9zdHlsZT4KPGcgaWQ9IuOCsOODq+ODvOODl180MzQ5MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTgzOS42ODkgNzE1LjIzOCkgcm90YXRlKC00NSkiPgoJCgkJPHJlY3QgeD0iMTA5MS45OTEiIHk9IjE1MC4xMjQiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDIuNTM1MTU5ZS0wNiAtMi41MzUxNTllLTA2IC0xIDIxOTguOTgxIDYwMC4yNDUxKSIgY2xhc3M9InN0MCIgd2lkdGg9IjE0Ljk5OSIgaGVpZ2h0PSIzMDAiLz4KCQoJCTxyZWN0IHg9Ijk0OS40NzYiIHk9IjI5Mi42MiIgdHJhbnNmb3JtPSJtYXRyaXgoLTEgMi41MzUxNTllLTA2IC0yLjUzNTE1OWUtMDYgLTEgMjE5OC45NTE5IDYwMC4yMzY2KSIgY2xhc3M9InN0MCIgd2lkdGg9IjMwMCIgaGVpZ2h0PSIxNC45OTkiLz4KPC9nPgo8L3N2Zz4K);

  --data-icon-select-plus: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDQwLTI4MGg4MHYtMTYwaDE2MHYtODBINTIwdi0xNjBoLTgwdjE2MEgyODB2ODBoMTYwdjE2MFptNDAgMjAwcS04MyAwLTE1Ni0zMS41VDE5Ny0xOTdxLTU0LTU0LTg1LjUtMTI3VDgwLTQ4MHEwLTgzIDMxLjUtMTU2VDE5Ny03NjNxNTQtNTQgMTI3LTg1LjVUNDgwLTg4MHE4MyAwIDE1NiAzMS41VDc2My03NjNxNTQgNTQgODUuNSAxMjdUODgwLTQ4MHEwIDgzLTMxLjUgMTU2VDc2My0xOTdxLTU0IDU0LTEyNyA4NS41VDQ4MC04MFptMC04MHExMzQgMCAyMjctOTN0OTMtMjI3cTAtMTM0LTkzLTIyN3QtMjI3LTkzcS0xMzQgMC0yMjcgOTN0LTkzIDIyN3EwIDEzNCA5MyAyMjd0MjI3IDkzWm0wLTMyMFoiLz48L3N2Zz4=);
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
#p-cartModalContents.fixed{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
#p-cartModalContents .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c-white);
}
#p-cartModalContents .popup-box{
	overflow-y: scroll;
}
#p-cartModalContents .closePopup{
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: var(--MAIN_RED);
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
#p-cartModalContents .closePopup::before{
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e911";
  display: block;
  line-height: 1;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media screen and (min-width: 768px){
	#p-cartModalContents .popup-content{
		width: 95%;
		max-width: 900px;
	}
  #p-cartModalContents .popup-content{
    max-width: 600px;
  }
	#p-cartModalContents .popup-box{
		padding: 50px 30px;
		max-height: 90vh;
	}
  #p-cartModalContents .closePopup{
    width: 40px;
  }
  #p-cartModalContents .closePopup::before{
    font-size: 23px;
  }
}
@media (hover: hover){
	#p-cartModalContents button.closePopup:hover{
		cursor: pointer;
	}
}
@media screen and (max-width: 767px){
	#p-cartModalContents .popup-content{
		width: 90%;
	}
	#p-cartModalContents .popup-box{
		padding: 30px 15px;
		max-height: 80vh;
	}
  #p-cartModalContents .closePopup::before{
    font-size: 23px;
  }
  #p-cartModalContents .closePopup{
    width: 30px;
  }
  #p-cartModalContents .closePopup::before{
    font-size: 18px;
  }
}

/* ----------------------商品価格---------------------- */
.fs-c-productPrices-area{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  color: var(--txt-c-black);
}
#fs_ProductDetails .productinner .fs-c-productPrices{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
  align-items: flex-end;
}
#fs_ProductDetails .productinner .fs-c-productPrices *{
	line-height: 1;
  color: var(--MAIN_BLACK);
}
#fs_ProductDetails .productinner .fs-c-productPrice{
	display: flex;
	align-items: baseline;
}
#fs_ProductDetails .productinner .fs-c-price{
  display: flex;
}
#fs_ProductDetails .productinner .fs-c-price__value{
  letter-spacing: 0.05em;
  font-weight: 700;
}
#fs_ProductDetails .productinner .fs-c-productPrice__main{
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
#fs_ProductDetails .productinner .fs-c-productPrice__main__label{
	display: none;
}
#fs_ProductDetails .productinner :is(
  .fs-c-productPrice__addon,
  .fs-c-productPrice__main__addon
){
  display: flex;
  align-items: baseline;
  font-weight: 500;
}
#fs_ProductDetails .productinner :is(
  .fs-c-productPrice__addon,
  .fs-c-productPrice__main__addon
)::before{
  content: '(';
}
#fs_ProductDetails .productinner :is(
  .fs-c-productPrice__addon,
  .fs-c-productPrice__main__addon
)::after{
  content: ')';
}
@media screen and (min-width: 768px){
	.fs-c-productPrices-area{
		margin-block: 15px 30px;
    gap: 10px;
	}
  #fs_ProductDetails .productinner .fs-c-productPrices{
		gap: 10px;
  }
	#fs_ProductDetails .productinner .fs-c-productPrice{
		gap: 1px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrice__main{
		gap: 3px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrice__main__price{
		gap: 1px;
	}
  #fs_ProductDetails .productinner .fs-c-price__currencyMark{
    font-size: 20px;
  }
	#fs_ProductDetails .productinner :is(
    .fs-c-productPrice__addon,
    .fs-c-productPrice__main__addon
  ){
		font-size: 16px;
	}
	#fs_ProductDetails .productinner .fs-c-price__value{
		font-size: 32px;
	}
}
@media screen and (max-width: 767px){
	.fs-c-productPrices-area{
		margin-block: 10px 20px;
    gap: 10px;
	}
  #fs_ProductDetails .productinner .fs-c-productPrices{
		gap: 10px;
  }
	#fs_ProductDetails .productinner .fs-c-productPrice{
		gap: 1px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrice__main{
		gap: 3px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrice__main__price{
		gap: 1px;
	}
  #fs_ProductDetails .productinner .fs-c-price__currencyMark{
    font-size: 15px;
  }
	#fs_ProductDetails .productinner :is(
    .fs-c-productPrice__addon,
    .fs-c-productPrice__main__addon
  ){
		font-size: 10px;
	}
	#fs_ProductDetails .productinner .fs-c-price__value{
		font-size: 24px;
	}
  #fs_ProductDetails .productinner .fs-c-productPrice__main__joint{
    font-size: 10px;
  }
}
/* 通常価格 - fs-c-productPrice--listed */

/* 販売価格 - fs-c-productPrice--selling */

/* 定期 - fs-c-subscriptionPriceTable */
.fs-c-subscriptionPriceTable *{
  line-height: 1;
}
.fs-c-subscriptionPriceTable__row{
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.fs-c-subscriptionPriceTable__label{
  display: none;
}

/* 2重価格ある時装飾 */
.fs-c-productPrices-area:has(.fs-c-productPrice:nth-child(2)){
  align-items: flex-end;
}
#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child{
	position: relative;
  width: fit-content;
}
#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child::before{
	content: "";
	display: inline-block;
	background: var(--txt-c-base);
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child+.fs-c-productPrice:last-child *{
	color: var(--txt-c-emphasis);
}
#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice__main__label{
	display: block;
}
	#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child :is(
    .fs-c-productPrice__addon,
    .fs-c-productPrice__main__addon
    ){
      color: var(--body_color,var(--MAIN_BLACK));
    }
@media screen and (min-width: 768px){
  #fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child .fs-c-price__value{
    font-size: 20px;
  }
  #fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child .fs-c-price__currencyMark{
    font-size: 15px;
  }
	#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child :is(
    .fs-c-productPrice__addon,
    .fs-c-productPrice__main__addon
  ){
		font-size: 11px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice__main__label{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
  #fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child .fs-c-price__value{
    font-size: 16px;
  }
  #fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child .fs-c-price__currencyMark{
		font-size: 10px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice:first-child :is(
    .fs-c-productPrice__addon,
    .fs-c-productPrice__main__addon
  ){
		font-size: 11px;
	}
	#fs_ProductDetails .productinner .fs-c-productPrices:has(.fs-c-productPrice:nth-child(2)) .fs-c-productPrice__main__label{
		font-size: 12px;
	}
}

/* p-follow */
.p-follow{
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #F6F1E8;
  transition: .5s;
  z-index: 99;
  opacity: 0;
}
body.scroll .p-follow{
  opacity: 0;
  animation: var(--anime-fade-in);
}
body.scroll.returnTop .p-follow{
  opacity: 1;
  animation: var(--anime-fade-out);
}
.p-follow__price{
  flex: 1;
}
.p-follow__price .fs-c-productPrice.fs-c-productPrice--listed{
  display: none;
}
.p-follow__inner .fs-c-productPrices{
  margin-bottom: 0;
}
.p-follow__anchor a,
.p-follow__anchor button{
  display: block;
  width: 100%;
  text-align: center;
  color: var(--c-white);
  border: 1px solid var(--fs-btn-bg-c-primary);
  background-color: var(--fs-btn-bg-c-primary);
  border-radius: 10px;
  letter-spacing: 0.1em;
}
.p-follow__anchor button span{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-bottom: 1px;
}
.p-follow__anchor button span::before{
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-select-plus) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-white);
  aspect-ratio: 1/1;
  width: 15px;
}
@media screen and (min-width: 1001px){
  .p-follow__inner{
    display: flex;
    align-items: center;
    max-width: 1000px !important;
  }
  .p-follow__name{
    flex: 1;
    font-size: 20px;
      -webkit-line-clamp: 2;
  }
  .p-follow__price{
    width: fit-content;
    min-width: unset;
    padding-left: 0;
    margin-left: 50px;
      border-left: 1px solid #C9C2BD;
  }
}
@media screen and (max-width: 1000px){
  .p-follow__inner{
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 10px;
  }
  .p-follow__name{
   -webkit-line-clamp: 1;
  }
  .p-follow__anchor{
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px){
    .p-follow__price{
    min-width: 250px;
  }
}
@media screen and (min-width: 768px){
  .p-follow{
    bottom: 0;
  }
  .p-follow__inner{
    padding: 20px 0;
  }
  .p-follow__name{
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 18px;
    line-height: 1.5;
  }
  .p-follow__anchor{
    width: 350px;
    margin-left: 80px;
  }
  .p-follow__anchor a,
  .p-follow__anchor button{
    font-size: 20px;
    padding: 17px 0 12px;
  }
}
@media screen and (max-width: 767px){
  .p-follow{
    bottom: 68px;
  }
  .p-follow__inner{
    padding: 12px 0;
  }
  .p-follow .fs-c-productPrices span.fs-c-productPrice__main__price,
  .p-follow .fs-c-productPrice span.fs-c-productPrice__main__price{
    font-size: 18px;
  }
  .p-follow__anchor{
    width: 190px;
  }
  .p-follow__anchor a,
  .p-follow__anchor button{
    padding: 8px 0 4px;
    font-size: 14px;
  }
  .p-follow__anchor button span{
    font-size: 9px;
  }
  .p-follow__name{
    display: none;
  }
  #fs_ProductDetails .productinner .p-follow__inner .fs-c-productPrices{
    align-items: flex-start;
  }
  .p-follow__price{
    grid-row: span 2;
    display: flex;
    align-items: center;
  }
.p-follow__anchor button span{
  gap: 3px;
}
.p-follow__anchor button span::before{
  width: 12px;
}
}
  body:has(.p-follow) #pagetop{
    display: none !important;
  }
.fs-c-productPrices-cloned .fs-c-productPrice__main__label{
  display: none !important;
}
#fs_ProductDetails .productinner .p-follow .fs-c-productPrices{
  margin-top: 0;
}



a[data-popup-target="#p-cartModalContents"]{
  display: block;
  width: 100%;
  text-align: center;
  color: var(--c-white);
  border: 1px solid var(--fs-btn-bg-c-primary);
  background-color: var(--fs-btn-bg-c-primary);
  border-radius: 5px;
  letter-spacing: 0.2em;
}
a[data-popup-target="#p-cartModalContents"] span{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-bottom: 1px;
}
a[data-popup-target="#p-cartModalContents"] span::before{
  content: "";
  display: inline-block;
  --this-mask: var(--data-icon-select-plus) no-repeat center center / 100%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--c-white);
  aspect-ratio: 1/1;
  width: 15px;
}
@media screen and (min-width: 768px){
  a[data-popup-target="#p-cartModalContents"]{
    padding-block: 20px 15px;
    margin-block: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px){
  a[data-popup-target="#p-cartModalContents"]{
    padding-block: 12px 8px;
    margin-block: 15px;
    font-size: 16px;
  }
  a[data-popup-target="#p-cartModalContents"] span{
    font-size: 10px;
    gap: 3px;
  }
  a[data-popup-target="#p-cartModalContents"] span::before{
    width: 12px;
  }
}

span.fs-c-productVariationPrice{
  align-items: baseline;
}

@media screen and (min-width: 768px){
  #fs_ProductDetails .productinner .fs-c-productVariationPrice .fs-c-price__currencyMark {
    font-size: 13px;
  }
  #fs_ProductDetails .productinner .fs-c-productVariationPrice .fs-c-price__value {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px){
  #fs_ProductDetails .productinner .fs-c-productVariationPrice .fs-c-price__value {
    font-size: 13px;
  }
  #fs_ProductDetails .productinner .fs-c-productVariationPrice .fs-c-price__currencyMark{
    font-size: 10px;
  }
  #fs_ProductDetails .productinner .fs-c-productVariationPrice .fs-c-productVariationPrice__addon{
    font-size: 8px;
  }
}