@charset "utf-8";


/*
	** 회원 관련 CSS(로그인, 회원가입, 개인정보처리방침)
*/


.member-form .container {
	max-width: 640px;
	padding: 0 20px;
	margin: 0 auto;
}
.member-form .button,
.member-form input:not([type="checkbox"],
.member-form [type="radio"],
.member-form [type="file"],
.member-form [type="color"]),
.member-form select { height: calc(var(--height) + 10px); line-height: calc(var(--height) + 10px); }
.member-text {
	font-size: var(--font-size-18);
	line-height: 1.6;
}
.member-divide {
	width: 100%;
	height: 1px;
	background: #d2d2d2;
	margin: 40px 0;
}
.member-form strong {
	font-weight: 600;
}
.member-form .button-wrap .button {
	min-width: 220px;
	font-size: var(--font-size-18);
}
.member-form .agree-header {
	font-size: var(--font-size-20);
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 1px solid #dcdcdc;
}
.member-form .agree-body {
	background: #fff;
	padding: 0;
	margin-top: 20px;
	font-size: var(--font-size-16);
}
@media all and (max-width: 1023px) {
	.member-text {
		font-size: var(--font-size-16);
	}
}
@media all and (max-width: 767px) {
	.member-text {
		font-size: var(--font-size-15);
	}
	.member-divide {
		margin: 20px 0;
	}
	.member-form .button-wrap .button {
		min-width: 120px;
		font-size: var(--font-size-16);
	}
	.member-form .agree-header {
		font-size: var(--font-size-17);
	}
	.member-form .agree-body {
		margin-top: 15px;
		font-size: var(--font-size-14);
	}
}


.member-form .form-row {
	display: block;
	border:none;
}
.member-form .form-title {
	display: block;
	margin-bottom:5px;
}
.member-form .form-item {
	gap:0;
	margin-bottom:10px;
}
.member-form .form-item:last-child {
	margin-bottom:0;
}
.member-certify {
	position: relative;
	width: 100%;
}
.member-certify .certify-count {
	position: absolute;
	right:15px;
	top:50%;
	transform:translateY(-50%);
	color: #999;
	font-size: var(--font-size-14);
}
.member-sns {
	max-width: 600px;
	margin:0 auto;
	border:2px solid #b5b5b5;
	padding:80px 120px;
	border-radius: 50px;
	box-shadow: 0 8px 0 rgba(0,0,0,0.1);
	background: #fff;
}
.member-sns .button {
	display: flex;
	width: 100%;
	height: 65px;
	border:none;
	font-size: var(--font-size-20);
	font-weight: 600;
	align-items: center;
	justify-content: center;
	gap:0 15px;
}
.member-sns .button:not(:last-child) {
	margin-bottom:25px;
}
.member-sns .button.naver {
	background-color: #02c75a;
	color: #fff;
}
.member-sns .button.kakao {
	background-color: #f4e24f;
	color: #191919;
}
.member-sns .button::before {
	display: inline-flex;
	align-items: center;
	content:"";
}
.member-sns .button.kakao::before {
	width: 26px;
	height: 24px;
	background:url("../img/layout/icon-kakao.png") no-repeat center center / contain;
}
.member-sns .button.naver::before {
	width: 24px;
	height: 22px;
	background:url("../img/layout/icon-naver.png") no-repeat center center / contain;
}
.member-lnk {
	--member-space: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:var(--member-space);
	margin-top:var(--space-md);
}
.member-lnk .lnk {
	position: relative;
}
.member-lnk .lnk:not(:last-child)::after {
	display: block;
	content:"";
	width: 1px;
	height: 12px;
	background:#ddd;
	position: absolute;
	right:calc(var(--member-space) / -2);
	top:50%;
	transform:translateY(-50%);
}
@media all and (max-width: 767px) {
	.member-sns {
		padding:35px 25px;
		border-radius: 30px;
		width: calc(100% - 40px);
		max-width: 600px;
	}
	.member-sns .button {
		font-size: var(--font-size-16);
		height: 55px;
	}
	.member-sns .button:not(:last-child) {
		margin-bottom:15px;
	}
	.member-sns .button.kakao::before {
		width: 22px;
		height: 20px;
	}
	.member-sns .button.naver::before {
		width: 20px;
		height: 16px;
	}
}


.policy-docu {
	color: #616161;
}
.policy-docu article:first-of-type {
	margin-top: 0;
}
.policy-area-lg {
	margin-top: 100px;
}
.policy-area-md {
	margin-top: 60px;
}
.policy-area-sm {
	margin-top: 30px;
}
.policy-docu :is(.title-lg,.title-md,.title-sm,.title-xs) {
	font-weight: 700;
	color: #1d1d1d;
}
.policy-docu .policy-title {
	color: var(--primary-color);
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 10px;
}
.policy-docu strong {
	font-weight: 700;
}
.policy-line {
	border-bottom: 1px solid #dcdcdc;
}
.policy-box {
	padding: 40px;
	border: 1px solid #dcdcdc;
}
.policy-box.small {
	padding: 15px 20px;
	margin: 5px 0;
}
.policy-txt {
	margin: 10px 0;
	line-height: 1.5;
}
.policy-list ul {
	margin-top: 10px;
	counter-reset: list-number;
}
.policy-list > li {
	position: relative;
	padding-left: 13px;
	line-height: 1.5;
	counter-increment: list-number;
}
.policy-list > li:not(:last-child) {
	margin-bottom: 10px;
}
.policy-list li::before {
	position: absolute;
	top: 0;
	left: 0;
}
.policy-list.disc > li::before {
	content: "•";
	font-size: var(--font-size-14);
}
.policy-list.dash > li::before {
	content: "-";
}
.policy-list.square > li::before {
	content: "▪";
}
.policy-list:is(.decimal, .hangul, .lower-alpha, .upper-alpha) {
	padding-left: 20px;
}
.policy-list:is(.decimal, .hangul, .lower-alpha, .upper-alpha) > li {
	padding-left: 3px;
}
.policy-list.decimal > li {
	list-style: decimal;
}
.policy-list.hangul > li {
	list-style: hangul;
}
.policy-list.lower-alpha > li {
	list-style: lower-alpha;
}
.policy-list.upper-alpha > li {
	list-style: upper-alpha;
}
.policy-list.circle-number > li {
	padding-left: 23px;
}
.policy-list.circle-number > li::before {
	content: counter(list-number);
	display: inline-block;
    width: 1.25em;
    height: 1.25em;
    border-radius: 50%;
    background: #fff;
	border: 1px solid #777;
    font-size: 0.7rem;
    line-height: 1.25em;
    text-align: center;
	top: 3px;
}

@media all and (max-width: 767px) {
	.policy-box {
		padding: 15px 20px;
	}
}


.member-form .complete-box {
	margin-bottom: 60px;
	padding: 60px 0;
	background: #fff;
	border-top: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	text-align: center;
}
.member-form .complete-box .img {
	margin-bottom: 30px;
}
@media all and (max-width: 767px) {
	.member-form .complete-box {
		margin-bottom: 40px;
		padding: 40px 0;
	}
	.member-form .complete-box .img {
		margin-bottom: 20px;
		width: 78px;
	}
	.member-form .complete-box .title-lg {
		font-size: var(--font-size-24);
	}
}


.member-form .find-box {
	align-content: center;
	min-height: 160px;
	background: #fbfbfb;
	border-radius: var(--border-radius);
	margin-bottom: var(--space-sm);
	text-align: center;
}
.member-form .find-box .title {
	margin-bottom: 10px;
	font-size: var(--font-size-18);
	color: #989898;
}
.member-form .find-box .desc {
	font-weight: 600;
	font-size: var(--font-size-22);
	color: var(--primary-color);
}
@media all and (max-width: 767px) {
	.member-form .find-box {
		min-height: 130px;
	}
	.member-form .find-box .title {
		font-size: var(--font-size-16);
	}
	.member-form .find-box .desc {
		font-size: var(--font-size-20);
	}
}