@charset "utf-8";

.v_m {
    display: none;
}

.cursor_c {
	position: absolute;
    border-radius: 100px;
    will-change: transform;
}
.cursor_c_2 {
    height: 6px;
    width: 6px;
    background: var(--main_color);
    z-index: 4;
}



#wrap {
    position: relative;
}

.inner {
    position: relative;
    max-width: 1480px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 16;
    background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.20);
    transition: all .3s;
	box-sizing: border-box;
}
#header .inner {
    height: 97px;
}
#header h1 {
    font-family: leferipointblack;
    text-transform: uppercase;
}
#header h1 a {
    color: #01008c;
    gap: 30px;
}
#header h1.aolayi a {
    display: block;
	width: 160px;
}
#header h1.aolayi img {
    width: 100%;
    height: auto;
	vertical-align: -8px;
}
#header h1 img {
	height: 60px;
    vertical-align: -10px;
}
#header .gnb ul {
    position: relative;
    flex: 1;
    text-align: center;
    justify-content: end;
    align-items: center;
    gap: 60px;
}
#header .gnb ul li a {
    position: relative;
    color: #4c4c4c;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
	border-bottom: 2px solid var(--white);
    transition: all .3s;
	box-sizing: border-box;
}
#header .gnb ul li a:hover {
	color: var(--main_color);
	border-bottom: 2px solid var(--main_color);
}
#header .menu {
    display: none;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 12;
}
#header .menu a {
    position: relative;
    display: block;
    width: 25px;
    height: 23px;
}
#header .menu a span {
    position: absolute;
    right: 0;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--main_color);
    border-radius: 100px;
    transition: all .3s;
}
#header .menu a span:nth-child(1) {
    top: 3px;
}
#header .menu a span:nth-child(2) {
    top: 10px;
    width: 17px;
}
#header .menu a span:nth-child(3) {
    top: 18px;
}
#header .menu.on a span:nth-child(1) {
    transform: rotate(-45deg);
    top: 15px;
    width: 30px;
}
#header .menu.on a span:nth-child(2) {
    display: none;
}
#header .menu.on a span:nth-child(3) {
    transform: rotate(45deg);
    top: 15px;
    width: 30px;
}


.side-wrap {
    width: 100%;
    max-height: 90%;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: 15;
    background: var(--white);
    overflow-y: auto;
    transition: all .2s;
}
.side-wrap.on {
    top: 56px;
}
.side-wrap .depth {
    padding: 20px;
}
.side-wrap .depth li a {
    display: block;
    padding: 12px 0px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--main_color);
}
.side-wrap .depth01 {
    position: relative;
}
.side-wrap .depth01 > a:after {
    content: '';
    position: absolute;
    top: 20px;
    transform: translateY(-50%);
    right: 0;
    display: block;
    background: url("../images/arrow-more-gray.svg")no-repeat 50% 50%/15px;
    width: 20px;
    height: 20px;
}
.side-wrap .depth01.noChild > a:after {
    display: none;
}
.side-wrap .depth01.active .depth02 {
    max-height: 500px;
    margin-bottom: -1px;
}
.side-wrap .depth01 > a {
	position: relative;
    color: #666;
    font-size: 18px;
}
.side-wrap .depth02 {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .3s;
    -moz-transition: max-height .3s;
    transition: max-height .3s;
}
.side-wrap .depth01.active .depth02 .hidden {
    position: absolute;
    top: -1px;
    width: 100%;
    z-index: 2;
}
.side-wrap .depth01.active .depth02 .hidden a {
    font-size: 0;
    height: 24px;
}
.side-wrap .depth02 > li > a {
    padding-left: 30px;
    font-size: 14px;
}
.side-wrap .side-close {
    background: url("../../images/ico-close-black.png")no-repeat 50% 50%/22px;
    width: 30px;
    height: 30px;
    text-indent: -99999px;
    position: absolute;
    top: 15px;
    left: 5%;
}

.black-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 14;
    background: rgba(0,0,0,.5);
    display: none;
}

.not_scroll {
    overflow: hidden;
}


#container {
    width: 100%;
    padding-top: 97px;
}


.title_area {
    background: #f5f5f5;
    text-align: center;
    padding: 17px 0;
    margin-bottom: 30px;
}

.modal {
    display: none;
}
.modal .black_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 16;
}
.modal .modal-cont {
    width: 90%;
    max-width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
    z-index: 16;
    background: var(--white);
}
.modal .modal-cont .scroll {
    background: var(--white);
    max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal .modal-cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    transform: rotate(0deg);
    transition: all .5s ease-in-out;
}
.modal .close:hover {
    transform: rotate(180deg);
}
.modal .close img {
    vertical-align: middle;
}



#footer {
    position: relative;
    background: #303841;
    color: var(--white);
    padding: 100px 0;
    box-sizing: border-box;
}
#footer .logo {
	max-width: 363px;
}
#footer .logo h1 {
    text-transform: uppercase;
    margin-bottom: 40px;
	width: 300px;
    gap: 20px;
    flex-direction: column;
    align-items: start;
}
#footer .logo h1 img {
    height: 78px;
}
#footer .logo h1.aolayi {
    width: 200px;
}
#footer .logo h1.aolayi img {
    width: 100%;
    height: auto;
}
#footer .logo ul {
	color: #888;
	line-height: 1.5;
	letter-spacing: -0.08px;
	gap: 5px;
	font-size: 16px;
}
#footer .inner > .flex {
	gap: 20px 70px;
}
#footer .inner > .flex > .flex {
	flex: 1;
	gap: 30px 60px;
}
#footer h4 {
    font-size: 24px;
    display: block;
    margin-bottom: 20px;
}
#footer .info {
	flex: 1;
}
#footer .site {
	width: 264px;
}
#footer .inner > .flex > .flex ul {
	gap: 20px;
	font-size: 16px;
}
#footer .inner > .flex > .flex ul li {
	line-height: 1.3;
}
#footer .inner > .flex > .flex ul li strong {
	font-weight: 500;
}
#footer .inner > .flex > .flex ul li span {
	display: inline-block;
}
#footer .inner > .flex > .flex ul li a {
	color: var(--white);
}
#footer .aolayi {
	display: none;
}


.top_btn {
    position: fixed;
    bottom: 50px;
    right: 7%;
    z-index: 5;
}
/*
.top_btn.on {
    
}*/
.top_btn a {
    display: block;
    width: 50px;
    height: 50px;
    background: url("../images/top_sc.svg")no-repeat 50% 50%/100%;
}




@media screen and (max-width: 1600px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1024px) {
	#header .gnb {
		display: none;
	}
    #header h1 a {
        gap: 15px;
    }
	#header h1 img {
		height: 33px;
		vertical-align: 0px;
	}
    #header h1.aolayi a {
        width: 110px;
    }
	#header h1.aolayi img {
		vertical-align: 6px;
	}
	#header .inner {
		height: 56px;
	}
	#header .menu {
		display: block;
	}
	
	#container {
		padding-top: 56px;
	}
	
	
	#footer {
		padding: 50px 0;
	}
	#footer .inner {
		padding-bottom: 100px;
	}
	#footer .logo {
		max-width: 100%;
		margin-bottom: 20px;
	}
	#footer .logo h1 {
		margin-bottom: 0;
	}
    #footer .logo h1 img {
        height: 55px;
    }
    #footer .logo h1.aolayi {
        width: 203px;
    }
    #footer .logo h1.aolayi img {
        height: auto;
    }
	#footer .logo ul {
		position: absolute;
		bottom: 0;
	}
	#footer .inner > .flex > .flex {
		flex: none;
		width: 100%;
	}
	#footer .info {
		flex: none;
		width: 100%;
	}
	#footer .site {
		width: 100%;
	}
	#footer h4 {
		font-size: 18px;
		font-weight: 700;
	}
	#footer .inner > .flex > .flex ul {
		gap: 5px;
	}
	#footer .inner > .flex > .flex ul li span {
		display: inline-block;
	}
	
	
	.cursor_c {
		display: none;
	}
	
	
	.top_btn {
		right: 20px;
	}
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 380px) {
}
