@charset "utf-8";
:root {
	--fontFamily: "NotoSansKr-var";
	--fontFamilyP: "Paperlogy";
	--fontFamilyS: "SEBANG-Gothic";
}


/*reset*/
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-style: normal;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1.3;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
table { width: 100%; border-collapse: collapse; border-spacing: 0;}
button {border: none; background: none; box-shadow: none; cursor: pointer;}
a {text-decoration: none; color: inherit;}
img {max-width: 100%;}
input, textarea {font-size: 1rem; border: none; background: #fff;}

/*korapis base*/
html {font-size: 10px; background-color: #f2f2f2; font-family: var(--fontFamily);}


/*header*/
#header {
	position: relative;
	display: flex;
	width: 100%;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #FFF;
	z-index: 999;
}

#header h1 {padding: 0 50px 0 20px;}
#header h1 a img {max-width: 160px;}
#header.on,
#header.is-active {border-radius: 15px 15px 0 0; border-bottom: 1px solid transparent !important;}
/* gnb 메뉴 속성 ==================================================================================*/
#header #gnb_wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header #gnb_wrap .open_sitemap {width: 60px;}
#header #gnb_wrap .open_sitemap img {max-width: 4px;}
#header #gnb_wrap .open_sitemap:hover img {filter: invert(58%) sepia(52%) saturate(567%) hue-rotate(314deg) brightness(101%) contrast(101%);}
#header #gnb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: calc(100% - 200px);
	height: 60px;
}
#header #gnb::before,
#header #gnb::after {
	position: absolute;
	content: '';
	display: block;
	width: 1px;
	height: 30px;
	background: rgba(0,0,0,0.1);
	top: 50%;
	transform: translateY(-50%);
}
#header #gnb::before{left: 0;}
#header #gnb::after{right: 0;}
#header.is-active #gnb { overflow: visible; }


/* gnb ul */

#header .gnb_inner { position: relative; width: 100%; height: 100%; -webkit-transition:0.4s ease-in-out; -moz-transition:0.4s ease-in-out;-o-transition:0.4s ease-in-out;transition:0.4s ease-in-out; display: flex; align-items: center; justify-content: space-around;}

/* gnb ul li */
#header .gnb_inner > li {width: 100%; height: 100%;}

/* gnb ul li a 대메뉴링크*/
#header .gnb_inner > li > a { position: relative; display: block; text-align: center; height: 100%; font-size:1.6rem; line-height: 60px; font-family: var(--fontFamilyP); }
#header .gnb_inner > li:hover > a { color:#FF7761}

/*메뉴 배경*/
#header .header-bg {
	position: absolute;
	left: 0; top: 100%;
	display: block;
	width: calc((100% / 6 * 1));
	height: 0;
	padding: 0; margin: 0;
	opacity: 0;
	-webkit-transition:0.4s ease-in-out;
	-moz-transition:0.4s ease-in-out;
	-o-transition:0.4s ease-in-out;
	transition:0.4s ease-in-out;
}
#header.is-active .header-bg {opacity: 1; height: 399px; top: 0; background: linear-gradient(180deg, #FFFDF6 0%, #FFF7DE 100%); }
#header .sub-gnb {
	position: absolute; top: 100%;
	width: calc((100% / 6 * 1)); height: 0; opacity: 0;
	-webkit-transition:0.6s ease-in-out;
	-moz-transition:0.6s ease-in-out;
	-o-transition:0.6s ease-in-out;
	transition:0.6s ease-in-out;
}
#header .sub-gnb .tit, #header .sub-gnb a { color: #000; -webkit-transition: color .2s ease-in; transition: color .2s ease-in; -ms-word-break: keep-all;
word-break: keep-all; line-height: 1.2;}

#header .sub-gnb > li { display: block ; width: calc((100% / 6 * 1)); }
#header .gnb_inner {
	-webkit-transition:0.4s ease-in-out;
	-moz-transition:0.4s ease-in-out;
	-o-transition:0.4s ease-in-out;
	transition:0.4s ease-in-out;
}
#header .gnb_inner > li:nth-child(1) .sub-gnb { left: 0; }
#header .gnb_inner > li:nth-child(2) .sub-gnb { left: calc((100% / 6 * 1)); }
#header .gnb_inner > li:nth-child(3) .sub-gnb { left: calc((100% / 6 * 2)); }
#header .gnb_inner > li:nth-child(4) .sub-gnb { left: calc((100% / 6 * 3)); }
#header .gnb_inner > li:nth-child(5) .sub-gnb { left: calc((100% / 6 * 4)); }
#header .gnb_inner > li:nth-child(6) .sub-gnb { left: calc((100% / 6 * 5)); }
#header .sub-gnb > .tit { display: block; font-size: 24px;padding: 30px 0 20px; line-height: 1;}
#header .sub_menu { display: none; padding-top: 10px;}
#header .sub_menu > li { position: relative;padding: 0 10px;}
#header .sub_menu > li > a {
	display:inline-block;
	width:100%; padding: 8px 0;
	background:none; color:rgba(0,0,0,0.7);
	font-weight:400; font-size:15px; border-radius: 3px;
	-webkit-transition:all 0.4s ease-in-out;
	-moz-transition:all 0.4s ease-in-out;
	-o-transition:all 0.4s ease-in-out;
	transition:all 0.4s ease-in-out;
}
#header .sub_menu > li > a > i {font-size: 13px; margin-left: 10px;}
#header .sub_menu > li > a:hover {font-weight: 500; color: #000; text-decoration: underline;}
#header .gnb_inner > li:hover > .sub-gnb li.has_menu > ul li a {color: #d9dff4;}
#header .sub_menu > li.has_menu {position: relative; margin-bottom: 155px;}
#header .sub_menu > li.has_menu > ul {position: absolute; top: 100%; left: 50%; transform:translateX(-50%);}
#header .sub_menu > li.has_menu > ul li {text-align: left;}
#header .sub_menu > li.has_menu > ul li a {display: block; padding: 5px 0; color: #565656; font-size: 14px;}
#header .sub_menu > li.has_menu > ul li:hover a {color:#fff !important;}

/* SUB MENU ACTIVE */
#header.is-active { -webkit-transition: height .2s ease-in-out; transition: height .2s ease-in-out; }
#header.is-active .sub-gnb { display: block; opacity: 1; height: 340px;}
#header.is-active .sub_menu { display: block; }
#header.on .sub-gnb { display: block; opacity: 1; height: 340px; }
#header.on .sub_menu { display: block; }
#header .header_fullbg {content: ''; position: absolute; top: 100%; left: -1px; width: calc(100% + 2px); height: 0; background-color: #fff; -webkit-transition: height 0.4s ease-in-out; transition: height 0.4s ease-in-out; border-radius: 0 0 15px 15px; }
#header.is-active .header_fullbg{ height: 340px; border: 1px solid rgba(0, 0, 0, 0.10); border-top: 1px solid transparent;}
#header.on .header_fullbg{ height: 340px;  border: 1px solid rgba(0, 0, 0, 0.10); border-top: 1px solid transparent;}

@media (max-width: 1600px) {
	#header h1 {padding: 0 20px;}
	#header .gnb_inner > li > a {font-size: 1.4rem;}
	#header .sub_menu > li > a {font-size: 1.3rem;}
}
@media (max-width: 1200px) {
	#header h1 a img {max-width: 120px;}
}
@media (max-width: 980px) {
	#header {display: none;}
}

/*mobSide*/
.mobHeader {
	display: none;
	/* display: flex; */
	align-items: center;
	justify-content: space-between;
}
.mobHeader h1 img {max-width: 140px;}
.openSide {padding: 5px 20px; border-left: 1px solid rgba(0, 0, 0, 0.10);}
.openSide img {max-height: 20px;}
@media (max-width: 980px) {
	.mobHeader {
		display: flex;
	}
}
.mobSideWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobSideWrap.close {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.mobSideMask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
}
.mobSideBox {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 340px;
	height: 100%;
	padding: 15px;
	background: #fff;
	box-shadow: -5px 0 4px 0 #000;
	transition: transform 0.3s ease;
	transform: translateX(0);
}

.mobSideWrap.close .mobSideBox {
	transform: translateX(100%);
}
.mobSideTop {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobSideTop img {max-width: 18px;}
.mobSideTop div {
	display: flex;
	align-items: center;
	gap: 20px;
}
.mobSideLogin, .mobAfterLogin {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 15px 0 10px;
}
.mobSideLogin a, .mobAfterLogin a {
	height: 35px;
	line-height: 35px;
	border-radius: 7px;
	text-align: center;
	color: #fff;
	font-family: var(--fontFamilyP);
	font-size: 1.5rem;
}
.mobSideLogin a:first-child, .mobAfterLogin a:first-child {
	width: 70%;
	background: #FF8C79;
}
.mobSideLogin a:last-child, .mobAfterLogin a:last-child  {
	width: 30%;
	background: #C3C3C3;
}

.mobAfterLogin_text, .mobAfterLogin_text span{
	font-size: 1.6rem;
	font-family: var(--fontFamilyP);
	text-align:center;
	margin-top:20px;
}

.mobSideQuick {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}
.mobSideQuick a {width: 100%; text-align: center;}
.mobSideQuick p {
	padding: 15px 0;
	border-radius: 7px;
	background: #F9F9F9;
	margin-bottom: 5px;
}
.mobSideQuick b {
	color: #000;
	font-size: 1.3rem;
	font-weight: 500;
}
.mobSideQuick a:hover p {background: #FFFAEB;}
.mobSideQuick a:hover b {border-bottom: 1px solid #000;}

.mobSideMenu {
	width: 100%;
	max-height: calc(100vh - 225px);
	overflow-y: auto;
	border-radius: 7px;
	background: #FFFAEB;
	padding: 5px;
}
.mobSideMenu .mobInner > li {padding: 0 10px;}
.mobSideMenu .mobInner > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 15px 10px;
	color: #000;
	font-family: var(--fontFamilyP);
	font-size: 1.6rem;
	font-weight: normal;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.mobSideMenu .mobInner > li > a i {color: #354052;}
.mobSideMenu .mobInner > li:last-child > a {border-bottom: none;}
.mobSideMenu .mobInner > li.on {
	border-radius: 7px;
	border: 1px solid #F8E9D6;
	background: #FFF;
	box-shadow: 0 0 4px 0 #FFDC72;
}
.mobSideMenu .mobInner > li.on > a {font-weight: 600;}
.mobSideMenu .mobInner > li.on > a i {transform: rotate(180deg);}
.mobSideMenu .mobInner .sub-gnb {
	display: none;
	padding: 10px 25px 15px;
}
.mobSideMenu .mobInner .sub_menu li a {
	display: block;
	padding: 5px 0 5px 10px;
	font-size: 1.4rem;
	color: #555;
	position: relative;
}
.mobSideMenu .mobInner .sub_menu li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 3px;
	height: 3px;
	background: #f2b632;
	transform: translateY(-50%);
}
.mobSideMenu .mobInner .sub_menu li a:hover {color:#FF8C79;}


/*footer*/
footer {margin-top: 40px;}
footer .footerMenu {
	display: flex;
	align-items: center;
	gap: 10px 40px;
}
footer .footerMenu a {
	color: rgba(0,0,0,0.8);
	font-size: 1.8rem;
	border-bottom: 1px solid transparent;
}
footer .footerMenu a:hover {
	border-bottom: 1px solid #FF7761;
	color: #FF7761;
	font-weight: 500;
}
footer .footerInfo {
	margin-top: 40px;
	color: rgba(0,0,0,0.5);
	font-size: 1.8rem;
}
footer .footerInfo ul {
	display: flex;
	margin-top: 5px;
}
footer .footerInfo ul li {padding-right: 10px; margin-right: 10px; border-right: 1px solid rgba(0,0,0,0.1);}
footer .footerInfo ul li:last-child {padding-right: 0; margin-right: 0; border-right: none;}
footer .footerInfo ul li b {color: rgba(0,0,0,0.8);}
footer .footerInfo ul li a:hover {color: rgba(0,0,0,0.8);}
footer .footerCopy {color: rgba(0,0,0,0.3); font-size: 1.8rem; margin-top: 50px;}

@media (max-width: 980px) {
	footer .footerMenu {gap: 20px;}
	footer .footerMenu a {font-size: 1.4rem;}
	footer .footerInfo {margin-top: 20px; font-size: 1.4rem; word-break: keep-all;}
	footer .footerInfo ul {display: block;}
	footer .footerInfo ul li {width: 100%; padding-right: 0; margin-right: 0; border-right: none;}
	footer .footerCopy {margin-top: 15px; font-size: 1.2rem;}
}
@media (max-width: 480px) {
	footer .footerMenu {gap: 10px;}
	footer .footerMenu a {font-size: 1.2rem; letter-spacing: -0.5px;}
	footer .footerInfo {margin-top: 20px; font-size: 1.2rem;}
	footer .footerCopy {margin-top: 15px; font-size: 1.1rem;}
}

/*layout*/
body {background-color: #F2F2F2; padding: 20px;}
@media (max-width: 980px){
	body {padding: 10px;}
}
.pageWrap {
	width: 100%;
}
.conWrap {
	width: 100%;
	max-width: 1880px;
	margin: 0 auto;
}
.conWrap.indexWrap,
.conWrap.subWrap {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.conLeft {
	width: calc(100% - 410px);
	padding: 25px;
	background: #fff;
	border-radius: 40px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	transition: width 0.4s;
}
.conLeft.moveOn {width: calc(100% - 90px);}


.fixedRight {
	position: fixed;
	top: 20px;
	/* right: 20px; */
	left: calc(50% + 540px);
	width: 400px;
	z-index: 999;
}
.fixedRight.close {
	left: calc(50% + 860px);
}
@media (max-width: 1880px) {
	.fixedRight,
	.fixedRight.close {
		left: auto;
		right: 20px;
	}
}
.fixedRight .fixedRightBox {
	display: block;
	width: 100%;
	background: #fff;
	border-radius: 40px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 10px;
}
.fixedRight .fixedRightBox.box1 {
	/* padding: 25px; */
	padding: 15px 25px;
}
.fixedRight .fixedRightBox.box1 .box1Top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fixedRight .fixedRightBox.box1 .box1Top button {padding: 0;}
.fixedRight .fixedRightBox.box1 .box1Top button.active img {transform: rotate(-180deg);}
.fixedRight .fixedRightBox.box1 .box1Top button:hover img {filter: invert(58%) sepia(52%) saturate(567%) hue-rotate(314deg) brightness(101%) contrast(101%);}
.fixedRight .fixedRightBox.box1 .box1Login {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}
.fixedRight .fixedRightBox.box1 .box1Login p {font-family: var(--fontFamilyP); font-size: 1.6rem;}
.fixedRight .fixedRightBox.box1 .box1Login a.login {background: #FF8C79; width: 100%; padding: 15px; color: #fff; font-family: var(--fontFamilyP); font-size: 1.8rem; text-align: center; border-radius: 10px;}
.fixedRight .fixedRightBox.box1 .box1Login a.login:hover {
	background: #FF7761;
}


.fixedRight .fixedRightBox.box1 .afterLogin a.myPage {background: #FF8C79; width: 100%; padding: 15px; color: #fff; font-family: var(--fontFamilyP); font-size: 1.8rem; text-align: center; border-radius: 10px;}
.fixedRight .fixedRightBox.box1 .afterLogin a.logOut{ background: #C3C3C3; width: 100%; padding: 15px; color: #fff; font-family: var(--fontFamilyP); font-size: 1.8rem; text-align: center; border-radius: 10px;}
.fixedRight .fixedRightBox.box1 .afterLogin a.myPage:hover {
	background: #FF7761;
}

.fixedRight .fixedRightBox.box1 .box1Login a.join {
	border-bottom: 1px solid #000; font-size: 1.3rem;
}
.fixedRight .fixedRightBox.box1 .box1Login a.join:hover { color: #E24329; border-bottom: 1px solid #E24329;}
.fixedRight .fixedRightBox.box1 .box1Menu {margin-top: 15px; display: flex;align-items: center; gap: 10px;}
.fixedRight .fixedRightBox.box1 .box1Menu a {width: 100%; text-align: center;}
.fixedRight .fixedRightBox.box1 .box1Menu a p {
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 100px; */
	height: 90px;
	border-radius: 15px;
	background: #F9F9F9;
	margin-bottom: 10px;
}
.fixedRight .fixedRightBox.box1 .box1Menu a b {font-size: 1.6rem; font-weight: 500;}
.fixedRight .fixedRightBox.box1 .box1Menu a:hover p {background: #FFFAEB;}
.fixedRight .fixedRightBox.box1 .box1Menu a:hover b {border-bottom: 1px solid #000; }

.fixedRight .fixedRightBox.box2 .box2Title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--fontFamilyP);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	/* padding: 20px 30px; */
	padding: 10px 30px;
}
.fixedRight .fixedRightBox.box2 .box2Title h4 {
	font-weight: 600;
	font-size: 2.2rem;
}
.fixedRight .fixedRightBox.box2 .box2Title button {
	display: flex;
	align-items: center;
	gap: 5px;
}
.fixedRight .fixedRightBox.box2 .tooltipLayer {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
}
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipMask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.fixedRight .fixedRightBox.box2 .tooltipLayer  .tooltipBox {
	position: absolute;
	right: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 420px;
	border-radius: 30px;
	background: #FFF;
}
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox h5 {display: flex; justify-content: space-between; font-size: 1.8rem; font-weight: 600; padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.1);}

.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox h5 button {font-size: 2rem;}
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox h5 button:hover {color: #FF7761; }
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox .tooltipCont {padding: 20px;}
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox .tooltipCont div.iframe {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 177.5%;
	border-radius: 20px;
	overflow: hidden;
}
.fixedRight .fixedRightBox.box2 .tooltipLayer .tooltipBox .tooltipCont div.iframe iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.fixedRight .fixedRightBox.box2 .box2Title button span {font-size: 1.6rem; color: rgba(0,0,0,0.77); border-bottom: 1px solid rgba(0,0,0,0.77);font-family: var(--fontFamilyP);}
.fixedRight .fixedRightBox.box2 .box2Title button:hover span {color: #FF7761; border-bottom: 1px solid #FF7761;}
.fixedRight .fixedRightBox.box2 .box2Title button:hover img {filter: invert(58%) sepia(52%) saturate(567%) hue-rotate(314deg) brightness(101%) contrast(101%);}
.fixedRight .fixedRightBox.box2 .box2Cont {
	/* padding: 20px 30px 30px; */
	padding: 10px 30px 15px;
}
.fixedRight .fixedRightBox.box2 .box2Cont .box2Search {
	display: flex;
	align-items: center;
}
.fixedRight .fixedRightBox.box2 .box2Cont .box2Search input {
	width: calc(100% - 60px);
	height: 60px;
	padding: 0 25px;
	border-radius: 30px 0 0 30px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	border-right: none;
	background: #FFF;
	font-size: 2.5rem;
	font-family: var(--fontFamilyP);
	font-weight: 500;
}
.fixedRight .fixedRightBox.box2 .box2Cont .box2Search button {
	width: 90px;
	height: 60px;
	border-radius: 0 30px 30px 0;
	background: #FFCD4B;
	font-family: var(--fontFamilyP);
	font-size: 2rem;
	font-weight: 500;
}
.fixedRight .fixedRightBox.box2 .box2Cont .box2Search button:hover {background: #000; color: #FFCD4B;}
.fixedRight .fixedRightBox.box2 .box2Cont p {
	color: rgba(0, 0, 0, 0.5);
	font-size: 1.4rem;
	margin-top: 20px;
	margin-bottom: 10px;
}
.fixedRight .fixedRightBox.box2 .box2Cont p b {
	color: rgba(0, 0, 0, 0.7);
	font-weight: 600;
	text-decoration: underline;
}
.fixedRight .fixedRightBox.box2 .box2Cont a {
	font-family: var(--fontFamilyP);
	font-size: 1.4rem;
	text-decoration: underline;
	color: rgba(0, 0, 0, 0.77);
}
.fixedRight .fixedRightBox.box2 .box2Cont a:hover {
	color: #FF7761; font-weight: 600;
}
.fixedRight .fixedRightBox.box3 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	/* padding: 20px; */
	padding: 15px;
	border: 1px solid transparent;
}
.fixedRight .fixedRightBox.box3 span {
	color: #354052;
	font-size: 1.6rem;
	font-weight: 700;
}
.fixedRight .fixedRightBox.box3:hover {background: #FFF8E3; }

.fixedRightBox.box1 {position: relative; overflow: hidden;}
.searchWrap {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	padding: 10px;
}
.searchClose {text-align: right;}
.searchClose button {width: 50px; height: 50px; color: #fff; font-size: 2.5rem; padding: 0;}
.searchInput {
	position: relative;
	width: 100%;
}
.searchInput input {
	width: 100%;
	height: 60px;
	border-radius: 60px;
	padding: 0 25px;
	font-size: 2rem;
	font-family: var(--fontFamilyP);
	font-weight: 500;
	border: 1px solid rgba(0,0,0,0.1);
}
.searchInput input::placeholder {color: #c2c2c2;}
.searchInput button {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background: #FFCD4B;
	border-radius: 50%;
}
.keyword {
	width: 120px;
	margin: 45px auto 0;
	font-family: var(--fontFamilyP);
}
.keyword h5 {
	color: #FFCD4B;
	font-weight: 600;
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.keyword a {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-size: 2rem;
}
.keyword a:hover {text-decoration: underline;}

.fixedRight.close {max-height: calc(100% - 40px);}
.fixedRight.close {
	width: 80px;
	border-radius: 80px;
	background: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}
.fixedRight.close .fixedRightBox {padding: 0; box-shadow: none;}
.fixedRight.close .fixedRightBox.box1 .box1Top {
	display: block;
}
.fixedRight.close .fixedRightBox.box1 .box1Top button {margin: 20px auto; display: block;}
.fixedRight.close .fixedRightBox.box1 .box1Top button.openSearch {width: 55px; height: 55px; border-radius: 50%; margin: 0 auto; display: block; background: #F9F9F9;}
.fixedRight.close .fixedRightBox.box1 .box1Top button.openSearch:hover {background: #000;}
.fixedRight.close .fixedRightBox.box1 .box1Top button.openSearch:hover img {filter: invert(78%) sepia(54%) saturate(520%) hue-rotate(2deg) brightness(104%) contrast(101%);}

.fixedRight.close .fixedRightBox.box1 .box1Login img,
.fixedRight.close .fixedRightBox.box1 .box1Login p,
.fixedRight.close .fixedRightBox.box1 .box1Login .join,
.fixedRight.close .fixedRightBox.box1 .afterLogin img,
.fixedRight.close .fixedRightBox.box1 .afterLogin p,
.fixedRight.close .fixedRightBox.box1 .afterLogin .logOut{display: none;}

.fixedRight.close .fixedRightBox.box1 .box1Login .login,
.fixedRight.close .fixedRightBox.box1 .afterLogin .myPage{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	font-size: 0;
	background: url(/images/main/korapis_main_right_box1_icon.png) no-repeat center/cover;
	margin: 20px auto;
	border: 2px solid transparent;
}
.fixedRight.close .fixedRightBox.box1 .box1Login .login:hover, 
.fixedRight.close .fixedRightBox.box1 .afterLogin .myPage:hover{
	background: url(/images/main/korapis_main_right_box1_icon.png) no-repeat center/cover;
	border: 2px solid #FF7761;
}
.fixedRight.close .fixedRightBox.box1 .box1Menu {display: block; margin: 0;}
.fixedRight.close .fixedRightBox.box1 .box1Menu a {
	display: block; width: 55px; height: 55px; border-radius: 50%;
	overflow: hidden; margin: 0 auto 5px;
}
.fixedRight.close .fixedRightBox.box1 .box1Menu a p {width: 100%; height: 100%; margin: 0; border-radius: 0;}
.fixedRight.close .fixedRightBox.box1 .box1Menu a p img {max-width: 60%;}
.fixedRight.close .fixedRightBox.box1 .box1Menu a b {display: none;}
.fixedRight.close .fixedRightBox.box2 .box2Title,
.fixedRight.close .fixedRightBox.box2 .box2Cont .box2Search,
.fixedRight.close .fixedRightBox.box2 .box2Cont p {display: none;}
.fixedRight.close .fixedRightBox.box2 .box2Cont {padding: 0;}
.fixedRight.close .fixedRightBox.box2 .box2Cont a {
	/* margin: 250px auto 5px; */
	margin: 200px auto 5px;
	font-size: 0;
	display: block;
	width: 55px;
	height: 55px;
	border-radius: 54px;
	border: 2px solid #354052;
	background: #FFCD4B url(/images/main/korapis_main_right_box2_icon.png) no-repeat center;
}
.fixedRight.close .fixedRightBox.box2 .box2Cont a:hover {
	background: #354052 url(/images/main/korapis_main_right_box2_icon2.png) no-repeat center;
}
.fixedRight.close .fixedRightBox.box3 {
	width: 55px; height: 55px; box-shadow: none;
	border-radius: 27px;
	border: 2px solid #354052;
	background: #FFF;
	margin: 0 auto 20px;
}
.fixedRight.close .fixedRightBox.box3 span {display: none;}
.fixedRight.close .fixedRightBox.box3:hover {background: #FFF8E3;}

/* 판매점찾기 추가 */
.fixedRightBox.box4 {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 25px;
    box-sizing: border-box;
	border-radius: 50px;
}
.fixedRightBox.box4 img {
    max-width: 40px;
    flex-shrink: 0;
}
.fixedRightBox.box4 p b {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: keep-all;
	font-family: var(--fontFamilyP);
    margin-bottom: 5px;
}
.fixedRightBox.box4 p span{
	color: rgba(0, 0, 0, 0.5);
    font-size: 1.4rem;
	word-break: keep-all;
}
.fixedRightBox.box4:hover {
    background: #FFF8E3;
}

.fixedRight.close .fixedRightBox.box4 {
	width: 55px;
	height: 55px;
	padding: 0;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 20px;
	background: #F9F9F9;
	border: 2px solid #354052;
}
.fixedRight.close .fixedRightBox.box4 img {
	width: 60%;
	margin: 0 auto;
}
.fixedRight.close .fixedRightBox.box4 p {display: none;}
.fixedRight.close .fixedRightBox.box4:hover {background: #FFFAEB;}

@media (max-width: 1600px) {
	.conLeft {width: calc(100% - 100px);}
}
@media (max-width: 980px) {
	.conLeft {
		width: 100%;
		border-radius: 15px;
		padding: 10px;
	}
	.conLeft.moveOn {
		width: 100%;
	}
	.fixedRight {display: none;}
}


/* 로그인 모달 */
.loginLayer { 
	display: none;
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	z-index: 99999;
}
.loginLayer .loginMask {
	position: absolute;
	top: 0;
	left: 0; 
	width: 100%; 
	height: 100%; 
	background: rgba(0, 0, 0, 0.70);
}
.loginLayer .loginBox , .reportLogin .loginBox { 
    position: absolute;
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
    width: 480px; 
	background: #fff; 
	border-radius: 30px;
}
.loginLayer .loginBox h5, .reportLogin .loginBox h5 { 
    padding: 25px 30px; 
	font-size: 2.2rem; 
	font-weight: 700; 
	position: relative; 
	border-bottom: 1px solid #f0f0f0;
	font-family: var(--fontFamilyP);
}
.loginLayer .loginBox h5 button, .reportLogin .loginBox h5 button { 
	position: absolute; 
	right: 25px; 
	top: 50%; 
	transform: translateY(-50%); 
	font-size: 24px; 
	border:none; 
	background:none; 
	cursor:pointer;
}
.loginLayer .loginBox h5 button:hover, .reportLogin .loginBox h5 button:hover{color: #FF7761;}
    
.loginLayer .loginBox .loginCont, .reportLogin .loginBox .loginCont {
	padding: 30px 40px; 
	text-align: center; 
}
.loginLayer .loginBox .loginCont .loginIcon { margin-bottom: 8px; }
.loginLayer .loginBox .loginCont .loginIcon img { width: 96px; height: 96px; }
.reportLogin .loginBox img{width: 200px;}

.loginLayer .loginBox .loginCont .loginForm,  .reportLogin .loginBox .loginCont .loginForm{ text-align: left; }
.loginLayer .loginBox .loginCont .loginForm .inputRow,  .reportLogin .loginBox .loginCont .loginForm .inputRow{ margin-bottom: 15px; }
.loginLayer .loginBox .loginCont .loginForm .inputRow label, .reportLogin .loginBox .loginCont .loginForm .inputRow label{
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 30px;
	font-family: var(--fontFamilyP);
}
.loginLayer .loginBox .loginCont .loginForm .inputRow input, 
.reportLogin .loginBox .loginCont .loginForm .inputRow input {
	width: 100%; 
	height: 50px;
	border-radius: 10px; 
	padding: 0 15px; 
	font-size: 1.6rem; 
	outline: none; 
	border: 1px solid rgba(0, 0, 0, 0.10);
	font-family: var(--fontFamily);
}
.reportLogin .loginBox .loginCont .loginForm .inputRow input{font-weight: 500;}
.loginLayer .loginBox .loginCont .loginForm .inputRow input:focus, 
.reportLogin .loginBox .loginCont .loginForm .inputRow input:focus { border: 2px solid #FF8C79; }

.loginLayer .loginBox .loginCont .loginForm .loginOption { 
	display: flex; 
	justify-content: space-between; 
	align-items: center;
	margin: 32px 0; 
	font-size: 14px; 
	color: #666;
}
.loginLayer .loginBox .loginCont .loginForm .loginOption label {
	color: #505050;
	cursor: pointer; 
	display: flex; 
	align-items: center; 
	gap: 7px;
	font-size: 1.5rem;
	line-height: 22px;
}
.loginLayer .loginBox .loginCont .loginForm .loginOption label input{
	display: none;
}

.loginLayer .loginBox .loginCont .loginForm .loginOption label .icon-check {
	width: 24px;
	height: 24px;
	text-align: center; 
	background: #FFF;
	cursor: pointer;
	color: transparent;
	font-size: 1.4rem;
	border: 1px solid #DDD;
}

.loginLayer .loginBox .loginCont .loginForm .loginOption label input:checked + .icon-check {
	color: #FFF;
	background: #FF7761;
	border: 1px solid #FF7761; 
}
	
.loginLayer .loginBox .loginCont .loginForm .loginOption .findLink a { 
	color: #999; 
	font-size: 1.5rem;
	line-height: 22px;
}
.loginLayer .loginBox .loginCont .loginForm .loginOption .findLink .bar { 
	display: inline-block; 
	width: 1px; 
	height: 12px; 
	background: #ddd; 
	margin: 0 8px;
}

.loginLayer .loginBox .loginCont .loginForm .btnLoginSubmit, .reportLogin .loginBox .loginCont .loginForm .btnLoginSubmit { 
    width: 100%; 
	height: 50px; 
	background: #FF8C79;
	color: #fff; 
	font-size: 1.8rem;
	border-radius: 10px;
	margin-bottom: 30px;
	font-family: var(--fontFamilyP);
	letter-spacing: -0.18px;
}
.reportLogin .loginBox .loginCont .loginForm .btnLoginSubmit{display:flex; margin-top: 20px; justify-content:center; align-items:center;}
.loginLayer .loginBox .loginCont .loginForm .btnLoginSubmit:hover, .reportLogin .loginBox .loginCont .loginForm .btnLoginSubmit:hover{
	background: #FF7761;
}
.loginLayer .loginBox .loginCont .easyLogin p { 
	position: relative; 
	margin-bottom: 10px;
	font-size: 14px;
	color: #333;
	font-family: var(--fontFamilyP);
	font-size: 1.7rem;
	line-height: 30px;
}
.loginLayer .loginBox .loginCont .easyLogin p::before {	
	content:''; 
	position: absolute; 
	left: 0; 
	top: 50%; 
	width: 100%; 
	height: 1px; 
	background: #DFDFDF;
}
.loginLayer .loginBox .loginCont .easyLogin p span { 
	position: relative;
	background: #fff; 
	padding: 0 18px;
}

.loginLayer .loginBox .loginCont .easyLogin .snsBtns { display: flex; gap: 10px; }
.loginLayer .loginBox .loginCont .easyLogin .snsBtns a { 
    flex: 1; 
	height: 50px; 
	border-radius: 10px; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	color: #333;
	gap: 10px;
	font-family: var(--fontFamilyP);
	font-weight: 500; 
	font-size: 1.5rem;
}
.loginLayer .loginBox .loginCont .easyLogin .snsBtns a:hover{box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.1);}
.loginLayer .loginBox .loginCont .easyLogin .snsBtns a.naver { background: #00D03F; }
.loginLayer .loginBox .loginCont .easyLogin .snsBtns a.naver span{ color: #FFF; }
.loginLayer .loginBox .loginCont .easyLogin .snsBtns a.kakao { background: #fee500; }

.loginLayer .loginBox .loginCont .goJoin { 
	display: inline-block; 
	margin-top: 37px;
	margin-bottom: 7px;
	color: #000;
	font-size: 1.4rem;
	border-bottom: 1px solid #000;
}
.loginLayer .loginBox .loginCont .goJoin:hover{
	color: #E24329;
	border-bottom: 1px solid #E24329;
}

body.scrollHidden { overflow: hidden; }

@media screen and (max-width: 800px) {
	.loginLayer .loginBox,
	.reportLogin .loginBox{width: 320px;}
	
	.loginLayer .loginBox h5,
	.reportLogin .loginBox h5{padding: 15px 20px; font-size: 2rem;}
	
	.loginLayer .loginBox .loginCont,
	.reportLogin .loginBox .loginCont{padding: 15px 20px;}
	
	.loginLayer .loginBox .loginCont .loginIcon img{width: 70px; height:70px;}
	
	.reportLogin .loginBox img{width: 150px;}
	
	.loginLayer .loginBox .loginCont .loginForm .inputRow label,
	.reportLogin .loginBox .loginCont .loginForm .inputRow label{font-size: 1.8rem;}
	
	.loginLayer .loginBox .loginCont .loginForm .inputRow input,
	.reportLogin .loginBox .loginCont .loginForm .inputRow input{height: 40px; font-size: 1.4rem; padding: 0 10px;}
	
	.loginLayer .loginBox .loginCont .loginForm .loginOption{margin: 20px 0; flex-wrap: wrap; gap: 7px;}
	.loginLayer .loginBox .loginCont .loginForm .loginOption label{width:100%;}
	.loginLayer .loginBox .loginCont .loginForm .loginOption .findLink{width:100%; text-align:center;}
	
	.loginLayer .loginBox .loginCont .loginForm .btnLoginSubmit,
	.reportLogin .loginBox .loginCont .loginForm .btnLoginSubmit{margin-bottom: 15px;}
	
	.loginLayer .loginBox .loginCont .easyLogin p{font-size: 1.5rem;}
	.loginLayer .loginBox .loginCont .easyLogin .snsBtns{gap: 5px; flex-wrap: wrap;}
	.loginLayer .loginBox .loginCont .easyLogin .snsBtns a{gap: 5px; width:100%; flex: none;}
	.loginLayer .loginBox .loginCont .goJoin{margin-top: 20px;}
}