@charset "utf-8";

@font-face {
	font-family: "paybooc-Light";
	src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Light.woff") format("woff");
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: "paybooc-Medium";
	src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Medium.woff") format("woff");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "paybooc-Bold";
	src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-Bold.woff") format("woff");
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: "paybooc-ExtraBold";
	src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/paybooc-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-display: swap;
}

* { 
	box-sizing:border-box;
	margin:0;
	padding:0;
	word-break:keep-all;
}
body {
	width: 100%;
	font-family: "paybooc-Medium", sans-serif;
	font-weight: 400;
	line-height:1.3;
	letter-spacing:-.3px;
}
a { 
	text-decoration:none; 	
}
li { 
	list-style:none; 
}
label, button, a, select, textarea, input { 
	font-family: "paybooc-Medium", sans-serif;
	letter-spacing:-.3px;
	line-height:1.3;
}
input, button, select, textarea { 
	background:transparent;
	border:none;
}
label, button, a { 
	cursor:pointer;
}
input { 
	display:block;
	min-width: 0;
}
textarea { 
	resize:none; 
}
table { 
	width: 100%;
	table-layout:fixed;
	border-spacing:0;
	border-collapse:collapse;
}
table td,
table td * { 
	word-break:break-all; 
}

.wrapper { 
	padding:71px 0 0;
}
.inner { 
	max-width: 1440px;
	margin:0 auto;
}
@media all and (max-width:1472px){
	.inner { 
		margin:0 16px;
	}
}
@media all and (max-width:999px){	
	.wrapper { 
		padding:56px 0 0;
	}
}

.temporaryBox { 
	text-align: center;
	font-size: 0;
}
.temporaryBox img { 
	max-width: 100%;
}

/* 헤더 시작
------------------------------------------------------ */
header { 
	position:fixed;
	width: 100%;
	height: 71px;
	top: 0;
	left: 0;
	background: #FFF;
	border-bottom:1px solid #F0F0F0;
	z-index: 2;
}
header .inner { 
	height: 100%;
}
header .mbLogo01,
header .mbMenuToggle { 
	display:none;
}
header .mbMenuBox { 
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:8px;
	height: 100%;
}
header .hLogo01 { 
	font-size: 0;
}
header .hLogo01 a { 
	display:block;
}
header .hLogo01 img { 
	max-width: 100%;
}
header .hMenuBox01 { 
	display:flex;
	gap:40px;
}
header .hMenuLnk01 { 
	display:block;
	font-weight: 700;
	font-size: 15px;
	color: #212121;
	transition:all .3s ease;
}
header .hMenuLnk01:focus,
header .hMenuLnk01:hover { 
	color: #4875FD;
}
header .hExtraLnk01 { 
	display:block;
	padding:10px 24px 9px;
	background:linear-gradient(to right, #48A7FD, #4875FD);
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	color: #FFF;
}
@media all and (max-width:999px){
	header { 
		height: 56px;
	}
	header .inner { 
		display:flex;
		align-items:center;
		justify-content:space-between;
	}
	header .mbLogo01 {
		display:block;
		width: 162px;
		font-size: 0;
	}
	header .mbLogo01 a { 
		display:block;
	}
	header .mbLogo01 img { 
		max-width: 100%;
	}
	header .mbMenuToggle { 
		position:relative;
		display:block;
		width: 24px;
		height: 24px;
		overflow: hidden;
	}
	header .mbMenuToggle:before,
	header .mbMenuToggle:after { 
		content:"";
		position:absolute;
		box-sizing:border-box;
		display:block;
		width: 16px;
		height: 2px;
		left: 50%;
		margin:0 0 0 -8px;
		background: #212121;
		border-radius: 10px;
		transition:all .3s ease;
	}
	header .mbMenuToggle:before { 
		top: 5px;
	}
	header .mbMenuToggle:after { 
		top: 17px;
	}
	header .mbMenuToggle span { 
		position:absolute;
		display:block;
		width: 8px;
		height: 2px;
		top: 50%;
		left: 4px;
		margin:-1px 0 0 0;
		background: #212121;
		border-radius: 10px;
		transition:all .3s ease;
	}
	header .mbMenuToggle.on:before { 
		top: 11px;
		transform:rotate(45deg);
	}
	header .mbMenuToggle.on:after { 
		top: 11px;
		transform:rotate(-45deg);
	}
	header .mbMenuToggle.on span { 
		left: -8px;
	}
	header .mbMenuBox { 
		position:fixed;
		flex-direction:column;
		width: 100%;
		height: calc(100% - 56px);
		top: 56px;
		right: -100%;
		padding:19px 16px 30px;
		background: #FFF;
		transition:all .3s ease;
		z-index: 2;
	}
	header .mbMenuBox.on { 
		right: 0;
	}
	header .hLogo01 { 
		display:none;
	}
	header .hMenuBox01 { 
		flex-grow:1;
		display:block;
		width: 100%;
		min-height: 0;	
	}
	header .hMenuLnk01 { 
		padding:18px 10px 17px;
		text-align: center;
		border-bottom:1px solid #F0F0F0;
	}
	header .hExtraLnk01 { 
		width: 100%;
		padding:13px 10px 12px;
		text-align: center;
	}
}
/* 헤더 끝
------------------------------------------------------ */
/* 푸터 시작
------------------------------------------------------ */
footer { 
	padding:79px 0;
	background: #FAFAFA;
	border-top:1px solid #F0F0F0;
}
footer .fTopBox01 {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	margin:0 0 38px;
	padding:0 0 40px;
	border-bottom:1px solid #DBDBDB;
}
footer .fLogo01 { 
	font-size:0;
}
footer .fLogo01 img { 
	max-width: 100%;
}
footer .fTopLnk01 { 
	display:block;
	padding:13px 20px 12px;
	border:1px solid #212121;
	border-radius: 10px;
	font-weight: 700;
	color: #212121;
}
footer .fInfoLst01 { 
	display:flex;
	flex-wrap:wrap;
	gap:12px;
}
footer .fInfoLst01 li { 
	position:relative;
	padding:0 13px 0 0;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0;
	color: #424242;
}
footer .fInfoLst01 li:after { 
	content:"";
	position:absolute;
	box-sizing:border-box;
	display:block;
	width: 1px;
	height: 8px;
	top: 4px;
	right: 0;
	background: #DBDBDB;
}
footer .fInfoLst01 li span { 
	color: #666;
}
footer .fInfoLst01 li:last-child { 
	padding:0;
}
footer .fInfoLst01 li:last-child:after { 
	display:none;
}
footer .fInfoLst01 + .fInfoLst01 { 
	margin-top:5px;
}
footer .fCopy01 { 
	margin:35px 0 0;
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0;
	color: #999;
}
@media all and (max-width:999px){
	footer { 
		padding:36px 0;
	}
	footer .fTopBox01 { 
		margin:0 0 24px;
		padding:0 0 24px;
	}
	footer .fLogo01 { 
		width: 120px;
	}
	footer .fTopLnk01 { 
		padding:10px 10px 9px;
		font-size: 13px;
	}
	footer .fInfoLst01 { 
		gap:8px;
	}
	footer .fInfoLst01 li { 
		padding:0;
	}
	footer .fInfoLst01 li:after { 
		display:none;
	}
	footer .fInfoLst01 + .fInfoLst01 { 
		margin-top:8px;
	}
	footer .fCopy01 { 
		margin:24px 0 0;
	}
}
/* 푸터 끝
------------------------------------------------------ */