@charset "utf-8";

/*

제타모빌리티 홈페이지 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: #009DFF;
	--bg-color: #F3F3F3;
    --font-color: #000;
	--font-gray: #7F7F7F;
    

    /* layout */
    --content-width: 1400px;
	--content-width-lg: 1720px;
    --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 {
    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: 20px;
	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;}


@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;
}
.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: 200px;
	padding-bottom: 200px;
}
.section_padding-top {
	padding-top: 200px;
	padding-bottom: 0;
}
.section_padding-bottom {
	padding-top: 0;
	padding-bottom: 200px;
}
.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: 80px;
	border-bottom: 1px solid #000;
}
.title_column_s {
	padding-bottom: 64px;
}
.col_content {
	padding-top: 64px;
}

@media screen and (max-width: 1024px) {
	.section_inner {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.section_padding-top {
		padding-top: 120px;
		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: 48px;
	}
	.col_content {
		padding-top: 40px;
	}
}

@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: 24px;
	}
	.col_content {
		padding-top: 24px;
	}
}






/* **************************************** *
 * font default
 * **************************************** */
h1 {
	font-size: 80px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4em;
}
h2 {
	font-size: 56px;
	font-style: normal;
	line-height: 1.4em;
	font-weight: 700;
}
h2.title_en {
	font-weight: 600;
}
h3 {
	font-size: 40px;
	line-height: 1.4em;
	font-style: normal;
	font-weight: 700;
}
h3.title_en {
	font-weight: 600;
}
h4 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6em;
}
p {
	line-height: var(--text-line-height);
}
p.txt_lg {
	font-size: 24px;
}
strong {
	font-weight: 700;
}



@media screen and (max-width: 1024px) {
	h1 {
		font-size: 56px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 28px;
	}
	h4 {
		font-size: 23px;
	}
	p.txt_lg {
		font-size: 20px;
	}
}


@media screen and (max-width: 767px) {
	h1 {
        font-size: 36px;
    }
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 23px;
	}
	h4 {
		font-size: 18px;
	}
	p.txt_lg {
		font-size: 16px;
	}
}





/* **************************************** *
 * button default
 * **************************************** */

.btn_s {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: #000;
	transition: .3s ease-in-out;
}
.btn_s_icon {
	width: 26px;
	height: 26px;
	background: url(/wp-content/uploads/btn_s_icon.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}
.btn_s:hover {
	background: var(--primary-color);
}
.btn_s:hover .btn_s_icon {
	transform: rotate(180deg);
}

.btn_txt_link {
	display: flex;
	align-items: center;
	gap: 12px;
	transition: .3s ease-in-out;
}
.btn_txt {
	font-weight: 600;
	line-height: 1.6em;
	transition: .3s ease-in-out;
}
.btn_icon {
	width: 12px;
	height: 12px;
	background: url(/wp-content/uploads/btn_icon.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}
.btn_txt_link:hover .btn_txt {
	color: var(--primary-color);
}
.btn_txt_link:hover .btn_icon {
	transform: rotate(180deg);
	background: url(/wp-content/uploads/btn_icon_c.png) no-repeat center;
	background-size: cover;
}




/* slick nav */
/* .carousel_nav_wrap {
	display: flex;
	flex-direction: column;
}
button.slick-arrow {
	appearance: none;
	outline: none;
	display: block;
	width: 60px;
	height: 60px;
	border: 0;
	border-radius: 0;
	transition: .3s ease-in-out;
	color: transparent;
	user-select: none;
	cursor: pointer;
	background-color: #000;
}
button.slick-next.slick-arrow {
	background: #000 url(/wp-content/uploads/arrow_next.png) no-repeat center;
	background-size: 24px;
}
button.slick-prev.slick-arrow {
	background: #000 url(/wp-content/uploads/arrow_prev.png) no-repeat center;
	background-size: 24px;
}
button.slick-next.slick-arrow:hover {
	background-color: var(--primary-color);
}
button.slick-prev.slick-arrow:hover {
	background-color: var(--primary-color);
}

button.slick-arrow.slick-disabled {
	cursor: default;
}
button.slick-next.slick-arrow.slick-disabled:hover {
	background-color: #000;
}
button.slick-prev.slick-arrow.slick-disabled:hover {
	background-color: #000;
}


@media screen and (max-width: 1024px) {
	button.slick-arrow {
		width: 50px;
		height: 50px;
		background-size: 18px !important;
	}
} */

@media screen and (max-width: 767px) {
	.btn_s {
		width: 40px;
		height: 40px;
	}
	.btn_s_icon {
		width: 16px;
		height: 16px;
	}
}



/* **************************************** *
 * HEADER
 * **************************************** */
#wpadminbar {
	position: fixed;
}
.inno_header {
	width: 100%;
	position: fixed;
	z-index: 99996;
	background: transparent;
    transition: .3s ease-in-out;
	padding: var(--content-padding);
}
.header_inner {
	justify-content: space-between;
	align-items: center;
	gap: 40px;
    transition: .3s ease-in-out;
}
.header_content_width {
	width: 100%;
	max-width: var(--content-width-lg);
}

.header_standard_logo {
	display: none;
}
.header_sticky_logo {
	display: block;
}
.header_logo_link img {
	width: auto;
	height: 30px;
}


.header_right {
	display: flex;
    gap: 3.8vw;
    align-items: stretch;
	justify-content: flex-end;
	height: 100%;
}


/* 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: 48px 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: #000;
	font-size: 20px;
	padding-right: 3.8vw;
	text-transform: uppercase;
}
#inno_main_nav .main-menu > .menu-item.gnb_last > a {
	padding-right: 0;
}
#inno_main_nav .main-menu > .menu-item > a:hover {
	color: var(--primary-color);
}
#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);
}


/* submenu */
#inno_main_nav .main-menu .sub-menu {
	display: none;
	position: absolute;
	padding: 0;
    width: 180px;
	background: #000;
	top: 100%;
	left: -16px;
	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 16px;
    color: #fff;
    font-size: 16px;
	font-weight: 500;
}
#inno_main_nav .main-menu .sub-menu .menu-item a span {
	font-weight: 500;
}

#inno_main_nav .main-menu .sub-menu .menu-item a:hover,
#inno_main_nav .main-menu .sub-menu .menu-item.current-menu-item a {
	/* color: rgba(255, 255, 255, 0.60); */
	color: var(--primary-color);
}
#inno_main_nav .main-menu .sub-menu .menu-item.current-menu-item a span {
	font-weight: 700;
}


/* 다국어 */
#inno_main_nav .wpml-ls-item {
    display: none;
}
.lang_btn_wrap {
    display: flex;
    align-items: center;
	position: relative;
}
.lang_btn_wrap:before {
	display: none;
}
.wpml-ls-legacy-dropdown {
    width: auto;
}
.lang_btn_wrap .wpml-ls-legacy-dropdown,
.lang_btn_wrap .wpml-ls-legacy-dropdown > ul,
.lang_btn_wrap .wpml-ls-legacy-dropdown > ul > li {
	height: 100%;
}
.lang_btn_wrap .wpml-ls-legacy-dropdown > ul > li {
	position: relative;
}
.lang_btn_wrap .wpml-ls-item-legacy-dropdown > a {
	display: flex;
	height: 100%;
	align-items: center;
	color: transparent;
	width: 26px;
	background: transparent !important;
    border: 0 !important;
	padding: 0;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
	display: none;
}
/* span.wpml-ls-display {
    display: none;
} */

.lang_btn_wrap .wpml-ls-legacy-dropdown > ul > .wpml-ls-item > a > .wpml-ls-native {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	font-size: 0px;
}
.lang_btn_wrap .wpml-ls-legacy-dropdown > ul > .wpml-ls-item > a > .wpml-ls-native:before {
	content:"";
	display: block;
	width: 24px;
	height: 24px;
	background: url(/wp-content/uploads/lang_btn_b.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}


/* wpml 플러그인 설치하면 적절하게 수정~~~~~~ ------------- */
.lang_btn_wrap .wpml-ls-legacy-dropdown > ul > li:hover .wpml-ls-sub-menu {
	display: block;
}
.lang_btn_wrap .wpml-ls-item > .wpml-ls-sub-menu {
	display: none;
	position: absolute;
	width: 45px;
    padding: 0;
    left: 50%;
	transform: translateX(-50%);
	border: 0;
}
/* wpml 플러그인 설치하면 적절하게 수정~~~~~~ ------------- */
.lang_btn_wrap .wpml-ls-item > .wpml-ls-sub-menu .wpml-ls-item a {
    padding: 6px 0;
    font-size: 16px;
	width: 100%;
    height: 45px;
	background: #000;
	color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	font-size: 14px;
	font-weight: 600;
	border: 0;
}
.lang_btn_wrap .wpml-ls-item > .sub-menu .menu-item a span:before {
	display: none;
}
.lang_btn_wrap .wpml-ls-item > .wpml-ls-sub-menu .wpml-ls-item a:hover {
	background: var(--primary-color);
}





/* 메인 헤더 - white ver */
.home .header_standard_logo {
	display: block;
}
.home .header_sticky_logo {
	display: none;
}
.home .header-sticky .header_standard_logo {
	display: none;
}
.home .header-sticky .header_sticky_logo {
	display: block;
}
.home #inno_main_nav .main-menu > .menu-item > a {
	color: #fff;
}
.home .lang_btn_wrap .wpml-ls-legacy-dropdown > ul > .wpml-ls-item > a > .wpml-ls-native:before {
	background: url(/wp-content/uploads/lang_btn.png) no-repeat center;
	background-size: cover;
}
.home .header-sticky .lang_btn_wrap .wpml-ls-legacy-dropdown > ul > .wpml-ls-item > a > .wpml-ls-native:before {
	background: url(/wp-content/uploads/lang_btn_b.png) no-repeat center;
	background-size: cover;
}





/* header scroll */
.header-sticky {
    background: #fff;
}
.header-sticky .header_inner {
    padding-top: 0px;
    padding-bottom: 0px;
}
.header-sticky .header_sticky_logo {
    display: block;
}
.header-sticky .header_standard_logo {
    display: none;
}
.header-sticky #inno_main_nav .main-menu > .menu-item {
    padding: 24px 0;
}
.header-sticky #inno_main_nav .main-menu > .menu-item > a {
    color: #000;
}
.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,
.header-sticky #inno_main_nav .main-menu > .menu-item > a:hover {
	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: #000;
}
.home .menu_mobile_btn_line {
	background: #fff;
}
.home .header-sticky .menu_mobile_btn_line {
	background: #000;
}
/* .header_mobile_inner, */
#inno_mobile_nav {
    display: none;
}



@media screen and (max-width: 1300px) {
	.header_logo_link img {
		height: 26px;
	}
	.header_right {
		gap: 24px;
	}
	#inno_main_nav .main-menu > .menu-item > a {
		padding-right: 32px;
	}
}



@media screen and (max-width: 1200px) {
	.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: 18px;
    } */




	/* lang */
	.lang_btn_wrap {
		margin-left: 0;
		margin-right: 24px;
		display: none;
	}
	#inno_main_nav .wpml-ls-item {
		display: block;
	}
	#mobile-menu .wpml-ls-item {
		position: absolute;
		left: 16px;
		border-bottom: 0 !important;
		padding-top: 16px;
	}
	#mobile-menu .wpml-ls-item:last-child {
		left: 66px;
	}
	#inno_mobile_nav .main-menu > .menu-item.wpml-ls-item > a {
        width: 40px;
        height: 40px;
        display: flex;
        padding: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
        color: #a0a0a0;
        border: 1px solid #dcdcdc;
        border-radius: 80px;
        font-size: 14px;
        font-weight: 500;
    }
	#inno_mobile_nav .main-menu > .menu-item.wpml-ls-item.wpml-ls-current-language > a {
		color: #000;
		border-color: #000;
	}



	/* 모바일 버튼 */
	.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 - 50px);
        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: #000;
        padding: 10px 16px;
        font-size: 16px;
        font-weight: 600;
        display: block;
        /* border-bottom: 1px solid var(--line-color); */
        line-height: 1.6em;
		text-transform: uppercase;
	}
	#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_page_item > a,
	#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 {
		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;
	}

	
}


@media screen and (max-width: 1024px) {
	.header_logo_link img {
        height: 18px;
    }
}



/* **************************************** *
 * Footer
 * **************************************** */
 .inno_footer {
    background: #000;
	position: relative;
	padding: var(--content-padding);
	z-index: 99995;
}
.footer_inner {
    position: relative;
	padding: 56px 0 80px 0;
	font-size: 16px;
	color: #7F7F7F;
}
.footer_content {
	width: 100%;
}
.footer_upper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}
.footer_company {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6em;
}
.footer_info {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.footer_info dl {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	line-height: 1.6em;
}
.footer_info dl dt {
	width: 90px;
	font-weight: 600;
}
.footer_info dl dd {
	width: calc(100% - 90px);
}
.footer_link_wrap {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}
.footer_link {
	color: #7F7F7F;
	line-height: 1.6em;
	transition: .3s ease-in-out;
	font-weight: 700;
}
.footer_link:hover {
	opacity: 0.6;
}
.footer_lower {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding-top: 40px;
}
.footer_copy {
	font-weight: 600;
}
.footer_lower img {
	width: 234px;
	height: auto;
}



/* floating menu */
.floating_menu_wrap {
    position: fixed;
    right: 0;
    z-index: 9999999999;
    bottom: 0;}
.floating_menu_wrap.floating_nofix {
    position: absolute;
    /*right: 4.2vw;*/
    bottom: 100%;
    z-index: 9999999999;}



/* to top */
.floating_menu_top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #000;
	position: relative;
	right: 0;
	bottom: -60px;
	transition: .3s ease-in-out;
	opacity: 0;
}
.floating_menu_top_show {
	opacity: 1;
	bottom: 0;
}
.floating_menu_top:before {
	content:"";
	width: 100%;
	height: 100%;
	background: url(/wp-content/uploads/totop.png) no-repeat center;
	background-size: cover;
}
.floating_menu_top:hover {
	background: var(--primary-color);
}



@media screen and (max-width: 1024px) {
	/* footer */
	.footer_lower img {
		width: 180px;
		height: auto;
	}

	/* floating menu */
}

@media screen and (max-width: 767px) {
	.floating_menu_top {
		width: 48px;
		height: 48px;
	}


	/* footer */
	.footer_inner {
		padding: 40px 0 64px;
		font-size: 14px;
	}
	.footer_upper {
		flex-direction: column;
		gap: 16px;
	}
	.footer_info {
		padding-top: 8px;
		gap: 4px;
	}
	.footer_lower img {
		display: none;
	}
	.footer_lower {
		padding-top: 24px;
	}
}


@media screen and (max-width: 480px) {
	.footer_info dl {
		flex-direction: column;
	}
	.footer_info dl dd {
		width: 100%;
	}
}






/* **************************************** *
 * main
 * **************************************** */
/* banner */
#main_banner {
	height: calc(var(--vh, 1vh) * 100);
	background-color: #000;
	padding: 0;
	
}
#main_banner .section_inner {
    width: 100%;
    height: 100%;
	padding: 0 16px;
}
#main_banner .inno_column {
    display: flex;
	align-items: flex-end;
	width: 100%;
	max-width: var(--content-width);
	margin: 0 auto;
	height: 100%;
	position: relative;
	padding-bottom: 120px;
}
.main_banner_txtbox {
    width: 100%;
	display: flex;
	flex-direction: column;
	gap: 37px;
	color: #fff;
}
.banner_h1 {
	font-weight: 500;
}
.banner_txt {
	font-size: 32px;
	font-weight: 500;
}

.banner_bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	z-index: -1;
}
.banner_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}
video.bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* con1 */
#main_con1 h2 {
	font-size: 72px;
	text-align: center;
}

/* con2 */
#main_con2 {
	background: #111;
	color: #fff;
}
#main_con2 .section_inner {
	gap: 100px;
}
.main_con2_col1 {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
}
.main_con2_col1_box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26.0vw;
	height: 26.0vw;
	max-width: 500px;
	max-height: 500px;
	min-width: 300px;
	min-height: 300px;
	padding: 20px;
	border-radius: 500px;
	border: 1px solid #7F7F7F;
	margin: 0 -1.6vw;
	background: #111;
	transform: translateX(-100px);
}
.main_con2_col1_box1 {
	z-index: 3;
	opacity: 0;
}
.main_con2_col1_box2 {
	z-index: 2;
	opacity: 0;
}
.main_con2_col1_box3 {
	z-index: 1;
	opacity: 0;
}
.main_con2_col1_txtbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.main_con2_col1_txtbox p {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4em;
}
.main_con2_col1_txtbox span {
	line-height: 1.4em;
	font-weight: 500;
	font-size: 26px;
	color: var(--primary-color);
}

.main_con2_col2 {
	text-align: center;
	/* margin-top: 100px; */
	padding: 56px 40px;
	opacity: 0;
	transform: translateY(40px);
	border-top: 1px solid rgba(127, 127, 127, 0.50);
	border-bottom: 1px solid rgba(127, 127, 127, 0.50);
}
.main_con2_col2 p {
	font-weight: 500;
}
.main_con2_line {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	/* width: 3000px; */
	width: 0;
	height: 1px;
	border-top: 1px solid #7F7F7F;
}

/* con3 */
.main_con3_col_title h2 {
	padding-bottom: 40px;
}
.main_con3_col_title {
	border: 0;
}
.main_con3_col_title p {
	width: calc(50% - 40px);
	margin-left: auto;
	font-size: 28px;
	font-weight: 500;
}
.main_con3_list {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 120px 120px;
}
.main_con3_list li:nth-child(2) {
	margin-top: 200px;
}
.main_con3_list li:nth-child(3) {
	margin-top: -190px;
}
.main_con3_item a {
	display: block;
	position: relative;
	overflow: hidden;
}
.main_con3_item a .btn_s {
	position: absolute;
	right: 0;
	bottom: 0;
}
.main_con3_item a:hover .btn_s {
	background: var(--primary-color);
}
.main_con3_item a:hover .btn_s .btn_s_icon {
	transform: rotate(180deg);
}
.main_con3_item a .main_con3_imgbox {
	transition: .7s ease-in-out;
}
.main_con3_item a:hover .main_con3_imgbox {
	transform: scale(1.05);
}
.main_con3_txtbox {
	padding-top: 32px;
}
.main_con3_txtbox h3 {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 8px;
}
.main_con3_title_sub {
	color: var(--font-gray);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.6em;
}

/* con4 */
#main_con4 {
	background: url(/wp-content/uploads/main_con4_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	text-align: center;
}
#main_con4 .section_inner {
	padding: 160px 0;
}
#main_con4 h2 {
	padding-bottom: 40px;
}
#main_con4 P {
	font-weight: 500;
}

/* con5 */
.main_con5_col_title {
	border-bottom: 1px solid #000;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}





@media screen and (max-width: 1024px)  {
	#main_banner .inno_column {
		padding-bottom: 80px;
	}
	.banner_txt {
		font-size: 24px;
	}

	#main_con1 h2 {
		font-size: 56px;
	}

	#main_con2 .section_inner {
		gap: 80px;
	}
	.main_con2_col1_box1, .main_con2_col1_box2, .main_con2_col1_box3 {
		opacity: 1;
		transform: translateX(0);
	}
	.main_con2_line {
		width: 3000px;
	}
	.main_con2_col1_txtbox p {
		font-size: 34px;
	}
	.main_con2_col1_txtbox span {
		font-size: 20px;
	}
	.main_con2_col2 {
		transform: translateY(0);
		opacity: 1;
		padding: 40px 16px;
	}

	.main_con3_col_title p {
		width: calc(50% - 20px);
		font-size: 22px;
	}
	.main_con3_list {
		grid-gap: 40px;
	}
	.main_con3_list li:nth-child(3) {
		margin-top: -120px;
	}
	.main_con3_txtbox {
		padding-top: 24px;
	}
	.main_con3_title_sub {
		font-size: 22px;
	}

	#main_con4 .section_inner {
		padding: 100px 0;
	}
}


@media screen and (max-width: 767px)  {
	#main_banner {
		height: 500px;
	}
	#main_banner .inno_column {
        padding-bottom: 48px;
    }
	.main_banner_txtbox {
		gap: 24px;
	}
	.banner_txt {
        font-size: 18px;
    }

	#main_con1 .section_inner {
		padding: 80px 0;
	}
	#main_con1 h2 {
        font-size: 34px;
    }

	#main_con2 .section_inner {
        gap: 40px;
    }
	.main_con2_col1_box {
		min-width: 200px;
		min-height: 200px;
		margin: 0 -8px;
	}
	.main_con2_col1_txtbox {
		gap: 8px;
	}
	.main_con2_col1_txtbox span {
        font-size: 16px;
    }
	.main_con2_col1_txtbox p {
        font-size: 22px;
    }
	.main_con2_col2 {
		padding: 24px 8px;
	}

	.main_con3_col_title h2 {
		padding-bottom: 16px;
	}
	.main_con3_title_sub {
		font-size: 17px;
	}
	.main_con3_col_title p {
		font-size: 18px;
	}
	.main_con3_txtbox {
        padding-top: 16px;
    }

	#main_con4 .section_inner {
        padding: 80px 0;
    }
	#main_con4 h2 {
		padding-bottom: 24px;
	}

	.main_con5_col_title {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
}


@media screen and (max-width: 480px) {
	#main_banner {
        height: 400px;
    }
	.banner_h1 {
		font-size: 32px;
	}

	.main_con2_col1 {
		flex-direction: column;
		align-items: center;
		margin: 16px 0;
	}
	.main_con2_col1_box {
		min-width: 200px;
		min-height: 200px;
		margin: -16px 0;
	}
	.main_con2_col1_box1 {
		z-index: 1;
	}
	.main_con2_col1_box2 {
		z-index: 2;
	}
	.main_con2_col1_box3 {
		z-index: 3;
	}
	.main_con2_line {
		display: none;
	}

	.main_con3_col_title p {
		font-size: 16px;
		width: 100%;
	}
	.main_con3_list {
		grid-gap: 40px;
		grid-template-columns: repeat(1, 3fr);
	}
	.main_con3_list li:nth-child(2),
	.main_con3_list li:nth-child(3) {
		margin-top: 0;
	}
}





 /* **************************************** *
 * subbanner
 * **************************************** */
#subbanner .section_inner {
	padding: 220px 0 100px;
}
.subbanner_txtbox {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}
.breadcrumbs_box {
	display: flex;
	align-items: center;
}
.bradcrumbs_home {
	display: block;
	width: 18px;
	height: 18px;
	background: url(/wp-content/uploads/bread_home.png) no-repeat center;
	background-size: cover;
}
.breadcrumbs_page {
	padding-left: 20px;
	margin-left: 16px;
	position: relative;
	font-weight: 500;
}
.breadcrumbs_page:before {
	content:"";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: #7F7F7F;
	border-radius: 50%;
}
.breadcrumbs_page:first-child {
	padding-left: 0;
	margin-left: 0;
}
.breadcrumbs_page:first-child:before {
	display: none;
}


#sub_con1 {
	display: flex;
	justify-content: center;
}
.sub_con1_inner {
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/wp-content/uploads/sub_zeta_bg.jpg) no-repeat center;
	background-size: cover;
}
.sub_con1_txtbox {
	width: 100%;
	max-width: calc(1400px + 32px);
	padding: 0 16px;
	color: #fff;
	position: relative;
}



@media screen and (max-width: 1024px) {
	#subbanner .section_inner {
		padding: 140px 0 64px;
	}
	.subbanner_txtbox {
		gap: 16px;
	}
}


@media screen and (max-width: 767px) {
	#subbanner .section_inner {
        padding: 100px 0 40px;
    }
	.subbanner_txtbox {
        gap: 8px;
    }
	.breadcrumbs_page {
		font-size: 14px;
		padding-left: 14px;
		margin-left: 10px;
	}
}








 /* **************************************** *
 * 101 About ZETA
 * **************************************** */
.about_con2_wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.about_con2_box {
	width: 100%;
	display: flex;
	padding: 56px 56px 64px 56px;
	align-self: stretch;
	background: var(--bg-color);
}
.about_con2_box h3 {
	width: 33.33%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.about_con2_box h3:after {
	content:"";
	display: block;
	width: 120px;
	height: 120px;
	background: url(/wp-content/uploads/about_con1_icon1.png) no-repeat center;
	background-size: cover;
}
.about_con2_box2 h3:after {
	background: url(/wp-content/uploads/about_con1_icon2.png) no-repeat center;
	background-size: cover;
}
.about_con2_txtbox {
	width: 66.66%;
}
.about_con2_txtbox h4 {
	padding-bottom: 32px;
}
.about_con2_txt {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about_con3_wrap {
	display: flex;
	align-items: flex-start;
}
.history_tap {
	width: 33.33%;
}
.history_tap li a {
	display: inline-block;
	font-size: 80px;
	font-weight: 500;
	line-height: 1.4em;
	color: #E0E0E0;
	transition: .3s ease-in-out;
}
.history_tap li.history_current_year a,
.history_tap li a:hover {
	color: #000;
}
.history_content {
	width: 66.66%;
}
.history_box {
	display: none;
}
.history_box_current {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.history_month_box {
	display: flex;
	padding: 24px 32px;
	align-items: flex-start;
	align-self: stretch;
	flex-wrap: wrap;
	background: var(--bg-color);
}
.history_month {
	width: 100px;
	font-weight: 500;
}
.history_event {
	width: calc(100% - 100px);
	padding-top: 5px;
}
.history_event li, .list_style li {
	position: relative;
	padding-left: 14px;
	margin-left: 8px;
}
.history_event li:before, .list_style li:before {
	content:"";
	position: absolute;
	left: 0;
	top: 13px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #000;
}


/* contact section */
#contact_section {
	background: url(/wp-content/uploads/contact_sec_bg.jpg) no-repeat center;
	background-size: cover;
}
#contact_section .section_inner {
	padding: 140px 0;
	color: #fff;
	gap: 80px;
	align-items: center;
}
.contact_sec_txtbox {
	width: calc(100% - 80px - 280px);
}
.contact_sec_txtbox h2 {
	padding-bottom: 40px;
}
.contact_info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}
.contact_info dl {
	display: flex;
	line-height: 1.6em;
	flex-wrap: wrap;
}
.contact_info dl dt {
	width: 80px;
	color: var(--primary-color);
	font-weight: 600;
}
.contact_info dl dd {
	width: calc(100% - 80px);
	font-weight: 500;
}
.contact_sec_btn {
	width: 280px;
}
.contact_sec_btn a {
	display: flex;
	width: 280px;
	height: 280px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 1px solid #7F7F7F;
	background: rgba(0, 0, 0, 0.00);
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6em;
	transition: .3s ease-in-out;
}
.contact_sec_btn a:hover {
	background-color: var(--primary-color);
}


@media screen and (max-width: 1024px) {
	.sub_con1_inner {
		height: 320px;
	}
	.about_con2_box {
		padding: 40px 40px 48px;
	}
	.about_con2_box h3:after {
		width: 80px;
		height: 80px;
	}
	.about_con2_txtbox h4 {
		padding-bottom: 16px;
	}
	.about_con2_txtbox h4 {
		padding-bottom: 16px;
	}
	.history_tap li a {
		font-size: 56px;
	}
	.history_event {
		padding-top: 3px;
	}

	#contact_section .section_inner {
		padding: 90px 0 100px;
		gap: 56px;
	}
	.contact_sec_txtbox {
		width: 100%;
	}
	.contact_sec_btn {
		width: 100%;
	}
	.contact_sec_btn a {
        width: auto;
        height: auto;
        padding: 16px 32px;
        border-radius: 0;
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
	.sub_con1_inner {
        height: auto;
        padding: 64px 0;
    }

	.about_con2_box {
        padding: 24px 16px;
        flex-wrap: wrap;
    }
	.about_con2_box h3 {
		width: 100%;
		flex-direction: row;
		align-items: center;
		padding-bottom: 16px;
	}
	.about_con2_box h3:after {
        width: 40px;
        height: 40px;
    }
	.about_con2_txtbox {
		width: 100%;
	}
	.about_con2_txt {
		gap: 8px;
	}

	.about_con3_wrap {
		flex-wrap: wrap;
	}
	.history_tap {
		width: 100%;
		display: flex;
		gap: 16px;
		padding-bottom: 24px;
	}
	.history_tap li a {
		font-size: 28px;
		font-weight: 600;
	}
	.history_content {
		width: 100%;
	}
	.history_box_current {
		gap: 8px;
	}
	.history_month_box {
		padding: 16px;
	}
	.history_event {
		width: 100%;
		padding-top: 8px;
	}
	.history_event li:before, .list_style li:before {
		top: 10px;
	}

	#contact_section .section_inner {
		padding: 56px 0 64px;
		gap: 40px;
	}
	.contact_sec_txtbox h2 {
		padding-bottom: 24px;
	}
	.contact_info {
		gap: 4px;
	}
	.contact_sec_btn a {
		padding: 8px;
		font-size: 18px;
		width: 180px;
	}
}





 /* **************************************** *
 * 102 leadership
 * **************************************** */
.leader_con2_wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.leader_box {
	display: flex;
	align-items: stretch;
}
.leader_titlebox {
	width: 33.33%;
	position: relative;
	padding: 48px 48px 64px 48px;
	background-color: #000;
	min-height: 335px;
	color: #fff;
}
.leader_titlebox .leader_position {
	display: block;
	font-size: 20px;
	line-height: 1.4em;
	color: var(--primary-color);
	padding-bottom: 4px;
}
.leader_imgbox {
	position: absolute;
	bottom: 0;
	right: 0;
}
.leader_imgbox img {
	width: 249px;
}
.leader_txtbox {
	width: 66.66%;
	background: var(--bg-color);
	padding: 48px 40px;
}
.leader_txtbox h4 {
	padding-bottom: 16px;
	font-size: 24px;
}



@media screen and (max-width: 1024px) {
	.leader_titlebox {
		padding: 32px 24px;
		min-height: 240px;
	}
	.leader_txtbox {
		padding: 32px 24px;
	}
	.leader_imgbox img {
		width: 200px;
	}
	.leader_txtbox h4 {
		padding-bottom: 8px;
		font-size: 22px;
	}
}

@media screen and (max-width: 767px) {
	.leader_con2_wrap {
		gap: 16px;
	}
	.leader_box {
		flex-wrap: wrap;
	}
	.leader_titlebox {
		width: 100%;
		padding: 24px 16px;
	}
	.leader_txtbox {
		width: 100%;
		padding: 24px 16px;
	}
	.leader_titlebox .leader_position {
		font-size: 16px;
	}
	.leader_txtbox h4 {
		font-size: 20px;
	}
}






 /* **************************************** *
 * 103 Partners
 * **************************************** */
.title_col_txtbox {
	padding-top: 40px;
}
.title_col_txt {
	font-size: 28px;
	font-weight: 700;
}
.partner_col_content {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.partner_box {
	display: flex;
	padding: 56px 56px 64px 56px;
	background: var(--bg-color);
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}
.partner_icon {
	width: 120px;
	height: 120px;
	background: url(/wp-content/uploads/partner_icon.png) no-repeat center;
	background-size: cover;
}
.partner_txtbox {
	width: calc(100% - 120px - 40px);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.partner_logo {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
.partner_logo li {
	width: calc(25% - 30px);
	border: 1px solid #DCDCDC;
}


@media screen and (max-width: 1024px) {
	.title_col_txtbox {
		padding-top: 24px;
	}
	.title_col_txt {
		font-size: 22px;
	}
	.partner_box {
		padding: 32px 24px;
	}
	.partner_icon {
		width: 80px;
		height: 80px;
	}
	.partner_txtbox {
		width: calc(100% - 80px - 40px);
		gap: 8px;
	}
	.partner_col_content {
		gap: 40px;
	}
	.partner_logo {
		gap: 16px;
	}
	.partner_logo li {
		width: calc(25% - 12px);
	}
}

@media screen and (max-width: 767px) {
	.title_col_txtbox {
        padding-top: 16px;
    }
	.title_col_txt {
		font-size: 18px;
	}
	.partner_box {
		padding: 24px 16px;
		gap: 16px;
	}
	.partner_icon {
		width: 58px;
		height: 58px;
	}
	.partner_txtbox {
        width: calc(100% - 58px - 16px);
        gap: 4px;
    }
	.partner_col_content {
		gap: 24px;
	}
	.partner_logo {
        gap: 8px;
    }
	.partner_logo li {
        width: calc(50% - 4px);
    }
}







 /* **************************************** *
 * 201 Core Technology
 * **************************************** */
#sub_con1.sub_tech .sub_con1_inner {
	background: url(/wp-content/uploads/sub_tech_bg.jpg) no-repeat center;
	background-size: cover;
}
.title_col_txt + p {
	padding-top: 24px;
	font-weight: 500;
}
.tech1_con2_title_txtbox {
	position: relative;
}
.tech1_con2_logo {
	width: 27%;
	max-width: 418px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.tech1_box_wrap {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.tech1_box {
	display: flex;
	padding: 56px 56px 64px 56px;
	align-items: flex-start;
	flex-wrap: wrap;
	background: var(--bg-color);
}
.tech1_box_title {
	width: 33.33%;
	padding-right: 40px;
}
.tech1_box_num {
	display: block;
	font-weight: 600;
	line-height: 1.6em;
	color: var(--primary-color);
	padding-bottom: 16px;
}
.tech1_box_content {
	width: 66.66%;
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.tech1_box_list {
	display: flex;
	gap: 10px;
	align-items: stretch;
}
.tech1_box_list li {
	flex: 1;
	display: flex;
	padding: 24px;
	justify-content: center;
	align-items: center;
	border: 1px solid #7F7F7F;
	font-weight: 500;
	text-align: center;
}


@media screen and (max-width: 1024px) {
	.tech1_con2_logo {
		display: none;
	}
	.tech1_box {
		padding: 40px 40px 48px;
	}
	.tech1_box_content {
		gap: 24px;
	}
}

@media screen and (max-width: 767px) {
	.title_col_txt + p {
		padding-top: 8px;
	}
	.tech1_box {
		padding: 24px 16px;
	}
	.tech1_box_title {
		width: 100%;
		padding-right: 0;
		padding-bottom: 16px;
	}
	.tech1_box_num {
		padding-bottom: 8px;
	}
	.tech1_box_content {
		gap: 8px;
		width: 100%;
	}
	.tech1_box_list {
		padding-top: 8px;
	}
	.tech1_box_list li {
		padding: 8px;
	}
}


@media screen and (max-width: 480px) {
	.tech1_box_list {
		flex-direction: column;
		gap: 4px;
	}
}





 /* **************************************** *
 * 202 ARGUS Platform
 * **************************************** */
#tech2_con2 {
	padding: 0;
}
#tech2_con2 .tech2_con2_title_col {
	width: 100%;
	max-width: calc(1400px + 32px);
	padding-left: 16px;
	padding-right: 16px;
	margin: 0 auto;
	border: 0;
}
.tech2_con2_content_col {
	background: #000;
	padding: 64px 16px;
	color: #fff;
}
.tech2_con2_wrap {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4.2vw;
}
.tech2_con2_txtbox h3 {
	padding-bottom: 32px;
}
.tech2_con2_txt {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tech2_con3_wrap {
	display: flex;
	flex-direction: column;
	gap: 64px;
}
.tech2_con3_box {
	display: flex;
	align-items: stretch;
	background: var(--bg-color);
}
.tech2_con3_box:nth-child(even) {
	flex-direction: row-reverse;
}
.tech2_con3_imgbox {
	width: 50%;
	overflow: hidden;
}
.tech2_con3_box .tech2_con3_imgbox img {
	transition: .7s ease-in-out;
	height: 100%;
    width: auto;
    object-fit: cover;
}
.tech2_con3_box:hover .tech2_con3_imgbox img {
	transform: scale(1.05);
}
.tech2_con3_content_box {
	width: 50%;
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
}
.tech2_con3_box_title {
	display: flex;
	padding-bottom: 40px;
	flex-direction: column;
	gap: 8px;
	border-bottom: 1px solid #000;
}
.tech2_con3_num {
	display: block;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.6em;
}
.tech2_con3_txtbox h4 {
	padding-bottom: 32px;
}
.tech2_con3_txt {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tech2_con4_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
}
.tech2_con4_box {
	width: calc(50% - 20px);
	display: flex;
	padding: 40px;
	flex-direction: column;
	gap: 32px;
	background: var(--bg-color);
}
.tech2_con4_title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.tech2_con4_icon {
	width: 80px;
	height: 80px;
}
.tech2_con4_box1 .tech2_con4_icon {
	background: url(/wp-content/uploads/tech2_con4_icon1.png) no-repeat center;
	background-size: cover;
}
.tech2_con4_box2 .tech2_con4_icon {
	background: url(/wp-content/uploads/tech2_con4_icon2.png) no-repeat center;
	background-size: cover;
}
.tech2_con4_box3 .tech2_con4_icon {
	background: url(/wp-content/uploads/tech2_con4_icon3.png) no-repeat center;
	background-size: cover;
}
.tech2_con4_box4 .tech2_con4_icon {
	background: url(/wp-content/uploads/tech2_con4_icon4.png) no-repeat center;
	background-size: cover;
}


#tech2_con5 {
	background: var(--bg-color);
}
.tech2_con5_wrap {
	display: flex;
	align-items: stretch;
	gap: 40px;
	overflow: hidden;
}
.tech2_con5_box {
	width: calc(33.33% - 26.66px);
}
.tech2_con5_box1 {
	background: url(/wp-content/uploads/tech2_con5_bg1.jpg) no-repeat center;
	background-size: cover;
}
.tech2_con5_box2 {
	background: url(/wp-content/uploads/tech2_con5_bg2.jpg) no-repeat center;
	background-size: cover;
}
.tech2_con5_box3 {
	background: url(/wp-content/uploads/tech2_con5_bg3.jpg) no-repeat center;
	background-size: cover;
}
.tech2_con5_box a {
	display: block;
	width: 100%;
	height: 450px;
	position: relative;
	color: #fff;
	overflow: hidden;
}
.tech2_con5_box a .btn_s {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5;
}
.tech2_con5_box a:hover .btn_s {
	background: var(--primary-color);
}
.tech2_con5_box a:hover .btn_s .btn_s_icon {
    transform: rotate(180deg);
}
.tech2_con5_title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	padding: 40px;
	opacity: 1;
	transition: .3s ease-in-out;
}
.tech2_con5_box a:hover .tech2_con5_title {
	opacity: 0;
}
.tech2_con5_txtbox {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 32px;
	padding: 40px;
	background: #000;
	transition: .5s ease-in-out;
	position: relative;
	top: 100%;
}
.tech2_con5_box a:hover .tech2_con5_txtbox {
	top: 0;
}
.tech2_con5_title p,
.tech2_con5_txtbox h3 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4em;
}



@media screen and (max-width: 1024px) {
	.tech2_con3_wrap {
		gap: 40px;
	}
	.tech2_con3_content_box {
		padding: 40px 32px;
		gap: 24px;
	}
	.tech2_con3_box_title {
		padding-bottom: 24px;
	}
	.tech2_con3_txtbox h4 {
		padding-bottom: 16px;
	}
	.tech2_con3_txt {
		gap: 8px;
	}
	.tech2_con4_wrap {
		gap: 16px;
	}
	.tech2_con4_box {
		width: calc(50% - 8px);
		padding: 32px 24px;
		gap: 16px;
	}
	.tech2_con4_icon {
		width: 64px;
		height: 64px;
	}

	.tech2_con5_wrap {
		gap: 16px;
	}
	.tech2_con5_box {
		width: calc(33.33% - 10.66px);
	}
	.tech2_con5_title p, .tech2_con5_txtbox h3 {
		font-size: 24px;
	}
	.tech2_con5_title {
		padding: 24px;
	}
	.tech2_con5_txtbox {
		padding: 24px;
		gap: 16px;
	}
}

@media screen and (max-width: 767px) {
	.tech2_con2_content_col {
		padding: 40px 16px;
	}
	.tech2_con2_wrap {
		flex-direction: column;
		gap: 40px;
	}
	.tech2_con2_txtbox h3 {
		padding-bottom: 16px;
	}

	.tech2_con3_wrap {
		gap: 16px;
	}
	.tech2_con3_box {
		flex-wrap: wrap;
	}
	.tech2_con3_imgbox {
		width: 100%;
	}
	.tech2_con3_content_box {
		width: 100%;
		padding: 32px 16px;
	}
	.tech2_con3_box_title {
		padding-bottom: 16px;
		gap: 4px;
	}
	.tech2_con3_txtbox h4 {
        padding-bottom: 8px;
    }

	.tech2_con4_box {
		padding: 24px 16px;
		gap: 8px;
	}
	.tech2_con4_title {
		gap: 8px;
	}
	.tech2_con4_icon {
        width: 40px;
        height: 40px;
    }


	.tech2_con5_wrap {
		flex-wrap: wrap;
	}
	.tech2_con5_box {
        width: 100%;
    }
	.tech2_con5_box a {
		height: auto;
	}
	.tech2_con5_title {
		display: none;
	}
	.tech2_con5_txtbox {
		padding: 80px 16px 24px;
		top: 0;
		background: rgba(0, 0, 0, 0.4);
	}
}


@media screen and (max-width: 480px) {
	.tech2_con4_box {
		width: 100%;
	}
}






 /* **************************************** *
 * 301 ARGUS-A
 * **************************************** */
 #sub_con1.sub_sol .sub_con1_inner {
	background: url(/wp-content/uploads/sub_sol_bg.jpg) no-repeat center;
	background-size: cover;
 }
.subbanner_sol h1.subbanner_h1 {
    display: flex;
    gap: 4px 24px;
    align-items: center;
    flex-wrap: wrap;
}
span.subbanner_sol_txt {
    font-size: 40px;
    color: #7f7f7f;
    font-weight: 600;
    line-height: 1.4em;
	display: block;
}

#sol_con2 {
	padding: 0;
}
.sol_con2_title_col {
	border: 0;
	width: 100%;
	max-width: calc(1400px + 32px);
	padding-left: 16px;
	padding-right: 16px;
	margin: 0 auto;
}
.sol_con2_content_col {
	background-color: #000;
	display: flex;
	gap: 0;
	align-items: stretch;
}
.sol_con2_imgbox {
	width: 50%;
}
.sol_con2_imgbox img {
	height: 100%;
    width: auto;
    object-fit: cover;
}
.sol_con2_txtbox {
	width: 50%;
	padding-right: 4.2vw;
	padding-top: 64px;
	padding-bottom: 64px;
	color: #fff;
	display: flex;
	align-items: center;
}
.sol_con2_txtbox_wrap {
	width: 100%;
	max-width: 700px;
	padding-left: 4.2vw;
}
.sol_con2_txtbox_wrap h4 {
	padding-bottom: 40px;
}


.sol_con3_box {
	display: flex;
	align-items: stretch;
}
.sol_con3_box:nth-child(even) {
	flex-direction: row-reverse;
}
.sol_con3_imgbox {
	width: 50%;
}
.sol_con3_imgbox img {
	height: 100%;
    width: auto;
    object-fit: cover;
}
.sol_con3_txtbox {
	width: 50%;
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
	background: var(--bg-color);
}

#sol1_con4 {
	background: var(--bg-color);
}
.sol_con4_wrap {
	display: flex;
	align-items: stretch;
	gap: 40px;
}
.sol_con4_box {
	width: calc(50% - 20px);
	padding: 40px;
	background: #111;
	color: #fff;
}
.sol_con4_title {
	display: flex;
	padding-bottom: 40px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #FFF;
}
.sol_con4_list {
	padding-top: 32px;
}
.sol_con4_list li:before {
	background: #fff;
}
.sol_con4_icon {
	width: 60px;
	height: 60px;
}
.sol_con4_icon1 {
	background: url(/wp-content/uploads/sol_con4_icon1.png) no-repeat center;
	background-size: cover;
}
.sol_con4_icon2 {
	background: url(/wp-content/uploads/sol_con4_icon2.png) no-repeat center;
	background-size: cover;
}


@media screen and (max-width: 1024px) {
	span.subbanner_sol_txt {
		font-size: 28px;
	}
	.sol_con2_content_col {
		flex-wrap: wrap;
	}
	.sol_con2_imgbox {
		width: 100%;
		text-align: center;
	}
	.sol_con2_txtbox {
		width: 100%;
		padding: 64px 16px;
	}
	.sol_con2_txtbox_wrap {
		padding: 0;
		max-width: unset;
	}
	.sol_con3_txtbox {
		padding: 64px 24px 56px;
		gap: 16px;
	}
	.sol_con4_wrap {
		gap: 16px;
	}
	.sol_con4_box {
		width: calc(50% - 8px);
		padding: 24px 24px 32px;
	}
	.sol_con4_title {
		padding-bottom: 24px;
	}
	.sol_con4_icon {
		width: 40px;
		height: 40px;
	}
	.sol_con4_list {
		padding-top: 24px;
	}
}

@media screen and (max-width: 767px) {
	.subbanner_sol h1.subbanner_h1 {
		flex-direction: column;
		align-items: flex-start;
	}
	span.subbanner_sol_txt {
		font-size: 20px;
	}
	.sol_con2_txtbox {
		padding: 40px 16px 56px;
	}
	.sol_con2_txtbox_wrap h4 {
		padding-bottom: 24px;
	}
	.tech2_con2_txt {
		gap: 8px;
	}
	.sol_con3_box,
	.sol_con3_box:nth-child(even) {
		flex-direction: column;
	}
	.sol_con3_imgbox {
		width: 100%;
	}
	.sol_con3_txtbox {
		width: 100%;
		padding: 32px 16px 40px;
        gap: 12px;
	}

	.sol_con4_wrap {
		flex-direction: column;
	}
	.sol_con4_box {
        width: 100%;
        padding: 16px 16px 24px;
    }
	.sol_con4_title {
        padding-bottom: 16px;
    }
	.sol_con4_icon {
        width: 32px;
        height: 32px;
    }
	.sol_con4_list {
        padding-top: 16px;
    }
}






 /* **************************************** *
 * 401 미디어센터
 * **************************************** */
.subbanner_news .subbanner_h1 {
	font-weight: 700;
}
.subbanner_news {
	border-bottom: 1px solid #000;
}




@media screen and (max-width: 1024px) {
	
}

@media screen and (max-width: 767px) {

}







 /* **************************************** *
 * 501 contact
 * **************************************** */
#sub_con1.sub_contact .sub_con1_inner {
	background: url(/wp-content/uploads/sub_contact_bg.jpg) no-repeat center;
	background-size: cover;
}
.sub_contact_info {
	padding-top: 64px;
	display: flex;
	flex-wrap: wrap;
}
.sub_contact_info dl {
	display: flex;
	gap: 24px;
}
.sub_contact_info dl dt {
	font-weight: 600;
}
.sub_contact_info dl dd {
	font-weight: 500;
}
.sub_contact_info dl:last-child {
	margin-left: 24px;
	padding-left: 30px;
	position: relative;
}
.sub_contact_info dl:last-child:before {
	content:"";
	position: absolute;
	left: 0;
	top: 13px;
	width: 6px;
	height: 6px;
	background-color: #fff;
	border-radius: 50%;
}


#contact_con2 .section_inner {
    padding-top: 160px;
}
/* 컨텍폼 */
.contact_notice {
	padding-bottom: 24px;
	text-align: right;
	font-weight: 500;
}
.contact_notice strong {
	color: var(--primary-color);
}
.contact_item_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 40px 0;
	align-items: stretch;
}
.contact_item_box {
    width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact_label {
	display: block;
	padding-bottom: 16px;
	font-weight: 700;
	line-height: 1.6em;
}
.contact_label .contact_req {
	color: var(--primary-color);
}
.contact_input {
	position: relative;
}

/* input */
input[type=text], 
input[type=email],
input[type=password] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: 0;
    display: block;
    height: 64px;
    width: 100%;
    font-size: 20px;
    padding: 16px 24px;
	border: 1px solid var(--bg-color);
	background: var(--bg-color);
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	color: #000;
	transition: .3s ease-in-out;
}


textarea {
    display: block;
    height: 368px;
    width: 100%;
    font-size: 20px;
    padding: 16px 24px;
	border: 1px solid var(--bg-color);
	background: var(--bg-color);
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	color: #000;
	transition: .3s ease-in-out;
}

input[type=text]:focus, 
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	border-color: #000;
}


/* 개인정보 + 버튼  */
.agree_wrap {
    display: flex;
	justify-content: space-between;
	align-items: center;
    gap: 40px;
    padding-top: 40px;
}

/* checkbox */
.agree_check span.wpcf7-list-item {
    margin: 0;}
.agree_check .wpcf7-form-control-wrap {
    margin-right: 16px;
}
.agree_check .wpcf7-list-item label {
    display: inline-block;
    position: relative;}
.agree_check input[type=checkbox]:checked,
.agree_check input[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -99999999px;}
.agree_check 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_check .contact_item.contact_item_check input[type=checkbox] + span.wpcf7-list-item-label {
    color: transparent !important;}
.agree_check input[type=checkbox] + span.wpcf7-list-item-label::before {
	content:"";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: transparent url(/wp-content/uploads/check.png) no-repeat center;
	background-size: cover;
    border:  1px solid #A0A0A0;
	overflow: hidden;
    z-index: 10;}
.agree_check input[type=checkbox] + span.wpcf7-list-item-label::after {
	content:"";
    position: absolute;
	left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
	background: transparent url(/wp-content/uploads/check_checked.png) no-repeat center;
	background-size: cover;
	border:  1px solid var(--primary-color);
	overflow: hidden;
    z-index: 10;
    opacity: 0;}
/* .agree_check input[type="checkbox"]:checked + span.wpcf7-list-item-label::before {
    border-color: var(--primary-color);
	background: var(--primary-color);
} */
.agree_check input[type="radio"]:checked + span.wpcf7-list-item-label:before {
    opacity: 0;
}
.agree_check input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
    opacity: 1;
}

.agree_check a.prviacy_btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.6em;
    border-bottom: 1px solid #000;
	transition: .3s ease-in-out;
}
.agree_check a.prviacy_btn:hover {
	color:var(--primary-color);
	border-color: var(--primary-color);
}


.contact_submit .wpcf7-submit.btn {
	appearance: none;
	outline: 0;
	background: transparent;
	cursor: pointer;
	border: 1px solid #000;
	display: flex;
	width: 250px;
	padding: 16px 32px;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: #000;
	transition: .3s ease-in-out;
}
.contact_submit .wpcf7-submit.btn:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: #fff;
}
.contact_submit .wpcf7-submit.btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.contact_btn_icon {
	display: block;
	width: 26px;
	height: 26px;
	background: url(/wp-content/uploads/contact_btn_icon.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}
.contact_submit .wpcf7-submit.btn:hover .contact_btn_icon {
	background: url(/wp-content/uploads/contact_btn_icon_h.png) no-repeat center;
	background-size: cover;
}

.wpcf7-not-valid-tip {
    font-size: 16px;
    color: var(--primary-color);
	position: absolute;
}
.wpcf7 form .wpcf7-response-output {
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--primary-color);
}



@media screen and (max-width: 1024px) {
	.sub_contact_info {
		padding-top: 32px;
	}
	#contact_con2 .section_inner {
		padding-top: 100px;
	}
	.contact_item_wrap {
		gap: 40px;
	}
	.contact_item_box {
		width: calc(50% - 20px);
	}
	.contact_submit .wpcf7-submit.btn {
		width: 200px;
		padding: 12px 24px;
	}
}

@media screen and (max-width: 767px) {
	.sub_contact_info {
		padding-top: 24px;
	}
	.sub_contact_info dl {
		width: 100%;
		gap: 0;
	}
	.sub_contact_info dl:last-child {
		margin-left: 0;
		padding-left: 0;
	}
	.sub_contact_info dl:last-child:before {
		display: none;
	}
	.sub_contact_info dl dt {
		width: 60px;
	}
	.sub_contact_info dl dd {
		width: calc(100% - 60px);
	}

	#contact_con2 .section_inner {
		padding-top: 60px;
	}
	.contact_item_wrap {
        gap: 24px;
		padding: 16px 0;
    }
	.contact_item_box {
		width: 100%;
		gap: 24px;
	}
	.wpcf7-not-valid-tip {
		position: relative;
	}
	.contact_notice {
		padding-bottom: 8px;
	}
	.contact_label {
		padding-bottom: 8px;
	}
	input[type=text], input[type=email], input[type=password] {
		padding: 8px 16px;
		font-size: 18px;
		height: 56px;
	}
	textarea {
		padding: 8px 16px;
		font-size: 18px;
		height: 250px;
	}
	.agree_wrap {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 24px;
	}
	.agree_check .wpcf7-form-control-wrap {
		display: block;
		padding-bottom: 8px;
	}
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label::before,
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label::after {
		width: 17px;
		height: 17px;
	}
	.agree_check input[type=checkbox] + span.wpcf7-list-item-label {
		padding-left: 30px;
	}
	.contact_submit .wpcf7-submit.btn {
        width: 160px;
        padding: 12px 16px;
        font-size: 18px;
    }
	.contact_btn_icon {
		width: 22px;
		height: 22px;
		position: relative;
		top: -2px;
	}
}





 /* **************************************** *
 * login, etc
 * **************************************** */
.banner_404 {
    text-align: center;
}
.banner_404 h1.subbanenr_h1 {
    padding-bottom: 40px;
}
.banner_404 .subbanner_txtbox {
	align-items: center;
}

.tml .tml-submit-wrap input {
    display: inline-block;
    appearance: none;
    outline: 0;
    padding: 14px 24px;
    background: #000;
    border: 0;
    color: #fff;
    box-sizing: border-box;
    line-height: 1em;
    font-size: 18px;
    font-weight: 500;
    width: auto;
    text-align: center;
    transition: .3s ease-in-out;
    text-decoration: none;
    font-family: 'Poppins', 'Pretendard';
}
.tml .tml-submit-wrap input:hover {
	background: var(--primary-color);
}


.agree_privacy {
    padding: 24px;
    font-size: 16px;
    line-height: 1.6em;
}
.agree_privacy strong {
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    padding: 24px 0 8px;
}
.agree_privacy strong:first-child {
    padding-top: 0;
}






@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
	.agree_privacy  {
		padding: 16px;
		font-size: 14px;
	}
	.agree_privacy strong {
		font-size: 16px;
		padding: 16px 0 4px;
	}
}