@charset "utf-8";

/*

Bellus 홈페이지 css

* File : common.css
* 
*
* SUMMARY:
* 01) root
* 02) global
* 03) layout


* 주의!
테마 파일로 옮길 때 이미지 경로 바꿔주기
url(/wp-content/uploads/to_top.png) -> url(/wp-content/uploads/to_top.png)

* Breakpoints
- 테블릿 : 1024px
- 모바일 : 767px
- 더 작은 모바일 : 480px


* font style
- 'Poppins', 'Pretendard', sans-serif;


*/




/* **************************************** *
 * root
 * **************************************** */
:root {
    /* color */
    --primary-color: #6B3BE9;
	--primary-color-2: #C199C5;
	--line-color: #dcdcdc;
	--bg-color: #F3F2F8;
    --font-color: #000;
    

    /* layout */
    --content-width: 1300px;
	--content-width-lg: 1760px;
    --content-padding: 0 16px; /* 컨텐츠 너비 아래로 줄였을때르 위한 padding */
	--content-gap: 0 40px;
	--content-gap-halb: 20px;

	/* font */
	--font-title: 'Poppins', 'Pretendard', sans-serif;

	/* font line-height */
	--text-line-height: 1.6em;
	--title-line-height: 1.4em;
}

@media screen and (max-width: 1024px) {
	:root {
		--content-gap: 0 16px;
		--content-gap-halb: 8px;
	}
}



/* **************************************** *
 * GLOBAL
 * **************************************** */
/* html {
	font-size: 20px;
 } */
html {
    overflow-x: hidden;
}
body {
	overflow-x: hidden;
	overflow-y: hidden; /* 메인 프로젝트 영역 들어가면 바디 영역이 늘어나길래...*/
	word-break: keep-all; 
	font-family: 'Poppins', 'Pretendard', sans-serif;
	color: var(--font-color);
	font-size: 18px;
	font-weight: 400;
	line-height: var(--text-line-height);}
* {
	box-sizing: border-box;
	font-family: 'Poppins', 'Pretendard', sans-serif;
}
a {
	color: var(--font-color);
	text-decoration: none;
}
.sr_only {
    position: fixed;
    top: -9999999999999999999999px;
    opacity: 0;
}
.br_pc {display:block;}
.br_t {display: none;}
.br_m,.image_m {display:none;}


.grecaptcha-badge {
    right: -1000000000px !important;
	opacity: 0 !important;
}


@media screen and (max-width: 767px) {
	body {font-size: 16px;}
    .br_pc, .image_pc {display: none;}
    .br_m {display:block;}
	.image_m {display: inline-block;}
}






/* selection */
::-moz-selection { background: var(--primary-color); color: #fff; }
::selection { background: var(--primary-color); color: #fff; }
img::-moz-selection { background: none; }
img::selection { background: none; }





/* **************************************** *
 * layout
 * **************************************** */
.inno_section {
	width: 100%;
	padding: var(--content-padding);
	z-index: 20;
	position: relative;
	background: #fff;
}
.header_inner, .section_inner, .footer_inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
	margin: 0 auto;
	gap: var(--content-gap); /* global layout grid gap */
}
.section_content_width {
    width: 100%;
    max-width: var(--content-width);
}
.section_full_width {
    width: 100%;
}
.section_inner {
	padding-top: 160px;
	padding-bottom: 160px;
}
.section_padding-top {
	padding-top: 160px;
	padding-bottom: 0;
}
.section_padding-bottom {
	padding-top: 0;
	padding-bottom: 160px;
}
.section_no_padding {
	padding-top: 0;
	padding-bottom: 0;
}
.inno_column {
    width: 100%;
    position: relative;
}
.inno_column-9 {
	/* width: clac(100% - 25%); */
	width: calc((100% - 25%) - var(--content-gap-halb));
}
.inno_column-8 {
	/* width: 66.66%; */
	width: calc(66.66% - var(--content-gap-halb));
}
.inno_column-7 {
	/* width: calc(8.333% * 7); */
	width: calc((8.333% * 7) - var(--content-gap-halb));
}
.inno_column-6 {
    /* width: 50%; */
	width: calc(50% - var(--content-gap-halb));
}
.inno_column-5 {
	/* width: calc(8.333% * 5); */
	width: calc((8.333% * 5) - var(--content-gap-halb));
}
.inno_column-4 {
    /* width: 33.33%; */
	width: calc(33.33% - var(--content-gap-halb));
}
.inno_column-3 {
    /* width: 25%; */
	width: calc(25% - var(--content-gap-halb));
}
.title_column {
	padding-bottom: 48px;
}


@media screen and (max-width: 1024px) {
	.section_inner {
		padding-top: 100px;
		padding-bottom: 120px;
	}
	.section_padding-top {
		padding-top: 100px;
		padding-bottom: 0;
	}
	.section_padding-bottom {
		padding-bottom: 120px;
		padding-top: 0;
	}

	.inno_column-3, .inno_column-9 {
		width: 100%;
	}

	/* .title_column, .title_column-s {
		padding-bottom: px;
	} */
}

@media screen and (max-width: 767px) {
	.section_inner {
		padding-top: 60px;
		padding-bottom: 80px;
	}
	.section_padding-top {
		padding-top: 60px;
		padding-bottom: 0;
	}
	.section_padding-bottom {
		padding-bottom: 80px;
		padding-top: 0;
	}
	.inno_column-9, .inno_column-8, .inno_column-7, .inno_column-6, .inno_column-5, .inno_column-4, .inno_column-3, .inno_column-2 {
		width: 100%;
	}

	.title_column, .title_column-s {
		padding-bottom: 32px;
	}
}






/* **************************************** *
 * font default
 * **************************************** */
h1 {
	font-size: 62px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4em;
}
h1.page_title {
	font-size: 72px;
	color: #fff;
	font-weight: 600;
}
h2 {
	font-size: 48px;
	font-style: normal;
	line-height: 1.4em;
	font-weight: 600;
}
h2 strong {
	color: var(--primary-color);
	font-weight: 600;
}
h3 {
	font-size: 36px;
	line-height: 1.4em;
	font-style: normal;
	font-weight: 600;
}
h3.txt-sm {
	font-size: 26px;
}
h4 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4em;
}
p {
	line-height: var(--text-line-height);
}
p.txt_lg {
	font-size: 24px;
}
strong {
	font-weight: 600;
}



@media screen and (max-width: 1024px) {
	h1 {
		font-size: 42px;
	}
	h1.page_title {
		font-size: 48px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 22px;
	}
	p.txt_lg {
		font-size: 20px;
	}
}


@media screen and (max-width: 767px) {
	h1 {
        font-size: 26px;
    }
	h1.page_title {
        font-size: 36px;
    }
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 18px;
	}
	p.txt_lg {
		font-size: 16px;
	}
}





/* **************************************** *
 * button default
 * **************************************** */

.btn {
	display: inline-flex;
	padding: 12px 16px 12px 24px;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	transition: .3s ease-in-out;
	border: 1px solid #333539;
	border-radius: 80px;
}
.btn_lg {
	width: 270px;
}
.btn_txt {
	font-weight: 500;
	color: #333539;
	font-size: 18px;
	line-height: 1.6em;
	transition: .3s ease-in-out;
}
.btn_icon {
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/btn_icon.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}
.btn_w {
	border-color: #fff;
}
.btn_w .btn_txt {
	color: #fff;
}
.btn_w .btn_icon {
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/btn_icon_w.png) no-repeat center;
	background-size: cover;
}
.btn:hover {
	background-color: var(--primary-color);
	background: linear-gradient(270deg, #6B3BE9 0%, #C199C5 100%);
	border-color: var(--primary-color);
}
.btn:hover .btn_txt {
	color: #fff;
}
.btn:hover .btn_icon  {
	background: url(/wp-content/uploads/btn_icon_w.png) no-repeat center;
	background-size: cover;
}


.btn_next {
	display: block;
	width: 48px;
	height: 48px;
	background: url(/wp-content/uploads/arrow_next_w.png) no-repeat center;
	background-size: 24px;
	border: 1px solid #fff;
	transition: .3s ease-in-out;
}
.btn_next:hover {
	/* border: 1px solid var(--primary-color); */
	background-color: var(--primary-color);
}







/* slick nav */
.carousel_nav_wrap {
	display: flex;
	flex-direction: column;
}
button.slick-arrow {
	appearance: none;
	outline: none;
	display: block;
	width: 70px;
	height: 70px;
	border: 0;
	border-radius: 0;
	transition: .3s ease-in-out;
	color: transparent;
	user-select: none;
	cursor: pointer;
	background-color: var(--bg-color);
}
button.slick-next.slick-arrow {
	background: var(--bg-color) url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: 24px;
}
button.slick-prev.slick-arrow {
	background: var(--bg-color) url(/wp-content/uploads/arrow_prev.png) no-repeat center;
	background-size: 24px;
}
button.slick-next.slick-arrow:hover {
	background: var(--primary-color) url(/wp-content/uploads/arrow_next_h.png) no-repeat center;
	background-size: 24px;
}
button.slick-prev.slick-arrow:hover {
	background: var(--primary-color) url(/wp-content/uploads/arrow_prev_h.png) no-repeat center;
	background-size: 24px;
}

button.slick-arrow.slick-disabled {
	cursor: default;
}
button.slick-next.slick-arrow.slick-disabled:hover {
	background: var(--bg-color) url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: 24px;
}
button.slick-prev.slick-arrow.slick-disabled:hover {
	background: var(--bg-color) url(/wp-content/uploads/slick-prev.png) no-repeat center;
	background-size: 24px;
}


@media screen and (max-width: 1024px) {
	button.slick-arrow {
		width: 50px;
		height: 50px;
		background-size: 18px !important;
	}
}

@media screen and (max-width: 767px) {
	.btn {
		padding: 8px 16px;
	}
	.btn_txt {
		font-size: 14px;
	}
	.btn_lg {
		width: auto;
	}
}



/* **************************************** *
 * HEADER
 * **************************************** */
.inno_header {
	width: 100%;
	position: fixed;
	z-index: 99998;
	background: rgba(255,255,255,0);
    transition: .3s ease-in-out;
	padding: var(--content-padding);
}
.header_inner {
	justify-content: center;
	/* align-items: center; */
	align-items: stretch;
	gap: 40px;
    transition: .3s ease-in-out;
}
.header_content_width {
	width: 100%;
	max-width: var(--content-width-lg);
}

.header_logo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease-in-out;
}
.header_sticky_logo {
	display: none;
}
.header_logo_link img {
	width: auto;
	height: 48px;
}


/* menu */
#inno_main_nav {
	height: 100%;
    display: flex;
    align-items: center;
}
#inno_main_nav .main-menu {
    display: flex;
    /* gap: 80px; */
	align-items: center;
	height: 100%;
}
#inno_main_nav .main-menu > .menu-item {
	position: relative;
	height: 100%;
	padding: 44px 0;
	transition: .3s ease-in-out;
}
#inno_main_nav .main-menu > .menu-item > a {
	position: relative;
	transition: .3s ease-in-out;
	font-weight: 600;
	height: 100%;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 20px;
	padding-right: 4.2vw;
}
#inno_main_nav .main-menu > .menu-item:last-child > a {
	padding-right: 0;
}
#inno_main_nav .main-menu > .menu-item > a:hover {
	opacity: 0.6;
}
/* #inno_main_nav .main-menu > .menu-item.current-menu-ancestor > a,
#inno_main_nav .main-menu > .menu-item.current-menu-item > a,
#inno_main_nav .main-menu > .menu-item.current-menu-parent > a,
#inno_main_nav .main-menu > .menu-item.current_page_item > a {
	color: var(--primary-color);
	font-weight: 700;
} */





/* submenu */
#inno_main_nav .main-menu .sub-menu {
	display: none;
	position: absolute;
	padding: 0;
    width: 200px;
	background: #333539;
	top: 100%;
	left: -50px;
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.15);
}
#inno_main_nav .main-menu .sub-menu .menu-item a {
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 16px;
	font-weight: 400;
	font-family: var(--font-title);
	text-align: center;
}
#inno_main_nav .main-menu .sub-menu .menu-item a span {
	font-family: var(--font-title);
	font-weight: 400;
}

#inno_main_nav .main-menu .sub-menu .menu-item a:hover,
#inno_main_nav .main-menu .sub-menu .menu-item.current-menu-item a {
	background-color: var(--primary-color);
}






/* 다국어 */
.lang_btn_wrap {
	display: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: .3s ease-in-out;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul {
	display: flex;
	align-items: center;
	gap: 33px;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.30);
	font-weight: 600;
	transition: .3s ease-in-out;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li:first-child {
	position: relative;
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li:first-child:after {	
	content:"";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -17px;
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.30);
}
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a,
.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a:hover {
	color: rgba(255, 255, 255, 1);
}

.header-sticky .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li:first-child:after {
	background: rgba(0, 0, 0, 0.30);
}
.header-sticky .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
	color: rgba(0, 0, 0, 0.30);
}
.header-sticky .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a,
.header-sticky .lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a:hover {
	color: var(--primary-color);
}



.fp-enabled .header-sticky  {
	background: transparent;
}




/* header scroll */
.header-sticky {
    background: #fff;
}
.header-sticky .header_inner {
    padding-top: 0px;
    padding-bottom: 0px;
    /* padding-top: 16px;
    padding-bottom: 16px; */
}
/* .header-sticky .header_logo {
	top: 27px;
} */
.header-sticky .header_sticky_logo {
    display: block;
}
.header-sticky .header_standard_logo {
    display: none;
}
/* .header-sticky #inno_main_nav .main-menu > .menu-item {
    padding: 36px 0;
} */
.header-sticky #inno_main_nav .main-menu > .menu-item > a {
    color: var(--font-color);
}
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-ancestor > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-item > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current-menu-parent > a,
.header-sticky #inno_main_nav .main-menu > .menu-item.current_page_item > a {
	color: var(--primary-color);
}




/* mobile header */
.menu_mobile_btn {
	display: none;
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
    height: 17px;
	/* background : #fff; */
}
.menu_mobile_btn_line {
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
}
.header-sticky .menu_mobile_btn_line {
	background: #000;
}
/* .header_mobile_inner, */
#inno_mobile_nav {
    display: none;
}

#wpadminbar {
    position: fixed;
    top: 0;
}




/* mobile header */
@media screen and (max-width: 1024px) {
	.inno_header {
		padding-left: 0;
		padding-right: 0;
	}
	.header_inner {
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		padding-right: 16px;
	}
	.header-sticky .header_inner {
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		padding-right: 16px;
	}
	
	#inno_main_nav {
		width: 100%;
		display: none;
	}
	#inno_main_nav.menu_on {
		display: block !important;
	}
	.menu_mobile_btn {
		display: flex;
	}
	#inno_main_nav .main-menu {
		justify-content: flex-end;
		gap: 0;
		flex-direction: column;
		background: #fff;
	}
	#inno_main_nav .main-menu > .menu-item {
		padding: 12px 0;
		border-bottom: 1px solid var(--line-color);
	}
	#inno_main_nav .main-menu > .menu-item > a {
		color: #222;
		padding: 0 16px;
		font-size: 14px;
		font-weight: 500;
	}
	.header_logo {
        position: static;
        transform: unset;
    }
	.header_logo_link img {
        height: 29px;
    }




	/* lang */
	.lang_btn_wrap {
		margin-left: 0;
		margin-right: 64px;
		/* display: none; */
	}
	.lang_btn_wrap .wpml-ls-legacy-list-horizontal ul a {
		font-size: 14px;
	}



	/* 모바일 버튼 */
	.menu_mobile_btn {
		display: flex;
	}
    /* 모바일 메뉴 */
	#inno_mobile_nav {
		position: relative;
		padding: 0;
	}
	#inno_mobile_nav .main-menu:before {
		content: "";
		position: absolute;
		left: -16px;
		top: 0;
		background: #fff;
		width: calc(100% + 16px + 16px);
		height: 100%;
		z-index: -1;
	}
    #inno_mobile_nav.menu_on {
        display: block;
    }
	#inno_mobile_nav .main-menu {
		justify-content: flex-end;
		gap: 0;
		flex-direction: column;
		background: #fff;
        /* padding-bottom: 16px; */

		height: calc(100vh - 62px);
        overflow-y: auto;
		padding-bottom: 60px;
	}

	#inno_mobile_nav .main-menu > .menu-item {
		border-bottom: 1px solid #dcdcdc;
	}
	#inno_mobile_nav .main-menu > .menu-item:last-child {
		border-bottom: 0;
	}
	#inno_mobile_nav .main-menu > .menu-item > a {
        position: relative;
		color: #222;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
        display: block;
        /* border-bottom: 1px solid var(--line-color); */
	}
	#inno_mobile_nav .main-menu > .menu-item.menu-item-has-children > a:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
		width: 14px;
        height: 14px;
        background: url(/wp-content/uploads/menu_more_b.png) no-repeat center;
        background-size: cover;
		transition: .3s ease-in-out;
    }
	#inno_mobile_nav .main-menu > .menu-item.menu-item-has-children > a.submenu_on:before {
		transform: translateY(-50%) rotate(180deg);
	}
    #inno_mobile_nav .main-menu > .menu-item ul.sub-menu {
        display: none;
        /* padding: 4px 0; */
    }
	#inno_mobile_nav .main-menu > .menu-item > ul.sub-menu > li {
		margin-bottom: 2px;
		background: #f5f5f5;
	}
	#inno_mobile_nav .main-menu > .menu-item > ul.sub-menu li:last-child {
		margin-bottom: 0;
	}
    #inno_mobile_nav .main-menu > .menu-item ul.sub-menu > li > a {
		padding: 6px 24px;
        display: block;
        font-size: 14px;
        font-weight: 500;
    }
	
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a span {
		display: inline-block;
		position: relative;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a span:before {
		content: "-";
		display: inline-block;
		padding-right: 4px;
	}
	#inno_mobile_nav .main-menu > .menu-item.current-menu-ancestor > a,
	#inno_mobile_nav .main-menu > .menu-item.current-menu-parent > a,
	#inno_mobile_nav .main-menu > .menu-item.current_page_parent > a,
	#inno_mobile_nav .main-menu > .menu-item.current_page_ancestor > a,
	#inno_mobile_nav .main-menu > .menu-item.current-menu-item > a {
		color: var(--primary-color);
	}
	#inno_mobile_nav .main-menu > .menu-item ul.sub-menu li.current-menu-item a,
	#inno_mobile_nav .main-menu > .menu-item ul.sub-menu li.current_page_item a {
		color: var(--primary-color);
		font-weight: 700;
	}

	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a {
		position: relative;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a:before {
		content:"";
		position: absolute;
		right: 16px;
		top: 50%;
        transform: translateY(-50%);
		width: 10px;
		height: 10px;
		background: url(/wp-content/uploads/menu_more_b.png) no-repeat center;
		background-size: 10px;
		transition: .3s ease-in-out;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children > a.submenu_on:before {
		transform: translateY(-50%) rotate(180deg);
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu {
		background: #fff;
	}
	#inno_mobile_nav .main-menu .sub-menu .menu-item-has-children .sub-menu a {
		color: #000;
		padding-left: 24px;
	}




	
}




/* **************************************** *
 * Footer
 * **************************************** */
 .inno_footer {
    background: #000;
	position: relative;
	padding: var(--content-padding);
	z-index: 99999;
}
.footer_inner {
    position: relative;
	width: 100%;
	max-width: 1500px;
	padding: 64px 0;
	display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.footer_logo {
    width: 81px;
}
.footer_content {
    width: calc(100% - 81px - 40px);
	color: #fff;
	font-size: 16px;
}
.footer_upper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.footer_info {
	display: flex;
	align-items: flex-start;
	gap: 40px;
}
.footer_info dl {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	line-height: 1.6em;
}
.footer_info dl dt {
	font-weight: 600;
}

.footer_sns_wrap {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 16px;
}
.footer_sns_wrap li a {
	display: block;
	width: 24px;
	height: 24px;
	transition: .3s ease-in-out;
}
.footer_sns_wrap li a.footer_sns_facebook {
	background: url(/wp-content/uploads/sns_facebook.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_facebook:hover {
	background: url(/wp-content/uploads/sns_facebook_h.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_instagram {
	background: url(/wp-content/uploads/sns_instagram.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_instagram:hover {
	background: url(/wp-content/uploads/sns_instagram_h.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_tiktok {
	background: url(/wp-content/uploads/sns_tiktok.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_tiktok:hover {
	background: url(/wp-content/uploads/sns_tiktok_h.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_youtube {
	background: url(/wp-content/uploads/sns_youtube.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_youtube:hover {
	background: url(/wp-content/uploads/sns_youtube_h.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_x {
	background: url(/wp-content/uploads/sns_x.png) no-repeat center;
	background-size: cover;
}
.footer_sns_wrap li a.footer_sns_x:hover {
	background: url(/wp-content/uploads/sns_x_h.png) no-repeat center;
	background-size: cover;
}

.footer_copy {
	color: rgba(255, 255, 255, 0.30);
	font-weight: 600;
	padding-top: 4px;
}
.footer_lower {
    display: flex;
    justify-content: space-between;
    gap: 24px;
	align-items: center;
}
#footer_menu {
    padding-top: 8px;
}
#footer_menu ul {
    display: flex;
	gap: 24px;
}
#footer_menu ul li a {
    color: #fff;
    font-weight: 600;
    line-height: 1.4em;
    display: inline-block;
    font-size: 18px;
	transition: .3s ease-in-out;
}
#footer_menu ul li a:hover {
	opacity: 0.5;
}



/* floating menu */
.floating_menu_wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
}


/* to top */
.floating_menu_top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: #333539;
	position: relative;
	right: 0;
	bottom: -80px;
	transition: .3s ease-in-out;
	opacity: 0;
}
.floating_menu_top_show {
	opacity: 1;
	bottom: 0;
}
.floating_menu_top:before {
	content:"";
	width: 37px;
	height: 37px;
	background: url(/wp-content/uploads/totop.png) no-repeat center;
	background-size: cover;
}
.floating_menu_top:hover {
	background: linear-gradient(180deg, #C199C5 0%, #6B3BE9 100%);

}



@media screen and (max-width: 1024px) {
	/* footer */
	.footer_upper {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	/* .footer_lower {
		flex-direction: column-reverse;
	} */
	 #footer_menu {
		display: none;
	 }
	.footer_info {
		flex-wrap: wrap;
		gap: 0 40px;
	}
	.footer_copy {
		padding-top: 16px;
	}


	/* floating menu */
}

@media screen and (max-width: 767px) {
	.floating_menu_top {
		width: 48px;
		height: 48px;
	}
	.floating_menu_top:before {
		width: 24px;
		height: 24px;
	}


	/* footer */
	.footer_inner {
		gap: 24px;
		padding: 40px 0 64px;
	}
	.footer_logo {
		width: 40px;
	}
	.footer_content {
		width: 100%;
		font-size: 14px;
	}
	.footer_upper {
		gap: 16px;
	}
	.footer_info {
		flex-direction: column;
		gap: 4px;
	}

	
}


@media screen and (max-width: 480px) {
}






/* **************************************** *
 * main
 * **************************************** */

.main_section {
	height: 100vh;
}
.main_section .section_inner {
	padding-top: 100px;
	padding-bottom: 60px;
}

/* banner */
#main_banner {
	height: 100vh;
	background-color: #000;
}
#main_banner .section_inner {
    width: 100%;
    height: 100%;
	padding: 0;
}
#main_banner .inno_column {
    height: 100%;
    display: flex;
    align-items: flex-end;
	position: relative;
}
.main_banner_carousel_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main_banner_carousel {
	width: 100%;
	height: 100%;
}
.main_banner_carousel_item .main_banner_carousel_bg {
	width: 100%;
	height: 100vh;
	position: relative;
}
.main_banner_carousel_item1 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg1.jpg) no-repeat center 30%;
	background-size: cover;
}
.main_banner_carousel_item2 .main_banner_carousel_bg {
	background: url(/wp-content/uploads/main_banner_bg2.jpg) no-repeat 45% center;
	background-size: cover;
}
.main_banner_content {
    z-index: 10;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    height: 100%;
	padding-bottom: 72px;
	position: relative;
}
.main_banner_txtbox {
    width: 100%;
	color: #fff;
}
.banner_h1 {
	padding-bottom: 24px;
}
.main_banner_txtbox p {
	font-weight: 500;
	font-size: 24px;
}

.main_banner_product_img {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.main_banner_product_img img {
	position: absolute;
	right: -5.3vw;
}
.main_banner_carousel_item1 .main_banner_product_img img {
	bottom: 88px;
}
.main_banner_carousel_item2 .main_banner_product_img img {
	bottom: 95px;
}



/* 메인페이지 애니메이션 */
.main_title_col,
.main_content_col {
	opacity: 0;
	transform: translateY(40px);
}


/* con1 */
.main_section {
	position: relative;
}
.main_section .section_full_width {
	width: 100%;
	max-width: 1760px;
}
.section_grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 16px;
	z-index: -2;
}
.section_grid_wrap {
	width: 100%;
	max-width: 1760px;
	height: 100%;
	display: flex;
	flex-direction: row;
	border-left: 1px solid #dcdcdc;
	margin: 0 auto;
}
.section_grid_box {
	flex: 1;
	height: 100%;
	border-right: 1px solid #dcdcdc;
}
.section_grid_w .section_grid_wrap {
	border-color: rgba(255, 255, 255, 0.30);
}
.section_grid_w .section_grid_box {
	border-color: rgba(255, 255, 255, 0.30);
}

#main_con1 {
    background: url(/wp-content/uploads/main_con1_bg.jpg) no-repeat center;
    background-size: cover;
}
.main_con1_box_wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 16px;
}
.main_con1_box {
	/* width: 450px;
	height: 450px; */
	width: 23.4vw;
	height: 23.4vw;
	max-width: 450px;
	max-height: 450px;
	min-width: 300px;
	min-height: 300px;
	padding: 20px;
	border-radius: 500px;
	border: 1px solid rgba(107, 59, 233, 0.30);
    background-color: rgba(255, 255, 255, 0.50);
	overflow: hidden;
	transform: translateX(-100px);
}
.main_con1_box1 {
	z-index: 3;
	/* transform: translateX(-100px); */
	opacity: 0;
}
.main_con1_box2, .main_con1_box3 {
	opacity: 0;
	/* transform: translateX(-100%); */
	z-index: 2;
}
.main_con1_box3 {
	z-index: 1;
}
.main_con1_box_inner {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}
.main_con1_box_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 50%;
}
.main_con1_box_bg_img {
	width: 100%;
	height: 100%;
	transition: .5s ease-in-out;
}
.main_con1_box1 .main_con1_box_bg .main_con1_box_bg_img {
	background: url(/wp-content/uploads/main_con1_bg1.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box2 .main_con1_box_bg .main_con1_box_bg_img {
	background: url(/wp-content/uploads/main_con1_bg2.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box3 .main_con1_box_bg .main_con1_box_bg_img {
	background: url(/wp-content/uploads/main_con1_bg3.jpg) no-repeat center;
	background-size: cover;
}
.main_con1_box:hover .main_con1_box_bg_img {
	transform: scale(1.1);
}
.main_con1_box_inner h3 {
	z-index: 10;
}
.main_con1_title_col {
	text-align: center;
	padding-top: 56px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
	opacity: 0;
	transform: translateY(40px);
}
.main_con1_title_box h2 {
	padding-bottom: 8px;
	color: var(--primary-color);
}

/* con2 */
#main_con2 {
	background: url(/wp-content/uploads/main_con2_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
}
#main_con2 .section_inner {
	width: 100%;
	max-width: 1760px;
	gap: 0;
	align-items: center;
}
#main_con2 .inno_column {
	width: 50%;
	display: flex;
	justify-content: center;
}
.main_con2_col_txt {
	padding: 0 16px;
}
.main_con2_col_txtbox {
	width: 100%;
	max-width: 650px;
	text-align: center;
	opacity: 0;
	transform: translateX(-100px);
}
.main_con2_list {
	display: flex;
	padding: 64px 0px 80px 0px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 40px 0;
}
.main_con2_list li {
	width: 33.33%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}
.main_con2_icon {
	width: 70px;
	height: 70px;
}
.main_con2_li1 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon1.png) no-repeat center;
	background-size: cover;
}
.main_con2_li2 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon2.png) no-repeat center;
	background-size: cover;
}
.main_con2_li3 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon3.png) no-repeat center;
	background-size: cover;
}
.main_con2_li4 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon4.png) no-repeat center;
	background-size: cover;
}
.main_con2_li5 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon5.png) no-repeat center;
	background-size: cover;
}
.main_con2_li6 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon6.png) no-repeat center;
	background-size: cover;
}
.main_con2_li7 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon7.png) no-repeat center;
	background-size: cover;
}
.main_con2_li8 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon8.png) no-repeat center;
	background-size: cover;
}
.main_con2_li9 .main_con2_icon  {
	background: url(/wp-content/uploads/main_con2_icon9.png) no-repeat center;
	background-size: cover;
}
.main_con2_more_box {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}
.main_con2_more_box p {
	font-size: 24px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}
.main_con2_line {
    width: 8.3vw;
    max-width: 160px;
    height: 1px;
    border-top: 1px solid #fff;
}
.main_con2_btn_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.main_con2_imgbox {
	opacity: 0;
	transform: translateX(100px);
}


/* con3 */
.main_con3_title_col {
	width: 100%;
	max-width: 1500px;
	margin: auto;
	display: flex;
	align-items: flex-start;
	gap: 80px;
	padding-bottom: 56px;
	opacity: 0;
	transform: translateY(40px);
}
.main_con3_title_col h2 {
	width: calc(50% - 40px);
}
.main_con3_txtbox {
	width: calc(50% - 40px);
}
.main_con3_txtbox p {
	padding-bottom: 24px;
}
.main_con3_content_col {
	display: flex;
	align-items: stretch;
}
.main_con3_box {
	width: 25%;
	height: 491px;
	position: relative;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	opacity: 0;
	transform: translateY(40px);
}
.main_con3_box:after {
	content:"";
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	border-right: 1px solid #dcdcdc;
	z-index: 1;
}

.main_con3_box1 {
	background: url(/wp-content/uploads/mian_con3_bg1.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box2 {
	background: url(/wp-content/uploads/mian_con3_bg2.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box3 {
	background: url(/wp-content/uploads/mian_con3_bg3.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box4 {
	background: url(/wp-content/uploads/mian_con3_bg4.jpg) no-repeat center;
	background-size: cover;
}
.main_con3_box h3 {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	z-index: 10;
	position: relative;
}

.main_con3_box h3:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(193, 153, 197, 0.80) 0%, rgba(107, 59, 233, 0.80) 100%);
	opacity: 0;
	transition: .3s ease-in-out;
	z-index: -1;
}
.main_con3_box  h3:hover:before {
	opacity: 1;
}



@media screen and (max-width: 1024px)  {
	.main_section {
		height: auto;
	}
	.main_section .section_inner {
		padding-top: 100px;
		padding-bottom: 120px;
	}


	/* banner */
	.main_banner_content {
		padding-bottom: 64px;
	}
	.main_banner_carousel_item1 .main_banner_carousel_bg {
		background: url(/wp-content/uploads/main_banner_bg1_m.jpg) no-repeat 65% center;
		background-size: cover;
	}
	.main_banner_carousel_item2 .main_banner_carousel_bg {
		background: url(/wp-content/uploads/main_banner_bg2_m.jpg) no-repeat 65% center;
		background-size: cover;
	}
	.main_banner_product_img {
		display: none;
	}
	.banner_h1 {
		padding-bottom: 16px;
	}
	.main_banner_txtbox p {
		font-size: 18px;
	}


	/* 1024 아래에서는 애니메이션 없음 */
	.main_con1_box1, .main_con1_box2, .main_con1_box3,
	.main_con1_title_col,
	.main_con2_col_txtbox,
	.main_con2_imgbox,
	.main_con3_title_col,
	.main_con3_box {
		transform: translateX(0);
		opacity: 1;
	}

	/* con1 */
	.main_con1_box {
		padding: 8px;
		min-width: 200px;
		min-height: 200px;
	}

	/* con2 */
	#main_con2 .section_inner {
		padding-top: 24px;
	}
	#main_con2 .inno_column {
		width: 100%;
	}
	.main_con2_col_txt {
		padding: 0 16px;
		order: 2;
	}
	.main_con2_list {
		padding: 40px 0 56px 0;
		gap: 24px 0;
	}
	.main_con2_icon {
		width: 60px;
		height: 60px;
	}
	.main_con2_line {
		width: 100%;
		max-width: unset;
	}
	.main_con2_more_box p {
		font-size: 20px;
	}

	/* con3 */
	.main_con3_title_col {
		flex-direction: column;
		gap: 24px;
	}
	.main_con3_title_col h2, .main_con3_txtbox {
		width: 100%;
	}


	/* con4 */
	.main_con3_content_col {
		flex-wrap: wrap;
	}
	.main_con3_box {
		width: 50%;
		height: 400px;
	}
	.main_con3_box:first-child,
	.main_con3_box:nth-child(2) {
		border-bottom: 0;
	}

	
}


@media screen and (max-width: 767px)  {
	#main_banner, .main_banner_carousel_item .main_banner_carousel_bg {
		height: 800px;
	}
	.main_banner_content {
        padding-bottom: 42px;
    }

	.main_section .section_inner {
        padding-top: 60px;
        padding-bottom: 80px;
    }
	.main_con1_box_wrap {
		gap: 8px;
		flex-direction: column;
		align-items: center;
	}
	.main_con1_box {
        padding: 8px;
        min-width: 220px;
        min-height: 220px;
    }
	.main_con1_title_col {
		padding-top: 40px;
		gap: 24px;
	}
	
	.main_con2_col_txt {
		padding: 0 8px;
	}
	.main_con2_icon {
        width: 40px;
        height: 40px;
    }
	.main_con2_list {
        padding: 32px 0 40px 0;
        gap: 16px 0;
    }
	.main_con2_list li {
		font-size: 14px;
	}
	.main_con2_more_box {
		flex-direction: column;
	}
	.main_con2_more_box p {
        font-size: 18px;
		display: none;
    }
	.main_con2_line {
		display: none;
	}

	.main_con3_title_col {
		gap: 16px;
		padding-bottom: 40px;
	}
	/* .main_con3_txtbox p {
		padding-bottom: 16px;
	} */
	.main_con3_box {
		height: 250px;
	}

	.main_con3_box h3 {
        padding: 16px;
        font-size: 18px;
    }





}


@media screen and (max-width: 480px) {
	#main_banner, .main_banner_carousel_item .main_banner_carousel_bg {
		height: 598px;
	}
	.banner_h1 {
        padding-bottom: 10px;
        padding-right: 80px;
    }
	.main_banner_txtbox p {
		font-size: 16px;
	}
	
}











 /* **************************************** *
 * subbanner
 * **************************************** */
#subbanner {
	height: 560px;
	background: url(/wp-content/uploads/subbanner_brand.jpg) no-repeat center;
	background-size: cover;
}
#subbanner .section_inner {
	padding: 0;
	height: 100%
}
#subbanner .section_inner .inno_column {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding-bottom: 100px;
}


@media screen and (max-width: 1024px) {
	#subbanner {
        height: 400px;
    }
	#subbanner .section_inner .inno_column {
		padding-bottom: 64px;
		gap: 16px;
	}
}


@media screen and (max-width: 767px) {
	#subbanner {
        height: 300px;
    }
	#subbanner .section_inner .inno_column {
        padding-bottom: 40px;
    }
}




 /* **************************************** *
 * 100 Brand
 * **************************************** */
.subbanner_brand_img {
    position: absolute;
    right: 8.4vw;
    bottom: 0;
}
.brand_con1_col_title {
	position: relative;
}
.brand_con1_title {
	position: absolute;
	top: 40px;
	left: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.4em;
}
.about_con1_title_bg {
	width: 100%;
	height: 466px;
	background: url(/wp-content/uploads/brand_con1_bg.jpg) no-repeat 80% center;
	background-size: cover;
}
.brand_con1_col_content {
	position: relative;
}
.brand_con1_col_content:before {
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 318px;
	height: 240px;
	background: url(/wp-content/uploads/brand_con1_logo-v2.png) no-repeat center;
	background-size: cover;
	z-index: -1;
}
.brand_con1_txtbox {
	width: 66.66%;
	margin-left: auto;
	padding-top: 64px;
}
.brand_con1_txtbox h2 {
	padding-bottom: 40px;
}
.brand_con1_txt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}
.brand_con1_txt strong {
	line-height: 1.6em;
}
.brand_con1_txt_highlight {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.6em;
}


#brand_con2 {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}
.brand_con2_inner {
	width: 100%;
	max-width: 1760px;
	border-right: 1px solid #dcdcdc;
	border-left: 1px solid #dcdcdc;
	padding: 80px 0;
}
.brand_con2_inner:first-child {
	border-bottom: 1px solid #dcdcdc;
}
.brand_con2_col {
	width: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 80px;
}
.brand_con2_col_txt, .brand_con2_col_img {
	width: calc(50% - 40px);
}
.brand_con2_title {
	padding-bottom: 24px;
}
.brand_con2_title_txt {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	padding-bottom: 16px;
}
.brand_con2_txt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}


#brand_con3 {
	background: url(/wp-content/uploads/brand_con3_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
}
.brand_con3_title {
	padding-bottom: 40px;
	text-align: center;
}
.brand_con3_title .brand_con2_title_txt {
	color: #fff;
}
.brand_con3_col_content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px; 
}
.brand_con3_last_p {
	font-size: 20px;
}
.brand_con3_list {
	width: 100%;
	max-width: 512px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.30);
}
.brand_con3_list li {
	display: flex;
	padding: 24px 56px;
	align-items: center;
	text-align: left;
	font-weight: 500;
	gap: 16px 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.brand_con3_icon {
	width: 48px;
	height: 48px;
}
.brand_con3_icon1 {
	background: url(/wp-content/uploads/brand_con3_icon1.png) no-repeat center;
	background-size: cover;
}
.brand_con3_icon2 {
	background: url(/wp-content/uploads/brand_con3_icon2.png) no-repeat center;
	background-size: cover;
}
.brand_con3_icon3 {
	background: url(/wp-content/uploads/brand_con3_icon3.png) no-repeat center;
	background-size: cover;
}
.brand_con3_icon4 {
	background: url(/wp-content/uploads/brand_con3_icon4.png) no-repeat center;
	background-size: cover;
}




@media screen and (max-width: 1024px) {
	.subbanner_brand_img {
		width: 25%;
	}

	.brand_con1_title {
		font-size: 26px;
	}
	.brand_con1_txtbox h2 {
		padding-bottom: 32px;
	}
	.brand_con1_col_content:before {
		width: 159px;
		height: 120px;
	}

	.brand_con2_col {
		flex-direction: column;
		gap: 64px;
	}
	.brand_con2_col_txt {
		order: 2;
	}
	.brand_con2_col_txt, .brand_con2_col_img {
		width: 100%;
		max-width: 610px;
	}
	.brand_con2_col_img {
		text-align: center;
	}
	.brand_con2_title_txt {
		font-size: 20px;
		padding-bottom: 8px;
	}


	.brand_con3_col_content {
		gap: 32px;
	}
	.brand_con3_list li {
		padding: 16px 40px;
	}

}

@media screen and (max-width: 767px) {
	.subbanner_brand_img {
		right: 30px;
		bottom: 24px;
	}

	.about_con1_title_bg {
		height: 250px;
	}
	.brand_con1_title {
		font-size: 22px;
		top: 16px;
	}
	.brand_con1_txtbox {
		width: 100%;
		padding-top: 40px;
	}
	.brand_con1_txtbox h2 {
        padding-bottom: 16px;
    }
	.brand_con1_txt {
		gap: 8px;
	}
	.brand_con1_txt_highlight {
		font-size: 18px;
	}
	.brand_con1_col_content:before {
		display: none;
	}

	.brand_con2_inner {
		padding: 0 0 60px;
	}
	.brand_con2_col {
		gap: 40px;
	}
	.brand_con2_title {
		padding-bottom: 16px;
	}
	.brand_con2_txt {
		gap: 8px;
	}
	.brand_con3_title {
		padding-bottom: 24px;
	}
	.brand_con2_title_txt {
		font-size: 18px;
	}
	.brand_con3_list li {
        padding: 16px 16px;
        gap: 24px;
    }
	.brand_con3_col_content {
        gap: 24px;
    }
	.brand_con3_last_p {
		font-size: 16px;
	}
	.brand_con3_icon {
		width: 40px;
		height: 40px;
	}
	.brand_con3_list li p {
		width: calc(100% - 40px - 24px);
	}
}


@media screen and (max-width: 480px) {
    .subbanner_brand_img {
        right: 16px;
        bottom: 35px;
    }
}





 /* **************************************** *
 * 200 tech
 * **************************************** */
#subbanner.subbanner_tech {
	background: url(/wp-content/uploads/subbanner_teech.jpg) no-repeat center;
	background-size: cover;
}
#tech_con1 .section_inner {
	max-width: 1760px;
	border-left: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
	padding: 80px 0;
	gap: 0;
	align-items: stretch;
}
#tech_con1 .inno_column {
	width: 50%;
}
.tech_con1_col_content {
	display: flex;
	align-items: flex-end;
	padding-left: 3.3vw;
	padding-right: 3.3vw;
	position: relative;
}
.tech_con1_col_content:before {
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	width: 318px;
	height: 240px;
	background: url(/wp-content/uploads/brand_con1_logo.png) no-repeat center;
	background-size: cover;
	z-index: -1;
}
.tech_con1_content {
	width: 100%;
	max-width: 620px;
	padding-bottom: 48px;
}
.tech_con1_titlebox {
	position: relative;
	padding-bottom: 40px;
}
.tech_con1_titlebox h2 {
	display: inline-block;
	background-color: #fff;
	padding-right: 18px;
}
.tech_con1_titlebox:before {
	content:"";
	position: absolute;
	bottom: 70px;
	right: 0;
	width: 100%;
	height: 1px;
	border-top: 1px solid #000;
	z-index: -1;
}
.tech_con1_list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 0;
}
.tech_con1_list li {
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}
.tech_con1_list li p {
	font-size: 16px;
	line-height: 1.3em;
	letter-spacing: -0.02em;
}
.tech_con1_icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}
.tech_con1_icon:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #C199C5 0%, #6B3BE9 100%);
	z-index: -1;
}
.tech_con1_icon1  {
	background: url(/wp-content/uploads/main_con2_icon1.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon2  {
	background: url(/wp-content/uploads/main_con2_icon2.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon3  {
	background: url(/wp-content/uploads/main_con2_icon3.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon4  {
	background: url(/wp-content/uploads/main_con2_icon4.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon5  {
	background: url(/wp-content/uploads/main_con2_icon5.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon6  {
	background: url(/wp-content/uploads/main_con2_icon6.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon7  {
	background: url(/wp-content/uploads/main_con2_icon7.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon8  {
	background: url(/wp-content/uploads/main_con2_icon8.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_icon9  {
	background: url(/wp-content/uploads/main_con2_icon9.png) no-repeat center;
	background-size: 45px;
}
.tech_con1_logo {
    height: 80px;
    padding: 10px;
    text-align: center;
}
.tech_con1_logo img {
    width: auto;
    height: 100%;
}

#tech_con2 {
	background: url(/wp-content/uploads/tech_con2_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	text-align: center;
}
.tech_con2_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	border-left: 1px solid rgba(255, 255, 255, 0.10);
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.tech_con2_list li {
	width: 33.33%;
	padding: 56px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	background: transparent;
	position: relative;
	cursor: pointer;
}
.tech_con2_list li:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/wp-content/uploads/tech_con2_box_bg.jpg) no-repeat center;
	background-size: cover;
	opacity: 0;
	z-index: -1;
	transition: .3s ease-in-out;
}
.tech_con2_list li:hover:before {
	opacity: 1;
}

.tech_con2_icon {
	width: 50px;
	height: 50px;
}
.tech_con2_icon1 {
	background: url(/wp-content/uploads/tech_con2_icon1.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon2 {
	background: url(/wp-content/uploads/tech_con2_icon2.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon3 {
	background: url(/wp-content/uploads/tech_con2_icon3.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon4 {
	background: url(/wp-content/uploads/tech_con2_icon4.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon5 {
	background: url(/wp-content/uploads/tech_con2_icon5.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon6 {
	background: url(/wp-content/uploads/tech_con2_icon6.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon7 {
	background: url(/wp-content/uploads/tech_con2_icon7.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon8 {
	background: url(/wp-content/uploads/tech_con2_icon8.png) no-repeat center;
	background-size: cover;
}
.tech_con2_icon9 {
	background: url(/wp-content/uploads/tech_con2_icon9.png) no-repeat center;
	background-size: cover;
}
.tech_con2_txtbox h4 {
	padding-bottom: 10px;
}



/* tech con2 popup (25.07.22 추가) */
.tech_con2_title_txt {
	padding-top: 24px;
}
.tech_con2_popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
	width: 100%;
	max-width: 650px;
	padding: 56px 40px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 32px;
	background: url(/wp-content/uploads/tech_con2_popup_bg.jpg) no-repeat center;
	background-size: cover;
	z-index: 9999999999999999999999;
	border: 1px solid rgba(255, 255, 255, 0.30);
	box-shadow: 0px 0px 1050px 0 #000;
}
.tech_con2_popup.current_popup {
	display: flex;
}
.tech_con2_popup .tech_con2_txtbox {
	text-align: left;
	color: #fff;
}
.tech_con2_popup .tech_con2_txtbox h4 {
	padding-bottom: 16px;
}
.tech_con2_popup_close {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0px;
	background: url(/wp-content/uploads/popup_close.png) no-repeat center;
	background-size: cover;
	cursor: pointer;
	transition: .3s ease-in-out;
}
.tech_con2_popup_close:hover {
	opacity: 0.5;
}




@media screen and (max-width: 1024px) {
	#tech_con1 .inno_column {
		width: 100%;
	}
	.tech_con1_col_img {
		text-align: center;
	}
	.tech_con1_col_content {
		justify-content: center;
		padding: 64px 0 0;
	}
	.tech_con1_col_content:before {
		display: none;
	}
	.tech_con1_content {
		padding-bottom: 0;
	}
	.tech_con1_titlebox:before {
		bottom: 63px;
	}
	.tech_con2_list li {
		width: 50%;
		padding: 40px 16px;
		gap: 24px;
	}
	.tech_con2_list li:last-child {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.tech_con1_col_content {
		padding-top: 40px;
	}
	.tech_con1_titlebox {
		padding-bottom: 24px;
	}
	.tech_con1_titlebox:before {
        bottom: 39px;
    }
	.tech_con1_titlebox h2 {
		padding-right: 8px;
	}
	.tech_con1_list li {
		width: 25%;
		padding: 0 8px;
	}
	.tech_con1_icon {
		width: 65px;
		height: 65px;
		background-size: 33px;
	}
	.tech_con1_logo {
		height: 65px;
		padding: 7px;
	}
	.tech_con1_list {
		gap: 16px 0;
	}
	.tech_con1_list li p {
		font-size: 14px;
	}


	/* popup */
	.tech_con2_popup {
		width: calc(100% - 24px);
		padding: 32px 24px;
		gap: 24px;
	}
	.tech_con2_popup .tech_con2_txtbox h4 {
		padding-bottom: 16px;
	}
	
}


@media screen and (max-width: 480px) {
	.tech_con1_list li {
		width: 33.33%;
	}
	.tech_con1_list li:last-child {
		display: none;
	}
	.tech_con2_list li {
		width: 100%;
		padding: 32px 16px;
	}
}








 /* **************************************** *
 * 300 Product
 * **************************************** */
#subbanner.subbanner_product {
	background: url(/wp-content/uploads/subbanner_product.jpg) no-repeat center;
	background-size: cover;
}
.subbanner_product_img {
	position: absolute;
	right: 6.5vw;
	bottom: 25px;
	text-align: right;
}
#subpage_menu {
	width: 100%;
	border-bottom: 1px solid #dcdcdc;
}
#subpage_menu ul {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: center;
}
#subpage_menu ul li {
	width: 50%;
}
#subpage_menu ul li a {
	width: 100%;
	display: flex;
	padding: 24px 0px;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4em;
	color: #a0a0a0;
	text-align: center;
	position: relative;
}
#subpage_menu ul li a:before {
	content:"";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	opacity: 0;
	transition: .3s ease-in-out;
}
#subpage_menu ul li.current-menu-item a,
#subpage_menu ul li a:hover {
	color: var(--primary-color);
}
#subpage_menu ul li.current-menu-item a:before {
	opacity: 1;
}

.product_section .section_full_width {
	max-width: 1760px;
	border-bottom: 1px solid #dcdcdc;
	padding-top: 120px;
}
.product1_con3 .section_full_width {
	border-bottom: 0;
}
.product_title_column {
	position: relative;
	text-align: center;
	color: #fff;
}
.product_title_img {
    width: 80%;
    margin: 0 auto;
}
.product_title_bg {
	width: 100%;
	height: 506px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.product1_con1 .product_title_bg {
	background: url(/wp-content/uploads/product1-1_title_bg.jpg) no-repeat center;
	background-size: cover;
}
.product_title {
	padding-top: 24px;
	padding-bottom: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.product_title p {
	font-size: 20px;
	font-weight: 500;
}
.product_col_content {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding-top: 80px;
}
.product_content_wrap {
	display: flex;
	padding-bottom: 40px;
	align-items: flex-start;
	gap: 80px;
	align-self: stretch;
}
.product_content_wrap_last {
	border-top: 1px solid #dcdcdc;
	padding-top: 40px;
	padding-bottom: 0;
}
.product_content_title {
	width: calc(33.33% - 40px);
}
.product_content_title h3 {
	font-size: 26px;
}
.product_content_box {
	width: calc(66.66% - 40px);
}
.product1_con1_list {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.product1_con1_list li {
	width: calc(25% - 18px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-weight: 500;
}
.product_content_callout {
	margin-top: 64px;
	display: flex;
	padding: 40px 56px;
	align-items: center;
	gap: 32px;
	align-self: stretch;
	background: var(--bg-color, #F3F2F8);
}
.product_content_callout p {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
}
.product_content_callout p:before {
	content:"";
	display: block;
	width: 42px;
	height: 43px;
	background: url(/wp-content/uploads/product_callout_icon.png) no-repeat center;
	background-size: cover;
}
.product_content_callout_con1 {
	padding-top: 32px;
	padding-bottom: 32px;
	justify-content: space-between;
}

.product1_con2 .product_title_bg {
	background: url(/wp-content/uploads/product1-2_title_bg.jpg) no-repeat center;
	background-size: cover;
}
.product1_con2 .product_title_img img {
	position: relative;
	left: 41px;
}


.product1-2_content_box {
    display: flex;
    align-items: center;
	gap: 24px;
}
.product1-2_carousel_wrap {
	width: calc(100% - 70px - 24px);
}

.product1_con3 .product_title_bg {
	background: url(/wp-content/uploads/product1-3_title_bg.jpg) no-repeat center;
	background-size: cover;
}

.product1_con3_list {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}
.product1_con3_list li {
	width: calc(25% - 12.8px);
	max-width: 148px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	font-weight: 500;
}

#product1_con4 {
	background: var(--bg-color);
}
#product1_con4 h2 {
	text-align: center;
}
.product1_con4_table {
	width: 100%;
}
.product1_con4_table thead tr th {
	width: calc((100% - 300px) / 2);
	max-width: 500px;
	padding: 16px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	font-weight: 600;
	line-height: 1.6em;
}
.product1_con4_table thead tr th.th_col1 {
	width: 300px;
}
.product1_con4_table tbody tr th.th_col1 {
	width: 300px;
	padding: 16px;
	border-bottom: 1px solid #000;
	background: #EBE8F8;
	font-weight: 600;
	vertical-align: middle;
}
.product1_con4_table tbody tr td {
	width: calc((100% - 300px) / 2);
	max-width: 500px;
	padding: 16px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	vertical-align: middle;
}
.product1_con4_table tbody tr td:last-child {
	border-right: 0;
}
.product1_con4_table tbody tr:last-child th.th_col1,
.product1_con4_table tbody tr:last-child td {
	border-width: 2px;
}
.product1-4_table_list {
	display: flex;
	flex-wrap: wrap;
	display: flex;
	align-items: center;
	align-content: center;
	gap: 8px;
}
.product1-4_table_list li {
	display: flex;
	padding: 2px 12px;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	border: 1px solid rgba(0, 0, 0, 0.30);
	/* text-align: center; */
}

@media screen and (max-width: 1024px) {
	.subbanner_product_img {
		right: 16px;
	}
	.subbanner_product_img img {
		max-width: 300px;
	}

	#subpage_menu ul li a {
		font-size: 20px;
		padding: 16px 0;
	}

	.product_section .section_full_width {
		padding-top: 80px;
	}
	.product_title_bg {
		height: 400px;
	}
	.product_title {
		padding-bottom: 56px;
	}
	.product_title p {
		font-size: 18px;
	}

	.product_col_content {
		padding-top: 64px;
	}
	.product_content_title h3 {
		font-size: 22px;
	}
	.product_content_callout {
		padding-left: 24px;
		padding-right: 24px;
	}
	.product1_con3 .product_title_img {
		max-width: 270px;
	}
	.product1_con4_table {
		font-size: 16px;
	}
	.product1_con4_table thead tr th.th_col1, .product1_con4_table tbody tr th.th_col1 {
		width: 200px;
	}
}

@media screen and (max-width: 767px) {
	.subbanner_product_img {
        right: 8px;
        bottom: 16px;
    }
	.subbanner_product_img img {
        max-width: 228px;
    }

	#subpage_menu ul li a {
        font-size: 16px;
        padding: 12px 0;
    }

	.product_section {
		padding: 0;
	}
	.product_section .section_full_width {
        padding-top: 56px;
    }
	.product_title_wrap {
		padding: 0 16px;
	}
	.product_title {
        padding-bottom: 40px;
        gap: 8px;
    }
	.product_title p {
        font-size: 16px;
    }
	.product_title_bg {
        height: 300px;
    }
	.product_col_content {
        padding-top: 48px;
		padding-left: 16px;
		padding-right: 16px;
    }
	.product_content_wrap {
		flex-wrap: wrap;
		gap: 24px;
		padding-bottom: 32px;
	}
	.product_content_wrap_last  {
		padding-top: 32px;
		padding-bottom: 0;
	}
	.product_content_title {
		width: 100%;
	}
	.product_content_box {
		width: 100%;
	}
	.product_content_title h3 {
        font-size: 20px;
    }
	.product1_con1_list {
		gap: 16px 8px;
	}
	.product1_con1_list li {
		width: calc(25% - 6px);
	}
	.product1_con1_list li p, .product1_con3_list li p {
		font-size: 14px;
		line-height: 1.4em;
	}

	.product_content_callout {
		padding: 32px 24px;
		margin-top: 48px;
	}
	.product_content_callout_con1 {
		flex-direction: column;
		gap: 16px;
	}
	.product_content_callout p:before {
		width: 30px;
		height: 31px;
	}
	.product1_con2 .product_title_img img {
		position: relative;
		left: 0;
	}

	.product1_con3 .product_title_img {
        max-width: 185px;
    }
	.product1_con3_list {
		flex-wrap: wrap;
	}

	.product1_con4_table {
		font-size: 14px;
	}
	.product1_con4_table thead tr th.th_col1, .product1_con4_table tbody tr th.th_col1 {
        width: 140px;
    }
}

@media screen and (max-width: 480px) {
	.subbanner_product_img {
        bottom: 31px;
    }
	.subbanner_product_img img {
        max-width: 170px;
    }
	.product_title_img {
		width: 100%;
	}
	.product_title_bg {
        height: 280px;
    }
	.product1_con1_list li {
        width: calc(33.33% - 5.33px);
    }
	.product1_con1_img {
		width: 80px;
	}

	.product1-2_carousel_wrap {
        width: 100%;
        padding: 0 40px;
    }
	.product1-2_carousel_wrap .slick-list {
		overflow: visible;
	}
	.product1-2_carousel_item {
		opacity: 0.4;
	}
	.product1-2_carousel_item.slick-current {
		opacity: 1;
	}
	.product1-2_carousel_item img {
		text-align: center;
		margin: 0 auto;
	}
	ul.slick-dots {
		display: flex;
		justify-content: center;
		gap: 16px;
		padding-top: 16px;
	}
	ul.slick-dots li button {
		appearance: none;
		outline: 0;
		/* border: 0; */
		color: transparent;
		user-select: none;
		display: block;
		padding: 0;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: transparent;
		border: 1px solid var(--primary-color);
	}
	ul.slick-dots li.slick-active button {
		background: var(--primary-color);
	}

	.product1_con3_list {
		gap: 16px 8px;
	}
	.product1_con3_list li {
		width: calc(33.33% - 5.33px);
	}
	.product1_con3 .product_title_img {
        max-width: 155px;
    }



	#product1_con4 {
		padding-right: 0;
	}
	#product1_con4 .title_column {
		padding-right: 16px;
	}
	.product1_con4_table_wrap {
		width: 100%;
		overflow-x: auto;
	}
	.product1_con4_table {
		width: 550px;
		font-size: 13px;
	}
	.product1_con4_table thead tr th.th_col1, .product1_con4_table tbody tr th.th_col1 {
        width: 100px;
        padding: 12px 8px;
		line-height: 1.4em;
    }
	.product1_con4_table thead tr th {
		padding: 12px 8px;
		line-height: 1.4em;
	}
	.product1_con4_table tbody tr td {
		padding: 12px 8px;
		line-height: 1.4em;
	}
	.product1-4_table_list {
		gap: 4px;
	}
}




 /* **************************************** *
 * 401 media
 * **************************************** */
#subbanner.subbanner_media {
	background: url(/wp-content/uploads/subbanner_media.jpg) no-repeat center;
	background-size: cover;
}


@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
	
}


 /* **************************************** *
 * 601 contact
 * **************************************** */
#subbanner.subbanner_contact {
	background: url(/wp-content/uploads/subbanner_contact.jpg) no-repeat center;
	background-size: cover;
}
#contact_con .section_inner {
	gap: 0;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}
/* #contact_con .inno_column {
	width: 50%;
} */
.contact_col_title {
	grid-column: 1;
	grid-row: 1;
	padding-right: 4.2vw;
}
.contact_col_title h2 {
	padding-bottom: 16px;
}
.contact_col_content {
	grid-column: 2;
	grid-row: 1 / span 2;
	/* height: 673px;
	background: var(--bg-color); */
}
.contact_col_info {
	grid-column: 1;
	grid-row: 2;
	align-self: end;
	padding-right: 4.2vw;
}
.contact_col_info h4 {
	color: var(--primary-color);
	padding-bottom: 16px;
}
.contact_info {
	border-top: 1px solid #dcdcdc;
}
.contact_info dl {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #DCDCDC;
	font-size: 16px;
	line-height: 1.6em;
}
.contact_info dl dt {
	width: 100px;
	padding: 12px 0px;
	font-weight: 600;
}
.contact_info dl dd {
	width: calc(100% - 100px);
	padding: 12px 0px;
}

.contact_sns_wrap {
	justify-content: flex-start;
}
.contact_sns_wrap li a.footer_sns_facebook {
	background: url(/wp-content/uploads/sns_facebook_b.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_facebook:hover {
	background: url(/wp-content/uploads/sns_facebook_h.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_instagram {
	background: url(/wp-content/uploads/sns_instagram_b.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_instagram:hover {
	background: url(/wp-content/uploads/sns_instagram_h.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_tiktok {
	background: url(/wp-content/uploads/sns_tiktok_b.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_tiktok:hover {
	background: url(/wp-content/uploads/sns_tiktok_h.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_youtube {
	background: url(/wp-content/uploads/sns_youtube_b.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_youtube:hover {
	background: url(/wp-content/uploads/sns_youtube_h.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_x {
	background: url(/wp-content/uploads/sns_x_b.png) no-repeat center;
	background-size: cover;
}
.contact_sns_wrap li a.footer_sns_x:hover {
	background: url(/wp-content/uploads/sns_x_h.png) no-repeat center;
	background-size: cover;
}


/* contact form */
p.contact_notice {
    text-align: right;
    padding-bottom: 16px;
}
p.contact_notice strong {
	font-weight: 600;
	color: var(--primary-color);
}
.contact_item {
	display: flex;
	padding: 8px 0px;
	align-items: flex-start;
	align-self: stretch;
}
.contact_item:first-child {
	padding-top: 0;
}
.contact_item:last-child {
	padding-bottom: 0;
}
.contact_item .contact_label {
	width: 180px;
	padding: 16px 0px;
	font-weight: 600;
}
.contact_item .contact_label .contact_req {
	color: var(--primary-color);
}
.contact_item .contact_input {
	width: calc(100% - 180px);
	position: relative;
}
/* input */
input[type=text], 
input[type=email],
input[type=password] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
    border: 0;
    display: block;
    height: 64px;
    width: 100%;
    font-size: 18px;
    padding: 16px 24px;
	background: var(--bg-color);
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	border-radius: 0;
}
textarea {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    font-size: 18px;
    padding: 16px 24px;
	background: var(--bg-color);
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	border-radius: 0;
}
.contact_item input[type=text], 
.contact_item input[type=email],
.contact_item input[type=password],
.contact_item textarea {
	color: #000;
	border-radius: 0;
}
.contact_item.contact_item_txtarea {
    height: 100%;
}
.contact_item.contact_item_txtarea, .contact_item_txtarea .contact_input, .contact_item_txtarea .contact_input > p, .contact_item_txtarea .contact_input .wpcf7-form-control-wrap {
    height: 100%;
}

/* 개인정보 + 버튼  */
.contact_bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: center;
}
/* checkbox */
.agree_chk span.wpcf7-list-item {
    margin: 0;}
.agree_chk .wpcf7-form-control-wrap {
    margin-right: 16px;
}
.agree_chk .wpcf7-list-item label {
    display: inline-block;
    position: relative;}
.agree_chk input[type=checkbox]:checked,
.agree_chk input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -99999999px;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label {
    display: block;
    line-height: 1.6em;
    font-weight: 500;
    position: relative;
    padding-left: 42px;
    cursor: pointer;}
.agree_chk .contact_item.contact_item_check input[type=checkbox] + span.wpcf7-list-item-label {
    color: transparent !important;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::before {
	content:"";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border:  1px solid #000;
    z-index: 10;}
.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::after {
	content:"";
    position: absolute;
	left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
	background: transparent url(/wp-content/uploads/contact_checked.png) no-repeat center;
	background-size: cover;
    z-index: 10;
    opacity: 0;}
/* .agree_chk input[type="checkbox"]:checked + span.wpcf7-list-item-label::before {
    border-color: var(--primary-color);
	background: var(--primary-color);
} */
.agree_chk input[type="radio"]:checked + span.wpcf7-list-item-label:before {
    opacity: 0;
}
.agree_chk input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
    opacity: 1;
}

.contact_submit button.btn {
	background: #fff;
	cursor: pointer;
}
.contact_submit button.btn:hover {
	background-color: var(--primary-color);
	background: linear-gradient(270deg, #6B3BE9 0%, #C199C5 100%);
}
.contact_submit button.btn:disabled {
	cursor: not-allowed;
}


.wpcf7-not-valid-tip {
    color: var(--primary-color);
    font-size: 14px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary-color);
    text-align: center;
}



@media screen and (max-width: 1024px) {
	#contact_con .section_inner {
		display: flex;
	}
	.contact_col_title {
		padding-right: 0;
	}
	.contact_col_content {
		padding-bottom: 64px;
	}
	.contact_col_info {
		background: var(--bg-color);
        padding: 16px;
	}
}

@media screen and (max-width: 767px) {
	p.contact_notice{
		font-size: 14px;
	}
	.contact_info dl {
		font-size: 14px;
	}
	.contact_info dl dt {
		width: 80px;
	}
	.contact_info dl dd {
		width: calc(100% - 80px);
	}
	.wpcf7-not-valid-tip {
		font-size: 12px;
	}
}


@media screen and (max-width: 480px) {
	p.contact_notice {
		padding-bottom: 8px;
	}
	.contact_item {
		flex-wrap: wrap;
	}
	.contact_item .contact_label {
		width: 100%;
		padding: 0 0 8px;
	}
	.contact_item .contact_input {
		width: 100%;
	}
	input[type=text], input[type=email], input[type=password] {
		padding: 8px;
		font-size: 16px;
		height: 48px;
	}
	textarea {
		padding: 8px;
		font-size: 16px;
		height: 200px;
	}
	.contact_bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::before,
	.agree_chk input[type=checkbox] + span.wpcf7-list-item-label::after {
		top: 0;
	}
	
}





 /* **************************************** *
 * Login 
 * **************************************** */
.banner_full {
    height: 100vh;
	background: url(/wp-content/uploads/tech_con2_bg.jpg) no-repeat center;
    background-size: cover;
    color: #fff;
}
.tml p.error {
    margin: 16px 0 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
}
.tml input[type=text],
.tml input[type=email], 
.tml input[type=password] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
	color: #fff;
}
.tml input[type=text]:focus,
.tml input[type=email]:focus, 
.tml input[type=password]:focus {
	border: 1px solid #fff;
}
.tml-user-login-wrap,
.tml-user-pass-wrap {
    padding-bottom: 24px;
}
.tml-user-login-wrap label,
.tml-user-pass-wrap label,
.lost_pasword_wrap label {
    display: block;
    padding-bottom: 8px;
    font-weight: 600;
}
.tml-rememberme-submit-wrap {
    padding-bottom: 32px;
}
p.tml-rememberme-wrap {
    padding-bottom: 24px;
}
.tml-submit-wrap input[type=submit],
.tml-submit-wrap button {
    appearance: none;
    outline: 0;
    border: 1px solid #fff;
    background: transparent;
    padding: 12px 48px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border-radius: 80px;
    line-height: 1.6em;
	cursor: pointer;
	transition: .3s ease-in-out;
}
.tml-submit-wrap input[type=submit]:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
.login_section a, .tml .tml-action-links a {
    display: inline-block;
    color: #fff;
	border-bottom: 1px solid #fff;
}

.tml-lostpassword ul.tml-action-links {
    padding-top: 40px;
}


#theme-my-login p.message {
    padding-bottom: 24px;
}


@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
	
}




 /* **************************************** *
 * 301 Products
 * **************************************** */



@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
	
}