@charset "UTF-8";

.single-product_container {
	padding-top: 170px;
	padding-bottom: 100px;
	background-image: url("../img/fresh.png");
	background-repeat: no-repeat;
	background-position-x: -2%;
	background-position-y: 70%;
}

.product-post_content {
	display: flex;
	max-width: 1000px;
	width: 90%;
	margin: auto;
	margin-top: 20px;
	padding-top: 30px;
	padding-bottom: 36px;
	border-top: 2px solid #72522d;
	border-bottom: 2px solid #72522d;
	letter-spacing: 0.05em;
	column-gap: 26px;
}

.images_content {
	max-width: 450px;
	width: 100%;
}

.main-image_container img {
	display: none;
	width: 100%;
	opacity: 0;
	transition: all 0.3s;
}

.main-image_container img.is_active {
	display: block;
	animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.small-image-list {
	display: flex;
	margin-top: 20px;
	column-gap: 10px;
}

.small-image-item {
	width: calc(100% / 3);
}

.small-image-item img {
	max-width: 100%;

	object-fit: cover;
}

.post-detail_content {
	width: 100%;
}

.product-name_container {
	padding-bottom: 36px;
	border-bottom: 1px solid #ff8c05;
}

.product-category {
	padding: 6px 28px 8px;
	border: 2px solid #72522d;
	border-radius: 20px;
	background-color: #ffffff;
	font-weight: 700;
	font-size: 15px;
}

.product-name {
	margin-top: 15px;
	font-weight: 700;
	font-size: 25px;
}

.product-info_container {
	padding-top: 18px;
	padding-bottom: 15px;
}

.price-text {
	font-weight: 700;
	font-size: 20px;
}

.price-num {
	font-size: 29px;
}

.purchase-flex {
	display: flex;
	margin-top: 16px;
	column-gap: 5px;
	align-items: center;
}

.purchase-title {
	font-weight: 700;
}

.purchase-list {
	display: flex;
	column-gap: 20px;
}

.purchase-item {
	display: inline-block;
	width: 94px;
	padding: 5px 10px 7px;
	border: 2px solid #454545;
	border-radius: 3px;
	background-color: #ffffff;
	font-weight: 700;
	font-size: 17px;
	text-align: center;
}

.facility_wrap {
	margin-top: 24px;
}

.facility-title {
	margin-right: 16px;
}

.facility-link {
	padding-bottom: 2px;
	border-bottom: 1px solid #0027ff;
	color: #0027ff;
}

.product-detail_container {
	padding-top: 30px;
	border-top: 1px solid #72522d;
}

.product-textarea_container {
	font-size: 14px;
	line-height: 2;
}

.product-textarea_container:first-of-type {
	margin-bottom: 26px;
}

.textarea-top-title {
	margin-left: -7px;
	font-weight: 400;
}

.single_pager-nav {
	position: relative;
	max-width: 655px;
	margin: auto;
	margin-top: 20px;
}

.single_pager-list {
	display: flex;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: auto;
}

.single_back-archive {
	display: flex;
	max-width: 244px;
	margin: auto;
	padding: 20px 10px;
	border: 2px solid #72522d;
	border-radius: 30px;
	background-color: #72522d;
	color: #ffffff;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	transition: all .5s;
}

.single_back-archive:hover {
    background-color: #ffffff;
    color: #72522d;
}

.single_pager-item {
	width: 132px;
	padding-bottom: 10px;
	text-align: center;
}

.single_pager-item.single_pager-prev {
	background-image: url("../img/back_arrow.png");
	background-repeat: no-repeat;
	background-position-y: bottom;
	background-size: 100%;
}

.single_pager-item.single_pager-next {
	margin-left: auto;
	background-image: url("../img/next_arrow.png");
	background-repeat: no-repeat;
	background-position-y: bottom;
	background-size: 100%;
}

.single_pager-item a {
	color: #72522d;
	font-size: 15px;
}

@media screen and (max-width: 767px) {
	.single-product_container {
		background-image: none;
	}
	.product-post_content {
		padding-bottom: 18px;
		flex-direction: column;
		align-items: center;

		row-gap: 36px;
	}
	.product-detail_container {
		padding-top: 18px;
	}
	.single_pager-nav {
		width: calc(100% - 60px);
	}
	.single_pager-list {
		position: static;
		transform: none;
	}
	.single_back-archive {
		margin-top: 16px;
	}
}
