@charset "utf-8";

/*

TEO 홈페이지 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
- 'Play', 'Pretendard', sans-serif;


*/






/* **************************************** *
 * root
 * **************************************** */
:root {
    /* color */
    --primary-color: #2658A7;
	--primary-color2: #3A90FF;
	--line-color: #DCDCDC;
    --bg-color: #EAF2FF;
	--bg-color2: #f5f5f5;
    --font-color: #000;
    

    /* layout */
    --content-width: 1300px;
	--content-width-lg: 1740px;
    --content-padding: 0 16px; /* 컨텐츠 너비 아래로 줄였을때르 위한 padding */
	--content-gap: 0 40px;
	--content-gap-halb: 20px;

	/* font */
	--font-title: 'Play', '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;
	word-break: keep-all; 
	font-family: 'Play', '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: 'Play', '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;
	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: 220px;
}
.section_padding-top {
	padding-top: 160px;
	padding-bottom: 0;
}
.section_padding-bottom {
	padding-top: 0;
	padding-bottom: 220px;
}
.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: 64px;
}



@media screen and (max-width: 1024px) {
	.section_inner {
		padding-top: 100px;
		padding-bottom: 140px;
	}
	.section_padding-top {
		padding-top: 100px;
		padding-bottom: 0;
	}
	.section_padding-bottom {
		padding-bottom: 140px;
		padding-top: 0;
	}

	.inno_column-3, .inno_column-9 {
		width: 100%;
	}

	.title_column, .title_column-s {
		padding-bottom: 48px;
	}
}

@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: 100px;
		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: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4em;
}
h2 {
	font-size: 48px;
	font-style: normal;
	line-height: 1.4em;
	font-weight: 700;
}
h2 strong {
	color: var(--primary-color);
	font-weight: 700;
}
h3 {
	font-size: 36px;
	line-height: 1.4em;
	font-style: normal;
	font-weight: 700;
}
h4 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4em;
}
p {
	line-height: var(--text-line-height);
}
strong {
	font-weight: 700;
}



@media screen and (max-width: 1024px) {
	h1 {
		font-size: 48px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 22px;
	}
}


@media screen and (max-width: 767px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 18px;
	}
}





/* **************************************** *
 * button default
 * **************************************** */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	transition: .3s ease-in-out;
	position: relative;
	padding: 10px 20px 10px 24px;
	color: #000;
	border: 1px solid #000;
}
.btn:after {
	content:"";
	width: 26px;
	height: 26px;
	background: url(/wp-content/uploads/btn_arrow.png) no-repeat center;
	background-size: cover;
	transition: .3s ease-in-out;
}
.btn_txt {
	font-weight: 600;
	line-height: 1.4em;
}
.btn_w {
	color: #fff;
	border-color: #fff;
}
.btn_w:after {
	background: url(/wp-content/uploads/btn_arrow_w.png) no-repeat center;
	background-size: cover;
}
.btn:hover {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}
.btn:hover:after {
	background: url(/wp-content/uploads/btn_arrow_w.png) no-repeat center;
	background-size: cover;
}

.btn_lg {
	display: inline-flex;
	width: 250px;
	justify-content: space-between;
	padding: 16px 32px;
}


.btn_s {
	display: block;
	width: 50px;
	height: 50px;
	background: url(/wp-content/uploads/btn_arrow_w.png) no-repeat center;
	background-size: 30px 30px;
	border: 1px solid #fff;
}
.btn_s:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}



@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
	.btn {
		gap: 8px;
		padding: 8px 16px;
	}
	.btn:after {
		width: 18px;
		height: 18px;
	}
	.btn_lg {
		width: 180px;
		padding: 12px 24px;
	}

}



/* **************************************** *
 * HEADER
 * **************************************** */
.inno_header {
	width: 100%;
	position: fixed;
	z-index: 99998;
    /* transition: .3s ease-in-out; */
	padding: var(--content-padding);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	top: 0;
	left: 0;
}
.header_inner {
	height: 100px;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
    transition: .3s ease-in-out;
}
.header_content_width {
	width: 100%;
	max-width: 1760px;
}
.header-sticky,
#inno_header.inno_nav_open {
	border-bottom: 0;
}


.header_sticky_logo,.header_default_logo {
	display: block;
	width: auto;
	height: 30px;
}
.inno_header .header_sticky_logo {
	display: none;
}
.inno_header.header-sticky .header_sticky_logo {
	display: block;
}
.inno_header.header-sticky .header_default_logo {
	display: none;
}


#inno_header.inno_nav_open .header_sticky_logo {
	display: none;
}
#inno_header.inno_nav_open .header_default_logo {
	display: block;
}




/* menu btn */
.menu_btn {
	display: block;
	width: 26px;
	height: 26px;
	background: url(/wp-content/uploads/menu_btn.png) no-repeat center;
	background-size: cover;
}
.inno_header.header-sticky .menu_btn {
	background: url(/wp-content/uploads/menu_btn_d.png) no-repeat center;
	background-size: cover;
}

#inno_header.inno_nav_open .menu_btn {
	background: url(/wp-content/uploads/menu_btn.png) no-repeat center;
	background-size: cover;
}


/* menu */
.inno_nav_wrap {
	display: none;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.60);
	backdrop-filter: blur(12.5px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.inno_nav_wrap.inno_nav_open {
	display: flex;
}
#inno_main_nav, #inno_main_nav .main-menu {
	height: 100%;
    display: flex;
	width: 100%;
}
#inno_main_nav .main-menu > .menu-item {
	display: flex;
	width: 25%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .3s ease-in-out;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}
#inno_main_nav .main-menu > .menu-item:last-child {
	border-right: 0;
}
#inno_main_nav .main-menu > .menu-item > a {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s ease-in-out;
	font-weight: 700;
	color: #fff;
	font-size: 42px;
	padding-bottom: 24px;
	line-height: 1.4em;
	height: 100%;
	width: 100%;
}
#inno_main_nav .main-menu > .menu-item.menu-item-has-children > a {
	height: auto;
}

#inno_main_nav .main-menu > .menu-item:hover {
	background: rgba(38, 88, 167, 0.80);
}
#inno_main_nav .main-menu > .menu-item.current-menu-item,
#inno_main_nav .main-menu > .menu-item.current_page_item,
#inno_main_nav .main-menu > .menu-item.current-menu-ancestor,
#inno_main_nav .main-menu > .menu-item.current-menu-parent,
#inno_main_nav .main-menu > .menu-item.current_page_parent,
#inno_main_nav .main-menu > .menu-item.current_page-parent {
	background: rgba(38, 88, 167, 0.80);
}



/* submenu */
#inno_main_nav .main-menu > .menu-item > .sub-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

#inno_main_nav .main-menu .sub-menu .menu-item a {
    display: block;
    color: #fff;
    font-size: 22px;
	font-weight: 400;
	line-height: 1.6em;
	padding: 0 8px;
	opacity: 0.6;
	transition: .3s ease-in-out;
}
#inno_main_nav .main-menu .sub-menu .menu-item a:hover,
#inno_main_nav .main-menu .sub-menu .menu-item.current-menu-item > a {
	opacity: 1;
}






/* mobile header */
@media screen and (max-width: 1024px) {
	.header_inner {
		height: 64px;
	}
	.header_sticky_logo, .header_default_logo {
		height: 24px;
	}
	.menu_btn {
		width: 18px;
		height: 18px;
	}

	#inno_main_nav .main-menu {
		flex-direction: column;
		padding-top: 64px;
	}
	#inno_main_nav .main-menu > .menu-item {
		width: 100%;
		height: auto;
		padding: 32px 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	#inno_main_nav .main-menu > .menu-item:last-child {
		border-bottom: 0;
	}
	#inno_main_nav .main-menu > .menu-item > .sub-menu {
		width: 100%;
		gap: 8px;
	}
	#inno_main_nav .main-menu .sub-menu .menu-item a {
		font-size: 16px;
	}
	
	#inno_main_nav .main-menu > .menu-item.menu-item-has-children > a {
		padding-bottom: 16px;
	}
	#inno_main_nav .main-menu > .menu-item > a {
		padding-bottom: 0;
		font-size: 24px;
	}



	
}


@media screen and (max-width: 480px) {
	#inno_main_nav .main-menu > .menu-item {
		padding: 16px;
	}
	#inno_main_nav .main-menu > .menu-item > a {
		font-size: 20px;
	}
	#inno_main_nav .main-menu > .menu-item.menu-item-has-children > a {
        padding-bottom: 12px;
    }
}




/* **************************************** *
 * Footer
 * **************************************** */
 .inno_footer {
    background: #111;
	position: relative;
	padding: var(--content-padding);
	color: #fff;
}
.footer_inner {
    position: relative;
	width: 100%;
	max-width: 1740px;
}
.footer_content {
	padding: 56px 0px 72px 0px;
	width: 100%;
	font-size: 16px;
	color: #fff;
}
.footer_upper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding-bottom: 24px;
}
.footer_logo {
	order: 2;
    width: 25%;
	display: flex;
	justify-content: flex-end;
}
.footer_logo img {
	width: auto;
	height: 30px;
}
.footer_txtbox {
	width: calc(75% - 40px);
}
.footer_txtbox h6 {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 8px;
}
.footer_info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer_info_block {
	display: flex;
	gap: 8px 56px;
}
.footer_info_block dl {
	display: flex;
	gap: 8px 16px;
	line-height: 1.6em;
}
.footer_info_block dl dt {
	font-weight: 700;
}
.footer_info_block dl dd {
	color: #fff;
}

.footer_copy {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding-top: 24px;
	font-weight: 600;
}


/* floating menu */
.floating_menu_wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999;
}


/* to top */
.floating_menu_top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #111;
	transition: .3s ease-in-out;
	opacity: 0;
	background: #111 url(/wp-content/uploads/arrow_top.png) no-repeat center;
	background-size: 32px 32px;
	position: relative;
	bottom: -60px;
}
.floating_menu_top_show {
	opacity: 1;
	bottom: 0;
}
.floating_menu_top:hover {
	background-color: var(--primary-color);
}



@media screen and (max-width: 1024px) {
	/* footer */
	.footer_content {
		padding: 40px 0 64px;
	}
	.footer_upper {
		flex-direction: column;
		gap: 24px;
	}
	.footer_logo {
		order: 0;
		max-width: unset;
		width: 100%;
		justify-content: flex-start;
	}
	.footer_logo img {
		height: 24px;
	}
	.footer_txtbox {
		width: 100%;
	}
	.footer_txtbox h6 {
		display: none;
	}


	/* floating menu */
	.floating_menu_top {
		width: 50px;
		height: 50px;
	}
	.floating_menu_top:before {
		width: 20px;
		height: 20px;
	}
	.floating_menu_family a.family_btn,
	.floating_menu_products {
		width: 50px;
		height: 50px;
	}
	.floating_menu_family a.family_btn:before,
	.floating_menu_products:before {
		width: 18px;
		height: 18px;
	}
	.floating_products_txt {
		font-size: 12px;
	}
	
	.family_wrap {
		bottom: calc(100% + 16px);
		width: 160px;
	}
}

@media screen and (max-width: 767px) {
	/* footer */
	.footer_content {
		padding: 40px 0 56px;
		font-size: 14px;
	}
	.footer_logo img {
        height: 20px;
    }
	.footer_info {
		gap: 4px;
	}
	.footer_info_block {
		flex-direction: column;
		gap: 4px;
	}
	.footer_info_block dl {
		padding-right: 0;
	}
	.footer_info_block dl:after {
		display: none;
	}
	.footer_copy {
		padding-top: 24px;
	}


	
}


@media screen and (max-width: 480px) {
	.footer_info_block dl {
		flex-direction: column;
		gap: 2px;
	}
}



.portfolio_footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 33.33%;
	padding: 0 60px 30px;
	background-color: transparent;
}
.footer_copy {
	border: 0;
}
.portfolio_wrap {
	background: #000;
	color: #fff;
	width: 100%;
	display: flex;
	height: 100vh;
	overflow: hidden;
}
.portfolio_side {
	width: 33.33%;
	padding-top: 101px;
	display: flex;
}
.portfolio_side a {
	color: #fff;
}
.portfolio_menu_wrap {
	width: 50%;
	padding-left: 60px;
}
.portfolio_list_warp {
	width: 50%;
}
.portfolio_list_item {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.portfolio_list_item a {
	display: flex;
	align-items: center;
	gap: 16px;
}
.portfolio_list_item a .portfolio_thumb {
	width: 100px;
	border-radius: 8px;
	overflow: hidden;
}
.portfolio_list_item a h4 {
	width: calc(100% - 100px - 16px);
	opacity: 0.4;
	font-size: 16px;
	font-weight: 600;
}
.portfolio_list_item a.active h4 {
	opacity: 1;
}
#portfolio_content {
	width: 66.66%;
	overflow-y: auto;
	padding: 40px 24px 200px;
}



/* 전체 요소에 적용 */
::-webkit-scrollbar {
  width: 8px;  /* 세로 스크롤바 너비 */
  height: 8px; /* 가로 스크롤바 높이 */
}

/* 스크롤바 트랙 (배경) */
::-webkit-scrollbar-track {
  background: transparent;
}

/* 스크롤바 핸들 (움직이는 부분) */
::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.3);
  border-radius: 4px;
  transition: background-color 0.3s;
}

/* 스크롤바 핸들 hover 시 색상 변경 */
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(100, 100, 100, 0.5);
}

/* Firefox 전용 (선택적) */
* {
  scrollbar-width: thin;             /* 얇은 스크롤바 */
  scrollbar-color: #999 transparent; /* 핸들 색상 / 트랙 배경 */
}
