@charset "utf-8";

/* CSS Document */
.breadcrumbs {
	background: #fff5eb;
	margin-top: 1px;
}

/*==================================
	product
==================================*/
#product {
	padding-bottom: 80px;
	position: relative;
	z-index: 15;
}

#product .hidden {
	overflow: hidden;
	padding-bottom: 1px;
}

#product .head {
	position: relative;
	vertical-align: top;
	margin-bottom: -30px;

}

#product .head .tit {
	font-size: 3.6rem;
	position: relative;
	z-index: 1;
	font-weight: 600;

}

#product .head .txt {
	font-size: 210px;
	left: calc(50% - 440px);
	margin-top: -7.5rem;
	color: #feecdb;
	font-family: "Outfit";
	font-weight: 700;
	position: relative;
	line-height: 1;
	pointer-events: none;
	display: flex;
	justify-content: flex-end;
    text-transform: uppercase;

}

#product .itemList {
	position: relative;
}

@media screen and (max-width: 1299px) {
	#product .head .txt {
		font-size: 14vw;
		left: 6%;
		margin-top: -6.6rem;
	}
}

@media screen and (max-width: 899px) {
	#product {
		padding-bottom: 70px;
	}



	#product .head .txt {
		font-size: 14vw;
		margin-top: -2rem;
		margin-bottom: 2rem;
		left: 10%;
	}
}

/* List */
#product .itemListArea {
	left: calc(50% - 600px);
	position: relative;
	max-width: 1200px;
}

#product .itemListArea .itemList {
	--gap: 20px;
	--clmNum: 4;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: var(--gap);
}

#product .itemListArea .itemList .item {
	width: calc( ( 100% - ( var(--gap) * ( var(--clmNum) - 1 ) ) ) / var(--clmNum) );
	margin-bottom: 3rem;
}

#product .itemListArea .itemList .itemArea {
	width: 100%;
}

#product .item .itemArea .ph img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 20px;
}

#product .item .item-txtArea {
	text-align: left;
	margin-top: 5%;
}

#product .item .item-txtArea .name {
	font-size: 26px;
	color: #755233;
}

#product .item .item-txtArea .price .en {
	font-size: 22px;
}

#product .item .item-txtArea .price .small .en {
	font-size: calc( 22px * var(--small-ratio) );
}

@media screen and (max-width: 1199px) {
	#product .itemListArea {
		left: 5%;
		position: relative;
		width: calc(100% - 10%);
	}

	#product .itemListArea .itemList {
		--gap: 20px;
		--clmNum: 3;;
	}
}

@media screen and (max-width: 1099px) {}

@media screen and (max-width: 899px) {
	#product .item .item-txtArea .name {
		font-size: 1.4rem;
	}

	#product .itemListArea .itemList {
		--gap: 20px;
		--clmNum: 2;
	}
}

/* pagenation */
#product .product-pagenation .arrow .prev {
	display: flex;
	justify-content: center;
	width: 5rem;
	height: 5rem;
}

#product .product-pagenation .prev {
	left: 45px;
}

#product .product-pagenation .arr {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

#product .product-pagenation .prev .arr:after {
	content: "";
	position: absolute;
	top: 60%;
	left: 6px;
	width: 24px;
	height: 2px;
	background: #000000;
	transform: translateY(-50%);
}

#product .product-pagenation .prev .arr:before {
	width: 14px;
	height: 2px;
	bottom: 0;
	top: 22px;
	left: -5px;
	content: "";
	position: absolute;
	border-radius: 9999px;
	background-color: #000000;
	transform: rotate(135deg);
	transform-origin: calc(100% - 1px) 50%;
}

#product .product-pagenation .next .arr:after {
	content: "";
	position: absolute;
	top: 60%;
	left: 6px;
	width: 24px;
	height: 2px;
	background: #000000;
	transform: translateY(-50%);
}

#product .product-pagenation .next .arr:before {
	width: 14px;
	height: 2px;
	bottom: 0;
	top: 22px;
	left: 15px;
	content: "";
	position: absolute;
	border-radius: 9999px;
	background-color: #000000;
	transform: rotate(45deg);
	transform-origin: calc(100% - 1px) 50%;
}

#product .product-pagenation {
	margin-block-start: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .8rem
}

#product .product-pagenation .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: #000;
	text-align: center;
	line-height: 1;
	width: 5rem;
	height: 5rem;
	transition: background-color .2s cubic-bezier(0.25, 1, 0.5, 1), color .2s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: background-color, color
}

#product .product-pagenation .page-numbers.current {
	background-color: #745F4D;
	color: #FEECDB;
}

#product .product-pagenation a:hover {
	background-color: #745F4D;
	color: #FEECDB;
	opacity: 1;
}

#product .product-pagenation .arr:hover::before,
#product .product-pagenation .arr:hover::after {
	background: #FEECDB;
}

@media screen and (max-width: 899px) {
	#product .product-pagenation .page-numbers {
		width: 4rem;
		height: 4rem;
	}
}