@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");


/* 초기화 */
body * {font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;}
html {overflow-y:scroll; overflow-x: hidden;}
body {padding:0;margin:0; overflow-x: hidden;}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
ul, dl,dt,dd {margin:0;padding:0;list-style:none}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle;font-size:1em}
input, button {margin:0;padding:0;font-family:inherit;font-size:1em}
input[type="submit"] {cursor:pointer}
button {cursor:pointer}
textarea, select {font-family:inherit;font-size:1em}
select {margin:0}
p {margin:0;padding:0;word-break:keep-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none;cursor:pointer}
.placeholdersjs {color:#aaa !important}
img {max-width: 100%;}

*, :after, :before {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

input[type=text],input[type=password], textarea {
	-webkit-transition:all 0.30s ease-in-out;
	-moz-transition:all 0.30s ease-in-out;
	-ms-transition:all 0.30s ease-in-out;
	-o-transition:all 0.30s ease-in-out;
	outline:none;
}

:root {
	font-size: 10px;
}

.img-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.img-wrap .full-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ellipsis2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.inner-wrap {
	width: 95%;
	margin: 0 auto;
	max-width: 1400px;
}

@media all and (max-width: 1300px) {
	:root {
		font-size: 9px;
	}
}

@media all and (max-width: 900px) {
	:root {
		font-size: 8px;
	}
}

@media all and (max-width: 600px) {
	:root {
		font-size: 7.5px;
	}
}


/* header */
header {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	height: 85px;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #efe7e1;
	transition: top 0.5s;
}

header .inner-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

header .open-menu {
	display: none;
}

header .left-area {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 55px;
} 

header ul.main-menu {
	display: flex;
	gap: 50px;
}

header ul.main-menu li a {
	color: #1d1d1d;
	font-weight: 500;
	font-size: 1.6rem;
}

header ul.user-menu {
	display: flex;
	gap: 20px;
}

header ul.user-menu li a {
	color: #6d6d6d;
	font-weight: 500;
	font-size: 1.6rem;
}

.fk-header {
	width: 100%;
	height: 135px;
	transition: height 0.5s;
}

.mobile-menu {
	display: none;
}

.top-banner {
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 100;
	border-bottom: 1px solid #efe7e1;
	transition: top 0.5s;
}

.top-banner .inner-wrap {
	position: relative;
	height: 100%;
	max-width: 1920px;
	width: 100%;
}

.top-banner .close-top-bn {
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
}

.top-banner .top-bn-wrap {
	width: 100%;
	height: 100%;
}

.top-banner .top-bn-wrap .img-wrap {
	width: 100%;
	height: 100%;
}

.top-banner.hide {
	top: -50px;
}

.hd.hide {
	top: 0;
}

.fk-header.hide {
	height: 85px;
}

@media all and (max-width: 1300px) {
	header .left-area {
		gap: 40px;
	} 

	header ul.main-menu {
		gap: 30px;
	}

	header ul.user-menu {
		gap: 15px;
	}
}

@media all and (max-width: 900px) {
	header {
		height: 70px;
	}
	
	header .inner-wrap {
		justify-content: center;
	}

	header h1 a img {
		width: 80px;
	}

	header ul.main-menu {
		display: none;
	}

	header ul.user-menu {
		display: none;
	}
	
	.fk-header {
		height: 120px;
	}
	
	header .open-menu {
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 20px;
	}
	
	header .open-menu img {
		width: 25px;
	}
	
	.mobile-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7);
		z-index: 200;
		display: none;
	}
	
	.mobile-menu.active {
		display: block;
	}
	
	.mobile-menu .close-menu {
		position: fixed;
		top: 10px;
		left: 310px;
	}
	
	.mobile-menu .close-menu img {
		width: 20px;
	}
	
	.mobile-menu .menu-box {
		width: 300px;
		height: 100%;
		background: #fff;
	}
	
	.mobile-menu .menu-box .top-logo {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 70px
	}
	
	.mobile-menu .menu-box .top-logo img {
		width: 80px;
	}

	.mobile-menu .menu-box .main-menu {
		border-top: 1px solid #eee;
		background: #f5f5f5;
	}
	
	.mobile-menu .menu-box .main-menu li {
		border-bottom: 1px solid #eee;
	}
	
	.mobile-menu .menu-box .main-menu li a {
		display: block;
		padding: 15px 20px;
		font-size: 2rem;
		color: #1d1d1d;
		font-weight: 500;
	}
	
	.mobile-menu .menu-box .user-menu {
		padding: 0 20px;
		display: flex;
		flex-direction: column;
		gap: 15px;
		margin-top: 20px;
	}
	
	.mobile-menu .menu-box .user-menu li a {
		font-size: 1.8rem;
		color: #6d6d6d;
		font-weight: 500;
	}
	
	.fk-header.hide {
		height: 70px;
	}
}

@media all and (max-width: 600px) {
	header {
		top: 40px;
		height: 55px;
	}
	
	header .inner-wrap {
		justify-content: center;
	}

	header h1 a img {
		width: 70px;
	}

	.fk-header {
		height: 95px;
	}
	
	header .open-menu img {
		width: 20px;
	}
	
	.top-banner {
		height: 40px;
	}
	
	.top-banner.hide {
		top: -40px;
	}

	.fk-header.hide {
		height: 55px;
	}
}


/* footer */
footer {
	background: #0b0c0f;
	padding: 45px 0 55px;
}

footer .ft-link {
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
}

footer .ft-link li a {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.8rem;
}

footer .info {
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 1.375;
}

footer .info span {
	margin-right: 15px;
	word-break: keep-all;
}

footer .copy {
	color: #ffffff;
	font-size: 1.6rem;
	line-height: 1.375;
	margin-top: 30px;
}

@media all and (max-width: 900px) {
	footer {
		padding: 40px 0 50px;
	}

	footer .ft-link {
		margin-bottom: 30px;
	}

	footer .info span {
		margin-right: 10px;
	}

	footer .copy {
		margin-top: 20px;
	}
}

@media all and (max-width: 600px) {
	footer {
		padding: 30px 0 90px;
	}

	footer .ft-link {
		gap: 15px;
	}
}


/* main-visual */
.main-visual {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto 50px;
	overflow: hidden;
}

.main-visual ul li a {
	width: 100%;
	aspect-ratio: 1920 / 532;
}

@media all and (max-width: 900px) {
	.main-visual ul li a {
		aspect-ratio: 15 / 6;
	}
}

@media all and (max-width: 600px) {
	.main-visual {
		margin: 0 auto 40px;
	}
}


/* main-intro */
.main-title {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 20px;
}

.main-intro {
	margin-bottom: 100px;
}

.main-intro .main-title {
	text-align: center;
	margin-bottom: 10px;
}

.main-intro .main-text {
	text-align: center;
	color: #7a7979;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 90px;
}

.main-intro .intro-list {
	display: flex;
	justify-content: center;
}

.main-intro .intro-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	width: 20%;
}

.main-intro .intro-list li img {
	max-width: 50%;
}

.main-intro .intro-list li p {
	color: #333;
	font-size: 1.8rem;
	font-weight: 500;
}

@media all and (max-width: 1300px) {
	.main-intro .main-text {
		margin-bottom: 70px;
	}
}

@media all and (max-width: 900px) {
	.main-intro .main-text {
		margin-bottom: 50px;
	}
}

@media all and (max-width: 600px) {
	.main-intro {
		margin-bottom: 80px;
	}

	.main-intro .main-text {
		margin-bottom: 30px;
	}

	.main-intro .intro-list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px 0;
	}

	.main-intro .intro-list li {
		width: 33%;
	}
}


/* main-portfolio */
.main-portfolio {
	margin-bottom: 120px;
}

.main-portfolio .inner-wrap {
	position: relative;
}

.main-portfolio .portfolio-bn {
	overflow: hidden;
}

.main-portfolio .portfolio-bn ul li a {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.main-portfolio .portfolio-bn ul li a .img-area {
	aspect-ratio: 327 / 260;
	border-radius: 30px;
	border: 1px solid #eee;
}

.main-portfolio .portfolio-bn ul li a .img-area img {
	object-fit: contain;
}

.main-portfolio .portfolio-bn ul li a .port-name {
	color: #272727;
	font-size: 2.2rem;
	font-weight: 500;
}

.main-portfolio .portfolio-bn ul li a .port-adr {
	color: #a2a2a2;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	gap: 5px;
	word-break: keep-all;
}

.main-portfolio .portfolio-bn ul li a .port-category {
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
	height: 20px;
	border-radius: 10px;
	padding: 0 13px;
	width: fit-content;
}

.main-portfolio .portfolio-prev {
	position: absolute;
	left: -25px;
	top: 38%;
	z-index: 10;
}

.main-portfolio .portfolio-next {
	position: absolute;
	right: -25px;
	top: 38%;
	z-index: 10;
}

@media all and (max-width: 1300px) {
	.main-portfolio .portfolio-prev {
		left: -20px;
	}
	
	.main-portfolio .portfolio-prev img {
		width: 40px;
	}

	.main-portfolio .portfolio-next {
		right: -20px;
	}
	
	.main-portfolio .portfolio-next img {
		width: 40px;
	}
}

@media all and (max-width: 900px) {
	.main-portfolio {
		margin-bottom: 100px;
	}

	.main-portfolio .inner-wrap {
		padding: 0 10px;
	}
	
	.main-portfolio .portfolio-prev {
		left: -10px;
	}
	
	.main-portfolio .portfolio-next {
		right: -10px;
	}
}

@media all and (max-width: 600px) {
	.main-portfolio {
		margin-bottom: 80px;
	}

	.main-portfolio .inner-wrap {
		padding: 0 20px;
	}

	.main-portfolio .portfolio-bn ul li a {
		gap: 10px;
	}

	.main-portfolio .portfolio-prev {
		left: 0px;
	}
	
	.main-portfolio .portfolio-next {
		right: 0px;
	}
}


/* main-product */
.main-product {
	margin-bottom: 120px;
}

.main-product .inner-wrap {
	position: relative;
}

.main-product .portfolio-bn {
	overflow: hidden;
}

.main-product ul {
	display: flex;
	gap: 30px;
}

.main-product ul li {
	flex: 0 0 calc((100% - 30px * 3) / 4);
}

.main-product ul li a {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.main-product ul li a .img-wrap {
	aspect-ratio: 327 / 260;
	border-radius: 30px;
}

.main-product ul li a .port-name {
	color: #272727;
	font-size: 2.2rem;
	font-weight: 500;
}

.main-product ul li a .port-adr {
	color: #a2a2a2;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	gap: 5px;
	word-break: keep-all;
}

.main-product ul li a .port-category {
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
	height: 20px;
	border-radius: 10px;
	padding: 0 13px;
	width: fit-content;
}

@media all and (max-width: 1300px) {
	.main-product ul {
		gap: 20px;
	}

	.main-product ul li {
		flex: 0 0 calc((100% - 20px * 2) / 3);
	}
}

@media all and (max-width: 900px) {
	.main-product {
		margin-bottom: 100px;
	}

	.main-product .inner-wrap {
		padding: 0 10px;
	}

	.main-product ul li {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media all and (max-width: 600px) {
	.main-product {
		margin-bottom: 80px;
	}

	.main-product .inner-wrap {
		padding: 0 20px;
	}
	
	.main-product ul {
		gap: 30px;
		flex-direction: column;
		align-items: flex-start
	}

	.main-product ul li {
		flex: 0 0 100%;
		width: 100%;
	}

	.main-product ul li a {
		gap: 10px;
	}
}


/* main-product */
.main-product {
	margin-bottom: 120px;
}

.main-product .product-top {
	margin-bottom: 35px;
}

.main-product .product-top .product-list {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}

.main-product .product-list li {
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid #efe7e1;
}

.main-product .product-top .product-list li {
	flex: 0 0 calc((100% - 30px * 3) / 4);
}

.main-product .product-top .product-list li .img-area {
	aspect-ratio: 328 / 260;
}

.main-product .product-list li .title-area {
	padding: 20px 25px;
	border-top: 1px solid #efe7e1;
	border-bottom: 1px solid #efe7e1;
}

.main-product .product-list li .title-area .big {
	color: #272727;
	font-size: 2.2rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.main-product .product-list li .title-area .small {
	color: #a2a2a2;
	font-size: 1.6rem;
}

.main-product .product-list li .info-area {
	padding: 15px 15px 15px 25px;
}

.main-product .product-list li .info-area .big {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #272727;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.main-product .product-list li .info-area .big a {
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
	height: 20px;
	border-radius: 10px;
	padding: 0 13px;
	width: fit-content;
}

.main-product .product-list li .info-area .small {
	color: #a2a2a2;
	font-size: 1.6rem;
}

.main-product .product-bottom .product-list li .img-area {
	aspect-ratio: 1399 / 260;
}

@media all and (max-width: 1300px) {
	.main-product .product-top {
		margin-bottom: 20px;
	}

	.main-product .product-top .product-list li {
		flex: 0 0 calc((100% - 10px * 3) / 4);
	}

	.main-product .product-list li .title-area {
		padding: 20px 10px;
	}

	.main-product .product-list li .info-area {
		padding: 15px 10px;
	}

	.main-product .product-list li .info-area .big a {
		padding: 0 10px;
	}

	.main-product .product-list li .info-area .small {
		word-break: keep-all;
	}
}

@media all and (max-width: 900px) {
	.main-product {
		margin-bottom: 100px;
	}

	.main-product .product-top .product-list {
		flex-wrap: wrap;
		gap: 20px;
	}

	.main-product .product-top .product-list li {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media all and (max-width: 600px) {
	.main-product {
		margin-bottom: 80px;
	}

	.main-product .product-top .product-list li {
		flex: 0 0 100%;
	}

	.main-product .product-top .product-list li .img-area {
		aspect-ratio: 2 / 1;
	}

	.main-product .product-list li .title-area {
		padding: 20px 15px;
	}

	.main-product .product-list li .info-area {
		padding: 15px;
	}

	.main-product .product-bottom .product-list li .img-area {
		aspect-ratio: 2 / 1;
	}
}


/* main-faq */
.main-faq {
	margin-bottom: 110px;
}

.main-faq .faq-tab {
	margin-bottom: 25px;
	display: flex;
	gap: 10px;
}

.main-faq .faq-tab li button {
	display: flex;
	background: #947a68;
	border-radius: 25px;
	height: 50px;
	padding: 0 30px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	min-width: 115px;
	border: none;
}

.main-faq .faq-tab li button.active {
	background: #16171b;
}

.main-faq .faq-list {
	border-top: 1px solid #efe7e1;
}

.main-faq .faq-list li {
	border-bottom: 1px solid #efe7e1;
}

.main-faq .faq-list li .question {
	padding: 20px 50px 20px 0;
	cursor: pointer;
	background: url(../img/faq-open.png) no-repeat right 20px center;
}

.main-faq .faq-list li.active .question {
	background: url(../img/faq-close.png) no-repeat right 20px center;
}

.main-faq .faq-list li .question p {
	color: #272727;
	font-size: 2rem;
	font-weight: 500;
	word-break: keep-all;
}

.main-faq .faq-list li .answer {
	color: #272727;
	font-size: 1.6rem;
	padding-bottom: 20px;
	display: none;
}

.main-faq .faq-list li.active .answer {
	display: block;
}

@media all and (max-width: 900px) {
	.main-faq .faq-tab li button {
		height: 40px;
		padding: 0 20px;
		min-width: 100px;
	}

	.main-faq .faq-list li .question {
		background: url(../img/faq-open.png) no-repeat right 10px center;
	}

	.main-faq .faq-list li.active .question {
		background: url(../img/faq-close.png) no-repeat right 10px center;
	}
}

@media all and (max-width: 600px) {
	.main-faq {
		margin-bottom: 80px;
	}

	.main-faq .faq-tab {
		margin-bottom: 20px;
		flex-wrap: wrap;
	}
	
	.main-faq .faq-tab li {
		flex: 0 0 calc((100% - 10px) / 2);
	}

	.main-faq .faq-tab li button {
		height: 35px;
		padding: 0 15px;
	}

	.main-faq .faq-list li .question {
		padding: 15px 40px 15px 0;
		background-size: 12px;
	}

	.main-faq .faq-list li.active .question {
		background-size: 12px;
	}
}


/* 로그인 */
.login-page {
	width: 90%;
	margin: 240px auto 300px;
	max-width: 390px;
}

.login-page .sns-login li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	color: #16171b;
	font-weight: 500;
	font-size: 1.6rem;
	border-radius: 5px;
	gap: 15px;
}

.login-page .sns-login li a.kakao {
	background: #fee500;
}

.login-page .or {
	margin: 30px 0;
	text-align: center;
	font-size: 1.6rem;
	color: #16171b;
}

.login-page .form-area .gray-box {
	display: block;
	width: 100%;
	height: 35px;
	color: #16171b;
	font-weight: 500;
	font-size: 1.6rem;
	border: 1px solid #d3d3d3;
	padding: 0 15px;
}

.login-page .form-area .gray-box + .gray-box {
	margin: 15px 0 20px;
}

.login-page .form-area .auto-login {
	margin-bottom: 30px;
}

.login-page .form-area .auto-login label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.login-page .form-area .auto-login label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -9999999999;
	left: -999999999px;
}

.login-page .form-area .auto-login label .icon {
	width: 17px;
	height: 17px;
	background: url(../img/check-off.png) no-repeat center center;
	background-size: 100% auto;
}

.login-page .form-area .auto-login label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.login-page .form-area .auto-login label input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
	background-size: 100% auto;
}

.login-page .form-area .login-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 45px;
	background: #16171b;
	color: #fff;
	font-weight: 500;
	font-size: 1.6rem;
	border-radius: 5px;
	margin-bottom: 30px;
}

.login-page .login-link {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.login-page .login-link li {
	position: relative;
}

.login-page .login-link li:first-child:after {
	content: 'I';
	color: #797979;
	font-size: 1.6rem;
	position: absolute;
	right: -15px;
}

.login-page .login-link li a {
	color: #797979;
	font-size: 1.6rem;
}

.find-popup .popup-box .popup-tit {
	padding: 15px;
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	border-bottom: 1px solid #cdcdcd;
	margin-bottom: 1.5rem;
}

.find-popup .popup-box .id-find1 {
	padding: 0 15px;
}

.find-popup .popup-box .input-flex {
	display: flex;
	position: relative;
	justify-content: space-between;
}

.find-popup .popup-box .input-flex .gray-box {
	border-radius: 5px;
	border: 1px solid #cdcdcd;
	background: #fff;
	height: 50px;
	font-size: 1.6rem;
	padding: 0 10px;
	width: calc(100% - 85px);
}

.find-popup .popup-box .input-flex .gray-box-full {
	width: 100%;
}

.find-popup .popup-box .input-flex select.gray-box {
	width: 80px;
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	background: #fff url(../img/select-arrow.png) no-repeat right 10px center;
	color: #333;
}

.find-popup .popup-box .com-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	border-radius: 5px;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;	
	background: #16171b;
	border: none;
	width: 100%;
	margin-top: 10px;
}

.find-popup .popup-box .input-flex .time {
	position: absolute;
	font-size: 1.4rem;
	color: #ff4469;
	top: 50%;
	transform: translateY(-50%);
	right: 95px;
}

.find-popup .popup-box .input-flex .send-btn {
	width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    background: #333333;
}

.find-popup .popup-box .pw-find1 {
	padding: 0 15px;
	margin-top: 10px;
}

.find-popup .popup-box .pw-info {
	text-align: center;
	color: #909090;
	font-size: 1.6rem;
	margin-bottom: 15px;
}

.find-popup .popup-box .pw-find2 {
	padding: 0 15px;
	margin-top: 10px;
	display: none;
}

.find-popup .popup-box .pw-find2.active {
	display: block;
}

.find-popup .popup-box .pw-find2 .input-flex1 {
	margin-bottom: 15px;
}

.find-popup .popup-box .pw-find2 .input-flex2 {
	margin-bottom: 5px;
}

.find-popup .popup-box .pw-find2 .input-flex3 {
	margin-bottom: 10px;
}

.find-popup .popup-box .pw-find2 .show-icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1rem;
	width: 18px;
	height: 18px;
	display: block;
	background: url(../img/pw-show.png) no-repeat center center;
	background-size: 100% auto;
}

.find-popup .popup-box .pw-find2 .show-icon.active {
	background: url(../img/pw-hide.png) no-repeat center center;
	background-size: 100% auto;
}

.find-popup .popup-box .change-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	border-radius: 5px;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;	
	background: #16171b;
	border: none;
	width: 100%;
	margin-top: 10px;
}				
	
@media all and (max-width: 600px) {	
	.login-page {
		margin: 100px auto 120px;
	}

	.login-page .sns-login li a {
		height: 45px;
		gap: 10px;
	}
	
	.login-page .sns-login li a.kakao img {
		width: 20px;
	}

	.login-page .or {
		margin: 20px 0;
	}

	.login-page .form-area .gray-box {
		padding: 0 10px;
	}

	.login-page .form-area .gray-box + .gray-box {
		margin: 5px 0 10px;
	}

	.login-page .form-area .auto-login {
		margin-bottom: 20px;
	}

	.login-page .form-area .login-btn {
		height: 40px;
		margin-bottom: 15px;
	}

	.login-page .login-link {
		display: flex;
		justify-content: center;
		gap: 20px;
	}

	.login-page .login-link li {
		position: relative;
	}

	.login-page .login-link li:first-child:after {
		right: -10px;
	}

	.find-popup .popup-box .input-flex .gray-box {
		height: 40px;
	}
	
	.find-popup .popup-box .com-btn {
		height: 40px;
	}

	.find-popup .popup-box .change-btn {
		height: 40px;
	}	
}


/* 회원가입 - 약관동의 */
.join-page {
	width: 95%;
	max-width: 670px;
	padding: 100px 0 200px;
	margin: 0 auto;
	min-height: calc(100dvh - 400px);
}

.join-page .join-title {
	font-weight: 500;
	color: #272727;
	font-size: 2.8rem;
	margin-bottom: 55px;
}

.join-page .agree-wrap {
	border-bottom: 1px solid #cdcdcd;
}

.join-page .agree-top {
	display: flex;
	align-items: center;
	gap: 0 10px;
	height: 55px;
}

.join-page .agree-wrap .agree-top {
	cursor: pointer;
	background: url(../img/faq-open.png) no-repeat right 10px center;
}

.join-page .agree-wrap .agree-top.active {
	background: url(../img/faq-close.png) no-repeat right 10px center;
}

.join-page .agree-top label {
	cursor: pointer;
}

.join-page .agree-top label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999;
	left: -999999999px;
}

.join-page .agree-top label span {
	display: block;
	width: 17px;
    height: 17px;
    background: url(../img/check-off.png) no-repeat center center;
    background-size: 100% auto;
}

.join-page .agree-top label input:checked + span {
	background: url(../img/check-on.png) no-repeat center center;
    background-size: 100% auto;
}

.join-page .agree-top .agree-title {
	font-size: 1.8rem;
	color: #272727;
}

.join-page .agree-bottom {
	display: none;
	padding: 1.5rem 3rem 3rem 3rem;
	font-size: 1.6rem;
	color: #333333;
}

.join-page .agree-top.active + .agree-bottom {
	display: block;
}

.join-page .all-agree {
	margin: 20px 0 40px;
}

.join-page .join-btn {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.join-page .join-btn li {
	width: 100%;
}

.join-page .join-btn li a,
.join-page .join-btn li button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45px;
	width: 100%;
	border-radius: 5px;
	font-size: 1.86rem;
	font-weight: 500;
	border: none;
}

.join-page .join-btn li a.black,
.join-page .join-btn li button.black {
	background: #16171b;
	color: #fff;
}

.join-page .join-btn li a.white,
.join-page .join-btn li button.white {
	color: #272727;
	border: 1px solid #4b4b4b;
	background: #fff;
}

@media all and (max-width: 900px) {
	.join-page {
		padding: 80px 0 100px;
		min-height: calc(100dvh - 340px);
	}

	.join-page .join-title {
		margin-bottom: 40px;
	}
}

@media all and (max-width: 600px) {
	.join-page {
		padding: 40px 0 80px;
		min-height: calc(100dvh - 305px);
	}

	.join-page .join-title {
		margin-bottom: 30px;
	}

	.join-page .all-agree {
		margin: 10px 0 30px;
	}

	.join-page .join-btn {
		gap: 10px;
	}
}


/* 회원가입 - 정보입력 */
.join-page .form-area {
	margin-bottom: 80px;
}

.join-page .form-area .form-tit {
	font-size: 2.4rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}

.join-page .form-area .form-line {
	display: flex;
}

.join-page .form-area .form-line + .form-line {
	margin-top: 25px;
}

.join-page .form-area .form-line .line-tit {
	font-size: 1.6rem;
	color: #797979;
	width: 180px;
	height: 35px;
	display: flex;
	align-items: center;
}

.join-page .form-area .form-line .form-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: calc(100% - 180px);
}

.join-page .form-area .form-line .form-wrap .form-flex {
	display: flex;
	position: relative;
	width: 100%;
	gap: 10px;
}

.join-page .form-area .form-line .form-wrap .gray-box {
	height: 35px;
	border: 1px solid #d3d3d3;
	display: flex;
	align-items: center;
	padding: 0 10px;
	font-size: 1.6rem;
	color: #272727;
	width: calc(100% - 135px);
}

.join-page .form-area .form-line .form-wrap .form-flex .black-btn {
	width: 125px;
	background: #16171b;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 5px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.join-page .form-area .form-line .form-wrap .form-flex .time {
	color: #dd0000;
	font-size: 1.6rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 145px;
}

.join-page .form-area .form-line .form-wrap .form-noti {
	color: #b9b9b9;
	font-size: 1.6rem;
}

.join-page .form-area .form-line .form-wrap .form-noti a {
	color: #e50000;
}

.join-page .form-area .form-line .form-wrap .form-noti .red {
	color: #e50000;
}

.join-page .form-area .form-line .form-wrap .radio-wrap {
	display: flex;
	gap: 30px;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label {
	display: flex;
	align-items: center;
	height: 35px;
	cursor: pointer;
	gap: 8px;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999999;
	left: -999999999px;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label .icon {
	display: block;
	width: 19px;
	height: 19px;
	background: url(../img/radio-off.png) no-repeat center center;
	background-size: 100% auto;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label input:checked + .icon {
	background: url(../img/radio-on.png) no-repeat center center;
	background-size: 100% auto;
}

.join-page .form-area .form-line .form-wrap .radio-wrap label input:checked + .icon + .txt {
	color: #272727;
}

.join-page .form-area .form-line .form-wrap .file-input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999999;
	left: -999999999px;
}

.join-page .form-area .same-id label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.join-page .form-area .same-id label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -9999999999;
	left: -999999999px;
}

.join-page .form-area .same-id label .icon {
	width: 17px;
	height: 17px;
	background: url(../img/check-off.png) no-repeat center center;
	background-size: 100% auto;
}

.join-page .form-area .same-id label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.join-page .form-area .same-id label input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
	background-size: 100% auto;
}

@media all and (max-width: 900px) {
	.join-page .form-area {
		margin-bottom: 60px;
	}

	.join-page .form-area .form-tit {
		margin-bottom: 20px;
	}

	.join-page .form-area .form-line .line-tit {
		width: 140px;
	}

	.join-page .form-area .form-line .form-wrap {
		width: calc(100% - 140px);
	}
}

@media all and (max-width: 600px) {
	.join-page .form-area {
		margin-bottom: 40px;
	}

	.join-page .form-area .form-line {
		flex-direction: column;
	}

	.join-page .form-area .form-line .line-tit {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}

	.join-page .form-area .form-line .form-wrap {
		gap: 5px;
		width: 100%;
	}

	.join-page .form-area .form-line .form-wrap .form-flex {
		gap: 5px;
	}

	.join-page .form-area .form-line .form-wrap .gray-box {
		width: 100%;
	}

	.join-page .form-area .form-line .form-wrap .form-flex .black-btn {
		width: 90px;
	}
	
	.join-page .form-area .form-line .form-wrap .form-flex .gray-box {
		width: calc(100% - 95px);
	}

	.join-page .form-area .form-line .form-wrap .form-flex .time {
		right: 105px;
	}

	.join-page .form-area .form-line .form-wrap .radio-wrap {
		gap: 20px;
	}

	.join-page .form-area .form-line .form-wrap .radio-wrap label {
		gap: 5px;
	}
}


/* 회원가입 - 완료 */
.join-page .welcom {
	text-align: center;
	margin-bottom: 80px;
	margin-top: 80px;
	font-size: 2.4rem;
	font-weight: 300;
	color: #444;
	line-height: 1.5;
}

.join-page .welcom span {
	font-weight: 600;
	color: #222;
}

.join-page .main-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-radius: 10px;
	margin-bottom: 10px;
	font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
	background: #16171b;
	border: none;
}

@media all and (max-width: 600px) {
	.join-page .welcom {
		margin-bottom: 60px;
		margin-top: 60px;
	}

	.join-page .main-btn {
		height: 50px;
	}
}


/* 포트폴리오 */
.portfolio-page {
	padding: 80px 35px 100px;
}

.portfolio-page .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 25px;
}

.portfolio-page .portfolio-tab {
	margin-bottom: 40px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.portfolio-page .portfolio-tab li a {
	display: flex;
	background: #947a68;
	border-radius: 25px;
	height: 50px;
	padding: 0 30px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 500;
	min-width: 115px;
}

.portfolio-page .portfolio-tab li a.active {
	background: #16171b;
}

.portfolio-page .portfolio-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 40px;
}

.portfolio-page .portfolio-list ul li {
	flex: 0 0 calc((100% - 40px * 3) / 4);
	min-width: 0;
}

.portfolio-page .portfolio-list ul li a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.portfolio-page .portfolio-list ul li a .img-wrap {
	aspect-ratio: 263 / 208;
	border-radius: 30px;
	margin-bottom: 30px;
	border: 1px solid #eee;
}

.portfolio-page .portfolio-list ul li a .img-wrap img {
	object-fit: contain;
}

.portfolio-page .portfolio-list ul li a .port-name {
	color: #272727;
	font-size: 2.2rem;
	font-weight: 500;
}

.portfolio-page .portfolio-list ul li a .port-adr {
	color: #a2a2a2;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	gap: 5px;
	word-break: keep-all;
}

.portfolio-page .portfolio-list ul li a .port-category {
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
	height: 20px;
	border-radius: 10px;
	padding: 0 13px;
	width: fit-content;
}

.portfolio-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.portfolio-popup.active {
	display: flex;
	height: 100%;
}

.portfolio-popup .popup-box {
	background: #fff;
	width: 1666px;
	max-width: 90%;
	max-height: 90vh;
	padding: 20px 0 60px;
	position: relative;
}

.portfolio-popup .popup-box .close-popup {
	position: absolute;
	top: 20px;
	right: 20px;
}

.portfolio-popup .popup-box .popup-top {
	padding: 0 30px;
	margin-bottom: 35px;
}

.portfolio-popup .popup-box .popup-top .port-name {
	color: #272727;
	font-size: 2.5rem;
	font-weight: 500;
	margin-bottom: 10px;
}

.portfolio-popup .popup-box .popup-top .port-adr {
	color: #a2a2a2;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	gap: 5px;
	word-break: keep-all;
}

.portfolio-popup .popup-box .bn-area {
	position: relative;
}

.portfolio-popup .popup-box .bn-area .portfolio-bn {
	overflow: hidden;
	margin: 0 auto;
	max-width: 80%;
}

.portfolio-popup .popup-box .bn-area .portfolio-bn ul li {
	aspect-ratio: 3 / 2;
	border-radius: 20px;
	max-width: 900px;
	max-height: 600px;
	margin: 0 auto;
}

.portfolio-popup .popup-box .bn-area .portfolio-prev {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.portfolio-popup .popup-box .bn-area .portfolio-next {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

@media all and (max-width: 1300px) {
	.portfolio-page {
		padding: 60px 30px 100px;
	}

	.portfolio-page .portfolio-tab li a {
		height: 45px;
	}

	.portfolio-page .portfolio-list ul {
		gap: 50px 30px;
	}

	.portfolio-page .portfolio-list ul li {
		flex: 0 0 calc((100% - 30px * 2) / 3);
	}

	.portfolio-page .portfolio-list ul li a .img-wrap {
		margin-bottom: 10px;
	}
}

@media all and (max-width: 900px) {
	.portfolio-page {
		padding: 50px 20px 80px;
	}

	.portfolio-page .portfolio-tab {
		margin-bottom: 30px;
	}

	.portfolio-page .portfolio-tab li a {
		height: 40px;
		padding: 0 25px;
		min-width: 100px;
	}

	.portfolio-page .portfolio-list ul {
		gap: 40px 25px;
	}

	.portfolio-page .portfolio-list ul li {
		flex: 0 0 calc((100% - 25px) / 2);
	}

	.portfolio-page .portfolio-list ul li a .img-wrap {
		margin-bottom: 5px;
	}

	.portfolio-popup .popup-box .popup-top {
		margin-bottom: 30px;
	}
}

@media all and (max-width: 600px) {
	.portfolio-page {
		padding: 40px 15px 60px;
	}

	.portfolio-page .page-tit {
		margin-bottom: 20px;
	}

	.portfolio-page .portfolio-tab {
		margin-bottom: 20px;
		gap: 5px;
	}

	.portfolio-page .portfolio-tab li a {
		height: 35px;
		padding: 0 20px;
		min-width: auto;
	}

	.portfolio-page .portfolio-list ul {
		gap: 30px;
	}

	.portfolio-page .portfolio-list ul li {
		flex: 100%;
	}

	.portfolio-popup .popup-box {
		padding: 30px 0 40px;
	}

	.portfolio-popup .popup-box .close-popup {
		top: 15px;
		right: 15px;
	}

	.portfolio-popup .popup-box .popup-top {
		padding: 0 20px;
		margin-bottom: 20px;
	}

	.portfolio-popup .popup-box .bn-area .portfolio-bn {
		width: 85%;
	}

	.portfolio-popup .popup-box .bn-area .portfolio-prev {
		left: 5px;
		z-index: 10;
	}

	.portfolio-popup .popup-box .bn-area .portfolio-next {
		right: 5px;
		z-index: 10;
	}
}


/* 상품소개 */
.goods-page {
	padding: 80px 35px 100px;
}

.goods-page .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 25px;
}

.goods-page .product-top {
	margin-bottom: 35px;
}

.goods-page .product-top .product-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	/* justify-content: space-between; */
}

.goods-page .product-list li {
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid #efe7e1;
}

.goods-page .product-top .product-list li {
	flex: 0 0 calc((100% - 30px * 3) / 4);
}

.goods-page .product-top .product-list li .img-area {
	aspect-ratio: 328 / 260;
}

.goods-page .product-list li .title-area {
	padding: 20px 25px;
	border-top: 1px solid #efe7e1;
}

.goods-page .product-list li .title-area .big {
	color: #272727;
	font-size: 2.2rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.goods-page .product-list li .title-area .small {
	color: #a2a2a2;
	font-size: 1.6rem;
}

.goods-page .product-list li .info-area {
	padding: 15px 15px 15px 25px;
}

.goods-page .product-list li .info-area .big {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #272727;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.goods-page .product-list li .info-area .big a {
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
	height: 20px;
	border-radius: 10px;
	padding: 0 13px;
	width: fit-content;
}

.goods-page .product-list li .info-area .small {
	color: #a2a2a2;
	font-size: 1.6rem;
}

.goods-page .product-bottom .product-list li .img-area {
	aspect-ratio: 1399 / 260;
}

@media all and (max-width: 1300px) {
	.goods-page {
		padding: 80px 20px 100px;
	}

	.goods-page .product-top {
		margin-bottom: 20px;
	}

	.goods-page .product-top .product-list li {
		flex: 0 0 calc((100% - 10px * 3) / 4);
	}

	.goods-page .product-list li .title-area {
		padding: 20px 10px;
	}

	.goods-page .product-list li .info-area {
		padding: 15px 10px;
	}

	.goods-page .product-list li .info-area .big a {
		padding: 0 10px;
	}

	.goods-page .product-list li .info-area .small {
		word-break: keep-all;
	}
}

@media all and (max-width: 900px) {
	.goods-page {
		padding: 60px 20px 80px;
	}

	.goods-page .product-top .product-list {
		flex-wrap: wrap;
		gap: 20px;
	}

	.goods-page .product-top .product-list li {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media all and (max-width: 600px) {
	.goods-page {
		padding: 40px 15px 80px;
	}

	.goods-page .product-top .product-list li {
		flex: 0 0 100%;
	}

	.goods-page .product-top .product-list li .img-area {
		aspect-ratio: 2 / 1;
	}

	.goods-page .product-list li .title-area {
		padding: 20px 15px;
	}

	.goods-page .product-list li .info-area {
		padding: 15px;
	}

	.goods-page .product-bottom .product-list li .img-area {
		aspect-ratio: 2 / 1;
	}
}


@media all and (max-width: 1300px) {
	.goods-page .product-top .product-list {
		gap: 20px;
	}

	.goods-page .product-top .product-list li {
		flex: 0 0 calc((100% - 20px * 2) / 3);
	}
}

@media all and (max-width: 900px) {
	.goods-page .product-top .product-list li {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media all and (max-width: 600px) {
	.goods-page .product-top .product-list {
		gap: 30px;
		flex-direction: column;
		align-items: flex-start;
	}

	.goods-page .product-top .product-list li {
		flex: 0 0 100%;
		width: 100%;
	}
}


/* 발주신청 */
.order-page {
	padding: 80px 35px 150px;
}

.order-page .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 25px;
}

.order-page .order-tab {
	margin-bottom: 60px;
}

.order-page .order-tab ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.order-page .order-tab ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.order-page .order-tab ul li a .img-wrap {
	border-radius: 10px;
	border: 1px solid #d0d0d0;
	width: 130px;
	height: 130px;
}

.order-page .order-tab ul li a.active .img-wrap {
	background: #eaded4;
	border-color: #eaded4;
}

.order-page .order-tab ul li a.active .img-wrap img {
	filter: brightness(0) invert(1);
}

.order-page .order-tab ul li a .txt {
	font-size: 1.8rem;
	color: #333333;
	font-weight: 500;
}

.order-page .order-cont .cont-wrap {
	display: none;
}

.order-page .order-cont .cont-wrap.active {
	display: block;
}

.order-page .order-cont .cont-wrap .cont-tit {
	font-size: 2.4rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}

.order-page .order-cont .cont-wrap .sub-tit {
	font-size: 2.2rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
	position: relative;
	padding-left: 10px;	
}

.order-page .order-cont .cont-wrap .subs + .sub-tit {
	margin-top: 70px;
} 

.order-page .order-cont .cont-wrap .sub-tit:before {
	content: '';
	width: 4px;
	height: 20px;
	border-radius: 2px;
	background: #eaded4;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.order-page .order-cont .cont-wrap .subs + .subs {
	margin-top: 35px;
}

.order-page .order-cont .cont-wrap .subs .big {
	font-size: 2rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 7px;
	padding-left: 10px;
}

.order-page .order-cont .cont-wrap .subs .middle {
	font-size: 1.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 10px;
	padding-left: 10px;
}

.order-page .order-cont .cont-wrap .subs .middle span {
	font-size: 2rem;
}

.order-page .order-cont .cont-wrap .subs .small {
	font-size: 1.8rem;
	color: #757575;
	padding-left: 10px;
	line-height: 1.33333;
}

.order-page .order-btn {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 140px;
}

.order-page .order-btn li button,
.order-page .order-btn li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 5px;
	height: 45px;
	width: 390px;
	border: none;
}

.order-page .order-btn li button.black,
.order-page .order-btn li a.black {
	background: #16171b;
	color: #fff;
}

.order-page .order-btn li button.white,
.order-page .order-btn li a.white {
	color: #272727;
	border: 1px solid #4b4b4b;
}

.order-page .order-check {
	margin-bottom: 100px;
}

.order-page .order-check ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.order-page .order-check ul li label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	cursor: pointer;
}

.order-page .order-check ul li label input {
	position: absolute;
	z-index: -99999;
	left: -999999999px;
	width: 0px;
	height: 0px;
}

.order-page .order-check ul li label .img-wrap {
	border-radius: 10px;
	border: 1px solid #d0d0d0;
	width: 130px;
	height: 130px;
}

.order-page .order-check ul li label input:checked + .img-wrap {
	background: #eaded4;
	border-color: #eaded4;
}

.order-page .order-check ul li label input:checked + .img-wrap img {
	filter: brightness(0) invert(1);
}

.order-page .order-check ul li label .txt {
	font-size: 1.8rem;
	color: #333333;
	font-weight: 500;
}

.order-page .order-state {
	margin-bottom: 60px;
}

.order-page .order-state ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.order-page .order-state ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.order-page .order-state ul li .img-wrap {
	border-radius: 10px;
	border: 1px solid #d0d0d0;
	width: 130px;
	height: 130px;
}

.order-page .order-state ul li.active .img-wrap {
	background: #eaded4;
	border-color: #eaded4;
}

.order-page .order-state ul li.active .img-wrap img {
	filter: brightness(0) invert(1);
}

.order-page .order-state ul li .txt {
	font-size: 1.8rem;
	color: #333333;
	font-weight: 500;
}

.order-page .location {
	width: 860px;
}

.order-page .location .adr-search {
	margin-bottom: 50px;
}

.order-page .location .adr-search .adr-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
}

.order-page .location .adr-search .adr-top .adr {
	font-size: 2.2rem;
	color: #272727;
	font-weight: 500;
}

.order-page .location .adr-search .adr-top button {
	font-size: 1.6rem;
	color: #fff;
	border: none;
	background: #16171b;
	border-radius: 5px;
	padding: 5px 10px;
}

.order-page .location .adr-search .map-area {
	width: 100%;
	height: 200px;
	background: #fafafa;
	margin-bottom: 20px;
}

.order-page .form-area + .form-area {
	margin-top: 50px;
}

.order-page .form-area .full-tit {
	font-size: 2.4rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 20px;
}

.order-page .form-area .form-box + .form-box {
	margin-top: 40px;
}

.order-page .form-area .form-box .form-tit {
	font-size: 2.2rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 15px;
}

.order-page .form-area .form-box .form-tit .red {
	color: #e50000;
}

.order-page .form-area .form-box .form-wrap {
	position: relative;
}

.order-page .form-area .form-box .form-wrap .gray-box {
	width: 100%;
	height: 35px;
	border: 1px solid #d3d3d3;
	font-size: 1.6rem;
	padding: 0 10px;
	color: #272727;
	background-color: #fff;
}

.order-page .form-area .form-box .form-wrap select.gray-box {
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	background: #fff url(../img/select-arrow.png) no-repeat right 15px center;
}

.order-page .form-area .form-box .form-wrap .gray-box-mg {
	margin-top: 15px;
}

.order-page .form-area .form-box .form-wrap .form-txt {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #272727;
}

.order-page .photo {
	width: 860px;
}

.order-page .form-area .form-box .select-wrap {
	width: 100%;
	min-height: 35px;
	border: 1px solid #d3d3d3;
	color: #272727;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0;
}

.order-page .form-area .form-box .select-wrap-sub {
	width: 100%;
	min-height: 35px;
	border: 1px solid #d3d3d3;
	color: #272727;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 10px;
	margin-top: -1px;
	margin-bottom: 10px;
	background: #f7f7f7;
	font-size: 1.4rem;
}

.order-page .form-area .form-box .select-wrap + .select-wrap {
	margin-top: 15px;
}

.order-page .form-area .form-box .select-wrap .select-tit {
	font-size: 1.6rem;
	color: #272727;
	padding-left: 10px;
	width: 33%;
	word-break: keep-all;
}

.order-page .form-area .form-box .select-wrap .select-ea {
	font-size: 1.6rem;
	color: #272727;
	width: 33%;
	text-align: center;
}

.order-page .form-area .form-box .select-wrap .select-ea span {
	font-weight: 600;
}

.order-page .form-area .form-box .select-wrap .select-area {
	width: 33%;
	display: flex;
	justify-content: flex-end;
	padding-right: 30px;
}

.order-page .form-area .form-box .select-wrap .select-area input {
	width: 55px;
	height: 20px;
	text-align: center;
	border: none;
	font-size: 1.8rem;
	color: #272727;
	font-weight: 600;
}

.order-page .form-area .form-box .select-wrap .select-area input[type="number"]::-webkit-outer-spin-button,
.order-page .form-area .form-box .select-wrap .select-area input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.order-page .form-area .form-box .select-wrap .select-area input[type="number"] {
  -moz-appearance: textfield;
}

.order-page .form-area .form-box .form-wrap textarea.gray-box {
	height: 200px;
	padding: 10px;
	resize: none;
}

.order-page .form-area .form-box .form-wrap .select-btn {
	cursor: pointer;
}

.order-page .form-area .form-box .form-wrap #construction_date {
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23272727' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'></rect><line x1='16' y1='2' x2='16' y2='6'></line><line x1='8' y1='2' x2='8' y2='6'></line><line x1='3' y1='10' x2='21' y2='10'></line></svg>") no-repeat right 15px center;
	background-size: 16px 16px;
	padding-right: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.order-page .form-area .form-box .form-wrap #construction_date::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
}

.order-page .total-price {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #272727;
	padding: 10px;
	width: 860px;
	height: 60px;
	border-radius: 5px;
}

.order-page .total-price .txt {
	font-size: 1.6rem;
	color: #272727;
}

.order-page .total-price .price {
	font-size: 1.6rem;
	color: #272727;
}

.order-page .total-price .price span {
	font-weight: 600;
	font-size: 2rem;
}

.calendar-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.calendar-popup.active {
	display: flex;
}

.calendar-popup .popup-box {
	display: flex;
	gap: 5px;
}

.calendar-popup .popup-box .sub-box {
	width: 390px;
	background: #fff;
}

.calendar-popup .popup-box .sub-box .box-tit {
	width: 100%;
	height: 85px;
	display: flex;
	align-items: center;
	background: #d3d3d3;
	padding-left: 30px;
	font-size: 2.2rem;
	color: #272727;
	font-weight: 500;
}

.calendar-popup .popup-box .sub-box .calendar-area {
	padding: 30px 20px 50px;
}

.calendar-popup .popup-box .sub-box .calendar-area .month {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	margin-bottom: 25px;
}

.calendar-popup .popup-box .sub-box .calendar-area .month p {
	font-size: 2.4rem;
	color: #272727;
}

.calendar-popup .popup-box .sub-box .calendar-area .calendar {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.calendar-popup .popup-box .sub-box .calendar-area .calendar .day {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	color: #5a5250;
	font-size: 2.2rem;
	cursor: pointer
}

.calendar-popup .popup-box .sub-box .calendar-area .calendar .day:has(input:checked) {
	background: #eaded4;
	color: #fff;
	border-radius: 50%;
}

.calendar-popup .popup-box .sub-box .calendar-area .calendar .day:nth-child(7n + 1) {
	color: #ee4d5a;
}

.calendar-popup .popup-box .sub-box .calendar-area .calendar .day input {
	position: absolute;
	width: 0px;
	height: 0px;
	z-index: -9999;
	left: -999999999px;
}

.calendar-popup .popup-box .sub-box .time-area {
	padding: 35px 30px 50px;
}

.calendar-popup .popup-box .sub-box .time-area .box-sub {
	font-size: 2.4rem;
	color: #272727;
	text-align: center;
	margin-bottom: 40px;
}

.calendar-popup .popup-box .sub-box .time-area .select-area + .select-area {
	margin-top: 20px;
}

.calendar-popup .popup-box .sub-box .time-area .select-area .tit {
	font-size: 1.8rem;
	color: #272727;
	margin-bottom: 10px;
	font-weight: 500;
}

.calendar-popup .popup-box .sub-box .time-area .select-area .label-area {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.calendar-popup .popup-box .sub-box .time-area .select-area .radio {
	cursor: pointer;
	font-size: 1.8rem;
	color: #8a8a8a;
}

.calendar-popup .popup-box .sub-box .time-area .select-area .radio:has(input:checked) {
	color: #272727;
	font-weight: 500;
}

.calendar-popup .popup-box .sub-box .time-area .select-area .radio input {
	position: absolute;
	width: 0px;
	height: 0px;
	z-index: -9999;
	left: -999999999px;
}

.order-page .complete {
	width: 860px;
}

.order-page .complete .com-wrap + .com-wrap {
	margin-top: 60px;
}

.order-page .complete .com-wrap .com-tit {
	font-size: 2.4rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 20px;
}

.order-page .complete .com-wrap .adr-wrap {
	display: flex;
	align-items: center;
	border: 1px solid #d3d3d3;
	padding: 20px 30px;
	gap: 15px;
	border-radius: 5px;
}

.order-page .complete .com-wrap .adr-wrap img {
	width: 30px;
}

.order-page .complete .com-wrap .adr-wrap .txt-area .big {
	font-size: 1.6rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 5px;
}

.order-page .complete .com-wrap .adr-wrap .txt-area .small {
	font-size: 1.4rem;
	color: #757575;
}

.order-page .complete .com-wrap .product-wrap {
	border: 1px solid #d3d3d3;
	padding: 20px 30px;
	border-radius: 5px;
}

.order-page .complete .com-wrap .product-wrap + .product-wrap {
	margin-top: 10px;
}

.order-page .complete .com-wrap .product-wrap .pro-tit {
	font-size: 2rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 15px;
}

.order-page .complete .com-wrap .product-wrap .pro-date {
	font-size: 1.6rem;
	color: #272727;
	margin-bottom: 15px;
}

.order-page .complete .com-wrap .product-wrap .pro-option {
	font-size: 1.6rem;
	color: #272727;
	margin-bottom: 5px;
}

.order-page .complete .com-wrap .product-wrap .pro-dot {
	font-size: 1.6rem;
	color: #757575;
	position: relative;
	padding-left: 10px;
	line-height: 1.3;
}

.order-page .complete .com-wrap .product-wrap .pro-dot:before {
	content: '-';
	left: 0;
	position: absolute;
}

.order-page .complete .com-wrap .product-wrap .pro-price {
	margin-top: 20px;
	text-align: right;
	font-size: 1.6rem;
	color: #272727;
}

.order-page .complete .com-wrap .product-wrap .pro-price span {
	font-weight: 600;
	font-size: 2rem;
}

.order-page .agree-area {
	margin-top: 40px;
}

.order-page .agree-area .agree-top {
	margin-top: 15px;
}

.order-page .agree-area .agree-top label {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.order-page .agree-area .agree-top label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999;
	left: -999999999px;
}

.order-page .agree-area .agree-top label .icon {
	display: block;
	width: 17px;
    height: 17px;
    background: url(../img/check-off.png) no-repeat center center;
    background-size: 100% auto;
}

.order-page .agree-area .agree-top label input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
    background-size: 100% auto;
}

.order-page .agree-area .agree-top label .txt {
	font-size: 1.6rem;
	color: #272727;
}

.order-page .agree-area .agree-txt {
	font-size: 1.6rem;
	color: #757575;
}

.order-page .complete-center {
	margin: 0 auto;
}

.order-page .complete .complete-icon {
	display: block;
	margin: 0 auto 20px;
	width: 100px;
}

.order-page .complete .complete-txt {
	font-size: 1.8rem;
	color: #272727;
	margin-bottom: 40px;
	text-align: center;
}

.order-page .complete .com-ment {
	border: 1px solid #d3d3d3;
	padding: 40px 30px;
	margin-bottom: 30px;
	text-align: center;
	border-radius: 5px;
}

.order-page .complete .com-ment .big {
	font-size: 2rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 5px;
}

.order-page .complete .com-ment .small {
	font-size: 1.6rem;
	color: #757575;
}

.order-page .complete .com-list {
	border: 1px solid #d3d3d3;
	padding: 20px 30px;
	border-radius: 5px;
}

.order-page .complete .com-list ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.order-page .complete .com-list li .tit {
	font-size: 1.6rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 5px;
}

.order-page .complete .com-list li .txt {
	font-size: 1.6rem;
	color: #757575;
}

@media all and (max-width: 1300px) {
	.order-page .order-tab ul {
		gap: 40px;
	}
	
	.order-page .order-check ul {
		gap: 40px;
	}
	
	.order-page .order-state ul {
		gap: 40px;
	}

	.order-page .location {
		max-width: 100%;
	}
	
	.order-page .photo {
		max-width: 100%;
	}
	
	.order-page .total-price {
		max-width: 100%;
	}
	
	.order-page .complete {
		max-width: 100%;
	}
}

@media all and (max-width: 900px) {
	.order-page {
		padding: 60px 20px 150px;
	}

	.order-page .order-tab {
		margin-bottom: 50px;
	}

	.order-page .order-tab ul {
		gap: 20px;
	}

	.order-page .order-tab ul li a .img-wrap {
		width: 90px;
		height: 90px;
	}

	.order-page .order-cont .cont-wrap .subs + .sub-tit {
		margin-top: 50px;
	} 

	.order-page .order-btn {
		margin-top: 100px;
	}
	
	.order-page .order-btn li {
		flex: 0 0 calc((100% - 20px) / 2);
	}

	.order-page .order-btn li button,
	.order-page .order-btn li a {
		width: 100%;
	}
	
	.order-page .order-check ul {
		gap: 20px;
	}

	.order-page .order-check ul li label .img-wrap {
		width: 90px;
		height: 90px;
	}
	
	.order-page .order-state ul {
		gap: 20px;
	}

	.order-page .order-state ul li .img-wrap {
		width: 90px;
		height: 90px;
	}
	
	.calendar-popup .popup-box .sub-box {
		width: 280px;
	}

	.calendar-popup .popup-box .sub-box .box-tit {
		height: 70px;
		padding-left: 20px;
	}

	.calendar-popup .popup-box .sub-box .calendar-area {
		padding: 20px 15px 40px;
	}

	.calendar-popup .popup-box .sub-box .time-area {
		padding: 25px 15px 40px;
	}

	.calendar-popup .popup-box .sub-box .time-area .box-sub {
		margin-bottom: 30px;
	}
	
	.order-page .complete .complete-icon {
		width: 80px;
	}	
}

@media all and (max-width: 600px) {
	.order-page {
		padding: 40px 10px 80px;
	}

	.order-page .page-tit {
		margin-bottom: 20px;
	}

	.order-page .order-tab {
		margin-bottom: 40px;
	}

	.order-page .order-tab ul {
		flex-wrap: wrap;
		gap: 15px;
	}

	.order-page .order-tab ul li a {
		gap: 10px;
	}

	.order-page .order-tab ul li a .img-wrap {
		width: 80px;
		height: 80px;
	}

	.order-page .order-cont .cont-wrap .cont-tit {
		margin-bottom: 20px;
	}

	.order-page .order-cont .cont-wrap .sub-tit {
		margin-bottom: 20px;
	}

	.order-page .order-cont .cont-wrap .subs + .sub-tit {
		margin-top: 40px;
	} 

	.order-page .order-cont .cont-wrap .subs + .subs {
		margin-top: 30px;
	}

	.order-page .order-btn {
		gap: 10px;
		margin-top: 40px;
	}
	
	.order-page .order-btn li {
		flex: 0 0 calc((100% - 10px) / 2);
	}

	.order-page .order-btn li button,
	.order-page .order-btn li a {
		height: 40px;
	}
	
	.order-page .order-check {
		margin-bottom: 60px;
	}

	.order-page .order-check ul {
		gap: 15px;
	}

	.order-page .order-check ul li label {
		gap: 10px;
	}

	.order-page .order-check ul li label .img-wrap {
		width: 80px;
		height: 80px;
	}
	
	.order-page .order-state {
		margin-bottom: 40px;
	}

	.order-page .order-state ul {
		gap: 15px;
	}

	.order-page .order-state ul li {
		gap: 10px;
	}

	.order-page .order-state ul li .img-wrap {
		width: 80px;
		height: 80px;
	}

	.order-page .location .adr-search {
		margin-bottom: 40px;
	}

	.order-page .form-area + .form-area {
		margin-top: 40px;
	}

	.order-page .form-area .full-tit {
		margin-bottom: 15px;
	}

	.order-page .form-area .form-box + .form-box {
		margin-top: 40px;
	}

	.order-page .form-area .form-box .form-tit {
		margin-bottom: 15px;
	}

	.order-page .form-area .form-box .form-wrap .gray-box-mg {
		margin-top: 10px;
	}
	
	.order-page .form-area .form-box .select-wrap + .select-wrap {
		margin-top: 10px;
	}

	.order-page .form-area .form-box .select-wrap .select-area {
		padding-right: 10px;
	}

	.order-page .form-area .form-box .form-wrap textarea.gray-box {
		height: 100px;
	}

	.order-page .total-price {
		margin-top: 40px;
		height: 50px;
	}

	.calendar-popup .popup-box .sub-box {
		width: 90%;
		margin: 0 auto;
	}

	.calendar-popup .popup-box .sub-box .box-tit {
		height: 50px;
		padding-left: 15px;
	}

	.calendar-popup .popup-box .sub-box .calendar-area {
		padding: 10px 15px;
	}

	.calendar-popup .popup-box .sub-box .calendar-area .month {
		margin-bottom: 15px;
	}

	.calendar-popup .popup-box .sub-box .time-area {
		padding: 10px 15px 20px;
	}

	.calendar-popup .popup-box .sub-box .time-area .box-sub {
		display: none;
	}

	.calendar-popup .popup-box .sub-box .time-area .select-area + .select-area {
		margin-top: 15px;
	}

	.calendar-popup .popup-box .sub-box .time-area .select-area .tit {
		margin-bottom: 5px;
	}

	.calendar-popup .popup-box .sub-box .time-area .select-area .label-area {
		display: flex;
		flex-wrap: wrap;
		gap: 5px 15px;
	}
	
	.order-page .complete .com-wrap + .com-wrap {
		margin-top: 40px;
	}

	.order-page .complete .com-wrap .com-tit {
		margin-bottom: 15px;
	}

	.order-page .complete .com-wrap .adr-wrap {
		padding: 10px 15px;
		gap: 10px;
	}

	.order-page .complete .com-wrap .adr-wrap img {
		width: 25px;
	}

	.order-page .complete .com-wrap .product-wrap {
		padding: 10px 15px;
	}

	.order-page .complete .com-wrap .product-wrap .pro-tit {
		margin-bottom: 10px;
	}

	.order-page .complete .com-wrap .product-wrap .pro-date {
		margin-bottom: 10px;
	}

	.order-page .complete .com-wrap .product-wrap .pro-price {
		margin-top: 10px;
		color: #272727;
	}

	.order-page .agree-area {
		margin-top: 20px;
	}

	.order-page .complete .complete-icon {
		margin: 0 auto 10px;
		width: 60px;
	}

	.order-page .complete .complete-txt {
		margin-bottom: 20px;
	}

	.order-page .complete .com-ment {
		padding: 30px 20px;
		margin-bottom: 20px;
	}

	.order-page .complete .com-list {
		padding: 20px 25px;
	}
}


/* 채팅 */
.chat-page {
	padding: 80px 5px 100px;
	min-height: calc(100dvh - 400px);
}

.chat-page .inner-wrap {
	max-width: 670px;
}

.chat-page .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 25px;
}

.chat-page .chat-tab {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.chat-page .chat-tab li a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	height: 35px;
	width: 85px;
	font-size: 1.6rem;
	color: #b0b0b0;
}

.chat-page .chat-tab li a.active {
	color: #16171b;
	border-color: #272727;
}

.chat-page .read-only {
	margin-bottom: 30px;
}

.chat-page .read-only label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

.chat-page .read-only label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -9999999999;
	left: -999999999px;
}

.chat-page .read-only label .icon {
	width: 17px;
	height: 17px;
	background: url(../img/check-off.png) no-repeat center center;
	background-size: 100% auto;
}

.chat-page .read-only label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.chat-page .read-only label input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
	background-size: 100% auto;
}

.chat-page .chat-list ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.chat-page .chat-list ul li a {
	border: 1px solid #d3d3d3;
	display: flex;
	align-items: center;
	border-radius: 5px;
	padding: 20px 25px;
	transition: 0.3s;
}

.chat-page .chat-list ul li a:hover {
	border: 1px solid #272727;
}

.chat-page .chat-list ul li.normal a {
	flex-direction: column;
	align-items: flex-start;
}

.chat-page .chat-list ul li.normal .top-info {
	display: flex;
	gap: 7px;
	align-items: center;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.chat-page .chat-list ul li.normal .top-info .product {
	font-size: 2rem;
	color: #16171b;
}

.chat-page .chat-list ul li.normal .top-info .product .bold {
	font-weight: 500;
}

.chat-page .chat-list ul li.normal .top-info .dash {
	font-size: 1.6rem;
}

.chat-page .chat-list ul li.normal .top-info .category {
	font-size: 1.8rem;
	color: #797979;
}

.chat-page .chat-list ul li.normal .top-info .num {
	font-size: 1.4rem;
	color: #fff;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #947a68;
	display: flex;
	justify-content: center;
	align-items: center;
}

.chat-page .chat-list ul li.normal .top-info .new {
	border: 1px solid #947a68;
    border-radius: 5px;
    color: #947a68;
    font-size: 1.3rem;
    padding: 2px 5px;
}

.chat-page .chat-list ul li.normal .chat-adr {
	font-size: 1.8rem;
	color: #16171b;
	font-weight: 500;
	margin-bottom: 10px;
}

.chat-page .chat-list ul li.normal .chat-txt {
	font-size: 1.8rem;
	color: #797979;
}

.chat-page .chat-list ul li.intemo .profile-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-right: 15px;
}

.chat-page .chat-list ul li.intemo .txt-area {
	width: calc(100% - 85px);
}

.chat-page .chat-list ul li.intemo .txt-area .chat-name {
	font-size: 1.8rem;
	color: #16171b;
	font-weight: 500;
	margin-bottom: 10px;
}

.chat-page .chat-list ul li.intemo .txt-area .chat-txt {
	font-size: 1.8rem;
	color: #797979;
}

.chat-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.chat-popup.active {
	display: flex;
	height: 100%;
}

.chat-popup .chat-box {
	background: #fff;
	width: 100%;
	height: 100%;
	max-width: 670px;
	max-height: 1000px;
	position: relative;
}

.chat-popup .chat-box .chat-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.chat-popup .chat-box .chat-close img {
	width: 15px;
}

.chat-popup .chat-box .chat-top-txt {
	padding: 0 20px;
	border-bottom: 1px solid #dedede;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 90px;
}

.chat-popup .chat-box .chat-top-txt .product {
	font-size: 2rem;
	color: #16171b;
	margin-bottom: 10px;
}

.chat-popup .chat-box .chat-top-txt .product .bold {
	font-weight: 500;
}

.chat-popup .chat-box .chat-top-txt .chat-adr {
	font-size: 1.5rem;
	color: #797979;
}

.chat-popup .chat-box .chat-top-img {
	padding: 0 20px;
	border-bottom: 1px solid #dedede;
	display: flex;
	align-items: center;
	height: 90px;
	gap: 15px;
}

.chat-popup .chat-box .chat-top-img .img-wrap {
	width: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}

.chat-popup .chat-box .chat-top-img .name {
	font-size: 2rem;
	color: #16171b;
	font-weight: 500;
}

.chat-popup .chat-box .chat-wrap {
	overflow-y: scroll;
	height: calc(100% - 220px);
	padding: 0 20px;
	-ms-overflow-style: none; 
    scrollbar-width: none; 
	position: relative;
}

.chat-popup .chat-box .chat-wrap::-webkit-scrollbar {
    display: none;  
}

.chat-popup .chat-box .chat-wrap .date {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	font-size: 1.4rem;
	color: #4d4d56;
}

.chat-popup .chat-box .chat-wrap .you {
	margin-top: 30px;
}

.chat-popup .chat-box .chat-wrap .you .profile {
	display: flex;
	align-items: center;
	gap: 10px;
}

.chat-popup .chat-box .chat-wrap .you .profile .name {
	font-size: 1.6rem;
	color: #16171b;
}

.chat-popup .chat-box .chat-wrap .you .profile .img-wrap {
	width: 40px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}

.chat-popup .chat-box .chat-wrap .you .msg-area {
	margin-left: 50px;
	display: flex;
	align-items: flex-end;
	gap: 5px;
}

.chat-popup .chat-box .chat-wrap .you .msg-area .msg {
	border-radius: 5px;
	border: 1px solid #efefef;
	font-size: 1.6rem;
	color: #16171b;
	line-height: 1.4285;
	padding: 15px 20px;
	max-width: calc(100% - 50px);
}

.chat-popup .chat-box .chat-wrap .you .msg-area .msg .big {
	font-size: 1.8rem;
	margin-bottom: 5px;
	font-weight: 500;
}

.chat-popup .chat-box .chat-wrap .you .msg-area .time {
	font-size: 1.2rem;
	color: #797979;
}

.chat-popup .chat-box .chat-wrap .you .info {
	display: flex;
	flex-direction: column;
}

.chat-popup .chat-box .chat-wrap .you .info .read {
	font-size: 1.2rem;
	color: #e41212;
}

.chat-popup .chat-box .chat-wrap .you .info .time {
	font-size: 1.2rem;
	color: #797979;
}

.chat-popup .chat-box .chat-wrap .me {
	margin-top: 30px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 5px;
}

.chat-popup .chat-box .chat-wrap .me .info {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
}

.chat-popup .chat-box .chat-wrap .me .info .read {
	font-size: 1.2rem;
	color: #e41212;
}

.chat-popup .chat-box .chat-wrap .me .info .time {
	font-size: 1.2rem;
	color: #797979;
}

.chat-popup .chat-box .chat-wrap .me .message {
	border-radius: 5px;
	border: 1px solid #efefef;
	background: #16171b;
	font-size: 1.6rem;
	color: #fff;
	line-height: 1.4285;
	padding: 15px 20px;
	max-width: calc(100% - 50px);
}

.chat-popup .chat-box .chat-bottom {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 15px 15px;
	height: 130px;
}

.chat-popup .chat-box .chat-bottom .more-btn {
	border-radius: 5px;
	border: 1px solid #dedede;
	background: #cdcdcd;
}

.chat-popup .chat-box .chat-bottom .chat-txt {
	width: calc(100% - 96px);
	height: 100px;
	border-radius: 5px;
	border: 1px solid #dedede;
	resize: none;
	padding: 15px;
	font-size: 1.8rem;
}

.chat-popup .chat-box .chat-bottom .send-btn {
	border-radius: 5px;
	border: 1px solid #dedede;
	background: #cdcdcd;
}

.chat-popup .chat-box .chat-wrap .no-msg {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.chat-popup .chat-box .chat-wrap .no-msg img {
	width: 100px;
	max-width: 40%;
}

.chat-popup .chat-box .chat-wrap .no-msg p {
	font-size: 1.8rem;
	color: #16171b;
}

.chat-popup .chat-box .chat-link {
	position: absolute;
	display: flex;
	width: 95%;
	border: 1px solid #dedede;
	top: 105px;
	border-radius: 5px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	z-index: 10;
}

.chat-popup .chat-box .chat-link li {
	width: 50%;
}

.chat-popup .chat-box .chat-link li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	font-size: 1.6rem;
	color: #16171b;
	gap: 10px;
}

.chat-popup .chat-box .chat-link li a img {
	width: 20px;
}

.chat-popup .chat-box .chat-wrap-pd {
	padding-top: 80px;
}

@media all and (max-width: 900px) {
	.chat-page {
		padding: 50px 5px 100px;
		min-height: calc(100dvh - 350px);
	}

	.chat-popup .chat-box {
		max-height: 100%;
	}
}

@media all and (max-width: 600px) {
	.chat-page {
		padding: 30px 5px 80px;
		min-height: calc(100dvh - 335px);
	}

	.chat-page .page-tit {
		margin-bottom: 20px;
	}

	.chat-page .chat-tab {
		margin-bottom: 20px;
	}

	.chat-page .chat-tab li a {
		height: 30px;
		width: 70px;
	}

	.chat-page .read-only {
		margin-bottom: 20px;
	}

	.chat-page .chat-list ul {
		gap: 10px;
	}

	.chat-page .chat-list ul li a {
		padding: 15px 20px;
	}

	.chat-page .chat-list ul li.intemo .profile-img {
		width: 60px;
		height: 60px;
		margin-right: 10px;
	}
	
	.chat-page .chat-list ul li.intemo .txt-area {
		width: calc(100% - 70px);
	}

	.chat-page .chat-list ul li.intemo .txt-area .chat-name {
		margin-bottom: 5px;
	}
	
	.chat-popup {
		/* display: flex; */
	}

	.chat-popup .chat-box .chat-close {
		top: 15px;
		right: 15px;
	}

	.chat-popup .chat-box .chat-close img {
		width: 15px;
	}

	.chat-popup .chat-box .chat-top-txt {
		padding: 0 15px;
		height: 80px;
	}

	.chat-popup .chat-box .chat-top-img {
		padding: 0 15px;
		height: 70px;
		gap: 10px;
	}

	.chat-popup .chat-box .chat-wrap {
		height: calc(100% - 200px);
		padding: 0 10px;
	}

	.chat-popup .chat-box .chat-wrap .date {
		margin-top: 20px;
	}

	.chat-popup .chat-box .chat-wrap .you {
		margin-top: 20px;
	}

	.chat-popup .chat-box .chat-wrap .you .msg-area .msg {
		padding: 10px 15px;
		max-width: calc(100% - 50px);
	}

	.chat-popup .chat-box .chat-wrap .me {
		margin-top: 20px;
	}

	.chat-popup .chat-box .chat-wrap .me .message {
		padding: 10px 15px;
	}

	.chat-popup .chat-box .chat-bottom {
		padding: 15px 10px;
		height: 110px;
	}

	.chat-popup .chat-box .chat-bottom .more-btn img {
		width: 30px;
	}

	.chat-popup .chat-box .chat-bottom .chat-txt {
		width: calc(100% - 80px);
		height: 80px;
		padding: 15px;
	}

	.chat-popup .chat-box .chat-bottom .send-btn img {
		width: 30px;
	}

	.chat-popup .chat-box .chat-link {
		top: 90px;
	}

	.chat-popup .chat-box .chat-link li a img {
		width: 17px;
	}

	.chat-popup .chat-box .chat-wrap-pd {
		padding-top: 70px;
	}
	
	.chat-page .chat-list ul li.normal .top-info .new {
		padding: 1px 3px;
	}
}


/* 현장 상세 */
.chat-page .detail-top {
	border: 1px solid #d3d3d3;
    padding: 20px 30px;
    border-radius: 5px;
	margin-bottom: 30px;
}

.chat-page .detail-top .detail-adr {
	font-size: 2rem;
    color: #272727;
    font-weight: 500;
    margin-bottom: 20px;
	word-break: keep-all;
}

.chat-page .detail-top .detail-hide {
	margin-bottom: 20px;
	display: none;
}

.chat-page .detail-top .detail-hide.active {
	display: block;
}

.chat-page .detail-top .detail-hide p {
	font-size: 1.6rem;
    color: #757575;
	line-height: 1.5;
}

.chat-page .detail-top .detail-more {
	font-size: 1.4rem;
    color: #272727;
	text-align: center;
	display: block;
}

.chat-page .detail-info {
	margin-bottom: 30px;
}

.chat-page .detail-info p {
	font-size: 1.6rem;
    color: #272727;
	line-height: 1.5;
}

.chat-page .detail-info p.flex {
	display: flex;
	justify-content: space-between;
}

.chat-page .detail-info p.flex a {
	font-size: 1.4rem;
}

.chat-page .more-area {
	display: none;
}

.chat-page .more-area.active {
	display: block;
}

.chat-page .more-area .more-wrap + .more-wrap {
	margin-top: 40px;
}

.chat-page .more-area .more-wrap .more-tit {
	font-size: 2rem;
    color: #272727;
    font-weight: 500;
    margin-bottom: 15px;
}

.chat-page .more-area .more-wrap .more-txt {
	font-size: 1.6rem;
    color: #757575;
	line-height: 1.5;
}

.chat-page .more-area .more-wrap .msg-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 5px;
	height: 40px;
	color: #272727;
	border: 1px solid #4b4b4b;
	margin-top: 20px;
}

.chat-page .more-area .more-wrap .more-flex {
	display: flex;
	justify-content: space-between;
}

.chat-page .chat-btn-area {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}

.chat-page .chat-btn-area li.white {
	width: 25%;
}

.chat-page .chat-btn-area li.black {
	width: 74%;
}

.chat-page .chat-btn-area li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 1.6rem;
	font-weight: 500;
	border-radius: 5px;
	height: 45px;
}

.chat-page .chat-btn-area li.white a {
	color: #272727;
	border: 1px solid #4b4b4b;
}

.chat-page .chat-btn-area li.black a {
	background: #16171b;
	color: #fff;
}

@media all and (max-width: 600px) {
	.chat-page .detail-top {
		padding: 15px 20px;
		margin-bottom: 20px;
	}

	.chat-page .detail-top .detail-adr {
		margin-bottom: 15px;
	}

	.chat-page .detail-top .detail-hide {
		margin-bottom: 15px;
	}

	.chat-page .detail-info {
		margin-bottom: 30px;
	}

	.chat-page .more-area .more-wrap + .more-wrap {
		margin-top: 30px;
	}

	.chat-page .more-area .more-wrap .more-tit {
		margin-bottom: 10px;
	}

	.chat-page .more-area .more-wrap .msg-btn {
		margin-top: 15px;
	}

	.chat-page .chat-btn-area {
		margin-top: 60px;
	}

	.chat-page .chat-btn-area li.black {
		width: 73%;
	}

	.chat-page .chat-btn-area li a {
		height: 40px;
	}
}


/* 마이페이지 - 내 프로필 */
.my-page .inner-wrap {
	display: flex;
}

.my-page .my-menu {
	width: 250px;
	border-left: 1px solid #d6beaa;
	border-right: 1px solid #d6beaa;
	padding-top: 30px;
	padding-bottom: 100px;
}

.my-page .my-menu .menu-tit {
	height: 120px;
	background: #eaded4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}

.my-page .my-menu .menu-tit .eng {
	font-size: 3.6rem;
	color: #1d1d1d;
}

.my-page .my-menu .menu-tit .kor {
	font-size: 1.6rem;
	color: #1d1d1d;
}

.my-page .my-menu .menu-list {
	margin-left: 50px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.my-page .my-menu .menu-list li a {
	font-size: 1.8rem;
	color: #8c8c8c;
}

.my-page .my-menu .menu-list li a.active {
	color: #16171b;
}

.my-page .my-menu .menu-list li .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.my-page .my-menu .menu-list li .sub-menu li a {
	padding-left: 30px;
	position: relative;
}

.my-page .my-menu .menu-list li .sub-menu li a:before {
	content: '-';
	position: absolute;
	left: 10px;
}

.my-page .my-cont {
	padding: 65px 65px 160px;
}

.my-page .my-cont .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}

.my-page .my-cont .form-area + .form-area {
	margin-top: 60px;
}

.my-page .my-cont .form-area .wrap-tit {
	font-size: 2.4rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 30px;
}

.my-page .my-cont .form-area .form-wrap {
	display: flex;
}

.my-page .my-cont .form-area .form-wrap + .form-wrap {
	margin-top: 15px;
}

.my-page .my-cont .form-area .form-wrap .form-tit {
	height: 35px;
	font-size: 1.6rem;
	color: #797979;
	width: 190px;
	display: flex;
	align-items: center;
}

.my-page .my-cont .form-area .form-wrap .form-box .gray-box {
	width: 480px;
	height: 35px;
	border: 1px solid #d3d3d3;
	color: #16171b;
	font-size: 1.6rem;
	padding: 0 15px;
	display: flex;
	align-items: center;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-txt {
	font-size: 1.6rem;
	color: #e50000;
	margin-top: 10px;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap {
	display: flex;
	gap: 30px;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label {
	display: flex;
	align-items: center;
	height: 35px;
	cursor: pointer;
	gap: 8px;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999999;
	left: -999999999px;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label .icon {
	display: block;
	width: 19px;
	height: 19px;
	background: url(../img/radio-off.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label input:checked + .icon {
	background: url(../img/radio-on.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label input:checked + .icon + .txt {
	color: #272727;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-btn {
	display: flex;
	justify-content: flex-end;
	width: 480px;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-btn .change-btn {
	width: 80px;
	height: 35px;
    border: 1px solid #d3d3d3;
    color: #16171b;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-value {
	color: #16171b;
	font-size: 1.6rem;
	height: 35px;
	display: flex;
	align-items: center;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-file {
	display: flex;
	gap: 5px;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-file .gray-box {
	width: 375px;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-file .file-input {
	position: absolute;
	width: 0px;
	height: 0px;
	z-index: -999999;
	left: -999999999px;
}

.my-page .my-cont .form-area .form-wrap .form-box .form-file .file-btn {
	width: 100px;
    background: #16171b;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-page .my-cont .user-menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

.my-page .my-cont .user-menu li a {
	font-size: 1.5rem;
	text-decoration: underline;
	color: #797979;
}

.my-page .my-cont .profile-menu {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 60px;
}

.my-page .my-cont .profile-menu li {
	width: 100%;
}

.my-page .my-cont .profile-menu li button {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45px;
	width: 100%;
	border-radius: 5px;
	font-size: 1.86rem;
	font-weight: 500;
	border: none;
	background: none;
}

.my-page .my-cont .profile-menu li button.black {
	background: #16171b;
	color: #fff;
}

.my-page .my-cont .profile-menu li button.white {
	color: #272727;
	border: 1px solid #4b4b4b;
}

.my-page .my-cont .profile-area {
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	width: 670px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 25px;
	margin-bottom: 50px;
}

.my-page .my-cont .profile-area .left-area {
	display: flex;
	align-items: center;
	gap: 25px;
}

.my-page .my-cont .profile-area .left-area .img-area {
	position: relative;
}

.my-page .my-cont .profile-area .left-area .img-area .img-wrap {
	border-radius: 50px;
	width: 105px;
	height: 105px;
}

.my-page .my-cont .profile-area .left-area .img-area .setting-btn {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.my-page .my-cont .profile-area .left-area .txt-area .name {
	font-size: 1.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 5px;
}

.my-page .my-cont .profile-area .left-area .txt-area .count {
	font-size: 2rem;
	color: #272727;
	font-weight: 500;
}

.my-page .my-cont .profile-area .history-btn {
	width: 125px;
	height: 35px;
	font-size: 1.6rem;
	color: #fff;
	font-weight: 500;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #16171b;
}

@media all and (max-width: 1300px) {
	.my-page .my-menu .menu-list {
		margin-left: 40px;		
	}

	.my-page .my-cont {
		padding: 65px 40px 160px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .gray-box {
		width: 360px;	
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-btn {
		width: 360px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-file .gray-box {
		width: 255px;
	}

	.my-page .my-cont .profile-area {
		width: 550px;
	}
}

@media all and (max-width: 900px) {
	.my-page .inner-wrap {
		flex-direction: column;
	}

	.my-page .my-menu {
		width: 100%;
		border-left: none;
		border-right: none;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.my-page .my-menu .menu-tit {
		height: 60px;
		margin-bottom: 0px;
		border: 1px solid #d6beaa;
	}

	.my-page .my-menu .menu-tit .eng {
		font-size: 2.6rem;
	}

	.my-page .my-menu .menu-list {
		margin-left: 0;
		flex-direction: row;
		gap: 0px;
		border-right: 1px solid #d6beaa;
	}
	
	.my-page .my-menu .menu-list li {
		width: 25%;
		border-bottom: 1px solid #d6beaa;
		border-left: 1px solid #d6beaa;
	}

	.my-page .my-menu .menu-list li a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 50px;
	}

	.my-page .my-menu .menu-list li .sub-menu {
		display: none;
	}

	.my-page .my-cont {
		padding: 30px 20px 100px;
	}

	.my-page .my-cont .form-area .form-wrap .form-tit {
		width: 140px;
	}

	.my-page .my-cont .profile-area {
		width: 500px;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-menu .menu-tit {
		height: 50px;
	}

	.my-page .my-menu .menu-tit .eng {
		font-size: 2.4rem;
	}

	.my-page .my-menu .menu-list {
		flex-wrap: wrap;
		border-right: none;
	}
	
	.my-page .my-menu .menu-list li {
		width: 50%;
		border: 1px solid #d6beaa;
		margin-top: -1px;
	}
	
	.my-page .my-menu .menu-list li:nth-child(2n) {
		border-left: none;
	}

	.my-page .my-menu .menu-list li a {
		font-size: 1.8rem;
		height: 35px;
	}

	.my-page .my-cont {
		padding: 20px 15px 60px;
	}

	.my-page .my-cont .page-tit {
		margin-bottom: 30px;
	}

	.my-page .my-cont .form-area .wrap-tit {
		margin-bottom: 15px;
	}

	.my-page .my-cont .form-area .form-wrap {
		flex-direction: column;
	}

	.my-page .my-cont .form-area .form-wrap .form-tit {
		height: auto;
		margin-bottom: 10px;
		width: 100%;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .gray-box {
		width: 100%;
		padding: 0 10px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap {
		gap: 20px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label {
		gap: 5px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .radio-wrap label .icon {
		width: 15px;
		height: 15px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-btn {
		width: 100%;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-btn .change-btn {
		width: 60px;
		height: 30px;
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-file .gray-box {
		width: calc(100% - 85px);
	}

	.my-page .my-cont .form-area .form-wrap .form-box .form-file .file-btn {
		width: 80px;
	}

	.my-page .my-cont .user-menu {
		gap: 15px;
	}

	.my-page .my-cont .profile-menu {
		gap: 10px;
		margin-top: 40px;
	}

	.my-page .my-cont .profile-menu li button {
		height: 40px;
	}

	.my-page .my-cont .profile-area {
		width: 100%;
		flex-direction: column;
		padding: 15px 20px;
		margin-bottom: 40px;
		gap: 20px;
	}

	.my-page .my-cont .profile-area .left-area .img-area .img-wrap {
		width: 80px;
		height: 80px;
	}

	.my-page .my-cont .profile-area .left-area .img-area .setting-btn {
		width: 25px;
		height: 25px;
	}

	.my-page .my-cont .profile-area .history-btn {
		width: 100%;
	}
}


/* 마이페이지 - 주문조회 */
.my-page .my-cont .my-tab {
	display: flex;
	gap: 90px;
	margin-bottom: 40px;
}

.my-page .my-cont .my-tab li a {
	font-size: 2.2rem;
	font-weight: 500;
	color: #b0b0b0;
}

.my-page .my-cont .my-tab li a.active {
	color: #272727;
	position: relative;
}

.my-page .my-cont .my-tab li a.active:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #8c8c8c;
	left: 0;
	bottom: -5px;
	display: block;
	position: absolute;
}

.my-page .my-cont .my-filter {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.my-page .my-cont .my-filter li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	border-radius: 5px;
	border: 1px solid #d3d3d3;
	min-width: 85px;
	padding: 0 20px;
	font-size: 1.6rem;
	color: #b0b0b0;
}

.my-page .my-cont .my-filter li a.active {
	border: 1px solid #272727;
	color: #16171b;
}

.my-page .my-cont .order-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.my-page .my-cont .order-list .order-wrap {
	max-width: 100%;
	width: 670px;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	padding: 40px 50px;
}

.my-page .my-cont .order-list .order-wrap .order-info {
	font-size: 1.6rem;
	color: #16171b;
	line-height: 1.75;
}

.my-page .my-cont .order-list .order-wrap .order-txt {
	font-size: 1.6rem;
	color: #16171b;
	line-height: 1.75;
	margin-bottom: 20px;
}

.my-page .my-cont .order-list .order-wrap .order-date {
	font-size: 1.6rem;
	color: #16171b;
	line-height: 1.75;
}

.my-page .my-cont .order-list .order-wrap .order-adr {
	font-size: 1.6rem;
	color: #16171b;
	line-height: 1.75;
}

.my-page .my-cont .order-list .order-wrap .paid-btn {
	margin-top: 30px;
	border: 1px solid #d3d2d2;
	border-radius: 5px;
	display: flex;
	width: 100%;
	height: 80px;
	background: none;
	align-items: center;
	justify-content: center;
	font-size: 2.8rem;
	color: #16171b;
	font-weight: 500;
}

.my-page .my-cont .order-list .order-wrap .user {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.my-page .my-cont .order-list .order-wrap .user p {
	width: 30px;
	height: 30px;
	background: #eaded4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #16171b;
}

@media all and (max-width: 1300px) {
	.my-page .my-menu {
		width: 190px;
	}

	.my-page .my-cont {
		width: calc(100% - 190px);
	}
	
	.my-page .my-cont .order-list .order-wrap {
		width: 100%;
	}
}

@media all and (max-width: 900px) {
	.my-page .my-menu {
		width: 100%;
	}
	
	.my-page .my-cont {
		width: 100%;
	}
	
	.my-page .my-cont .my-tab {
		gap: 50px;
	}

	.my-page .my-cont .order-list .order-wrap {
		padding: 30px 40px;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .my-tab {
		gap: 30px;
		margin-bottom: 30px;
	}

	.my-page .my-cont .my-filter {
		gap: 5px;
		margin-bottom: 20px;
	}

	.my-page .my-cont .my-filter li a {
		height: 25px;
		min-width: auto;
		padding: 0 10px;
	}

	.my-page .my-cont .order-list {
		gap: 15px;
	}

	.my-page .my-cont .order-list .order-wrap {
		padding: 15px 20px;
	}

	.my-page .my-cont .order-list .order-wrap .order-info {
		font-size: 1.6rem;
		color: #16171b;
		line-height: 1.75;
	}

	.my-page .my-cont .order-list .order-wrap .order-txt {
		margin-bottom: 10px;
	}

	.my-page .my-cont .order-list .order-wrap .paid-btn {
		margin-top: 15px;
		height: 45px;
		font-size: 2rem;
	}

	.my-page .my-cont .order-list .order-wrap .user {
		margin-top: 15px;
		gap: 10px;
	}
}


/* 마이페이지 - 주문내역상세 */
.my-page .my-cont .order-detail {
	width: 860px;
}

.my-page .my-cont .order-detail .order-state {
	font-size: 1.8rem;
	color: #16171b;
	margin-bottom: 20px;
}

.my-page .my-cont .order-detail .paid-area {
	border: 1px solid #d3d3d3;
	padding: 40px 30px;
	margin-bottom: 40px;
	text-align: center;
	border-radius: 5px;
	width: 100%;
}

.my-page .my-cont .order-detail .paid-area .price {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 5px;
}

.my-page .my-cont .order-detail .paid-area .txt {
	font-size: 1.6rem;
	color: #757575;
}

.my-page .my-cont .order-detail .detail-wrap + .detail-wrap {
	margin-top: 60px;
}

.my-page .my-cont .order-detail .detail-wrap .detail-tit {
	font-size: 2.2rem;
    color: #272727;
    font-weight: 500;
    margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.my-page .my-cont .order-detail .detail-wrap .detail-tit .odrno {
	font-weight: 400;
}

.my-page .my-cont .order-detail .detail-wrap .detail-tit .num {
	font-size: 1.4rem;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #947a68;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my-page .my-cont .order-detail .detail-wrap .detail-txt {
	font-size: 1.6rem;
    color: #757575;
    line-height: 1.7;
}

.my-page .my-cont .order-detail .detail-wrap .user {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.my-page .my-cont .order-detail .detail-wrap .user p {
	width: 30px;
	height: 30px;
	background: #eaded4;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #16171b;
}

.my-page .my-cont .order-detail .detail-wrap .msg-area .date {
	font-size: 1.6rem;
    color: #16171b;
    line-height: 1.7;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.my-page .my-cont .order-detail .detail-wrap .msg-area + .msg-area {
	margin-top: 20px;
}

.my-page .my-cont .order-detail .detail-wrap .msg-area .date .new {
	border: 1px solid #947a68;
	border-radius: 5px;
	color: #947a68;
	font-size: 1.3rem;
	padding: 2px 5px;
}

.my-page .my-cont .order-detail .detail-wrap .msg-area .msg-txt {
	font-size: 1.6rem;
    color: #757575;
    line-height: 1.7;
}

.my-page .my-cont .order-detail .detail-wrap .send-msg {
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    height: 40px;
    color: #272727;
    border: 1px solid #4b4b4b;
    margin-top: 20px;
}

.my-page .my-cont .order-detail .detail-wrap .detail-box + .detail-box {
	margin-top: 30px;
}

.my-page .my-cont .order-detail .detail-wrap .detail-box .tit {
	font-size: 1.6rem;
    color: #16171b;
    line-height: 1.7;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.my-page .my-cont .order-detail .detail-wrap .detail-box .txt {
	font-size: 1.6rem;
    color: #757575;
    line-height: 1.5;
}

.my-page .my-cont .order-detail .detail-wrap .detail-box .txt.dash {
	padding-left: 15px;
	position: relative;
}

.my-page .my-cont .order-detail .detail-wrap .detail-box .txt.dash:before {
	position: absolute;
	content: '-';
	left: 0;
}

.my-page .my-cont .order-detail .detail-wrap .price-area {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .tit {
	font-size: 1.6rem;
    color: #757575;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .price {
    font-size: 1.6rem;
    color: #16171b;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .price span {
	font-weight: 600;
    font-size: 2rem;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area {
	display: flex;
	align-items: center;
	gap: 5px;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .my-point {
	font-size: 1.6rem;
    color: #16171b;
	margin-right: 10px;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .gray-box {
	height: 35px;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 1.6rem;
    color: #272727;
    width: 160px;
	-moz-appearance: textfield;
	text-align: right;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .gray-box::-webkit-outer-spin-button,
.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .gray-box::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .all-btn {
	width: 80px;
    height: 35px;
    border: 1px solid #d3d3d3;
    color: #16171b;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-page .my-cont .order-detail .detail-wrap .no-pay {
	font-size: 1.6rem;
    color: #16171b;
    line-height: 1.7;
}

.my-page .my-cont .order-detail .detail-wrap .no-tax {
	font-size: 2rem;
	font-weight: 500;
    color: #757575;
	text-align: center;
	margin: 30px 0;
}

.my-page .my-cont .order-detail .pay-btn {
	display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    height: 45px;
	background: #16171b;
    color: #fff;
	margin-top: 100px;
	border: none;
	width: 100%;
}

.my-page .my-cont .order-detail .order-state-mg {
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.my-page .my-cont .order-detail .order-state-mg img {
	width: 20px;
}

.my-page .my-cont .order-detail .detail-wrap .pay-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.my-page .my-cont .order-detail .detail-wrap .pay-area .left-area p {
	font-size: 1.6rem;
    color: #757575;
	line-height: 1.7;
}

.my-page .my-cont .order-detail .detail-wrap .pay-area .price {
    font-size: 1.6rem;
    color: #16171b;
}

.my-page .my-cont .order-detail .detail-wrap .pay-area .price span {
	font-weight: 600;
    font-size: 2rem;
}

.my-page .my-cont .order-detail .detail-wrap .tax-btn {
	display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    height: 45px;
	border: 1px solid #4b4b4b;
    color: #272727;
	margin-top: 0px;
	background: none;
	width: 100%;
}

.my-page .my-cont .order-detail .detail-wrap .tax-btn.cancle-btn {
	border: 1px solid #947a68;
	background: #947a68;
    color: #fff;
	margin-top: 20px;
}

.my-page .my-cont .order-detail .detail-wrap .pay-price {
	font-size: 1.6rem;
    color: #16171b;
}

.my-page .my-cont .order-detail .detail-wrap .pay-price span {
	font-weight: 600;
    font-size: 2.4rem;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap {
	display: flex;
	gap: 30px;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 8px;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999999;
	left: -999999999px;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label .icon {
	display: block;
	width: 19px;
	height: 19px;
	background: url(../img/radio-off.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label .txt {
	font-size: 1.6rem;
	color: #797979;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label input:checked + .icon {
	background: url(../img/radio-on.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .order-detail .detail-wrap .radio-wrap label input:checked + .icon + .txt {
	color: #272727;
}

.my-page .my-cont .order-detail .agree-area {
	margin-top: 100px;
}

.my-page .my-cont .order-detail .agree-area label {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.my-page .my-cont .order-detail .agree-area label input {
	width: 0px;
	height: 0px;
	position: absolute;
	z-index: -999;
	left: -999999999px;
}

.my-page .my-cont .order-detail .agree-area label .icon {
	display: block;
	width: 17px;
    height: 17px;
    background: url(../img/check-off.png) no-repeat center center;
    background-size: 100% auto;
}

.my-page .my-cont .order-detail .agree-area label input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
    background-size: 100% auto;
}

.my-page .my-cont .order-detail .agree-area label .txt {
	font-size: 1.6rem;
	color: #272727;
}

.my-page .my-cont .order-detail .pay-btn-mg {
	margin-top: 20px;
}

.my-page .my-cont .order-detail .detail-wrap .text-form-wrap {
	display: flex;
	justify-content: space-between;
	margin: 30px 0 20px;
}

.my-page .my-cont .order-detail .detail-wrap .text-form-wrap .gray-box {
    height: 35px;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 1.6rem;
    color: #272727;
}

.my-page .my-cont .order-detail .detail-wrap .text-form-wrap select.gray-box {
	width: 130px;
}

.my-page .my-cont .order-detail .detail-wrap .text-form-wrap input.gray-box {
	width: calc(100% - 135px);
}

@media all and (max-width: 1300px) {
	.my-page .my-cont .order-detail {
		width: 100%;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .order-detail .paid-area {
		padding: 25px 15px;
		margin-bottom: 30px;
	}

	.my-page .my-cont .order-detail .detail-wrap + .detail-wrap {
		margin-top: 40px;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-tit {
		margin-bottom: 15px;
		flex-wrap: wrap;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-tit .odrno {
		font-size: 1.6rem;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-txt {
		word-break: keep-all;
	}

	.my-page .my-cont .order-detail .detail-wrap .user {
		margin-top: 20px;
	}

	.my-page .my-cont .order-detail .detail-wrap .msg-area .date .new {
		padding: 1px 3px;
	}

	.my-page .my-cont .order-detail .detail-wrap .send-msg {
		height: 35px;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-box + .detail-box {
		margin-top: 20px;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-box .tit {
		margin-bottom: 7px;
	}

	.my-page .my-cont .order-detail .detail-wrap .detail-box .txt.dash {
		padding-left: 10px;
	}
	
	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line {
		align-items: flex-start;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .tit {
		width: calc(100% - 80px);
		margin-top: 2px;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .price {
		width: 80px;
		text-align: right;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area {
		position: relative;
		padding-bottom: 25px;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .my-point {
		font-size: 1.6rem;
		margin-right: 10px;
		position: absolute;
		bottom: 5px;
		right: -10px;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .gray-box {
		height: 30px;
		width: 100px;
	}

	.my-page .my-cont .order-detail .detail-wrap .price-area .price-line .point-area .all-btn {
		width: 60px;
		height: 30px;
	}

	.my-page .my-cont .order-detail .pay-btn {
		height: 40px;
		margin-top: 60px;
	}

	.my-page .my-cont .order-detail .order-state-mg {
		margin-bottom: 30px;
	}

	.my-page .my-cont .order-detail .order-state-mg img {
		width: 15px;
	}

	.my-page .my-cont .order-detail .detail-wrap .pay-area {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.my-page .my-cont .order-detail .detail-wrap .pay-area .left-area {
		width: calc(100% - 80px);
	}

	.my-page .my-cont .order-detail .detail-wrap .pay-area .left-area p {
		font-size: 1.6rem;
	}

	.my-page .my-cont .order-detail .detail-wrap .pay-area .price {
		font-size: 1.6rem;
		width: 80px;
		text-align: right;
	}

	.my-page .my-cont .order-detail .detail-wrap .pay-area .price span {
		font-size: 2rem;
	}

	.my-page .my-cont .order-detail .detail-wrap .tax-btn {
		height: 35px;
	}
	
	.my-page .my-cont .order-detail .detail-wrap .text-form-wrap {
		margin: 20px 0 10px;
	}
	
	.my-page .my-cont .order-detail .detail-wrap .text-form-wrap select.gray-box {
		width: 100px;
	}

	.my-page .my-cont .order-detail .detail-wrap .text-form-wrap input.gray-box {
		width: calc(100% - 105px);
	}
}


/* 마이페이지 - 작업일보 */
.my-page .my-cont .log-list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	width: 670px;
}

.my-page .my-cont .log-list .log-wrap .log-adr {
	display: flex;
	align-items: center;
	border: 1px solid #d3d3d3;
	padding: 20px 30px;
	gap: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.my-page .my-cont .log-list .log-wrap .log-adr img {
	width: 30px;
}

.my-page .my-cont .log-list .log-wrap .log-adr p {
	font-size: 1.8rem;
	color: #272727;
	font-weight: 500;
}

.my-page .my-cont .log-list .log-wrap .day-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 0 20px;
}

.my-page .my-cont .log-list .log-wrap .day-list li.center {
	text-align: center;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .date-tit {
	font-size: 2.2rem;
	color: #2e2e2e;
	font-weight: 500;
	margin-bottom: 20px;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-product {
	font-size: 2rem;
	color: #2e2e2e;
	font-weight: 500;
	margin-bottom: 20px;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail {
	margin-bottom: 30px;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail img {
	margin-bottom: 30px;
	max-width: 80%;
	max-height: 300px;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail p.big {
	font-size: 1.8rem;
	color: #2e2e2e;
	font-weight: 500;
	margin-bottom: 10px;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail p.small,
.my-page .my-cont .log-list .log-wrap .day-list li {
	font-size: 1.6rem;
	color: #646464;
}

.my-page .my-cont .log-list .log-wrap .day-list li a .log-date {
	font-size: 1.4rem;
	color: #757575;
}

.my-page .my-cont .log-detail {
	width: 670px;
	max-width: 100%;
}

.my-page .my-cont .log-detail .date-tit {
	background: #f2f2f2;
	border-radius: 5px;
	height: 35px;
	border: 1px solid #d3d3d3;
	display: flex;
	align-items: center;
	padding: 0 15px;
	font-size: 1.6rem;
	color: #16171b;
	margin-bottom: 30px;
}

.my-page .my-cont .log-detail .detail-top .product {
	font-size: 2rem;
	color: #646464;
	font-weight: 500;
	margin-bottom: 10px;
}

.my-page .my-cont .log-detail .detail-top .product span {
	font-size: 1.8rem;
	color: #999797;
	font-weight: 500;
}

.my-page .my-cont .log-detail .detail-top .adr {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #a2a2a2;
	font-size: 1.6rem;
}

.my-page .my-cont .log-detail .detail-btn {
	border-top: 1px solid #d3d3d3;
	margin-top: 25px;
	margin-bottom: 40px;
	padding: 0 10px;
	padding-top: 25px;
	display: flex;
	justify-content: space-between;
}

.my-page .my-cont .log-detail .detail-btn ul {
	display: flex;
	gap: 30px;
}

.my-page .my-cont .log-detail .detail-btn ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.my-page .my-cont .log-detail .detail-btn ul li a img {
	width: 42px;
}

.my-page .my-cont .log-detail .detail-btn ul li a p {
	font-size: 1.6rem;
	color: #272727;
}

.my-page .my-cont .log-detail .detail-cont {
	padding: 0 15px;
}

.my-page .my-cont .log-detail .detail-cont img {
	max-width: 530px;
	display: block;
	margin: 0 auto 30px;
}

.my-page .my-cont .log-detail .detail-cont .big {
	font-size: 2rem;
	color: #2e2e2e;
	font-weight: 500;
	margin-bottom: 20px;
}

.my-page .my-cont .log-detail .detail-cont .small {
	font-size: 1.8rem;
	color: #646464;
	margin-bottom: 10px;
}

.my-page .my-cont .log-detail .detail-cont .log-date {
	font-size: 1.8rem;
	color: #646464;
}

.my-page .my-cont .log-detail .list-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	color: #fff;
	background: #16171b;
	width: 390px;
	height: 45px;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 120px auto 0;
}
					
@media all and (max-width: 900px) {
	.my-page .my-cont .log-list {
		width: 100%;
	}
	
	.my-page .my-cont .log-list .log-wrap .log-adr {
		padding: 15px 20px;
		gap: 10px;
	}

	.my-page .my-cont .log-list .log-wrap .log-adr img {
		width: 25px;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .log-list {
		gap: 40px;
	}

	.my-page .my-cont .log-list .log-wrap .log-adr {
		padding: 10px 15px;
		gap: 5px;
	}

	.my-page .my-cont .log-list .log-wrap .log-adr img {
		width: 23px;
	}

	.my-page .my-cont .log-list .log-wrap .log-adr p {
		word-break: keep-all;
	}

	.my-page .my-cont .log-list .log-wrap .day-list {
		gap: 20px;
		padding: 0;
	}

	.my-page .my-cont .log-list .log-wrap .day-list li a .date-tit {
		margin-bottom: 15px;
	}

	.my-page .my-cont .log-list .log-wrap .day-list li a .log-product {
		margin-bottom: 15px;
	}

	.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail {
		margin-bottom: 20px;
	}

	.my-page .my-cont .log-list .log-wrap .day-list li a .log-detail img {
		margin-bottom: 20px;
		max-width: 100%;
	}
	
	.my-page .my-cont .log-detail .date-tit {
		margin-bottom: 20px;
	}

	.my-page .my-cont .log-detail .detail-btn {
		margin-top: 20px;
		margin-bottom: 30px;
		padding: 0;
		padding-top: 20px;
	}

	.my-page .my-cont .log-detail .detail-btn ul {
		gap: 20px;
	}

	.my-page .my-cont .log-detail .detail-btn ul li a img {
		width: 35px;
	}

	.my-page .my-cont .log-detail .detail-cont {
		padding: 0 10px;
	}

	.my-page .my-cont .log-detail .detail-cont img {
		max-width: 100%;
		margin: 0 auto 20px;
	}

	.my-page .my-cont .log-detail .list-btn {
		width: 100%;
		height: 40px;
		margin: 60px auto 0;
	}
}


/* 마이페이지 - 결제&증빙 */
.my-page .my-cont .payment-page {
	width: 670px;
}

.my-page .my-cont .month-select {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f2f2f2;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	height: 40px;
	width: 100%;
	margin-bottom: 30px;
}

.my-page .my-cont .month-select p {
	font-size: 2rem;
	color: #16171b;
	font-weight: 500;
	width: 280px;
	text-align: center;
}

.my-page .my-cont .my-small-tab {
	display: flex;
	gap: 50px;
	margin-bottom: 40px;
}

.my-page .my-cont .my-small-tab li a {
	font-size: 1.8rem;
	font-weight: 500;
	color: #b0b0b0;
}

.my-page .my-cont .my-small-tab li a.active {
	color: #272727;
	position: relative;
}

.my-page .my-cont .my-small-tab li a.active:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #8c8c8c;
	left: 0;
	bottom: -5px;
	display: block;
	position: absolute;
}

.my-page .my-cont .payment-page .pay-list {
	border-top: 1px solid #d3d3d3;
	padding: 0 10px;
}

.my-page .my-cont .payment-page .pay-list .pay-date {
	font-size: 1.6rem;
	color: #272727;
	margin: 20px 0 10px;
}

.my-page .my-cont .payment-page .pay-list ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 20px 0 10px;
}

.my-page .my-cont .payment-page .pay-list ul li {
	border: 1px solid #d2d2d2;
	border-radius: 10px;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .adr-product {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
	font-size: 1.8rem;
	color: #646464;
	font-weight: 500;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info {
	display: flex;	
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info .time {
	font-size: 1.6rem;
	color: #a2a2a2;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info .state {
	font-size: 1.6rem;
	color: #4e4c4c;
	font-weight: 600;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info .state.red {
	color: #c93333;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info .type {
	font-size: 1.6rem;
	color: #a2a2a2;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info span:before {
	content: 'I';
	font-size: 1.6rem;
	color: #a2a2a2;
	font-weight: 400;
	margin: 0 5px;
}

.my-page .my-cont .payment-page .pay-list ul li .left-area .pay-info span:first-child:before {
	display: none;
}

.my-page .my-cont .payment-page .pay-list ul li .price-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.my-page .my-cont .payment-page .pay-list ul li .price-area .price {
	font-size: 2rem;
	font-weight: 600;
	color: #3d3d3d;
}

.my-page .my-cont .payment-page .pay-list ul li .price-area .price.red {
	color: #c93333;
}

.my-page .my-cont .payment-page .pay-list ul li .price-area .apply-btn {
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #947a68;
    border-radius: 5px;
    color: #947a68;
	height: 30px;
	border-radius: 15px;
	padding: 0 15px;
	font-weight: 500;
}

.my-page .my-cont .payment-page .pay-list ul li .price-area .state {
	font-size: 1.4rem;
	color: #4e4c4c;
}

@media all and (max-width: 1300px) {
	.my-page .my-cont .payment-page {
		max-width: 100%;
	}
}

@media all and (max-width: 900px) {
	.my-page .my-cont .my-small-tab {
		gap: 40px;
	}

	.my-page .my-cont .payment-page .pay-list {
		padding: 0;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .month-select p {
		width: 140px;
	}

	.my-page .my-cont .my-small-tab {
		gap: 20px;
		margin-bottom: 30px;
	}

	.my-page .my-cont .payment-page .pay-list .pay-date {
		margin: 15px 0 10px;
	}

	.my-page .my-cont .payment-page .pay-list ul {
		gap: 10px;
		margin: 15px 0 10px;
	}

	.my-page .my-cont .payment-page .pay-list ul li {
		padding: 10px 20px;
		flex-direction: column;
		justify-content: flex-start;
		gap: 10px;
	}
	
	.my-page .my-cont .payment-page .pay-list ul li .left-area {
		width: 100%;
	}

	.my-page .my-cont .payment-page .pay-list ul li .price-area {
		align-items: center;
		justify-content: space-between;
		width: 100%;
		flex-direction: row-reverse;
	}
	
	.my-page .my-cont .payment-page .pay-list ul li .price-area .apply-btn {
		border: 1px solid #947a68;
		height: 25px;
		padding: 0 10px;
	}
}


/* 마이페이지 - 포인트 */
.my-page .my-cont .point-page {
	width: 670px;
}

.my-page .my-cont .point-page .my-point {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	padding: 30px 0;
	gap: 5px;
	margin-bottom: 15px;
}

.my-page .my-cont .point-page .my-point .num {
	font-size: 3rem;
	color: #16171b;
	font-weight: 600;
}

.my-page .my-cont .point-page .my-point .txt {
	font-size: 2rem;
	color: #16171b;
	font-weight: 500;
}

.my-page .my-cont .tb-style {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.my-page .my-cont .tb-style tr th {
	background: #f2f2f2;
	height: 35px;
	color: #272727;
	font-size: 1.6rem;
	font-weight: 400;
}

.my-page .my-cont .tb-style tr td {
	color: #272727;
	font-size: 1.6rem;
	text-align: center;
	height: 40px;
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .tb-style tr td .red {
	color: #db2f2f;
}

@media all and (max-width: 1300px) {
	.my-page .my-cont .point-page {
		max-width: 100%;
	}
}

@media all and (max-width: 900px) {
	.my-page .my-cont .point-page .my-point {
		padding: 20px 0;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .point-page .my-point {
		padding: 10px 0;
	}

	.my-page .my-cont .point-page .my-point .num {
		font-size: 2.4rem;
	}

	.my-page .my-cont .point-page .my-point .txt {
		font-size: 1.6rem;
	}
	
	.my-page .my-cont .tb-wrap {
		overflow-x: scroll;
	}

	.my-page .my-cont .tb-style {
		min-width: 340px;
		
	}
}


/* 마이페이지 - 일정표 */
.my-page .my-cont .schedule-page {
	width: 650px;
}

.my-page .my-cont .schedule-page .calendar .calendar-month {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
}

.my-page .my-cont .schedule-page .calendar .calendar-month p {
	font-size: 4.8rem;
	color: #605f6a;
	font-weight: 700;
	width: 285px;
	text-align: center;
}

.my-page .my-cont .schedule-page .calendar .calendar-area {
    border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
}

.my-page .my-cont .schedule-page .calendar .calendar-area thead tr {
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .schedule-page .calendar .calendar-area thead tr th {
	text-align: center;
	color: #605f6a;
	font-size: 2.7rem;
	font-weight: 700;
	padding-bottom: 10px;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr {
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day {
	height: 200px;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	padding: 10px 2px;
	gap: 5px;
	cursor: auto;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .num {
	color: #605f6a;
	font-size: 2.7rem;
	display: block;
	margin-bottom: 10px;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site {
	height: 25px;
	line-height: 25px;
	background: #2ecc71;
	border-radius: 13px;
	font-size: 1.2rem;
	color: #fff;
	padding: 0 5px;
	width: 100%;
	text-overflow: clip;
	cursor: pointer;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.emerald-green {
	background: #2ecc71;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.deep-sky-blue {
	background: #00bfff;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.pastel-brown {
	background: #c49a6c;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.midnight-black {
	background: #0b0b0d;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.apple-red {
	background: #e60012;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.bright-orange {
	background: #ff8c00;
}

.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site.soft-violet {
	background: #b39ddb;
}

.schedule-more-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.schedule-more-popup.active {
	display: flex;
}

.schedule-more-popup .more-box {
	background: #fff;
	width: 100%;
	height: 100%;
	max-width: 670px;
	max-height: 90%;
	position: relative;
	padding: 40px;
	overflow-y: scroll;
}

.schedule-more-popup .more-box .more-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.schedule-more-popup .more-box .more-close img {
	width: 15px;
}

.schedule-more-popup .more-box .schedule-date {
	font-size: 2rem;
    color: #2e2e2e;
    font-weight: 500;
    margin-bottom: 30px;
}

.schedule-more-popup .more-box .schedule-list ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.schedule-more-popup .more-box .schedule-list ul li a {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.schedule-more-popup-worker .more-box .schedule-list ul li a {
	cursor: auto;
}

.schedule-more-popup .more-box .schedule-list ul li a .date {
	font-size: 1.6rem;
	color: #757575;
	line-height: 20px;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar {
	width: 4px;
	height: 20px;
	border-radius: 2px;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.emerald-green {
	background: #2ecc71;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.deep-sky-blue {
	background: #00bfff;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.pastel-brown {
	background: #c49a6c;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.midnight-black {
	background: #0b0b0d;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.apple-red {
	background: #e60012;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.bright-orange {
	background: #ff8c00;
}

.schedule-more-popup .more-box .schedule-list ul li a .color-bar.soft-violet {
	background: #b39ddb;
}

.schedule-more-popup .more-box .schedule-list ul li a .adr {
	font-size: 1.6rem;
    color: #2e2e2e;
    font-weight: 500;
	word-break: keep-all;
	line-height: 20px;
	width: calc(100% - 150px);
}

.schedule-detail-popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.3);
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.schedule-detail-popup.active {
	display: flex;
}

.schedule-detail-popup .detail-box {
	background: #fff;
	width: 100%;
	height: 100%;
	max-width: 670px;
	max-height: 90%;
	position: relative;
	padding: 40px;
	overflow-y: scroll;
}

.schedule-detail-popup .detail-box .detail-close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.schedule-detail-popup .detail-box .detail-close img {
	width: 15px;
}

.schedule-detail-popup .detail-box .site-info {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .info-tit {
	font-size: 2rem;
    color: #272727;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .info-adr {
	font-size: 1.6rem;
    color: #272727;
    line-height: 1.5;
	font-weight: 500;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .info-product {
	font-size: 1.6rem;
    color: #272727;
    line-height: 1.5;
	font-weight: 500;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .schedule {
	display: flex;
	align-items: center;
	gap: 50px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .schedule .year {
	font-size: 1.6rem;
    color: #757575;
	margin-bottom: 5px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .schedule .day {
	font-size: 2rem;
    color: #272727;
	font-weight: 500;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .schedule .arrow img {
	width: 10px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .no-worker {
	font-size: 1.6rem;
    color: #757575;
    line-height: 1.5;
	text-align: center;
	margin: 30px 0;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a {
	border: 1px solid #d3d3d3;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	padding: 15px 50px 15px 20px;
	background: url(../img/arrow-icon.png) no-repeat right 25px center;
	background-size: 10px auto;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .profile-img {
	border-radius: 50%;
	width: 80px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .chat-msg {
	width: calc(100% - 90px);
}

.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .chat-msg .name {
	font-size: 1.8rem;
    color: #272727;
	margin-bottom: 5px;
	font-weight: 500;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .chat-msg .msg {
	font-size: 1.6rem;
    color: #757575;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .info-note {
	font-size: 1.6rem;
    color: #757575;
	line-height: 1.5;
}

@media all and (max-width: 1300px) {
	.my-page .my-cont .schedule-page {
		max-width: 100%;
	}
}

@media all and (max-width: 900px) {
	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day {
		height: 160px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a {
		gap: 3px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site {
		height: 23px;
		line-height: 23px;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .schedule-page .calendar .calendar-month {
		margin-bottom: 30px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-month p {
		font-size: 3rem;
		width: 160px;
	}
	
	.my-page .my-cont .schedule-page .calendar .calendar-month img {
		width: 25px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area thead tr th {
		font-size: 2rem;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day {
		height: 120px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a {
		padding: 5px 1px;
		gap: 2px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .num {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}

	.my-page .my-cont .schedule-page .calendar .calendar-area tbody tr .day a .site {
		height: 20px;
		line-height: 20px;
		font-size: 1.4rem;
		padding: 0 3px;
	}
	
	.schedule-more-popup .more-box {
		padding: 20px;
	}

	.schedule-more-popup .more-box .more-close {
		top: 15px;
		right: 15px;
	}

	.schedule-more-popup .more-box .schedule-date {
		margin-bottom: 20px;
	}

	.schedule-more-popup .more-box .schedule-list ul {
		gap: 20px;
	}

	.schedule-more-popup .more-box .schedule-list ul li a {
		gap: 7px;
	}

	.schedule-more-popup .more-box .schedule-list ul li a .date {
		line-height: 15px;
	}

	.schedule-more-popup .more-box .schedule-list ul li a .color-bar {
		height: 15px;
	}

	.schedule-more-popup .more-box .schedule-list ul li a .adr {
		line-height: 15px;
		width: calc(100% - 70px);
	}

	.schedule-detail-popup .detail-box {
		padding: 20px;
	}

	.schedule-detail-popup .detail-box .detail-close {
		top: 15px;
		right: 15px;
	}

	.schedule-detail-popup .detail-box .site-info {
		gap: 40px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .info-tit {
		margin-bottom: 15px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .schedule {
		gap: 30px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .schedule .arrow img {
		width: 8px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a {
		gap: 10px;
		padding: 10px 30px 10px 15px;
		background: url(../img/arrow-icon.png) no-repeat right 15px center;
		background-size: 8px auto;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .profile-img {
		width: 50px;
	}
	
	.schedule-detail-popup .detail-box .site-info .info-wrap .worker-area a .chat-msg {
		width: calc(100% - 60px);
	}
}


/* 작업자 마이페이지 - 현장&현장보고 */
.my-page .my-cont .site-page {
	width: 670px;
}

.my-page .my-cont .my-search {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	width: 100%;
}

.my-page .my-cont .my-search .gray-box {
	border: 1px solid #d3d3d3;
	height: 35px;
	padding: 0 10px;
	color: #16171b;
	font-size: 1.6rem;
	width: calc(100% - 135px);
}

.my-page .my-cont .my-search .search-btn {
	height: 35px;
	width: 125px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	font-size: 1.6rem;
	color: #fff;
	background: #16171b;
	font-weight: 500;
	border: none;
}

.my-page .my-cont .tab-btn {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 35px;
}

.my-page .my-cont .tab-btn .my-filter {
	margin-bottom: 0;
}

.my-page .my-cont .tab-btn .history-btn {
	font-size: 1.6rem;
	color: #16171b;
	display: flex;
	align-items: center;
	gap: 20px;
}

.my-page .my-cont .site-list {

}

.my-page .my-cont .site-list ul {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.my-page .my-cont .site-list ul li {
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	padding: 35px 50px;
}

.my-page .my-cont .site-list ul li .state-area {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.my-page .my-cont .site-list ul li .state-area .state {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 32px;
	border-radius: 16px;
	font-size: 1.6rem;
}

.my-page .my-cont .site-list ul li .state-area .state.before {
	color: #fff;
	background: #636363;
}

.my-page .my-cont .site-list ul li .state-area .state.checking {
	color: #16171b;
	background: #f0f0f0;
	border: 1px solid #d3d3d3;
}

.my-page .my-cont .site-list ul li .state-area .date {
	font-size: 1.6rem;
	color: #16171b;
}

.my-page .my-cont .site-list ul li .adr {
	font-size: 1.6rem;
	color: #16171b;
	margin-bottom: 10px;
}

.my-page .my-cont .site-list ul li .product {
	font-size: 2.2rem;
	font-weight: 500;
	color: #16171b;
	margin-bottom: 35px;
}

.my-page .my-cont .site-list ul li .link-area {
	display: flex;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	padding: 25px 0;
}

.my-page .my-cont .site-list ul li .link-area a {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #696969;
	gap: 5px;
}

.my-page .my-cont .site-list ul li .link-area a:first-child {
	border-right: 1px solid #d3d3d3;
}

.my-page .my-cont .site-page .calendar {
	padding: 0 10px;
	margin-bottom: 40px;
}

.my-page .my-cont .site-page .calendar .calendar-month {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
}

.my-page .my-cont .site-page .calendar .calendar-month p {
	font-size: 4.8rem;
	color: #605f6a;
	font-weight: 700;
	width: 285px;
	text-align: center;
}

.my-page .my-cont .site-page .calendar .calendar-area {
    border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
}

.my-page .my-cont .site-page .calendar .calendar-area thead tr {
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .site-page .calendar .calendar-area thead tr th {
	text-align: center;
	color: #605f6a;
	font-size: 2.7rem;
	font-weight: 700;
	padding-bottom: 10px;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr {
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day {
	min-height: 75px;
	text-align: center;	
	vertical-align: top;
	padding: 10px 5px;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day .day-num {
	color: #605f6a;
	font-size: 2.7rem;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 5px;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day a.active {
	background: #eaded4;
	border: 1px solid #d3d3d3;
	border-radius: 10px;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day button {
	height: 25px;
    border: 1px solid #ddd;
    border-radius: 13px;
    font-size: 1.6rem;
    color: #999;
    width: 100%;
    text-overflow: clip;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3px 0;
	background: #f7f7f7;
}

.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day button.register-btn {
    background: #eaded4;
	color: #555;
	border: none;
}

.my-page .my-cont .site-page .report-btn {
	padding: 0 10px;
	display: flex;
	justify-content: space-between;
}

.my-page .my-cont .site-page .report-btn li {
	flex: 0 0 calc((100% - 15px) / 2);
}

.my-page .my-cont .site-page .report-btn li a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	height: 45px;
	font-size: 1.6rem;
}

.my-page .my-cont .site-page .report-btn li a.black {
	background: #16171b;
	color: #fff;
}

.my-page .my-cont .site-page .report-btn li a.white {
	color: #272727;
	border: 1px solid #4b4b4b;
}

.my-page .my-cont .site-page .site-top-tit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e2e2;
}

.my-page .my-cont .site-page .site-top-tit .tit {
	font-size: 2.2rem;
	color: #272727;
	font-weight: 500;
}

.my-page .my-cont .site-page .site-top-tit .check-area {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.my-page .my-cont .site-page .site-top-tit .check-area input {
	position: absolute;
	z-index: -99999;
	left: -999999999px;
	width: 0px;
	height: 0px;
}

.my-page .my-cont .site-page .site-top-tit .check-area .icon {
	width: 17px;
	height: 17px;
	background: url(../img/check-off.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .site-page .site-top-tit .check-area .txt {
	font-size: 1.8rem;
	color: #7a7a7a;
}

.my-page .my-cont .site-page .site-top-tit .check-area input:checked + .icon {
	background: url(../img/check-on.png) no-repeat center center;
	background-size: 100% auto;
}

.my-page .my-cont .site-page .site-photo {
	padding: 0 10px;
	margin-bottom: 50px;
}

.my-page .my-cont .site-page .site-photo .file-area .file-btn {
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #d3d3d3;
	border-radius: 10px;
	flex-direction: column;
	gap: 10px;
	color: #7a7a7a;
	font-size: 1.8rem;
}

.my-page .my-cont .site-page .site-photo .file-area .thumb-area {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.my-page .my-cont .site-page .site-photo .file-area .thumb-area li {
	position: relative;
	flex: 0 0 calc((100% - 10px * 4) / 5);
}

.my-page .my-cont .site-page .site-photo .file-area .thumb-area li .img-wrap {
	aspect-ratio: 154 / 85;
	border: 1px solid #d3d3d3;
}

.my-page .my-cont .site-page .site-photo .file-area .thumb-area li .img-wrap img {
	object-fit: contain;
}

.my-page .my-cont .site-page .site-photo .file-area .thumb-area li .del-img {
	position: absolute;
	top: 5px;
	right: 5px;
}

.my-page .my-cont .site-page .site-note {
	padding: 0 10px;
	margin-bottom: 35px;
}

.my-page .my-cont .site-page .site-note .gray-box {
	font-size: 1.8rem;
	color: #272727;
	padding: 20px 15px;
	resize: none;
	width: 100%;
	height: 190px;
	border-radius: 10px;
	border: 1px solid #e9e9e9;
}

.my-page .my-cont .site-page .report-btn li.full {
	flex: 100%;
}

@media all and (max-width: 1300px) {
	.my-page .my-cont .site-page {
		max-width: 100%;
	}
}

@media all and (max-width: 900px) {
	.my-page .my-cont .site-list ul {
		gap: 30px;
	}

	.my-page .my-cont .site-list ul li {
		padding: 25px 30px;
	}

	.my-page .my-cont .site-list ul li .link-area {
		padding: 15px 0;
	}
}

@media all and (max-width: 600px) {
	.my-page .my-cont .my-search .gray-box {
		height: 30px;
		width: calc(100% - 65px);
	}

	.my-page .my-cont .my-search .search-btn {
		height: 30px;
		width: 60px;
	}

	.my-page .my-cont .tab-btn {
		gap: 10px;
		margin-bottom: 15px;
		flex-direction: column;
		align-items: flex-start;
	}

	.my-page .my-cont .tab-btn .history-btn {
		gap: 10px;
		width: 100%;
		justify-content: flex-end;
	}

	.my-page .my-cont .site-list ul {
		gap: 15px;
	}

	.my-page .my-cont .site-list ul li {
		padding: 15px 20px;
	}

	.my-page .my-cont .site-list ul li .state-area {
		gap: 10px;
		margin-bottom: 20px;
	}

	.my-page .my-cont .site-list ul li .state-area .state {
		width: 60px;
		height: 30px;
	}

	.my-page .my-cont .site-list ul li .product {
		margin-bottom: 20px;
	}

	.my-page .my-cont .site-list ul li .link-area {
		padding: 10px 0;
	}
	
	.my-page .my-cont .site-list ul li .link-area a img {
		width: 20px;
	}
	
	.my-page .my-cont .site-page .calendar {
		padding: 0;
		margin-bottom: 30px;
	}

	.my-page .my-cont .site-page .calendar .calendar-month {
		margin-bottom: 20px;
	}

	.my-page .my-cont .site-page .calendar .calendar-month p {
		font-size: 3rem;
		width: 160px;
	}
	
	.my-page .my-cont .site-page .calendar .calendar-month img {
		width: 25px;
	}

	.my-page .my-cont .site-page .calendar .calendar-area thead tr th {
		font-size: 2rem;
	}

	.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day {
		min-height: 50px;
	}

	.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day .day-num {
		font-size: 1.8rem;
	}
	
	.my-page .my-cont .site-page .calendar .calendar-area tbody tr .day button {
		height: 20px;
	}

	.my-page .my-cont .site-page .report-btn {
		padding: 0;
	}

	.my-page .my-cont .site-page .report-btn li {
		flex: 0 0 calc((100% - 10px) / 2);
	}

	.my-page .my-cont .site-page .report-btn li a {
		height: 40px;
	}

	.my-page .my-cont .site-page .site-photo {
		padding: 0;
		margin-bottom: 40px;
	}

	.my-page .my-cont .site-page .site-photo .file-area .file-btn {
		width: 60px;
		height: 60px;
		gap: 5px;
		font-size: 1.6rem;
	}
	
	.my-page .my-cont .site-page .site-photo .file-area .file-btn img {
		width: 40px;
	}

	.my-page .my-cont .site-page .site-photo .file-area .thumb-area {
		margin-top: 20px;
		gap: 5px;
	}

	.my-page .my-cont .site-page .site-photo .file-area .thumb-area li {
		flex: 0 0 calc((100% - 5px * 2) / 3);
	}

	.my-page .my-cont .site-page .site-photo .file-area .thumb-area li .del-img {
		width: 15px;
	}

	.my-page .my-cont .site-page .site-note {
		padding: 0;
		margin-bottom: 30px;
	}

	.my-page .my-cont .site-page .site-note .gray-box {
		padding: 15px;
		height: 140px;
	}
}

	
/* 작업자 마이페이지 - 내작업내역 */
.my-page .my-cont .payment-page .history-list {
	border-top: 1px solid #d3d3d3;
	padding: 0 10px;
}

.my-page .my-cont .payment-page .history-list ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.my-page .my-cont .payment-page .history-list ul li .pay-date {
	font-size: 1.6rem;
	color: #272727;
	margin: 20px 0 10px;
}

.my-page .my-cont .payment-page .history-list ul li .history-box {
	border: 1px solid #d2d2d2;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.my-page .my-cont .payment-page .history-list ul li .adr-product {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 1.8rem;
	color: #646464;
	font-weight: 500;
}

.my-page .my-cont .payment-page .history-list ul li .state-area p {
	font-size: 1.6rem;
	color: #4e4c4c;
	font-weight: 600;
}

.my-page .my-cont .payment-page .history-list ul li .state-area p.red {
	color: #c93333;
}

@media all and (max-width: 600px) {
	.my-page .my-cont .payment-page .history-list {
		padding: 0;
	}

	.my-page .my-cont .payment-page .history-list ul {
		gap: 15px;
	}

	.my-page .my-cont .payment-page .history-list ul li .pay-date {
		margin: 15px 0 5px;
	}

	.my-page .my-cont .payment-page .history-list ul li .history-box {
		padding: 15px;
		flex-direction: column;
		gap: 10px;
	}

	.my-page .my-cont .payment-page .history-list ul li .adr-product {
		width: 100%;
	}
	
	.my-page .my-cont .payment-page .history-list ul li .state-area {
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}
}


/* 작업자 마이페이지 - 캘린더 */
.schedule-more-popup-worker .more-box .schedule-date {
	font-size: 2rem;
    color: #2e2e2e;
    font-weight: 500;
    margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.schedule-more-popup-worker .more-box .schedule-date .add-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #947a68;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 400;
}

.schedule-more-popup-worker .more-box .schedule-date .add-btn img {
	width: 12px;
}

.schedule-more-popup-worker .more-box .schedule-list ul li a {
	cursor: auto;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .gray-box {
	display: block;
	width: 100%;
	height: 35px;
	color: #16171b;
	font-size: 1.6rem;
	border: 1px solid #d3d3d3;
	padding: 0 15px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap textarea.gray-box {
	height: 200px;
	resize: none;
	padding: 15px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select {
	display: flex;
	gap: 10px;
	align-items: center;
	border: 1px solid #d3d3d3;
	border-radius: 10px;
	height: 60px;
	padding: 0 15px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #2ecc71;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.emerald-green {
	background: #2ecc71;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.deep-sky-blue {
	background: #00bfff;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.pastel-brown {
	background: #c49a6c;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.midnight-black {
	background: #0b0b0d;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.apple-red {
	background: #e60012;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.bright-orange {
	background: #ff8c00;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color.soft-violet {
	background: #b39ddb;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .name {
	font-size: 1.6rem;
	color: #272727;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list {
	padding: 20px 15px;
	border: 1px solid #d3d3d3;
	border-radius: 10px;
	display: none;
	flex-direction: column;
	gap: 15px;
	margin-top: -1px;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list.active {
	display: flex;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a {
	display: flex;
	gap: 10px;
	align-items: center;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #2ecc71;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.emerald-green {
	background: #2ecc71;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.deep-sky-blue {
	background: #00bfff;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.pastel-brown {
	background: #c49a6c;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.midnight-black {
	background: #0b0b0d;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.apple-red {
	background: #e60012;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.bright-orange {
	background: #ff8c00;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color.soft-violet {
	background: #b39ddb;
}

.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .name {
	font-size: 1.6rem;
	color: #272727;
}

.schedule-detail-popup .detail-box .schedule-add {
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    background: #16171b;
    width: 100%;
    height: 45px;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 60px auto 0;
}

@media all and (max-width: 600px) {
	.schedule-more-popup-worker .more-box .schedule-date .add-btn {
		width: 25px;
		height: 25px;
	}

	.schedule-more-popup-worker .more-box .schedule-date .add-btn img {
		width: 9px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .gray-box {
		padding: 0 10px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap textarea.gray-box {
		height: 160px;
		padding: 15px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select {
		height: 50px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-select .color {
		width: 25px;
		height: 25px;
	}

	.schedule-detail-popup .detail-box .site-info .info-wrap .color-area .color-list li a .color {
		width: 25px;
		height: 25px;
	}

	.schedule-detail-popup .detail-box .schedule-add {
		height: 40px;
		margin: 40px auto 0;
	}
}


/* 상품 상세 */
.goods-detail {
	padding: 70px 0 150px;
}

.goods-detail .big-title {
	font-weight: 600;
	color: #272727;
	font-size: 4.8rem;
	margin-bottom: 5px;
	text-align: center;
}

.goods-detail .sub-title {
	color: #7e7e7e;
	font-size: 3.2rem;
	margin-bottom: 40px;
	text-align: center;
}

.goods-detail .detail-tab {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 100px;
}

.goods-detail .detail-tab li a {
	width: 240px;
	height: 50px;
	border-radius: 25px;
	background: #947a68;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 500;
	font-size: 2rem;
}

.goods-detail .detail-tab li a.active {
	background: #16171b;
}

.goods-detail .detail-cont {
	padding: 0 40px;
	display: none;
}

.goods-detail .detail-cont.active {
	display: block;
}

.goods-detail .detail-cont .detail-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 600;
	margin-bottom: 20px;
}

.goods-detail .detail-cont .detail-sub-tit {
	font-size: 2.2rem;
	color: #272727;
	font-weight: 600;
	margin-bottom: 5px;
	position: relative;
	padding-left: 12px;
}

.goods-detail .detail-cont .detail-sub-tit:before {
	content: '';
	width: 4px;
	height: 20px;
	border-radius: 2px;
	background: #eaded4;
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
}

.goods-detail .detail-cont .detail-sub-txt {
	font-size: 1.8rem;
	color: #757575;
	margin-bottom: 35px;
	padding-left: 12px;
}

.goods-detail .detail-cont ul.detail-txt {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.goods-detail .detail-cont ul.detail-txt li {
	padding-left: 35px;
	font-size: 1.8rem;
	color: #757575;
	position: relative;
}	

.goods-detail .detail-cont ul.detail-txt li:before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #eaded4;
	display: block;
	position: absolute;
	left: 12px;
	top: 6px;
}

.goods-detail .detail-cont .brown-txt {
	padding-left: 35px;
	font-size: 1.8rem;
	color: #947a68;
}

.goods-detail .detail-cont .brown-txt + .brown-txt {
	margin-top: 20px;
}

.goods-detail .detail-cont .img-list {
	margin-top: 60px;
	gap: 14px;
	display: flex;
	flex-wrap: wrap;
}

.goods-detail .detail-cont .img-list.two li {
	flex: 0 0 calc((100% - 14px) / 2);
}

.goods-detail .detail-cont .img-list.four li {
	flex: 0 0 calc((100% - 14px * 3) / 4);
}

.goods-detail .detail-cont .img-list .img-wrap {
	aspect-ratio: 32 / 21;
	border-radius: 10px;
	border: 1px solid #efe7e1;
}

.goods-detail .detail-cont .img-list li.description {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}

.goods-detail .detail-cont .img-list li.description .img-wrap {
	aspect-ratio: 654 / 362;
}

.goods-detail .detail-cont .img-list li.description p {
	font-size: 1.8rem;
	color: #757575;
}

.goods-detail .detail-cont .img-list li.contents {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.goods-detail .detail-cont .img-list li.contents .img-wrap {
	aspect-ratio: 320 / 456;
}

.goods-detail .detail-cont .img-list li.contents p {
	font-size: 1.8rem;
	color: #757575;
	text-align: center;
}

.goods-detail .detail-cont .seo-detail {
	display: flex;
	justify-content: space-between;
	margin-top: 75px;
}

.goods-detail .detail-cont .seo-detail .seo-wrap {
	display: flex;	
	flex-direction: column;
	align-items: center;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt {
	display: flex;	
	gap: 40px;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt .circle-wrap img {
	border: 3px solid #947a68;
	border-radius: 50%;
	width: 220px;
	margin-bottom: 35px;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt .circle-wrap p {
	font-size: 1.8rem;
	color: #757575;
	text-align: center;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area {
	border-top: 1px solid #947a68;
	margin-top: 30px;
	padding-top: 40px;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area .top-txt {
	font-size: 2rem;
	color: #757575;
	text-align: center;
	margin-bottom: 35px;
}

.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area .bot-txt {
	font-size: 1.8rem;
	color: #757575;
	text-align: center;
	line-height: 1.333;
}

.goods-detail .detail-cont .process {
	display: flex;
	margin-top: 55px;
	justify-content: space-between;
	position: relative;
}

.goods-detail .detail-cont .process:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	top: 110px;
	z-index: -1;
	background: #947a68;
}

.goods-detail .detail-cont .process li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.goods-detail .detail-cont .process li img {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 1px solid #947a68;
	background: #fff;
}

.goods-detail .detail-cont .process li p {
	font-size: 1.8rem;
	color: #757575;
	text-align: center;
	width: 220px;
	word-break: keep-all;
}

.goods-detail .detail-cont .img-list li.video {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.goods-detail .detail-cont .img-list li.video .img-wrap {
	aspect-ratio: 654 / 357;
}

.goods-detail .detail-cont .img-list li.video p {
	font-size: 1.8rem;
	color: #757575;
	text-align: center;
	word-break: keep-all;
}

.goods-detail .detail-cont .process li p.name {
	margin-bottom: 10px;
}

.goods-detail .detail-cont .process li p.price {
	font-size: 2.8rem;
	color: #16171b;
	font-weight: 600;
	text-align: center;
}

.goods-detail .detail-cont .process li p.dash {
	font-size: 2.8rem;
	color: #16171b;
	text-align: center;
	text-decoration: line-through; 
}

.goods-detail .detail-cont .process li p.sub {
	font-size: 1.8rem;
	color: #947a68;
	text-align: center;
	margin-top: 10px;
}

@media all and (max-width: 1500px) {
	.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt .circle-wrap img {
		width: 170px;
	}
}

@media all and (max-width: 1300px) {
	.goods-detail .detail-tab li a {
		width: 200px;
	}
	
	.goods-detail .detail-cont .detail-sub-tit:before {
		height: 19px;
		top: 2px;
	}
	
	.goods-detail .detail-cont ul.detail-txt li:before {
		top: 4px;
	}

	.goods-detail .detail-cont .contents-list {
		gap: 40px 14px;
	}

	.goods-detail .detail-cont .img-list.four li {
		flex: 0 0 calc((100% - 14px) / 2);
	}

	.goods-detail .detail-cont .seo-detail {
		margin-top: 60px;
		gap: 20px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt {
		gap: 25px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt .circle-wrap img {
		width: 100px;
		margin-bottom: 20px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area {
		margin-top: 20px;
		padding-top: 30px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area .top-txt {
		margin-bottom: 20px;
	}

	.goods-detail .detail-cont .process:before {
		top: 70px;
	}

	.goods-detail .detail-cont .process li img {
		width: 140px;
		height: 140px;
	}

	.goods-detail .detail-cont .process li p {
		width: 140px;
	}
}

@media all and (max-width: 900px) {
	.goods-detail {
		padding: 50px 0 100px;
	}

	.goods-detail .big-title {
		font-size: 3.6rem;
	}

	.goods-detail .sub-title {
		font-size: 2.4rem;
	}

	.goods-detail .detail-tab {
		gap: 10px;
		margin-bottom: 60px;
	}

	.goods-detail .detail-tab li a {
		width: 160px;
	}

	.goods-detail .detail-cont {
		padding: 0 10px;
	}

	.goods-detail .detail-cont .detail-sub-tit {
		padding-left: 12px;
	}

	.goods-detail .detail-cont .detail-sub-tit:before {
		width: 4px;
		height: 17px;
		left: 0;
		top: 2px;
	}

	.goods-detail .detail-cont .detail-sub-txt {
		padding-left: 12px;
	}

	.goods-detail .detail-cont ul.detail-txt li {
		padding-left: 25px;
	}	

	.goods-detail .detail-cont ul.detail-txt li:before {
		width: 7px;
		height: 7px;
		left: 10px;
		top: 5px;
	}

	.goods-detail .detail-cont .brown-txt {
		padding-left: 25px;
	}

	.goods-detail .detail-cont .img-list {
		margin-top: 40px;
		gap: 10px;
	}
	
	.goods-detail .detail-cont .contents-list {
		gap: 30px 10px;
	}

	.goods-detail .detail-cont .img-list.two li {
		flex: 0 0 calc((100% - 10px) / 2);
	}

	.goods-detail .detail-cont .img-list.four li {
		flex: 0 0 calc((100% - 10px) / 2);
	}

	.goods-detail .detail-cont .img-list li.contents {
		gap: 10px;
	}

	.goods-detail .detail-cont .seo-detail {
		flex-direction: column;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area {
		width: 100%;
	}

	.goods-detail .detail-cont .process {
		justify-content: center;
		flex-wrap: wrap;
		gap: 50px 30px;
	}

	.goods-detail .detail-cont .process:before {
		display: none;
	}
	
	.goods-detail .detail-cont .process.four li {
		flex: 0 0 calc((100% - 30px) / 2);
	}
	
	.goods-detail .detail-cont .process.five li {
		flex: 0 0 calc((100% - 30px * 2) / 3);
	}

	.goods-detail .detail-cont .img-list li.video {
		gap: 10px;
	}
}

@media all and (max-width: 600px) {
	.goods-detail {
		padding: 40px 0 80px;
	}

	.goods-detail .big-title {
		font-size: 2.8rem;
	}

	.goods-detail .sub-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.goods-detail .detail-tab {
		gap: 5px;
		margin-bottom: 40px;
		flex-direction: column;
		padding: 0 10px;
	}

	.goods-detail .detail-tab li a {
		width: 100%;
		height: 35px;
		font-size: 1.8rem;
	}

	.goods-detail .detail-cont {
		padding: 0 10px;
	}

	.goods-detail .detail-cont .detail-tit {
		font-size: 2.4rem;
		margin-bottom: 15px;
	}

	.goods-detail .detail-cont .detail-sub-tit {
		font-size: 1.8rem;
		padding-left: 10px;
	}

	.goods-detail .detail-cont .detail-sub-tit:before {
		width: 3px;
		height: 14px;
		top: 2px;
	}

	.goods-detail .detail-cont .detail-sub-txt {
		font-size: 1.6rem;
		margin-bottom: 15px;
		padding-left: 10px;
	}
	
	.goods-detail .detail-cont ul.detail-txt {
		margin-bottom: 15px;
	}

	.goods-detail .detail-cont ul.detail-txt li {
		padding-left: 20px;
		font-size: 1.6rem;
	}	

	.goods-detail .detail-cont ul.detail-txt li:before {
		width: 5px;
		height: 5px;
		top: 4px;
	}

	.goods-detail .detail-cont .brown-txt {
		padding-left: 20px;
		font-size: 1.6rem;
	}

	.goods-detail .detail-cont .brown-txt + .brown-txt {
		margin-top: 10px;
	}

	.goods-detail .detail-cont .img-list {
		margin-top: 30px;
	}
	
	.goods-detail .detail-cont .description-list {
		gap: 30px 10px;
	}
	
	.goods-detail .detail-cont .video-list {
		gap: 30px 10px;
	}

	.goods-detail .detail-cont .img-list.two li {
		flex: 0 0 100%;
	}

	.goods-detail .detail-cont .img-list.four li {
		flex: 0 0 100%;
	}

	.goods-detail .detail-cont .img-list li.description {
		gap: 5px;
	}

	.goods-detail .detail-cont .img-list li.description p {
		font-size: 1.6rem;
	}

	.goods-detail .detail-cont .seo-detail {
		margin-top: 40px;
		gap: 40px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt {
		gap: 30px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .circle-txt .circle-wrap img {
		border: 2px solid #947a68;
		width: 80px;
		margin-bottom: 10px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area {
		margin-top: 15px;
		padding-top: 15px;
	}

	.goods-detail .detail-cont .seo-detail .seo-wrap .txt-area .top-txt {
		margin-bottom: 15px;
	}

	.goods-detail .detail-cont .process {
		margin-top: 40px;
		gap: 30px 20px;
	}

	.goods-detail .detail-cont .process li {
		gap: 10px;
	}
	
	.goods-detail .detail-cont .process.four li {
		flex: 0 0 calc((100% - 20px) / 2);
	}
	
	.goods-detail .detail-cont .process.five li {
		flex: 0 0 calc((100% - 20px) / 2);
	}

	.goods-detail .detail-cont .process li img {
		width: 100px;
		height: 100px;
	}

	.goods-detail .detail-cont .process li p {
		font-size: 1.6rem;
		width: 100px;
	}

	.goods-detail .detail-cont .img-list li.video p {
		font-size: 1.6rem;
	}

	.goods-detail .detail-cont .process li p.name {
		margin-bottom: 5px;
	}

	.goods-detail .detail-cont .process li p.price {
		font-size: 2.2rem;
	}

	.goods-detail .detail-cont .process li p.dash {
		font-size: 2.2rem;
	}

	.goods-detail .detail-cont .process li p.sub {
		font-size: 1.6rem;
		margin-top: 5px;
	}
}

.pay-radio {
	display: flex;
	gap: 10px;
}

.pay-radio label {
	flex: 0 0 calc((100% - 10px * 3) / 4);
	cursor: pointer;
}

.pay-radio input {
	position: absolute;
	left: -999999999px;
	z-index: -9999;
	width: 0px;
	height: 0px;
}

.pay-radio span {
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	font-size: 1.6rem;
}

.pay-radio input:checked + span {
	border: 2px solid #d9b798;
	color: #d9b798;
	font-weight: 600;
}

.bottom-menu {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #947a68;
	z-index: 10;
}

.bottom-menu ul {
	display: flex;
}

.bottom-menu ul li {
	width: 20%;
}

.bottom-menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	font-size: 1.8rem;
	color: #fff;
}

@media all and (max-width: 600px) {
	.bottom-menu {
		display: block;
	}
}


.main-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.main-popup .main-popup-wrap {
	width: 600px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.main-popup .main-popup-wrap .popup-bn-area {
	width: 100%;
	aspect-ratio: 1 / 1;
	position: relative;
}

.main-popup .main-popup-wrap .popup-bn-area a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.main-popup .main-popup-wrap .popup-bn-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-popup .main-popup-wrap .popup-bn-area p {
	padding: 10px 20px;
	font-size: 1.5rem;
}

.main-popup .main-popup-wrap .button-area {
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
}

.main-popup .main-popup-wrap .button-area button {
	color: #888;
	border: none;
	background: none;
	font-size: 1.4rem;
}

.main-popup .main-popup-wrap .button-area button.black {
	color: #222;
}

@media all and (max-width: 600px) {
	.main-popup .main-popup-wrap {
		width: 100%;
		top: unset;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0%);
	}

	.main-popup .main-popup-wrap .popup-bn-area .img-area .swiper-slide {
		width: 100%;
	}

	.main-popup .main-popup-wrap .button-area {
		padding: 10px;
	}

	.main-popup .main-popup-wrap .button-area button {
		font-size: 14px;
	}
}

#workerListDropdown {
	left: 0;
	min-width: 141px !important;
}

.privacy-page {
	padding: 60px 0;
}

.privacy-page .page-tit {
	font-size: 20px;
	margin-bottom: 40px;
	font-weight: 600;
}

.privacy-page .page-txt {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}

@media all and (max-width: 600px) {
	.privacy-page {
		padding: 40px 0 60px;
	}

	.privacy-page .page-tit {
		font-size: 18px;
		margin-bottom: 25px;
	}

	.privacy-page .page-txt {
		font-size: 14px;
	}	
}

/* QUICK MENU */
.quick-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #947a68;
    border-radius: 10px 0 0 10px;
    width: 75px;
    z-index: 100;
}

.quick-menu ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    height: 80px;
}

@media all and (max-width: 900px) {
	.quick-menu {
		border-radius: 10px 0 0 10px;
		width: 60px;
	}

	.quick-menu ul li a {
		gap: 10px 0;
		font-size: 13px;
		height: 65px;
	}
	
	.quick-menu ul li a img {
		width: 20px;
	}
}

@media all and (max-width: 600px) {
	.quick-menu {
		border-radius: 10px 0 0 10px;
		width: 50px;
	}

	.quick-menu ul li a {
		gap: 5px 0;
		font-size: 11px;
		height: 55px;
	}
	
	.quick-menu ul li a img {
		width: 20px;
	}
}

.portfolio-page .sub-category-menu {
    margin-bottom: 40px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portfolio-page .sub-category-menu li a {
	color: #272727;
    font-size: 1.5rem;
	display: flex;
    border-radius: 25px;
    min-height: 30px;
    padding: 3px 15px;
    align-items: center;
    justify-content: center;
	border: 1px solid #ddd;
	background: #fafafa;
}

.portfolio-page .sub-category-menu li.active a {
	color: #fff;
	border: 1px solid #16171b;
	background: #16171b;
}

@media all and (max-width: 900px) {
	.portfolio-page .sub-category-menu {
		margin-bottom: 30px;
	}
}

@media all and (max-width: 600px) {
	..portfolio-page .sub-category-menu {
		margin-bottom: 20px;
		gap: 5px;
	}

	.portfolio-page .sub-category-menu li a {
		min-height: 25px;
		padding: 3px 10px;
	}
}


/* 상품상세 */
.introduction-view-page {
	padding: 80px 35px 100px;
}

.introduction-view-page .page-tit {
	font-size: 2.8rem;
	color: #272727;
	font-weight: 500;
	margin-bottom: 10px;
}

.introduction-view-page .page-txt {
	color: #a2a2a2;
	font-size: 1.8rem;
	border-bottom: 1px solid #efe7e1;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.introduction-view-page .content-wrap {
	font-size: 1.6rem;
	color: #272727;
}

.introduction-view-page .content-wrap * {
	font-size: 1.6rem;
	color: #272727;
}

.introduction-view-page .view-location {
	background: #f9f9f9; 
	padding: 30px;
	font-size: 1.6rem;
	color: #272727;
	margin-top: 60px;
}

.introduction-view-page .view-youtube-wrap {
	margin-top: 60px;
}

.introduction-view-page .view-youtube-wrap .section-tit {
	font-size: 1.8rem;
	color: #272727;
	margin-bottom: 20px;
}

.introduction-view-page .btn-wrap .btn-list {
	display: flex;
	margin: 60px auto 0;
	font-size: 1.8rem;
	background:#333; color:#fff;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 60px;
}

.introduction-view-page .img-list {
	gap: 14px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.introduction-view-page .img-list.four li {
	flex: 0 0 calc((100% - 14px * 3) / 4);
}

.introduction-view-page .img-list .img-wrap {
	aspect-ratio: 32 / 21;
	border-radius: 10px;
}

@media all and (max-width: 1300px) {
	.introduction-view-page {
		padding: 60px 30px 100px;
	}
	
	.introduction-view-page .img-list.four li {
		flex: 0 0 calc((100% - 14px) / 2);
	}
}

@media all and (max-width: 900px) {
	.introduction-view-page {
		padding: 50px 20px 80px;
	}
	
	.introduction-view-page .btn-wrap .btn-list {
		margin: 60px auto 0;
		width: 200px;
		height: 50px;
	}
	
	.introduction-view-page .img-list {
		gap: 10px;
	}

	.introduction-view-page .img-list.four li {
		flex: 0 0 calc((100% - 10px) / 2);
	}
}

@media all and (max-width: 600px) {
	.introduction-view-page {
		padding: 40px 15px 60px;
	}

	.introduction-view-page .page-tit {
		margin-bottom: 10px;
	}
	
	.introduction-view-page .view-location {
		margin-top: 40px;
	}

	.introduction-view-page .view-youtube-wrap {
		margin-top: 40px;
	}

	.introduction-view-page .view-youtube-wrap .section-tit {
		margin-bottom: 20px;
	}

	.introduction-view-page .btn-wrap .btn-list {
		margin: 40px auto 0;
		width: 160px;
		height: 40px;
	}
	
	.introduction-view-page .img-list {
		margin-top: 40px;
	}
	
	.introduction-view-page .img-list.four li {
		flex: 0 0 100%;
	}
}