:root{
    --header_h : 100px;
    --point-color-1:#f3b42b;
    --point-color-2:#17254F;
    --point-color-3:#444;
    --font : "Poppins", sans-serif;
    font-family: 'Pretendard';
}

@media screen and (max-width: 960px) {
    :root {
        --header_h : 70px;
    }
}


.wrap{width: 95%; margin: 0 auto}
.wrap[max="1800"]{max-width: 1800px;}
.wrap[max="1440"]{max-width: 1440px;}
.wrap[max="1400"]{max-width: 1400px;}
.wrap[max="1360"]{max-width: 1360px;}
.wrap[max="1280"]{max-width: 1280px;}
@media screen and (max-width:820px) {
    .wrap{width: 90%;}
}




/* header */
header{
    position:fixed; left:0; top:0; z-index:20; padding:0 3%; width:100%; background-color:#fff;
    transition: background-color 0.5s; z-index: 1000;
}

.header_inner{height:var(--header_h); display:flex; align-items: center; justify-content: space-between;}

header .logoArea{
    font-size: 1px;
    display: flex; align-items: center; justify-content: center;
}
header .logoArea .logo{display: block;}
header .logoArea .logo svg{height: 27em;}
header .logoArea .logo svg > *{transition: fill 0.5s;}
header .logoArea .logo svg{}
header .logoArea p{
    font-size: 20em; letter-spacing: -0.0258em; font-weight: 700;
    margin-left: 1em; margin-right: calc(12/20*1em); white-space: nowrap; line-height: 1.2;
    transition: color 0.5s;
}
header .logoArea .logo2{display: flex; gap: 10px; align-items: center;}
header .logoArea .logo2 img{height: 37em; width: auto;}

header .rightArea{
    height: 100%; display: flex; align-items: center; padding-right: 10px;
}

header nav{
    display: flex; height: 100%; margin-right: 20px;
}
header nav > div{
    display: block; height: 100%;
    position: relative;
}
header nav > div > a{
    display: flex; align-items: center; justify-content: center; height: 100%;
    font-size: 20px; font-weight: 600; letter-spacing: -0.03em;
    padding: 0 40px; height: 100%;
    transition: color 0.5s;
}
header nav > div:last-child > a{padding-right: 30px;}
header nav > div > ul{
    position: absolute; background-color: #fff;
    left: 50%; transform: translateX(-50%); top: calc(100% - 20px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
}
header nav > div > ul li{}
header nav > div > ul li a{
    display: block;
    padding: 8px 14px; min-width: 180px; white-space: nowrap; text-align: center;
    font-weight: 500; letter-spacing: -0.025em;
}
header nav > div > ul li a:hover{background-color: #444; color: #fff;}
header nav > div > ul li:first-child a{padding-top: 12px;}
header nav > div > ul li:last-child a{padding-bottom: 12px;}


header .menuIco{
    width: 32px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative; cursor: pointer; z-index: 11;
}
header .menuIco div{
    width: 100%; height: 3px; background-color: #000; position: absolute; left: 0;
    transition: background-color 0.5s,transform 0.5s,top 0.5s, bottom 0.5s,opacity 0.5s; border-radius: 4px;
}
header.menuOn .menuIco div{background-color: #000 !important;}
header .menuIco div:nth-child(1){top: 0;}
header .menuIco div:nth-child(2){}
header .menuIco div:nth-child(3){bottom: 0;}

/* 클릭시 */
header.menuOn .menuIco div:nth-child(1){transform: rotate(45deg); top: 8.5px;}
header.menuOn .menuIco div:nth-child(2){transform: translateX(-50%); opacity: 0;}
header.menuOn .menuIco div:nth-child(3){transform: rotate(-45deg); bottom: 8.5px;}



/* 메뉴 */
header .menuArea{
    padding: 3vw; padding-top: var(--header_h); box-sizing: border-box; height: 100vh;
    position: absolute; top: 0; right: 0; z-index: 10;
    width: 100vw; max-width: 400px; background-color: #fff;
    pointer-events: none; transform: translateX(100px); opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
header.menuOn .menuArea{pointer-events: auto; transform: translateX(0); opacity: 1;}

header .menuArea .logo{width: 140px; margin-bottom: 20px;}
header .menuArea .logo .st0{fill: #000 !important;}

header .menuArea .moMenu{
    max-height: calc(100% - var(--header_h) - 180px);
    overflow: auto;
}
header .menuArea .moMenu > div{
    padding-bottom: 10px; margin-bottom: 10px;
    border-bottom: 1px solid #eee; box-sizing: border-box;
}
header .menuArea .moMenu > div .top{
    font-size: 18px; font-weight: 500; letter-spacing: -0.025em;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; border-radius: 4px;
    padding: 8px 10px; box-sizing: border-box;
    transition: margin-bottom 0.4s,background-color 0.4s, color 0.4s;
}
header .menuArea .moMenu > div .top.on{
    background-color: var(--point-color-2); color: #fff; margin-bottom: 10px;
}
header .menuArea .moMenu > div .top .ico{
    display: flex; align-items: center; justify-content: center;
    width: 0.8em; height: 0.8em; position: relative;
}
header .menuArea .moMenu > div .top .ico::before,
header .menuArea .moMenu > div .top .ico::after{
    content:''; display: block; width: 100%; height: 2px; background-color: #000;
    transition: transform 0.4s;
}
header .menuArea .moMenu > div .top .ico::before {}
header .menuArea .moMenu > div .top .ico::after{transform: rotate(90deg); position: absolute;}
header .menuArea .moMenu > div .top.on .ico::after{transform: rotate(0deg);}

header .menuArea .moMenu > div .top.on .ico::before,
header .menuArea .moMenu > div .top.on .ico::after{background-color: #fff;}



header .menuArea .moMenu > div > ul{
    display: none; background-color: #eee; border-radius: 4px; overflow: hidden;
}
header .menuArea .moMenu > div > ul li{}
header .menuArea .moMenu > div > ul li a{
    font-size: 14px;
    display: block; font-weight: 500; letter-spacing: -0.025em;
    padding: 6px 10px; box-sizing: border-box;
}
header .menuArea .moMenu > div > ul li a:hover{
    background-color: #444; color: #fff;
}
header .menuArea .moMenu > div > ul li:first-child a{padding-top: 10px;}
header .menuArea .moMenu > div > ul li:last-child a{padding-bottom: 10px;}


header .menuArea .bottom{
    position: absolute; bottom: 80px; left: 3vw; width: calc(100% - 6vw);
}
header .menuArea .bottom a{
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 500; letter-spacing: -0.025em; color: #fff; border-radius: 4px;
    height: 50px; color: #fff; line-height: 1.4;
}
header .menuArea .bottom a:nth-child(1){background-color: var(--point-color-1); margin-bottom: 4px;}
header .menuArea .bottom a:nth-child(2){background-color: var(--point-color-2);}
header .menuArea .bottom a:hover{background-color: #444;}
header .menuArea .bottom a p{}


@media screen and (max-width:1600px) {}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1280px) {}
@media screen and (max-width:1024px) {}
@media screen and (max-width:820px) {}
@media screen and (max-width:500px) {
    header .menuArea{max-width: 330px;}
    header .menuArea .logo{width: 120px;}
    header .menuArea .moMenu > div .top{font-size: 16px;}
}
@media screen and (max-width:320px) {}






header .grayBg{
    position: absolute; left: 0; top: 0;
    width: 100vw; height: 100vh; background-color: #000;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
header.menuOn .grayBg{
    opacity: 0.7; pointer-events: auto;
}




/* 서브페이지 헤더 */
header.sub{background-color: transparent;}
header.sub .logo .st0 {fill: #fff;}
header.sub .logoArea p{color: #fff;}
header.sub nav > div > a{color: #fff;}
header.sub .menuIco div{background-color: #fff;}

header.sub.bg{background-color: #fff;}
header.sub.bg .logo .st0 {fill: #17254f;}
header.sub.bg .logoArea p{color: #000;}
header.sub.bg nav > div > a{color: #000;}
header.sub.bg .menuIco div{background-color: #000;}


@media screen and (max-width:1600px) {}
@media screen and (max-width:1440px) {
    :root{--header_h:80px;}
    header .rightArea{padding-right: 0;}
    header nav{margin-right: 10px;}
    header nav > div > a{font-size: 16px; padding: 0 20px;}
    header nav > div:last-child > a{padding-right: 20px;}
}
@media screen and (max-width:1280px) {}
@media screen and (max-width:1024px) {
    header .logoArea{font-size: 0.8px;}
    header nav{display: none;}
}
@media screen and (max-width:820px) {}
@media screen and (max-width:500px) {
    :root{--header_h:60px;}
    header .logoArea{gap: 6px; font-size: 0.7px;}
    header .logoArea p{font-size: 10px; font-weight: 500; text-align: center; margin: 0;}
}
@media screen and (max-width:360px) {
    header .logoArea {
        gap: 6px;
        font-size: 0.5px;
    }
}
@media screen and (max-width:320px) {}







/*footer*/
footer{position: relative; padding:70px 20px 120px; background-color:#EFEFEF; z-index: 10;}
.footer_inner{position:relative; margin:0 auto; max-width:1490px; display:flex;}
footer .left_area{width:35%;}
.footer_logo svg{max-width: 228px;}
.footer_logo span{margin-top:25px; display:block; font-size:1rem; font-weight:600; line-height: 1.4;}
.footer_logo span br{display:none;}
footer .sns{margin-top:60px; }
footer .sns ul{display: flex; gap:8px; }
footer .link{margin-top:75px; }
footer .link a{font-size:0.875rem;}
footer .copyright{margin-top:15px; font-family: var(--font);}
footer .footer_info{position:absolute; right:0; top:0; width:60%; padding-top:10px;}
footer .footer_info ul{margin-bottom:40px; display:flex; flex-wrap:wrap; }
footer .footer_info ul li{flex: 1 1 25%; line-height: 1.6;}
footer .footer_info ul li:nth-child(2){flex:1 1 50%;}
footer .footer_info ul li strong{margin-bottom:15px; display:block; font-size:1.0625rem; font-weight:400;}
footer .footer_info ul li span{display:block; font-size:1.0625rem; color:#575757; font-weight:300;}
@media screen and (max-width:960px) {
    .footer_logo{margin-bottom:25px;}
    footer .left_area{position:relative; width:100%;}
    footer .footer_info{position:relative; left:auto; top:auto; width:100%;}
    footer .link_wrap{position:absolute; right:0; top:0;}
    footer .sns{margin-top:0;}
    footer .link{margin-top:25px; text-align:right; }
    .footer_logo span{margin-top:10px; font-size:18px; font-weight:600;}
    .footer_logo span br{display:block;}
}
@media screen and (max-width:768px) {
    footer{padding:50px 3%;}
	.footer_logo svg{width: 140px;}
    footer .footer_info ul{margin-bottom:0;display:block;}
    footer .footer_info ul li{margin-bottom:8px; display:flex; }
    footer .footer_info ul li strong{width:80px; margin-bottom:0; font-size:13px;}
    footer .footer_info ul li span{width:calc(100% - 75px); font-size:12px;}
    footer .copyright{margin-top:40px;}
}

@media screen and (max-width:400px) {
    footer .link_wrap{position: unset;}
    footer .link{text-align: left;}
}


/* ._quick{
    position:fixed; right:3%; bottom:10%; z-index:30; text-align:right;
    opacity: 0; transform: translateX(100px); pointer-events: none;
    transition: opacity 0.8s,transform 0.8s; z-index: 999;
}
._quick.on{
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
}

._quick ul li{margin-bottom:5px; }
._quick ul li button,
._quick ul li a{margin-left:auto; width:56px; height:56px; border-radius:50%; display:flex; align-items: center; justify-content: center; text-align:center; transition: all 0.3s ease-out;}
._quick ul li a span{display:none;}
._quick ul li:nth-child(1) a{background-color:var(--point-color-1); color:#000; font-size:0.875rem; font-weight:700; line-height:1.3;}
._quick ul li:nth-child(2) a{background-color:#17254F; color:#fff; font-size:0.875rem; font-weight:700; line-height:1.3;}
._quick ul li:nth-child(1) a:hover{width: 120px;}
._quick ul li:nth-child(2) a:hover{width: 160px;}
._quick ul li a:hover{ border-radius:2em;}
._quick ul li a:hover span{display:inline-block; }
._quick ul li a:hover br{display:none;}
._quick ul li a:hover:after{margin-left:10px; width:12px; aspect-ratio: 1/1; background:url(/asset/img/common/more_arrow.svg) no-repeat center center; display:inline-block; vertical-align: middle; content:"";}
._quick ul li:nth-child(1) a:hover:after{background:url(/asset/img/main/more_arrow_bk.svg) no-repeat center center;}
._quick ul li .btn_top{background-color:#020202; font-size:1rem; color:#fff; font-weight:700;} */

._quick{
	position:fixed; right:3%; bottom:10%; z-index:30;
	opacity: 0; transform: translateX(100px); pointer-events: none;
    transition: opacity 0.8s,transform 0.8s; z-index: 999;
	display: flex; flex-direction: column; gap: 4px;
}
._quick.on{
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
}
._quick > *{
	display: flex; align-items: center; justify-content: center;
	width: 80px; height: 80px; border-radius: 50%; text-align: center;
	transition: background-color 0.3s,color 0.3s; cursor: pointer;
}
._quick > *:hover{
	background-color: #666 !important; color: #fff !important;
}
._quick a{
	color: #fff; font-size: 13px; font-weight: 500; letter-spacing: -0.02em;
}
._quick a:nth-child(1){background-color: var(--point-color-1); color: #000; font-weight: 600;}
._quick a:nth-child(2){background-color: var(--point-color-2);}
._quick a p{}
._quick a img{height: 1em;}
._quick div{
	font-size: 16px; color: #fff; background-color: #000;
}
._quick div p{}


@media screen and (max-width:1600px) {}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1280px) {}
@media screen and (max-width:1024px) {}
@media screen and (max-width:820px) {}
@media screen and (max-width:500px) {
	._quick{bottom: 30px;}
	._quick > *{width: 54px; height: 54px;}
	._quick a{font-size: 8px;}
}
@media screen and (max-width:320px) {}





/* 이미지 클릭시 등장 팝업 공통 */

.img_popup{
	position: fixed; z-index: 1000;
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	overflow: auto;
	padding: 60px 0;
	pointer-events: none; opacity: 0; transition: opacity 0.5s;
	background-color: rgba(0,0,0,0.8); cursor: pointer;
}
.img_popup.on{
	opacity: 1; pointer-events: auto;
}
.img_popup .cont{
	position: relative; text-align: center;
	width: 95%; max-width: 900px;
	margin: auto;
}
.img_popup .cont i{
	color: #fff; font-size: 36px; font-weight: 500; margin-top: 20px;
}
.img_popup .cont .imgBx{
    /* max-width: 500px; */
    width: 100%;margin: 0 auto;}
.img_popup .cont .imgBx img{width: 100%;}

.img_popup[max='full'] .cont{max-width: unset;}



/* max-width */
@media screen and (max-width:1600px) {
	.max-1600{display: block;}
	.min-1601{display: none;}
	.max-1600-none{display: none;}
}
@media screen and (max-width:1440px) {
	.max-1440{display: block;}
	.min-1441{display: none;}
	.max-1440-none{display: none;}
}
@media screen and (max-width:1280px) {
	.max-1280{display: block;}
	.min-1281{display: none;}
	.max-1280-none{display: none;}
}
@media screen and (max-width:1024px) {
	.max-1024{display: block;}
	.min-1025{display: none;}
	.max-1024-none{display: none;}
}
@media screen and (max-width:820px) {
	.max-820{display: block;}
	.min-821{display: none;}
	.max-820-none{display: none;}
}
@media screen and (max-width:500px) {
	.max-500{display: block;}
	.min-501{display: none;}
	.max-500-none{display: none;}
}
@media screen and (max-width:320px) {
	.max-320{display: block;}
	.min-321{display: none;}
	.max-320-none{display: none;}
}


/* min-width */
@media screen and (min-width:1601px) {
	.min-1601{display: block;}
	.max-1600{display: none;}
	.min-1601-none{display: none;}
}
@media screen and (min-width:1441px) {
	.min-1441{display: block;}
	.max-1440{display: none;}
	.min-1441-none{display: none;}
}
@media screen and (min-width:1281px) {
	.min-1281{display: block;}
	.max-1280{display: none;}
	.min-1281-none{display: none;}
}
@media screen and (min-width:1025px) {
	.min-1025{display: block;}
	.max-1024{display: none;}
	.min-1025-none{display: none;}
}
@media screen and (min-width:821px) {
	.min-821{display: block;}
	.max-820{display: none;}
	.min-821-none{display: none;}
}
@media screen and (min-width:501px) {
	.min-501{display: block;}
	.max-500{display: none;}
	.min-501-none{display: none;}
}
@media screen and (min-width:321px) {
	.min-321{display: block;}
	.max-320{display: none;}
	.min-321-none{display: none;}
}