@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.block {
	display: block;
}

.img100 {
	width: 100%;
}

.center {
	text-align: var(--text-ag-center);
}

.pro_tit {
	margin: var(--rem-60) 0;
}

.pro_tit img {
	width: var(--rem-40);
}

.pro_tit h4 {
	margin-top: 15px;
	font-size: var(--rem-30);
	font-weight: var(--font-sb);
}

.pro_tit p {
	margin-top: 10px;
	line-height: 1.5;
}

/* 버튼 */
.btn_box {
	margin-top: var(--rem-60);
}

.btn_box a {
	position: relative;
	font-weight: var(--font-md);
	font-size: var(--rem-22);
	line-height: var(--rem-60);
	display: block;
	margin: 0 auto;
	padding-left: var(--rem-20);
	padding-right: var(--rem-60);
	width: max-content;
	min-width: 20rem;
	border-radius: 32px;
	border: solid 1px #000000;
}

.btn_box a::before {
	content: "\e907";
	position: absolute;
	top: 0;
	right: var(--rem-20);
	font-family: 'xeicon';
}


/* 애니메이션 */
.cont_inner {
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all .6s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.cont_inner.active {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0)
}

/* 모바일CSS */
@media screen and (max-width:1100px) {

	.pro_tit {
		margin-top: 5.5rem;
		margin-bottom: 5rem;
	}

	.pro_tit p {
		margin-top: 16px;
		font-size: 2rem;
	}
}

@media screen and (max-width:800px) {

	.pro_tit h4 {
		margin-top: 15px;
		font-size: var(--rem-36);
	}

	.pro_tit p {
		margin-top: 8px;
		font-size: var(--rem-17);
	}

	.txt h5 {
		font-size: 1.8rem;
	}

	.txt p {
		margin-top: 12px;
		font-size: 1.6rem;
	}

	.block {
		display: inline;
	}

	.xp_hide {
		display: none;
	}


	/* 버튼 */
	.btn_box {
		margin-top: var(--rem-55);
	}

	.btn_box a {
		font-size: var(--rem-20);
		line-height: var(--rem-55);
		padding-left: var(--rem-20);
		padding-right: var(--rem-55);
		min-width: 20rem;
	}
}


/* ==================================================
	테이블
================================================== */
.chart01 table {
	width: 100%;
	border-bottom: 1px solid var(--color-gray2);
	text-align: center;
}

.chart01 th {
	color: var(--color-black);
}

.chart01 thead th {
	font-size: var(--rem-18);
	font-weight: var(--font-sb);
	color: var(--color-white);
	background: var(--brand-color-main);
}

.chart01 tbody td {
	font-size: var(--rem-16);
	font-weight: var(--font-rg);
	word-break: break-all;
}

.chart01 tr th,
.chart01 tr td {
	line-height: 1.35;
	text-align: var(--text-ag-center);
	padding: 1.2rem 0.4rem;
	border-bottom: solid 1px var(--color-gray2);
	vertical-align: middle;
	border-right: solid 1px var(--color-gray2);
}

.chart01 tr th:last-child,
.chart01 tr td:last-child {
	border-right: 0;
}


/* 테이블 사이즈 */
.col_width08 {
	width: 8%;
}

.col_width10 {
	width: 10%;
}

.col_width12 {
	width: 12%;
}

.col_width20 {
	width: 20%;
}

.col_width30 {
	width: 30%;
}

.col_width40 {
	width: 40%;
}

/* 모바일CSS */
@media screen and (max-width: 1100px) {

	.chart01 thead th {
		font-size: var(--rem-17);
	}

	.chart01 tbody td {
		font-size: var(--rem-16);
	}
}

@media screen and (max-width: 800px) {

	.chart01 tr th,
	.chart01 tr td {
		padding: 1.0rem 0.8rem;
	}
}


/* ==================================================
	영상
================================================== */
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%;
	/*   padding-top: 35px;*/
	height: 0;
	border-radius: var(--rem-10);
	overflow: hidden;
}

.youtubeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.youtubeWrap .btn_prev,
.youtubeWrap .btn_next {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	z-index: 100;
	background: rgba(0, 0, 0, 0.6);
	color: #fff
}

.youtubeWrap .btn_prev {
	left: 0
}

.youtubeWrap .btn_next {
	right: 0
}

.youtubeWrap .btn_prev>img {
	float: left
}

.youtubeWrap .btn_next>img {
	float: right
}

.youtubeWrap .btn_prev>span,
.youtubeWrap .btn_next>span {
	display: inline-block;
	float: left;
	height: 90px;
	padding: 0 15px;
	margin: 20px 0;
	max-height: 50px;
	max-width: 180px;
	font-size: 16px;
	display: block;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	display: none;
}

.youtubeWrap .btn_prev:hover>span,
.youtubeWrap .btn_prev:focus>span,
.youtubeWrap .btn_next:hover>span,
.youtubeWrap .btn_next:focus>span {
	display: inline-block
}

/* ==================================================
	grid
================================================== */
.col_grd {
	width: 100%;
	display: -ms-grid;
	display: grid;
	gap: 3rem 4rem;
}

.col_grd2 {
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
}

.col_grd3 {
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
}

/* 모바일CSS */
@media screen and (max-width:800px) {

	.col_grd2,
	.col_grd3 {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}
}


/* ==================================================
	반응형 테이블 스크롤
================================================== */
.msg_touch_help {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.con_table_wrap {
		overflow-x: auto;
	}

	.con_table_wrap {
		position: relative;
		padding-left: 0 !important;
	}

	.table_scroll {
		width: 190% !important;
		max-width: 1400px;
	}

	.msg_touch_help {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -40px;
		margin-top: -40px;
		display: block;
	}

	.msg_touch_help img {
		width: 10rem;
		height: 10rem;
	}
}

/* ==================================================
	이미지 움직이는 효과
================================================== */
.over-cover {
	overflow: hidden;
	position: relative;
	display: inline-block;
	border: 1px solid #dbdbdb;
	line-height: 0;
}

.over-cover img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.over-cover:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

.over-cover2 {
	/* overflow: hidden; */
	position: relative;
	display: inline-block;
	/* border: 1px solid #dbdbdb; */
	/* line-height: 0; */
}

.over-cover2 img {
	width: 100%;
	/* height: 100%; */
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.over-cover2:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

/* 통이미지로*/
.cont_item img {
	width: 100%;
}


/* ==================================================
	회사소개 - 회사개요
================================================== */
.ov_top {
	position: relative;
	width: 100%;
	padding: 7rem 0 10rem;
	margin: 0 auto;
	display: inline-block;
}

.ov_top:before {
	position: absolute;
	top: 0;
	left: -40%;
	content: "";
	width: 180%;
	height: 100%;
	background: url('../images/about/ov_top_bg.jpg') center no-repeat;
	background-size: cover;
	z-index: -1;
}

.ov_top h4 {
	text-align: center;
	color: #030D56;
	font-size: var(--rem-36);
}

.ov_top h4 span {
	display: block;
	color: #030D56;
	font-size: var(--rem-28);
	line-height: 150%;
}

.ov_top div {
	font-weight: var(--font-md);
	font-size: var(--rem-20);
	color: #212529;
	line-height: 150%;
	padding-top: var(--rem-30);
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: var(--rem-60);
}

.ov_top div span {
	padding-top: var(--rem-13);
}


.ov_mid {
	padding: 8rem 0 12rem;
	text-align: center;
	position: relative;
}

.ov_mid:before {
	content: "";
	margin-top: 0;
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-50%);
	z-index: 1;
	background: url('../images/about/ov_mid_bg.png') center bottom no-repeat;
	background-size: 100%;
	z-index: -1;
}

.ov_mid div {
	text-align: center;
	padding-bottom: var(--rem-40);
}

.ov_mid h5 {
	font-size: var(--rem-30);
	color: #030D56;
}

.ov_mid img {
	position: absolute;
	bottom: 0;
	left: -20%;
	width: 140%;
}

.ov_mid .txt {
	display: block;
	font-size: var(--rem-24);
	color: #212529;
}

.ov_mid .point {
	font-weight: var(--font-bd);
	font-size: var(--rem-20);
	color: #637DBE;
	padding-bottom: var(--rem-20);
}


.ov_btm {
	position: relative;
	width: 100%;
	padding: 8rem 0 9rem;
	margin: var(--rem-50) 0 0;
	display: inline-block;
}

.ov_btm:before {
	position: absolute;
	top: 0;
	left: -40%;
	content: "";
	width: 180%;
	height: 100%;
	background: url('../images/about/ov_btm_bg.jpg') center no-repeat #000;
	backdrop-filter: blur(10px);
	background-size: cover;
	z-index: -1;
}

.ov_info {
	display: grid;
	display: -ms-grid;
	-ms-grid-columns: (1fr) [4];
	grid-template-columns: repeat(4, 1fr);
	gap: var(--rem-24);
}

.ov_info li {
	position: relative;
	min-height: 28rem;
	color: var(--color-white);
	padding: var(--rem-30);
	border-radius: var(--rem-13);
	background-color: rgba(0, 0, 0, 0.4);
}

.ov_info li h5 {
	font-size: var(--rem-30);
}

.ov_info li p {
	padding-top: 10px;
	font-size: var(--rem-20);
	font-weight: var(--font-sb);
}

.ov_info li img {
	position: absolute;
	bottom: var(--rem-30);
	right: var(--rem-30);
	width: 8rem;
}


.ov_sale {
	margin-top: 8rem;
	display: flex;
	gap: 6.5rem;
	padding: var(--rem-50);
	background: url('../images/about/ov_sale_bg.jpg') center no-repeat;
}

.ov_sale>div {
	flex-basis: 50%;
}

.ov_sale div.img {
	background: url('../images/about/ov_sale.jpg') center no-repeat;
	background-size: cover;
}

.ov_sale div.con {
	color: var(--color-white);
}

.ov_sale p {
	line-height: 160%;
	font-weight: var(--font-md);
	font-size: var(--rem-26);
}

.ov_sale img {
	margin: 1.8rem 0;
	max-width: 38rem;
	width: 100%;
}

.ov_sale li {
	padding: 1.5rem 0;
	border-bottom: dashed 1px #fff;
}

/* 애니메이션 */
.ov_top h4 {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
}

.active .ov_top h4 {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	transition: all 0.5s 0.5s;
	-webkit-transition: all 0.5s 0.5s;
}


.ov_mid div {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
}

.active .ov_mid div {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.active .ov_mid div:nth-child(1) {
	transition: all 0.5s 0.7s;
	-webkit-transition: all 0.5s 0.7s;
}

.active .ov_mid div:nth-child(2) {
	transition: all 0.7s 0.7s;
	-webkit-transition: all 0.7s 0.7s;
}


.ov_info li {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
}

.active .ov_info li {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.active .ov_info li:nth-child(1) {
	transition: all 0.3s 1.0s;
}

.active .ov_info li:nth-child(2) {
	transition: all 0.5s 1.0s;
}

.active .ov_info li:nth-child(3) {
	transition: all 1.7s 1.0s;
}

.active .ov_info li:nth-child(4) {
	transition: all 1.9s 1.0s;
}

/* 모바일CSS */
@media screen and (max-width:1600px) {

	.ov_mid {
		padding: 8rem 0 10rem;
	}

	.ov_mid img {
		left: -10%;
		width: 120%;
	}
}

@media screen and (max-width:1400px) {

	.ov_mid {
		padding: 8rem 0;
	}

	.ov_mid img {
		left: 0%;
		width: 100%;
	}
}

@media screen and (max-width:800px) {

	.ov_top {
		padding: 6rem 0;
	}

	.ov_top div {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
		gap: var(--rem-13);
	}


	.ov_mid {
		padding: 6rem 0;
	}

	.ov_mid:before {
		display: none
	}


	.ov_btm {
		padding: 6rem 0;
		margin: 0;
	}

	.ov_info {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: var(--rem-20);
	}

	.ov_info li {
		min-height: 21rem;
	}

	.ov_info li:nth-child(3),
	.ov_info li:nth-child(4) {
		min-height: 24rem;
	}

	.ov_info li img {
		width: 6rem;
	}


	.ov_sale {
		margin-top: 6rem;
		display: block;
	}

	.ov_sale div.img {
		display: none;
		margin-bottom: var(--rem-40);
	}
}


/* ==================================================
	회사소개 - 연혁
================================================== */
.history {
	position: relative;
	display: flex;
}

.history:before {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 3.6rem);
	background: #D4D9E6;
	top: 15px;
	position: absolute;
	left: 50%;
	z-index: -1;
}

.history:after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 3.6rem);
	background: #D4D9E6;
	top: 15px;
	position: absolute;
	z-index: -1;
	left: 50%
}

.history .h_left {
	padding-right: 12rem;
}

.history .h_left h4 {
	font-size: 4.2rem;
	line-height: 130%;
}

.history .h_left .his_bg {
	position: relative;
	margin-top: var(--rem-50);
	padding-top: 100%;
	background: url('../images/about/his_bg.jpg') center no-repeat;
}

.history .h_left .his_bg::after {
	position: absolute;
	content: '';
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: 60%;
	background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 80%);
}


.history>div {
	position: relative;
	width: 50%
}

.history .con>li .year strong {
	display: block;
	font-size: 3.2rem;
	font-weight: var(--font-sb);
	margin-bottom: 2rem;
}

.history .con>li .month ul li {
	line-height: 3.8rem;
	position: relative;
	padding-left: var(--rem-40);
}

.history .con>li .month ul li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: var(--color-blue2);
	border-radius: 50%;
	left: calc(-8rem + -1.5px);
	position: absolute;
	top: calc(50% - 2.5px);
	z-index: 1;
}

.history .con>li .month ul li span.mont {
	position: absolute;
	left: 0;
	font-weight: 600
}

.history .con>li .h_wrap>ul>li {
	margin-bottom: 6rem;
	position: relative;
	padding-left: 8rem;
}

.history .con>li .h_wrap>ul>li:last-child {
	margin-bottom: 0;
}

.history .con>li .h_wrap>ul>li:before {
	content: '';
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background: var(--color-blue2);
	border-radius: 50%;
	left: -0.6rem;
	position: absolute;
	top: 1.4rem;
	z-index: 1;
}

.history .con>li .h_wrap>ul>li:after {
	content: '';
	display: block;
	width: 4rem;
	height: 4rem;
	background: #E2E5EE;
	border-radius: 50%;
	left: -2rem;
	position: absolute;
	top: 0;
}

/* 애니메이션 */
.history .h_left {
	transform: translateX(-60px);
	opacity: 0;
	transition: transform 1.2s, opacity 1.2s
}

.active .history .h_left {
	transform: translateX(0);
	opacity: 1
}

.history .h_right {
	transform: translateX(60px);
	opacity: 0;
	transition: transform 1.2s, opacity 1.2s;
	transition-delay: 0.3s
}

.active .history .h_right {
	transform: translateX(0);
	opacity: 1
}

.history_con>ul>li:nth-child(2) .history .h_left {
	transform: translateX(0);
	opacity: 1
}

.history_con>ul>li:nth-child(2) .history .h_right {
	transform: translateX(0);
	opacity: 1
}

/* 모바일CSS */
@media screen and (max-width:1400px) {

	.history>div.h_left {
		padding-right: 10rem;
	}
}

@media screen and (max-width:1100px) {

	.history .con>li .year strong {
		font-size: var(--rem-28);
	}

	.history .con>li .month ul li {
		line-height: 1.8
	}

	.history .h_left ul li strong {
		margin-bottom: 15px;
	}

	.history .con>li .h_wrap>ul>li:before {
		width: 1rem;
		height: 1rem;
		left: -0.5rem;
		top: 1.25rem;
	}

	.history .con>li .h_wrap>ul>li:after {
		width: 3.6rem;
		height: 3.6rem;
		left: -1.8rem;
	}
}

@media screen and (max-width:800px) {

	.history {
		display: block;
	}

	.history>div.h_left {
		width: 100%;
		padding: 5rem 3rem;
		color: var(--color-white);
		background: url('../images/about/his_bg.jpg') center no-repeat;
		margin-bottom: var(--rem-40);
	}

	.history>div.h_left::after {
		position: absolute;
		content: '';
		top: -1px;
		left: -1px;
		width: calc(100% + 2px);
		height: 100%;
		background: rgba(0, 0, 0, 0.45);
	}

	.history .h_left h4 {
		font-size: 3rem;
		z-index: 1;
		position: relative;
	}

	.history .h_left .his_bg {
		display: none;
	}

	.history>div.h_right {
		position: relative;
		width: 100%;
		padding: 0 20px;
	}

	.history:before {
		left: 20px;
	}

	.history:after {
		left: 20px;
	}

	.history .con>li .h_wrap>ul>li {
		padding-left: 6rem;
	}

	.history .con>li .month ul li::before {
		left: calc(-6rem + -2.5px);
	}

	.history .h_left ul li strong {
		font-size: 16px;
	}
}


/* ==================================================
	회사소개 - 주요고객
================================================== */
.customer+.customer {
	margin-top: 8rem;
	padding-top: 8rem;
	border-top: solid 1px #D5DADF;
}

.customer h4 {
	font-weight: var(--font-sb);
	font-size: var(--rem-30);
}

/* 로고 */
.customer_logo {
	padding-top: var(--rem-20);
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.customer_logo>li img {
	display: block;
	width: 100%;
	border: 1px solid #CED4DA;
	border: 1px solid #ddd;
	background: var(--color-white);
}

/* 모바일CSS */
@media screen and (max-width:800px) {

	/* 로고 */
	.customer_logo {
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width:640px) {

	.customer+.customer {
		margin-top: var(--rem-60);
		padding-top: var(--rem-60);
	}

	/* 로고 */
	.customer_logo {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}


/* ==================================================
	회사소개 - 오시는 길
================================================== */
.location {
	overflow: hidden;
	border: solid 1px var(--color-gray2);
	border-radius: var(--rem-20);
}

/* 지도 */
.map,
.map .root_daum_roughmap {
	height: 500px;
}

.cont_inner>.map .root_daum_roughmap_landing {
	overflow: visible;
}

.wrap_controllers,
.root_daum_roughmap .cont,
.root_daum_roughmap_landing .map_border {
	display: none;
}

.root_daum_roughmap {
	width: 100% !important;
}

/* 정보 */
.location .info-wrp {
	margin: var(--rem-40);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--rem-60);
}

.location .info-wrp .info {
	display: flex;
	align-items: center;
	gap: var(--rem-20);
}

.location .info-wrp span {
	font-weight: var(--font-bd);
	font-size: var(--rem-22);
	color: var(--color-blue2);
}

.location .info-wrp p {
	font-weight: var(--font-md);
}

/* 모바일CSS */
@media screen and (max-width:1100px) {

	/* 지도 */
	.map,
	.map .root_daum_roughmap {
		height: 400px;
	}

	/* 정보 */
	.location .info-wrp {
		gap: var(--rem-55);
	}

	.location .info img {
		width: var(--rem-60);
	}
}

@media screen and (max-width:900px) {

	/* 지도 */
	.map,
	.map .root_daum_roughmap {
		height: 360px;
	}

	/* 정보 */
	.location .info-wrp {
		margin: var(--rem-40);
		display: flex;
		justify-content: center;
		gap: var(--rem-20);
		flex-direction: column;
	}
}

@media screen and (max-width:480px) {

	/* 지도 */
	.map,
	.map .root_daum_roughmap {
		width: 100%;
		height: 260px !important;
	}

	/* 정보 */
	.location .info-wrp {
		margin: var(--rem-20) var(--rem-30);
	}

	.location .info-wrp span {
		font-size: var(--rem-19);
	}

	.location .info-wrp p {
		font-size: var(--rem-17);
	}

	.location .info img {
		width: var(--rem-55);
	}
}


/* ==================================================
	제품소개 - 로봇 자동화
================================================== */
.con_design {
	overflow: hidden;
}

.con_design>ul>li {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: var(--rem-40) 0;
	border-bottom: dashed 1px #B4B4B4;
}

.con_design>ul>li:first-child {
	border-top: solid 1px #000000;
}

.con_design>ul>li .context_g {
	width: 46%;
	padding: 0 var(--rem-60) 0 0;
	order: 1;
}

.con_design>ul>li .context_g .constitle {
	font-size: var(--rem-30);
	color: var(--brand-color-main);
	padding-bottom: var(--rem-18);
}

.con_design>ul>li .context_g .constitle span {
	font-weight: var(--font-md);
}

.con_design>ul>li .context_g p {
	line-height: 1.8;
}


.con_design>ul>li .conimg_g {
	width: 54%;
	height: 35rem;
	order: 2;
}

.conimg_g .conimg {
	position: relative;
	text-align: center;
	width: 100%;
	height: 100%;
	display: block;
}

/* 애니메이션 */
.con_design>ul>li:nth-child(1) {
	width: 100%;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(1) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(2) {
	width: 100%;
	opacity: 0;
	transform: translateX(50px);
	-webkit-transform: translateX(50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(2) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(3) {
	width: 100%;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(3) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(4) {
	width: 100%;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(4) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(5) {
	width: 100%;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(5) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(6) {
	width: 100%;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
	transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 1s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.active .con_design>ul>:nth-child(6) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.con_design>ul>li:nth-child(1) {
	transition-delay: .5s
}

.con_design>ul>li:nth-child(2) {
	transition-delay: .8s
}

.con_design>ul>li:nth-child(3) {
	transition-delay: 1.1s
}

.con_design>ul>li:nth-child(4) {
	transition-delay: 1.4s
}

.con_design>ul>li:nth-child(5) {
	transition-delay: 1.7s
}

.con_design>ul>li:nth-child(6) {
	transition-delay: 2s
}

/* 모바일CSS */
@media screen and (min-width:1101px) {
	.con_design>ul>li:nth-child(odd) .context_g {
		order: 3;
		padding-left: var(--rem-60);
	}
}

@media screen and (max-width:1100px) {

	.con_design>ul>li .context_g {
		width: 100%;
		padding: 3.6rem 0 0 0;
		order: 2;
	}

	.con_design>ul>li .conimg_g {
		width: 100%;
		max-width: 90rem;
		order: 1;
	}
}

@media screen and (max-width:800px) {

	.con_design>ul>li .context_g {
		padding-top: 4.2rem;
	}

	.con_design>ul>li .context_g .constitle {
		font-size: var(--rem-28);
	}

	.con_design>ul>li .context_g p {
		line-height: 1.6;
	}
}

@media screen and (max-width:600px) {

	.con_design>ul>li .context_g {
		padding: 3rem 0 0 0;
	}

	.con_design>ul>li .context_g .constitle {
		font-size: 2.3rem;
		padding-bottom: 1.5rem;
		background-size: auto 5rem;
	}

	.con_design>ul>li .conimg_g {
		height: 25rem;
	}
}


/* ==================================================
	제품소개 - 자율이동로봇
================================================== */
.autonomous_robot .col_grd {
	padding: var(--rem-40) 0;
	border-top: solid 1px #000000;
	border-bottom: solid 1px #DCDCDC;
}

.autonomous_robot .col_grd img {
	width: 100%;
	background: #F7F7F7;
	border: solid 1px #DCDCDC;
}

.autonomous_robot .col_grd p {
	padding-top: var(--rem-20);
	font-weight: var(--font-sb);
	font-size: var(--rem-26);
	text-align: center;
	color: #373D85;
}


/* ==================================================
	제품소개 - 로봇 콘텐츠
================================================== */
.robot_contents .rb_cts_top {
	gap: var(--rem-60);
}


.robot_contents .rb_cts_mid {
	margin-top: var(--rem-60);
	padding: var(--rem-40) 0;
	border-top: solid 1px #000000;
	border-bottom: solid 1px #DCDCDC;
}

.robot_contents .rb_cts_mid img {
	width: 100%;
	background: #F7F7F7;
	border: solid 1px #DCDCDC;
}

.robot_contents .rb_cts_mid p {
	padding-top: var(--rem-20);
	font-weight: var(--font-sb);
	font-size: var(--rem-28);
	text-align: center;
	color: #373D85;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {

	.robot_contents.col_grd {
		gap: 0;
	}
}


/* ==================================================
	제품소개 - 로봇 플랫폼
================================================== */
.robot_platform>.col_grd>div {
	display: flex;
	align-items: flex-start;
	gap: var(--rem-40);
	padding: var(--rem-40);
	background: #F7F7F7;
	border: solid 1px #DCDCDC;
}

.robot_platform .img {
	width: 30rem;
	flex-basis: 30rem;
	background-color: #ffffff;
}

.robot_platform .img img {
	width: 100%;
}

.robot_platform .info {
	width: calc(100% - 34rem);
	flex-basis: calc(100% - 34rem);
}

.robot_platform .model_nm {
	padding-bottom: 20px;
	font-weight: var(--font-bd);
	font-size: var(--rem-30);
	color: var(--brand-color-main);
}

.robot_platform .specifications {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem 4rem;

}

.robot_platform .specifications dt {
	padding-bottom: 10px;
	font-weight: var(--font-md);
	font-size: var(--rem-20);
}

.robot_platform .specifications dd {
	position: relative;
	padding: 10px 10px 10px 12px;
	font-weight: var(--font-rg);
	font-size: var(--rem-16);
	line-height: 1.5;
	border-bottom: dashed 1px #B4B4B4;
}

.robot_platform .specifications dt+dd,
.robot_platform .specifications dd:first-child {
	border-top: solid 1px #000000;
}

.robot_platform .specifications dd::before {
	content: '·';
	position: absolute;
	left: 4px;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {

	.robot_platform>.col_grd>div {
		flex-direction: column;
	}

	.robot_platform .img {
		width: 100%;
		flex-basis: 100%;
		text-align: center;
	}

	.robot_platform .img img {
		max-width: 30rem;
	}

	.robot_platform .model_nm {
		padding-bottom: 15px;
		font-size: var(--rem-26);
	}

	.robot_platform .info {
		width: 100%;
		flex-basis: 100%;
	}
}

@media screen and (max-width: 640px) {
	.robot_platform .specifications {
		gap: 3rem 3rem;
	}
}

@media screen and (max-width: 480px) {
	.robot_platform .specifications {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: var(--rem-30);
	}
}


/* ==================================================
	주요실적 - 주요실적
================================================== */
.key_performance .list li {
	padding: var(--rem-20);
	border: solid 1px var(--color-gray2);
}

.key_performance .list .img {
	width: 100%;
	height: 220px;
}

.effect-pollo {
	background: var(--color-white2);
	background: var(--color-gray1);
	position: relative;
	overflow: hidden;
}

.effect-pollo img {
	position: relative;
	display: block;
	margin: 0 auto;
	/*	width: auto;*/
	max-width: 100%;
	height: 100%;
	opacity: 0.8;
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05, 1.05, 1);
	transform: scale3d(1.05, 1.05, 1);
}

.effect-pollo figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.effect-pollo figcaption:before,
.effect-pollo figcaption:after {
	pointer-events: none;
}

.effect-pollo figcaption:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(2.7, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	transform: scale3d(2.7, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.effect-pollo:hover img {
	opacity: 0.6;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.effect-pollo:hover figcaption::before {
	-webkit-transform: scale3d(2.7, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
	transform: scale3d(2.7, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.key_performance .list .info {
	margin-top: var(--rem-20);
	padding-left: 3px;
}

.key_performance .list .order {
	font-weight: var(--font-md);
}

.key_performance .list .txt {
	margin-top: var(--rem-13);
}

.key_performance .list .date {
	padding-top: var(--rem-30);
	font-size: var(--rem-16);
	color: var(--brand-color-dmain);
}

/* 모바일CSS */
@media screen and (max-width: 800px) {

	.key_performance .list {
		-ms-grid-columns: (1fr) [2];
		grid-template-columns: repeat(2, 1fr);
		gap: var(--rem-24) var(--rem-30);
	}

	.key_performance .list .img {
		height: 208px;
	}
}

@media screen and (max-width: 480px) {

	.key_performance .list {
		/* -ms-grid-columns: (1fr) [1];*/
		/* grid-template-columns: repeat(1, 1fr); */
		gap: var(--rem-24);
	}

	.key_performance .list .img {
		height: 100px;
	}
}

/* ==================================================
	연구개발 - 연구소 소개
================================================== */
.lab_top img {
	max-width: 100%;
}

.lab_top img {
	max-width: 100%;
	border-radius: var(--rem-20);
}

.lab_top .ctop_text {
	/*	margin: -6.6rem auto 0;
	padding: 50px 50px;
	background: #fff;
	text-align: left;*/
	position: relative;
}

.lab_top .lab_title {
	display: inline-block;
	position: absolute;
	top: -6.6rem;
	background: #fff;
	padding: 2rem 4rem 1rem 1rem;
}

.lab_top .lab_title h4 {
	font-size: var(--rem-30);
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
}

.lab_top .lab_txt {
	line-height: 1.7;
	padding: 1rem;
}


.lab_mid {
	margin-top: var(--rem-70);
	border-top: solid 1px #D5DADF;
	text-align: center;
	gap: var(--rem-60);
}

.lab_mid .pro_tit {
	margin-top: var(--rem-70);
}

.lab_mid .pro_tit h4 {
	font-size: var(--rem-36);
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
}

.lab_mid .pro_tit p {
	font-size: var(--rem-20);
	font-weight: var(--font-md);
}

.lab_mid .col_grd img {
	display: block;
	width: 100%;
}

.lab_mid .col_grd h5 {
	margin-top: var(--rem-24);
	font-weight: var(--font-bd);
	font-size: var(--rem-26);
	color: #373D85;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {

	.lab_top .lab_title {
		position: relative;
		top: 0;
		padding: 2rem 4rem 1rem 1rem;
	}

	.lab_top .lab_title h4 {
		font-size: var(--rem-26);
	}

	.lab_mid .pro_tit h4 {
		font-size: var(--rem-30);
	}

	.lab_mid .col_grd3 {
		-ms-grid-columns: (1fr) [3];
		grid-template-columns: repeat(3, 1fr);
	}

	.lab_mid .col_grd h5 {
		margin-top: var(--rem-20);
		font-size: var(--rem-22);
	}
}

@media screen and (max-width: 480px) {

	.lab_mid .col_grd h5 {
		margin-top: var(--rem-15);
		font-size: var(--rem-18);
	}
}


/* ==================================================
	연구개발 - 연구개발
================================================== */
.rnd_table .biz {
	font-weight: var(--font-bd);
	font-size: var(--rem-17);
	color: var(--brand-color-main);
}

.rnd_table .task {
	text-align: left;
	padding-left: var(--rem-13);
	padding-right: var(--rem-13);
}


/* ==================================================
	커뮤니티 - CONTACT
================================================== */
.contact_tit h4 {
	font-size: var(--rem-36);
	color: var(--brand-color-main);
}

.contact_tit p {
	margin-top: var(--rem-13);
	font-weight: var(--font-sb);
	font-size: var(--rem-24);
}


.contact_mid {
	margin-top: var(--rem-40);
	display: flex;
	gap: var(--rem-20);

}

.contact_mid .info {
	flex-basis: calc(33% - 1rem);
	width: calc(33% - 1rem);
	display: flex;
	align-items: center;
	gap: var(--rem-20);
	padding: 5rem 4rem;
	border-radius: 1rem;
	background: #FFF;
	box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.20);
}

.contact_mid img {
	max-width: 16rem;
	width: 30%;
}

.contact_mid span {
	font-weight: var(--font-md);
	font-size: var(--rem-20);
	color: #637DBE;
}

.contact_mid p {
	font-weight: var(--font-bd);
	font-size: var(--rem-30);
}

/* 모바일CSS */
@media all and (max-width:1100px) {

	.contact_mid span {
		font-size: var(--rem-18);
	}

	.contact_mid p {
		font-size: var(--rem-26);
	}
}

@media all and (max-width:800px) {

	.contact_tit h4 {
		font-size: var(--rem-30);
	}

	.contact_tit p {
		font-size: var(--rem-20);
	}


	.contact_mid {
		flex-direction: column;
		max-width: 60rem;
		margin: 4rem auto 0;
	}

	.contact_mid .info {
		flex-basis: 100%;
		width: 100%;
		padding: 3rem 4rem;
	}

	.contact_mid img {
		width: 26%;
	}
}


/* ==================================================
	사이트맵
================================================== */
.sitemap:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.sitemap .depth01 {
	float: left;
	width: 18%;
	margin: 0 1%;
	padding-top: 10px;
	border-top: 2px solid #000;
	line-height: 1.5;
}

.sitemap div.depth01 {
	font-size: 1.8rem;
	color: #000;
	font-weight: 600;
}

.sitemap .sub {
	border-top: 1px solid #ccc;
	margin-top: 10px;
	margin-bottom: 25px;
}

.sitemap ul.sub2 {
	padding-left: 14px;
}

.sitemap li.depth02 {
	padding: 8px 0;
	border-bottom: 1px dashed #ccc;
}

.sitemap li.depth02 a {
	font-size: 1.7rem;
	color: #222;
}

.sitemap .sub_m {
	padding-top: 4px;
}

.sitemap .sub_m li {
	background: url('../images/icon/ico_grayDot.png') no-repeat 0 13px;
	background-size: 3px;
	padding-left: 10px;
}

.sitemap .sub_m li a {
	font-size: 1.6rem;
	font-weight: normal;
	color: #495057;
	line-height: 160%;
}

.sitemap .sub_m .model {
	padding-left: 13px;
}

/* 모바일CSS */
@media screen and (max-width:750px) {
	.sitemap .depth01 {
		width: 96%;
		margin: 5px 0 0 0;
	}

	.sitemap div.m01 {
		margin-top: 0 !important;
	}
}