@charset "utf-8";
@import url('common.css');

.gnb_area2, .logo_header2 {
	display: none;
}

/** layout **/
.wrapper {
	position: relative;
	width: 100%;
	min-width: 320px;
	background-color: var(--background-color1);
}

/** header **/
#header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 101;
}
.header {
	width: 100%;
	height: 100px;
}
.header_cont {
	position: relative;
	max-width: 1920px;
	height: 100%;
	margin: 0 auto;
	padding: 40px 40px 0;
	-webkit-animation: show-header 0.4s forwards;
	animation: show-header 0.4s forwards;
}
.header_cont::before {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 0;
	display: block;
	content: '';
	height: 1px;
	background-color: var(--background-rgba1);
}
.header_cont::after {
	display: block;
	content: '';
	clear: both;
}
/* logo_header */
.header .logo_header {
	width: 196px;
	height: 25px;
	margin-left: 2px;
	font-size: 0;
}
/* btn_menu */
.header .btn_menu {
	position: absolute;
	display: none;
}
/* gnb_area */
.gnb_area {
	position: absolute;
	top: 36px;
	right: 40px;
}
.gnb_area .menu_list {
	display: flex;
	column-gap: 24px;
}
.gnb_area .menu_list .menu {
	display: block;
	/* font-family: var(--font-family1); */
	font-family: 'manrope' !important;
	font-size: 16px;
	font-weight: 100;
	line-height: 29px;
	color: var(--text-color1);
	text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.header .logo_header {
		width: 174px;
	}
	.gnb_area .menu_list {
		column-gap: 19px;
	}
	.gnb_area .menu_list .menu {
		font-size: 15px;
	}
}

@-webkit-keyframes show-header {
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes show-header {
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes show-gnb-area {
	0% {
		height: 55px;
		padding: 0 30px;
	}
	100% {
		height: 168px;
		padding: 36px 20px 46px;
	}
}
@keyframes show-gnb-area {
	0% {
		height: 55px;
		padding: 0 20px;
	}
	100% {
		height: 168px;
		padding: 36px 20px 46px;
	}
}
@-webkit-keyframes show-gnb-menu {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes show-gnb-menu {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/** container **/
.container {
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.content_area {
	display: flex;
	flex-direction: column;
	padding: 80px 0;
}

/** footer **/
.footer {
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	height: 500px;
	background-color: var(--background-color4);
}
.footer_cont {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 18.25vw 90px;
}
.footer_cont::after {
	/* display: block;
	content: '';
	clear: both; */
}
/* address_area */
.address_area {
	/* float: left; */
}
.address_area dl dt,
.address_area dl dd {
	letter-spacing: 0.04em !important;
}
.address_area dl:not(:last-child) {
	margin-bottom: 28px;
}
.address_area .text {
	line-height: 28px;
}
.address_area dd.text {
	opacity: 0.6;
}
/* logo_area */
.logo_area {
	/* margin-top: 125px; */
	text-align: right;
}
.logo_area .logo__terms {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 73px;
}
.logo_area .logo__terms a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}
.logo_area .logo_footer {
	display: inline-block;
	width: 252px;
	height: 31px;
	margin: 0 0 16px 0;
	background-image: url('../img/logo_header_v2.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	font-size: 0;
}
.logo_area .copyright {
	display: block;
	margin-right: -5px;
	line-height: 1;
	letter-spacing: 0.055em;
	opacity: 0.6;
}

/** 미디어쿼리 **/
@media (max-width: 1024px) {
	.footer_cont {
		padding: 0 40px 50px;
	}
	
}
@media (max-width: 1366px) {
	/** header **/
	.header {
		height: 55px;
	}
	.header_cont {
		max-width: none;
		width: 100%;
		height: auto !important;
		padding: 20px;
		background-color: #0f1315;
	}
	.header_cont::before {
		left: 20px;
		right: 20px;
	}
	/* logo_header */
	.header .logo_header {
		width: 121px;
		height: 15.5px;
	}
	/* btn_menu */
	.header .btn_menu {
		display: flex;
		top: 9px;
		right: 12px;
	}
	/* gnb_area */
	.gnb_area {
		display: none;
	}
	.gnb_area.open {
		position: relative;
	    display: block;
	    width: 100vw;
	    height: 0;
	    right: 0;
	    top: 0;
	    z-index: 5;
	    -webkit-animation: show-gnb-area 0.4s forwards;
	    animation: show-gnb-area 0.4s forwards;
	    overflow: hidden;
	    overflow-y: auto;
	    height: auto !important;
	    max-height: calc(100vh - 36px) !important;
	    box-sizing: border-box;
	    margin-top: 0 !important;
	}
	.gnb_area.open .menu_list {
		flex-direction: column;
		row-gap: 15px;
		opacity: 0;
		-webkit-animation: 0.5s show-gnb-menu 0.15s forwards;
		animation: 0.5s show-gnb-menu 0.15s forwards;
		padding-left: 0;
		margin-top: 0;
		margin-bottom: -21px;
	}
	.gnb_area.open .menu_list .menu {
		display: block;
		font-family: var(--font-family1);
		font-size: 16px;
		font-weight: 300;
		line-height: 29px;
		color: var(--text-color1);
		text-align: left;
	}
	.header.has_bg {
		height: 430px;
		background-color: var(--background-rgba3);
		backdrop-filter: blur(5px);
	}
	.header.has_bg .header_cont::before {
		bottom: 10px;
		background-color: var(--background-color9);
	}
	/** footer **/
	.footer {
		/* height: 43.58vh; */
		height: auto;
		position: relative;
	}
	.footer_cont {
		display: block;
		height: auto;
		max-width: none;
		/* padding: 175px 40px 87px; */
		padding: 84px 20px 43px;
	}
	/* address_area */
	.address_area {
		float: none;
	}
	.address_area dl dt,
	.address_area dl dd {
		letter-spacing: -0.02em !important;
	}
	.address_area dl:not(:last-child) {
		margin-bottom: 20px;
	}
	.address_area .text {
		font-size: 11px;
		line-height: 20px;
	}
	.address_area dd.text {
		font-weight: 100;
		opacity: 0.4;
	}
	/* logo_area */
	.logo_area {
		float: none;
		margin-top: 45px;
		text-align: left;
	}
	.logo_area .logo__terms {
		flex-direction: row;
		gap: 40px;
	margin-bottom: 30px;
}
	.logo_area .logo__terms a {
		font-size: 10px;
	}
	.logo_area .logo_footer {
		width: 165px;
		height: 20px;
		margin: 0 0 10px;
		background-image: url('../img/logo_header_v2.png');
	}
	.logo_area .copyright {
		margin-right: 0;
		font-size: 10px;
		font-weight: 100;
		line-height: 19px;
		letter-spacing: -0.02em;
		opacity: 0.4;
	}
}

/*-------------------------------- 이벤트 추가 후 들어가는 UTILL --------------------------------*/
.main_visual .section_cont {
	padding-top: calc(14.8vh + 40px);
}
@media (max-width: 1280px) {
	.main_visual .section_cont {
		padding-top: calc(12.6vh + 40px); /* TODO utill 반응형 대기*/
	}
}

#fp-nav.fp-right {
    right: -5px !important;
}

#fp-nav ul li, .fp-slidesNav ul li {
    margin: 15px !important;
}

.event--float-button {
	background-color: #00bab3;
    width: 110px;
    height: 110px;
    position: fixed;
    z-index: 3000;
    border-radius: 4rem;
    text-align: center;
    padding-top: 33px;
    right: 30px;
    top: 180px;
    box-shadow: 6px 5px 9px 1px rgba(0,0,0,0.5);
    -webkit-box-shadow: 6px 5px 9px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 6px 5px 9px 1px rgba(0,0,0,0.5);
}

.event--float-button > button {
	color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
}

@media (max-width: 1366px) {
	.gnb_area.open .menu_list .menu {
		line-height: 19px;
	}
	
	#fp-nav.fp-right {
	    right: 0px !important;
	}
	
	#fp-nav ul li, .fp-slidesNav ul li {
	    margin: 2px !important;
	}
	
	.event--float-button {
	    right: 10px;
	    top: 70px;
	    width: 70px;
    	height: 70px;
        padding-top: 18px;
	}
	
	.event--float-button > button {
	    font-size: 10px;
    	line-height: 16px;
	}
}

.support--area {
	height: auto;
	min-height: calc(100% - 30%);
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
	background: #bbb !important;	
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu.show {
    display: block;
}

.sub_menu_list {
	background: #0f1315;
    padding: 40px 0 10px 0;
    position: fixed;
    left: 0;
    top: 140px;
    width: 100%;
    height: 120px;
}
.sub_menu_list.show > ul {
    display: flex;
}
.sub_menu_list > ul {
	max-width: 1920px;
    margin: auto;
    padding-right: 20px;
}
.sub_menu_list > ul > li > .menu {
	margin: 0 20px;
}

.sub_menu {
	display: block;
    /* font-family: var(--font-family1); */
    font-family: 'manrope' !important;
    font-size: 14px;
    font-weight: 100;
    line-height: 29px;
    padding-left: 20px;
    color: var(--text-color1);
}

.desk_menu {
	display: block;
}

.desk_menu > .menu {
	padding-bottom: 35px;
}

.m_menu {
	display: none;
}

@media (max-width: 1366px) {
	.desk_menu {
		display: none;
	}
	.m_menu {
		display: block;
	}
}

.ms-auto {
	margin-left: auto !important;
}

.form-sns__button .join {
	background-color: #c1c1c1;
}

.mt-1 {
	margin-top: 1rem !important;
}

.text-white {
	color: #fefefe !important;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right !important;
}

.w-100 {
	width: 100% important;
}

.line-height-16px {
	line-height: 16px !important;
}

.fw-300 {
	font-weight: 300 !important;
}

.fs-18px {
	font-size: 18px !important;
}

ul > li, .pop-close, .img_list > .item_box > .item_img, .logo_header {
	cursor: pointer;
}