
.product {
	/* margin: 80px 0 0; */
	background-color: #EDE6E0;
	position: relative;
}

.product__bg1 {
	position: absolute;
	top: -87px;
	right: -10px;
	width: 223px;
	height: 114px;
}

/* .product::after {
	content: '';
	position: absolute;
	bottom: -213px;
	left: -10px;
	width: 323px;
	height: 334px;
	background-image: url('../img/product_bg2.png');
	background-repeat: no-repeat;
	background-size: contain;
} */

.product__inner {
	padding: 96px 10px;
	max-width: 1028px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.product__list {
	margin: 56px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}

.product__list__li {
	width: calc(33% - 16px);
}

.product__list__li__text {
	margin-top: 10px;
	font-weight: 600;
	line-height: 1.5;
	color: #333;
}

.product__btn {
	margin-top: 32px;
}


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

	.product__inner {
		padding: 64px 20px;
	}

	.product::before {
        top: -62px;
        right: -25px;
        width: 223px;
        height: 114px;
    }

	.product::after {
        bottom: -104px;
        left: 0px;
        width: 164px;
        height: 169px;
    }

	.product__list {
		flex-direction: column;
	}

	.product__list__li {
		width: 100%;
	}

	.product__list__li__text {
		margin-top: 10px;
	}
}


.product__title {
	font-size: 20px;
    font-weight: 700;
    text-align: left;
	margin-bottom: 40px;
}

.product__detailimg {
	margin-bottom: 20px;
}

.product__contents {
	display: flex;
}

.product__img {
	width: 50%;
}

.product__detail {
	width: 50%;
	padding-left: 20px;
}

.product__contents {
	text-align: left;
	margin-top: 60px;
}

.product__price {
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
}

.product__explanation {
	margin-top: 20px;
	line-height: 1.5;
}

.product__shopping {
	margin-top: 40px;
}

@media screen and (max-width:760px) {
	.product__contents {
		flex-direction: column;
		gap: 20px;
	}

	.product__img {
		width: 100%;
	}
	
	.product__detail {
		width: 100%;
		padding-left: 0;
	}
}