@charset "UTF-8";

/* =====================================
== productsPage Common Stylesheet
===================================== */
/* 1rem -> 10px */

#productDetailsArea {
	max-width: 135rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 4.5rem;
}
@media only screen and (max-width: 1350px) {
	#productDetailsArea {gap: 3.33vw;}
}
@media only screen and (max-width: 768px) {
	#productDetailsArea {
		flex-direction: column;
		gap: 3rem;
	}
}

#productImagesArea {
	max-width: 73.8rem;
	width: 100%;
}
@media only screen and (max-width: 1350px) {
	#productImagesArea {max-width: 54.66667vw;}
}
@media only screen and (max-width: 768px) {
	#productImagesArea {max-width: 100%;}
}

#productImagesArea .fs-c-productMainImage {
	margin: 0 auto 3rem;
}

#productImagesArea .fs-c-productMainImage__image {
	border: 1px solid lightgray;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}

/* 商品サムネイルの拡大ボタン | 拡大モーダル箇所　共通 */
#productImagesArea .fs-c-productMainImage__expandButton {
	display: none;
}

/* 商品サムネイル 詳細箇所 */
#productImagesArea .fs-c-productThumbnail {
	gap: 1.2rem;
}

#productImagesArea .fs-c-productThumbnail__image {
	max-width: calc((100% - 1.2rem * 4) / 5);
	width: 100%;
	border: 1px solid #707070;
	margin: 0;
	box-sizing: border-box;
	flex-basis: initial;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
}


#productDetail {
	max-width: calc(100% - 73.8rem - 4.5rem);
	width: 100%;
}
@media only screen and (max-width: 1350px) {
	#productDetail {max-width: calc(100% - 3.33vw - 54.66667vw);}
}
@media only screen and (max-width: 768px) {
	#productDetail {max-width: 100%;}
}

#productDetail .fs-c-productNameHeading {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	margin: 0 auto .8rem;
}

#productDetail .fs-c-productNumber {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: #8c8c8c;
	margin: 0;
}

#productDetail .fs-c-productNumber__label {
	margin-right: 1em;
}

#productDetail .fs-c-productPrices {
	margin: 2.5rem 0 2rem;
}

#productDetail .fs-c-productPrice {
	display: flex;
	align-items: baseline;
	justify-content: start;
}

#productDetail .fs-c-productOption {
	margin: 0 0 3.2rem;
}

#productDetail .fs-c-productOption__option {
	margin: 0;
}

#productContentsArea {
	max-width: 135rem;
	width: 100%;
	margin: 13rem auto 0;
}

#productDetail .fs-c-productPrice__main__label {
	display: none;
}

#productDetail .fs-c-price__currencyMark {
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--priceColor);
	margin-right: .25rem;
}

#productDetail .fs-c-price__value {
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--priceColor);
}

#productDetail .fs-c-productPrice__addon__label {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	display: inline-block;
	transform: translateY(-10%);
}

#productDetail .fs-c-productPrice__addon__label::before {content: '\FF08';}
#productDetail .fs-c-productPrice__addon__label::after {content: '\FF09';}

#productDetail .fs-c-productOption__label {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: #979797;
	margin-bottom: .8rem;
	display: inline-block;
}
#productDetail .fs-c-productOption__label::after {content: '\FF1A';}

#productDetail .fs-c-requiredMark {
	width: 0;
	height: 1px;
	visibility: hidden;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

#productDetail .fs-c-productQuantityAndWishlist {
	margin: 0 0 2rem;
}

#productDetail .fs-c-productQuantityAndWishlist__wishlist {
	width: 0;
	height: 1px;
	visibility: hidden;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	display: block;
}

#productDetail .fs-c-productQuantityAndWishlist__quantity {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

#productDetail .fs-c-productQuantityAndWishlist__quantity::before {
	content: '\6570\91CF';
	word-break: keep-all;
}

#productDetail .fs-c-quantity__select {
	appearance: none;
	min-width: 6.7rem;
	width: 100%;
	height: 3.8rem;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	background: var(--white);
	border: 1px solid #ccc;
	padding: 0 1rem;
	box-sizing: border-box;
}


#productDetail .fs-c-button--primary, 
#productDetail .fs-c-productNotice, 
#productDetail .productWishAdd {
	width: 100%;
	height: 4.5rem;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	border: 1px solid;
	padding: 0 1rem;
	box-sizing: border-box;
}

#productDetail .fs-c-button--primary::before, 
#productDetail .fs-c-productNotice::before, 
#productDetail .productWishAdd::before{
	display: inline-block;
	width: auto;
	height: auto;
	border: inherit;
	border-width: 0;
	transform: none;
	transition: inherit;
}

#productDetail .fs-c-button--primary {
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--white);
	background: var(--buttonColor);
	border-color: var(--buttonColor);
}

#productDetail .fs-c-button--primary::before {
	content: url(https://paramount.itembox.design/item/images/common/icon_cart.png);
	vertical-align: sub;
}

#productDetail .fs-c-productNotice {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--white);
	background: #8c8c8c;
	border-color: #8c8c8c;
	display: flex;
	align-items: center;
	justify-content: center;
}

#productDetail .productWishAdd {
	font-size: 1.3rem;
	font-weight: 500;
	color: #8c8c8c;
	background: var(--white);
	border-color: #8c8c8c;
	margin: .8rem 0 3.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
#productDetail .productWishAdd::before {
	content: url(https://paramount.itembox.design/item/images/common/icon_wish.png);
	margin-right: 1em;
}

#productDetail .productWishAdd.js-active {
	color: var(--white);
	background:forestgreen;
	border-color: forestgreen;
}
#productDetail .productWishAdd.js-active::before {
	filter: brightness(2555);
}



#productDetail #productCampaignArea {
	margin: 0 0 3.2rem;
}


#productDetail #productDescriptionArea {
	margin: 0 0 4rem;
	position: relative;
}

#productDetail .productDetail__title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	padding: 0 0 1rem;
	margin: 0 0 2rem;
	box-sizing: border-box;
	position: relative;
}

#productDetail .productDetail__title::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #ccc;
	position: absolute;
	bottom: .5px;
	left: 0;
	z-index: -1;
}

#productDetail .productDetail__title span {
	font-size: inherit;
	font-weight: inherit;
	text-decoration: underline;
	text-underline-offset: 1rem;
	text-decoration-color: var(--paramountColorB);
	text-decoration-thickness: 2px;
	position: relative;
}

#productDetail .fs-p-productDescription {
	/* height: calc(1.4rem * 1.5625 * 4); */
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5625;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: var(--black);
	overflow: hidden;
}

#productDetail .fs-p-productDescription table {
	background: #fff;
}

#productDetail .fs-p-productDescription tr {
	padding: 0 0 .5em;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

#productDetail .fs-p-productDescription img {
	max-width: 100%;
	width: inherit;
}

#productDetail .fs-p-productDescription td:first-child {
	font-weight: bold;
}

#productDetail .productDescription--more {
	display: none;
}

#productDetail .fs-p-productDescription .banner-btn {display: none;}

/* #productDetail .productDescription--more {
	width: 100%;
	background: #ffffffcc;
	padding: 2.6rem 0 0;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(25%);
}

#productDetail .productDescription--more button {
	appearance: none;
	max-width: 85.16%;
	width: 100%;
	height: 3.5rem;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: center;
	color: var(--black);
	background: #eee;
	border: 1px solid #ccc;
	border-radius: .3rem;
	padding: 0 1rem;
	margin: 0 auto;
	box-sizing: border-box;
	display: block;
}

#productDetail .productDescription--more button::before{
	display: inline-block;
	width: auto;
	height: auto;
	border: inherit;
	border-width: 0;
	transform: none;
	transition: inherit;
} */

#productDetail #productAboutArea {}

#productDetail .productAboutArea__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

#productDetail .productAboutArea__list li {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2.214;
	letter-spacing: calc(0 / 1000 * 1em);
	text-align: left;
	color: #616161;
}

#productDetail .productAboutArea__list li a {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-decoration: none;
}

#productDetail .productAboutArea__list i {
	max-width: 3.8rem;
	width: 100%;
	text-align: center;
	margin-right: .8rem;
	vertical-align: sub;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#productDetail .productAboutArea__list i img {
	width: auto;
}


#productDetail .fs-c-inquiryAboutProduct {
	display: none;
}

#productDetail .fs-c-variationList__item__cart .fs-c-variationCart__wishlist {
	display: none;
}



#productDetailsArea .fs-c-productImageModal {
	overflow: hidden;
}

#productDetailsArea .fs-c-productImageModal img{
	width: auto;
}

#productDetailsArea .fs-c-productImageModal .fs-c-slick .slick-slide {
	max-width: 100vw;
	margin: 0;
}

#productDetailsArea .fs-c-productImageModalCarousel__figure {
	height: calc(100vh - 2rem);
}