@font-face {
	font-family: 'Pretendard-Regular';
	font-style: normal;
	font-weight: normal;
	src:
		url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff'),
		url('/fonts/Pretendard-Medium.woff') format("woff"),
		url('/fonts/Pretendard-Medium.woff2') format("woff2"),
		url('/fonts/Pretendard-Medium.ttf') format("truetype");
}

html {
	font-size: 62.5%;
}

*, body {
	font-family: 'Pretendard-Regular', 'Apple SD Gothic Neo' , 'Noto Sans KR', sans-serif;
}

main {
	padding-top: 130px;
}

a {
	text-decoration: none;
	color: #000;
}

button {
	display: block;
	border: none;
	background: none;
	cursor: pointer;
}

.mainArea .mainCont {
	max-width: 1440px;
	/* background: lavender; */
	box-sizing: border-box;
	padding: 0 20px;
	margin: 0 auto;
}

::-moz-selection {
	background: #1AB6E4;
	color: #fff;
}

::selection {
	background: #1AB6E4;
	color: #fff;
}

/* 웍마켓 공통 및 회원가입 양식 */
.marketTop {
	padding: 120px 0 80px;
	text-align: center;
}

.marketTop .title {
	font-weight: 600;
	font-size: 48px;
	line-height: 29px;
	color: #222;
}

.marketTop p {
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
	color: #222;
	padding-top: 18px;
}

.marketTop p span {
	display: block;
}
.pagingArea.mobile {
	display: none;
}

/* 페이지네이션 */
.pagingArea.mobile .moreBtn {
	margin: 40px auto 0;
	width: 110px;
	background: #FFFFFF;
	border: 1px solid #939FA4;
	border-radius: 100px;
	padding: 12px 24px;
	/* display: none; */
}

.pagingArea.mobile .moreBtn.notice {
	margin: 40px auto;
}

.pagingArea.pc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 80px auto 0;
}

.pagingArea.pc .btn {
	box-sizing: border-box;
	width: 59px;
	height: 59px;
	background: #FFFFFF;
	box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}

.pagingArea.pc .btn.next>img {
	transform: rotate(180deg);
}

.pagingArea.pc ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}


.pagingArea.pc ul li {
	width: 59px;
	height: 59px;
	box-sizing: border-box;
	background: #FFFFFF;
	box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}

.pagingArea.pc ul li button {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #333;
}

.pagingArea.pc button.active {
	background: #1AB6E4;
	color: #fff;
}

.pagingArea.pc ul li button:focus,
.pagingArea.pc ul li button:hover {
	background: #1AB6E4;
	color: #fff;
}

.toastPopup {
	width: fit-content;
	position: fixed;
	margin: 0 auto;
	left: 0;
	right: 0;
	z-index: 10;
	bottom: 80px;
	padding: 20px;
	background: #1AB6E4;
	color: #fff;
	border-radius: 100px;
	font-weight: 500;
	font-size: 18px;
	line-height: 16px;
	display: none;
}

input .errorbox {
	position: absolute;
	background: rgba(255, 39, 45, 0.8);
	right: 30px;
	top: 35px;
	border-radius: 6px;
	color: #fff;
	font-size: 12px;
	padding: 10px;
	z-index: 20;
	line-height: 150%;
}

@media screen and (max-width: 1400px) {
	main {
		padding-top: 80px;
	}
}

@media screen and (max-width: 998px) {

	header.noHeader,
	footer.noFooter {
		display: none;
	}

	.marketTop {
		padding: 30px 0 40px;
	}

	.marketTop .title {
		font-weight: 700;
		font-size: 36px;
		line-height: 43px;
	}

	.marketTop p {
		font-weight: 400;
		font-size: 16px;
		padding-top: 8px;
	}

	.pagingArea.mobile{
		display: block;
	}

	.pagingArea.pc {
		display: none;
	}
}