@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.cont_inner {
	width: 100%;
	margin-top: 6rem;
}

.cont_inner2 {
	width: 100%;
	margin-top: 6rem;
}

.l-line {
	height: 5px;
	background: url('../images/common/line_bg.png') repeat-x 0 0;
	overflow: hidden;
}

/* 애니메이션 */
.cont_inner {
	opacity: 0;
	transform: translateY(50px)
}

.cont_inner.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.8s;
	-webkit-transition: all 0.7s 0.8s;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.cont_inner {
		margin-top: 4rem;
	}

	.cont_inner2 {
		margin-top: 4rem;
	}
}

/* ==================================================
	아이콘
================================================== */
.con_title {
	position: relative;
	font-size: 2.6rem;
	font-weight: var(--font-sb);
	padding-left: 1.8rem;
}

.con_title:before {
	content: "";
	position: absolute;
	top: 0.2rem;
	left: 0;
	width: 0.5rem;
	height: 2.4rem;
	background: var(--brand-color-main);
}

.dot_title {
	position: relative;
	font-size: 3.5rem;
	font-weight: var(--font-bd);
}

.dot_title:after {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	background: var(--brand-color-sub);
	border-radius: 50%;
	display: inline-block;
	margin-left: 0.5rem;
	display: none;
}

.dot_title2 {
	position: relative;
	font-size: 3.2rem;
	font-weight: var(--font-bd);
}

.dot_title2:after {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	background: var(--brand-color-sub);
	border-radius: 50%;
	display: inline-block;
	margin-left: 0.5rem;
	display: none;
}

.l-list01 {
	line-height: 1.2;
	font-size: 1.8rem;
}

.l-list01>li {
	position: relative;
	padding-left: 1.5rem;
	margin-top: 1rem;
	color: #606060;
}

.l-list01>li:first-child {
	margin-top: 0;
}

.l-list01>li:before {
	content: "";
	position: absolute;
	top: 0.9rem;
	left: 0;
	width: 0.5rem;
	height: 0.5rem;
	background: #b8b8b8;
}

.l-list01>li span {
	font-weight: var(--font-bd);
}

.width_line_list {
	margin-top: 0.5rem;
	font-size: 1.6rem;
}

.width_line_list>li:before {
	position: absolute;
	top: 0.9rem;
	left: 0;
	content: "";
	display: block;
	width: 0.5rem;
	height: 1px;
	background: #a0a0a0;
}

.width_line_list>li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.3rem;
}

.width_line_list>li:last-child {
	margin-bottom: 0;
}

.a-tit01 {
	font-size: 2.2rem;
	background: url('../images/icon/arrow_icon.svg') no-repeat 0 0.3rem;
	background-repeat: no-repeat;
	padding-left: 2.7rem;
	line-height: 1.4;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.con_title {
		font-size: 2.4rem;
		padding-left: 1.7rem;
	}

	.con_title:before {
		height: 2.2rem;
	}

	.l-list01 {
		font-size: 17px;
	}

	.l-list01>li:before {
		top: 9px;
		width: 5px;
		height: 5px;
	}

	.a-tit01 {
		font-size: 18px;
		padding-left: 3rem;
	}
}

/* ==================================================
	상단이미지
================================================== */
.section_top {
	position: relative;
	padding-bottom: 7rem;
	text-align: center;
}

.section_esgtop {
	padding-bottom: 7rem;
}

.section_top .pht {
	position: relative;
}

.section_top .pht .img img {
	width: 100%;
	border-radius: 10rem;
}

.section_top .txtarea {
	position: absolute;
	width: 95rem;
	height: 35rem;
	padding: 7rem 1rem 0 7rem;
	border-radius: 8rem 0 0 0;
	bottom: 0;
	right: -1px;
	z-index: 10;
	text-align: left;
	background: var(--color-white);
}


.section_top.guarantee_top .txtarea {
	height: 25rem;
}

.section_esgtop .txtarea {
	height: 30rem;
}

.section_top .txtarea2 {
	padding: 6rem 1rem 0 6rem;
}

.section_top .txtarea h4 {
	font-size: 4rem;
	font-weight: var(--font-bd);
	color: var(--color-black);
	line-height: 1;
}

.section_top .txtarea h4.sectxt_mt {
	margin-bottom: 2.5rem;
}

.section_top .txtarea .sec_stit {
	font-family: var(--font-Outfit);
	font-size: 2rem;
	font-weight: var(--font-md);
	color: #afafaf;
	margin-top: 2rem;
	margin-bottom: 3.2rem;
}

.section_top .txtarea .sec_stit2 {
	font-size: 2rem;
	font-weight: var(--font-md);
	color: #afafaf;
	padding-left: 1rem;
}

.section_top p {
	line-height: 1.55;
	color: var(--color-black);
	word-break: keep-all;
	margin-top: 1rem;
}

.section_top p span {
	display: block;
}

.section_top p:first-child {
	margin-top: 0;
}

/* 애니메이션*/
.section_top {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
}

.section_top.active {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	transition: all 0.7s 0.8s;
	-webkit-transition: all 0.7s 0.8s;
}

/* 모바일CSS */
@media screen and (max-width:1800px) {
	.section_top p span {
		display: inline;
	}
}

@media screen and (max-width:900px) {
	.section_top {
		padding-bottom: 4.5rem;
	}

	.section_top .pht .img img {
		border-radius: 7rem 7rem 0 0;
	}

	.section_top .txtarea {
		position: relative;
		width: 94%;
		height: auto;
		margin-right: auto;
		margin-left: auto;
		margin-top: -15rem;
		padding: 5rem 2rem 0 2rem;
		border-radius: 4rem 4rem 0 0;
		text-align: center;
		background: var(--color-white);
	}

	.section_top .txtarea2 {
		padding: 4rem 2rem 0 2rem;
	}

	.section_top .txtarea h4 {
		font-size: 3rem;
	}

	.section_top .txtarea h4.sectxt_mt {
		margin-bottom: 1.8rem;
	}

	.section_top .txtarea .sec_stit {
		font-size: 1.8rem;
		margin-top: 1.8rem;
		margin-bottom: 3rem;
	}

	.section_top .txtarea .sec_stit2 {
		display: block;
		font-size: 1.8rem;
		padding-left: 0;
		margin-top: 1rem;
	}

	.section_top p span {
		display: inline;
	}
}

@media screen and (max-width:640px) {
	.section_top .pht .img img {
		border-radius: 3rem 3rem 0 0;
	}

	.section_top .txtarea {
		margin-top: -5rem;
	}

	.section_top .txtarea2 p {
		text-align: left;
	}
}

/* ==================================================
	테이블
================================================== */
table.chart01 {
	width: 100%;
	border-top: solid 2px #c5cbcf;
	border-bottom: solid 2px #c5cbcf;
	font-size: 1.5rem;
	letter-spacing: -0.025em;
}

table.chart01 tr th {
	background-color: #e2e5e7;
	text-align: center;
	color: var(--color-black);
	font-weight: var(--font-bd);
}

/*table.chart01 td {
	padding-left: 2.5rem !important;
	line-height: 1.35;
}*/

table.chart01 tr th,
table.chart01 tr td {
	padding: 1rem 0.2rem;
	border-bottom: solid 1px #c5cbcf;
	border-left: 1px solid #c5cbcf;
	vertical-align: middle;
}

table.chart01 tr th:first-child,
table.chart01 tr td:first-child {
	border-left: 0;
}

table.chart01 tr td.ch_bl {
	border-left: 1px solid #c5cbcf;
}

table.chart01 tr td.ch_bg {
	background: #f8f8f8;
}

table.chart02 {
	width: 100%;
	border-top: solid 1px #262626;
	border-bottom: solid 1px #cdcdcd;
	text-align: center;
	font-size: 1.7rem;
}

table.chart02 tr th {
	background-color: #E5E5E5;
	color: var(--color-black);
	font-weight: var(--font-bd);
}

table.chart02 tr th:first-child {
	border-left: 0;
}

table.chart02 tr td {
	line-height: 1.35;
}

table.chart02 tr td:first-child {
	background: #F8F8F8;
	border-left: 0;
	font-weight: var(--font-sb);
}

table.chart02 tr th,
table.chart02 tr td {
	padding: 1.3rem 0.3rem;
	border-bottom: solid 1px #cdcdcd;
	vertical-align: middle;
	border-left: solid 1px #cdcdcd;
}

/* 테이블 사이즈 */
.chart01_width {
	width: 25%;
}

.chart02_width01 {
	width: 35%;
}

.chart02_width02 {
	width: 50%;
}

.chart02_width03 {
	width: 15%;
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {
	table.chart01 {
		font-size: 1.6rem;
	}

	table.chart02 {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 640px) {

	table.chart02 tr th,
	table.chart02 tr td {
		padding: 1.3rem 1rem;
	}
}

/* ==================================================
	반응형 테이블 스크롤
================================================== */
.msg_touch_help {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:720px) {
	.con_table_wrap {
		overflow-x: auto;
	}

	.con_table_wrap {
		position: relative;
	}

	.table_scroll {
		width: 200%;
	}

	.msg_touch_help {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -40px;
		margin-top: -40px;
		display: block;
	}

	.msg_touch_help img {
		width: 100px;
		height: 100px;
	}
}

/* ==================================================
	애니메이션
================================================== */
@-webkit-keyframes fadeUpAni {
	0% {
		opacity: 0;
		transform: translate3d(0, 54px, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0px, 0);
	}
}

.fadeUp.active {
	animation-name: fadeUpAni;
	animation-duration: 2s;
}

/* ==================================================
	이미지 움직이는 효과
================================================== */
.over-cover {
	overflow: hidden;
	position: relative;
	display: inline-block;
	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);
}

/* ==================================================
	영상
================================================== */
.movie_con {
	text-align: center;
}

.movie_con video {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid #d7d7d7;
}

.promovie_con {
	text-align: center;
}

.promovie_con video {
	width: 100%;
	max-width: 1000px;
}

/* ==================================================
	유튜브 영상
================================================== */
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 35px;
	height: 0;
	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: var(--color-white)
}

.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;
	-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
}

/* 상단 컨텐츠 */
.overview_topcon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50rem;
	background: url('../images/company/overview_top_bg.jpg') no-repeat 0 center / auto 100%;
	background-size: contain;
	background-attachment: fixed;
	margin-top: 6rem;
	color: var(--color-white)
}

.overview_topcon .ov_top>h3 {
	font-size: 2rem;
	font-weight: 500;
}

.overview_topcon .ov_top>h1 {
	margin-top: 4rem;
	letter-spacing: -0.06em;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.55;
}

.overview_topcon .ov_top>h1 span {
	font-weight: 700;
}

/* 중간 컨텐츠 */
.overview_centercon {
	margin-top: 5rem;
}

.ov_centxt>ul {
	display: flex;
	align-items: center;
}

.ov_centxt>ul>li.ovcen_img {
	flex-basis: 34%;
	padding-right: 5rem;
}

.ov_centxt>ul>li.ovcen_img img {
	width: 100%;
	max-width: 36rem;
}

.ov_centxt>ul>li.ovcen_txt {
	flex-basis: 66%;
	line-height: 1.8;
	letter-spacing: -0.1rem;
	word-break: keep-all;
	color: #555;
}

.ov_centxt>ul>li.ovcen_txt span {
	display: block;
}

.ov_centxt>ul>li.ovcen_txt div {
	margin-bottom: 2rem;
}

.ov_ceninfo {
	margin-top: 7rem;
}

.ov_info_tit {
	margin-top: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ov_info_tit .vision_box01 {
	width: 250px;
	height: 250px;
	position: relative;
	background: linear-gradient(45deg, #2c3056, #4d549b);
	font-weight: var(--font-bd);
	font-size: 2.5rem;
	line-height: 1.4;
	color: #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	-moz-border-radius: 100%;
}

.ov_info_tit .vision_box01::before {
	position: absolute;
	display: block;
	content: '';
	top: calc(50% - 150px);
	left: calc(50% - 150px);
	z-index: -2;
	background: var(--brand-color-main);
	opacity: 0.1;
	width: 300px;
	height: 300px;
	border-radius: 100%;
	-moz-border-radius: 100%;
}

.ov_info_tit .vision_box01::after {
	position: absolute;
	display: block;
	content: '';
	top: calc(50% - 140px);
	left: calc(50% - 140px);
	z-index: -1;
	background: var(--brand-color-main);
	opacity: 0.2;
	width: 280px;
	height: 280px;
	border-radius: 100%;
	-moz-border-radius: 100%;
}

.ov_info_tit .vision_box {
	position: relative;
	font-size: 4rem;
	font-weight: var(--font-bd);
	z-index: 1;
	color: #575757;
	margin-top: 3rem;
}

.ov_info_tit .vision_box span:nth-child(1) {
	color: var(--brand-color-main);
}

.ov_info_tit .vision_box span:nth-child(2) {
	color: #4d549b
}

.ov_info_tit .vision_box::before {
	position: absolute;
	display: block;
	content: '';
	bottom: 0;
	left: calc(50% - 100px);
	z-index: -1;
	width: 200px;
	height: 100px;
	background: url('../images/company/overview_triangle.png') 100% 0 no-repeat;
	background-size: 200px auto;
}

.ov_info {
	margin-top: 4rem;
}

.ov_info>ul {
	width: 80%;
	margin: 0 auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	border: 2px solid #ddd;
	border-radius: 150px;
	-moz-border-radius: 150px;
	padding: 2rem;
	gap: 3rem;
}

.ov_info>ul>li {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background: #F7F7F7;
	border: 1px solid #ddd;
	padding: 2rem;
	height: 150px;
	border-radius: 150px;
	-moz-border-radius: 150px;
}

.ov_info>ul>li>div {
	width: 25%;
	height: auto;
}

.ov_info>ul>li>div object {
	width: 100%;
}


.ov_info>ul>li h4 {
	font-size: 2rem;
	color: #222;
	margin-top: 2rem;
	font-weight: var(--font-md);
}

.ov_info>ul>li img {
	position: absolute;
	right: 3.5rem;
	top: 3.5rem;
}

/* 롤링 애니메이션 */
.ov_rolling {
	overflow: hidden;
	padding: 8rem 0;
}

.ov_rolling .ovrolling_box {
	display: flex;
	gap: 10rem;
	animation: ovrolling 90s linear infinite;
}

.ov_rolling .ovrolling_box img {
	max-width: 100%;
}

/* 사업장 안내 */
.ov_location {
	width: 100%;
	padding: 8rem 0;
	background: #F7F7F7;
}

.ov_location .inner {
	overflow: hidden;
}

.ov_location ul {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.ov_location ul>li {
	border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	overflow: hidden;
}

.ov_location ul>li a {
	position: relative;
	display: block;
}

.ov_location ul>li a .img {
	padding-bottom: 39.38%;
}

.ov_location ul>li a .img_tit2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ov_location ul>li a .img h1 {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	font-size: 3rem;
	font-weight: var(--font-bd);
	line-height: 1.2;
}

.ov_location ul>li a:hover .img h1 {
	opacity: 0;
}

.ov_location ul>li a .img_tit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
	opacity: 0;
	transition: 0.2s all ease-in;
}

.ov_location ul>li a .img_tit .img_txt {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-white);
	line-height: 1.2;
}

.ov_location ul>li a .img_tit .img_txt h1 {
	font-size: 2.5rem;
	font-weight: var(--font-bd);
}

.ov_location ul>li a .img_tit .img_txt p {
	font-size: 2rem;
	line-height: 1.3;
	margin-top: 0.5rem;
}

.ov_location ul>li a .img_tit .img_txt p span {
	font-size: 1.7rem;
	display: block;
}

.ov_location ul>li a:hover .img_tit {
	opacity: 1;
}

.ov_location ul>li:nth-child(1) {
	background: url('../images/company/ov_loc01.jpg?v=0502') 50% 50% no-repeat;
	background-size: cover;
}

.ov_location ul>li:nth-child(2) {
	background: url('../images/company/ov_loc02.jpg') 50% 50% no-repeat;
	background-size: cover;
}

/* 주요 사업 */
.ov_biz {
	margin-top: 8rem;
	overflow: hidden;
}

.ovbiz_box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.ovbiz_box>li a {
	position: relative;
}

.ovbiz_box>li a .over-cover {
	border-radius: 1.5rem;
}

.ovbiz_box>li a .over-cover img {
	width: 100%;
	border-radius: 1.5rem;
}

.ovbiz_box>li a .text_box {
	position: absolute;
	right: 6rem;
	bottom: 6rem;
	text-align: right;
}

.ovbiz_box>li a .text_box h1 {
	font-size: 3rem;
	font-weight: var(--font-bd);
	color: var(--color-white);
	margin-bottom: 2.5rem;
}

.ovbiz_box>li a .text_box img {
	width: 100%;
	max-width: 5rem;
}

/* 애니메이션 */

.ov_info_tit {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	transition: all 1s 0.3s;
	-webkit-transition: all 1s 0.3s;
}

.ov_info_tit.active {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.ov_info_tit>div {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	transition: all 1s 0.3s;
	-webkit-transition: all 1s 0.3s;
}

.ov_info_tit.active>div {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.ov_info_tit>div:nth-child(1) {
	transition-delay: 0.2s;
}

.ov_info_tit>div:nth-child(2) {
	transition-delay: 0.4s;
}

.ov_info>ul {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	transition: all 1s 0.3s;
	-webkit-transition: all 1s 0.3s;
}

.ov_info.active>ul {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.ov_info>ul>li {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	transition: all 1s 0.3s;
	-webkit-transition: all 1s 0.3s;
}

.ov_info.active>ul>li {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.ov_info.active>ul>li:nth-child(1) {
	transition-delay: 0.2s;
}

.ov_info.active>ul>li:nth-child(2) {
	transition-delay: 0.4s;
}

.ov_info.active>ul>li:nth-child(3) {
	transition-delay: 0.6s;
}

.ov_info.active>ul>li:nth-child(4) {
	transition-delay: 0.8s;
}

.ov_location .inner {
	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);
}

.ov_location.active .inner {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.ov_biz .inner {
	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);
}

.ov_biz.active .inner {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

@keyframes ovrolling {
	from {
		transform: translateX(0);

	}

	to {
		transform: translateX(-10000px);
	}
}

/* 모바일CSS */
@media screen and (max-width:1600px) {

	/* 상단 컨텐츠 */
	.overview_topcon {
		background: url('../images/company/overview_top_mbg.jpg') no-repeat 0 center / auto 100%;
		background-size: contain;
		background-attachment: fixed;
	}
}

@media screen and (max-width:1399px) {
	.ov_centxt>ul>li.ovcen_txt span {
		display: inline;
	}
}

@media screen and (max-width:1200px) {

	/* 상단 컨텐츠 */
	.overview_topcon {
		background-attachment: initial;
		background-size: cover;
	}

	.overview_topcon .ov_top>h3 {
		font-size: 18px;
	}

	.overview_topcon .ov_top>h1 {
		font-size: 4rem;
	}

	.ov_info {
		display: flex;
		justify-content: center;
	}

	.ov_info>ul {
		width: 90%;
		padding: 2rem;
		gap: 3rem;
	}

	.ov_info>ul>li {
		height: auto;
		padding: 2rem 3rem;
	}

	.ov_info>ul>li h4 {
		text-align: center;
		word-break: keep-all;
	}

	.ov_info>ul>li>div {
		width: 35%;
	}
}

@media screen and (max-width:1023px) {

	/* 상단 컨텐츠 */
	.overview_topcon {
		height: auto;
		padding: 8rem 0;
		margin-top: 4rem;
	}

}

@media screen and (max-width:860px) {

	/* 중간 컨텐츠 */
	.ov_info_tit .vision_box01 {
		width: 35vw;
		height: 35vw;
	}

	.ov_info_tit .vision_box01::after {
		width: 40vw;
		height: 40vw;
		top: calc(50% - 20vw);
		left: calc(50% - 20vw);
	}

	.ov_info_tit .vision_box01::before {
		width: 44vw;
		height: 44vw;
		top: calc(50% - 22vw);
		left: calc(50% - 22vw);
	}

	.ov_info>ul {
		width: 100%;
		gap: 1rem;
		padding: 1rem;
	}

	.ov_info>ul>li {
		width: (calc(100% - 2rem) / 3);
		padding: 2rem;
	}

	.ov_info>ul>li h4 {
		font-size: 2rem;
		word-break: break-all;
	}

	.ov_info>ul>li>div {
		width: 50%;
	}

	/* 사업장 안내 */
	.ov_location {
		padding: 6rem 0;
	}

	.ov_location ul {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
		gap: 2rem;
	}

	/* 주요 사업 */
	.ov_biz {
		margin-top: 6rem;
	}

}

@media screen and (max-width:760px) {

	/* 중간 컨텐츠 */
	.ov_centxt>ul {
		display: block;
		text-align: center;
	}

	.ov_centxt>ul>li.ovcen_img {
		padding-right: 0;
	}

	.ov_centxt>ul>li.ovcen_img img {
		max-width: 30rem;
	}

	.ov_centxt>ul>li.ovcen_txt {
		margin-top: 3rem;
	}

	.ovbiz_box {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}

	.ov_info_tit .vision_box01 {
		width: 35vw;
		height: 35vw;
	}

	.ov_info_tit .vision_box01::after {
		width: 40vw;
		height: 40vw;
		top: calc(50% - 20vw);
		left: calc(50% - 20vw);
	}

	.ov_info_tit .vision_box01::before {
		width: 46vw;
		height: 46vw;
		top: calc(50% - 23vw);
		left: calc(50% - 23vw);
	}

}

@media screen and (max-width:640px) {

	/* 상단 컨텐츠 */
	.overview_topcon .ov_top>h1 {
		margin-top: 3rem;
		font-size: 3rem;
		line-height: 1.4;
		word-break: keep-all;
	}

	.overview_topcon .ov_top>h1 br {
		display: none;
	}

	/* 중간 컨텐츠 */
	.ov_info_tit .vision_box01 {
		width: 40vw;
		height: 40vw;
	}

	.ov_info_tit .vision_box01::after {
		width: 46vw;
		height: 46vw;
		top: calc(50% - 23vw);
		left: calc(50% - 23vw);
	}

	.ov_info_tit .vision_box01::before {
		width: 52vw;
		height: 52vw;
		top: calc(50% - 26vw);
		left: calc(50% - 26vw);
	}

	.ov_info>ul {
		border-radius: 5rem;
	}

	.ov_info>ul>li {
		border: 0;
		background: #f0f0f0;
	}

	.ov_info>ul>li>div {
		width: 50%;
	}

	.ov_info>ul>li>h4 {
		word-break: keep-all;
		font-size: 1.8rem;
	}

	/* 주요 사업 */
	.ovbiz_box>li a .text_box h1 {
		font-size: 2.6rem;
		margin-bottom: 2rem;
	}

	.ovbiz_box>li a .text_box img {
		max-width: 4rem;
	}
}

/* ==================================================
	회사소개 - CEO인사말
================================================== */
.ceo_con {
	margin-top: 2rem;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.ceo_con>h1 {
	font-size: 3.8rem;
	font-weight: 700;
	text-align: left;
	color: var(--brand-color-main);
	word-break: keep-all;
	text-align: center;
}

.ceo_txt {
	margin-top: 7rem;
	display: flex;
	align-items: flex-start;
	word-break: keep-all;
}

.ceo_con .ceo_txt .left {
	flex-basis: 28%;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.38;
}

.ceo_con .ceo_txt .right {
	/*flex-basis: 72%;*/
	font-weight: 500;
	color: #6D6D6D;
	line-height: 1.6;
}

.ceo_con .ceo_txt .right p {
	font-size: 2.1rem;
	margin-bottom: 2rem;
}


.ceo_con .ceo_txt .right p span {
	display: block;
}

.greeting_kanji {
	height: 2rem;
}

.sign {
	margin-top: 6px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 3rem;
	margin-top: 2.5rem;
}

.sign.center {
	justify-content: center;
}

.sign .tit {
	font-size: 2rem;
	font-weight: 500;
	color: #333;
}

.sign .cont img {
	width: 100%;
	max-width: 15rem;
}

.sign .cont {
	display: flex;
	align-items: center;
	gap: 0 3rem;
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-black);
}

/* 애니메이션 */
.ceo_con h1 {
	opacity: 0;
	animation: fadeInY 0.6s 0s ease-in-out;
	animation-fill-mode: both;
	animation-delay: 0.6s;
}

.ceo_con .ceo_img {
	opacity: 0;
	animation: fadeInY 0.6s 0s ease-in-out;
	animation-fill-mode: both;
	animation-delay: 0.8s;
}

.ceo_con .ceotxt {
	opacity: 0;
	animation: fadeInY 0.6s 0s ease-in-out;
	animation-fill-mode: both;
	animation-delay: 1.2s;
}

.ceo_con .ceo_txt {
	opacity: 0;
	animation: fadeInY 0.6s 0s ease-in-out;
	animation-fill-mode: both;
	animation-delay: 1.2s;
}

.ceo_con.active h1,
.ceo_con.active .ceo_img,
.ceo_con .ceotxt,
.ceo_con .ceo_txt {
	opacity: 1;
}

@keyframes fadeInY {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 인사말 개행 */
@media screen and (max-width:899px) {

	.ceo_con .ceo_txt .right p span {
		display: inline;
	}
}

@media screen and (max-width:1023px) {
	.ceo_txt {
		display: block;
	}

	.ceo_con .ceo_txt .left .br_none {
		display: none;
	}

	.ceo_con .ceo_txt .right {
		margin-top: 3rem;
	}
}

@media screen and (max-width:899px) {
	.ceo_con {
		max-width: 100%;
	}

	.ceo_con>h1 {
		text-align: center;
	}
}

@media screen and (max-width:760px) {
	.ceo_con>h1 {
		font-size: 3.2rem;
		line-height: 1.3;
	}

	.ceo_txt {
		margin-top: 4rem;
	}

	.ceo_con .ceo_txt .left {
		font-size: 2.3rem;
	}
}

/* ==================================================
	회사소개 - 연혁
================================================== */
#con1,
#con2 {
	position: relative;
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}

#con1::before,
#con2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #ebebeb;
}

#con2 {
	padding-top: 8rem;
}

/* 탭메뉴 */
.tab_nav {
	width: 100%;
	margin-bottom: 6.7rem;
}

.tab_nav ul {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}

.tab_nav ul li {
	position: relative;
	line-height: 1.1;
}

.tab_nav ul li.on a {
	background: var(--brand-color-main);
	color: var(--color-white);
	font-weight: var(--font-bd);
}

.tab_nav ul li a {
	position: relative;
	display: block;
	font-size: 2.3rem;
	font-weight: var(--font-md);
	line-height: 1;
	padding: 1.5rem 0.3rem;
	text-align: center;
	background: #fafafa;
	border: 1px solid #dcdcdc;
}

.tab_nav ul li a span {
	display: block;
	font-size: 1.8rem;
	line-height: 1;
	margin-top: 0.5rem;
}

/* 상단이미지 */
.h_pic>ul {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 0 1.4rem;
	margin-top: var(--rem-25);
}

.h_pic img {
	width: 100%;
}

/* 연혁정보 */
.h_con {
	display: block;
	position: relative;
	margin-top: 6rem;
	padding-left: 8rem;
	padding-bottom: 2rem;
}

.h_con::after {
	content: '';
	position: absolute;
	top: 8rem;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #ebebeb;
}

.h_con .hcon_left h1 {
	color: #e4e5ea;
	font-family: var(--font-Outfit);
	font-size: 6rem;
	font-weight: var(--font-bd);
}

.h_con .hcon_right {
	margin-top: 8rem;
}

.h_con .hcon_right .hconr_his>li {
	margin-top: 1.6rem;
	padding-bottom: 1.6rem;
	/* border-bottom: 1px solid #d3d3d3;*/
}

.h_con .hcon_right .hconr_his>li:first-child {
	margin-top: 0;
}

.h_con .hcon_right .hconr_his>li:last-child {
	padding-bottom: 3rem;
	border-bottom: 0;
}

.h_con .hcon_right .hconr_his>li dl {
	display: flex;
	align-items: center;
	font-size: 2rem;
}

.h_con .hcon_right .hconr_his>li dl dt {
	flex-basis: 12rem;
	font-weight: var(--font-bd);
	font-family: var(--font-Outfit);
	font-size: var(--rem-25);
	color: var(--brand-color-main);
}

.h_con .hcon_right .hconr_his>li dl dd {
	flex-basis: calc(100% - 12rem);
	font-weight: var(--font-rg);
}

.h_con .hcon_right .hconr_his>li dl dd span {
	display: inline-block;
	width: 40px;
}


#con2 .h_pic {
	order: 2;
}

#con2 .h_con {
	order: 1;
	padding-left: 0;
	padding-right: 8rem;
	text-align: right;
}

#con2 .h_con .hcon_right .hconr_his>li dl {
	flex-direction: row-reverse;
}

#con2 .h_con .hcon_right .hconr_his>li dl dd span {
	float: inline-end;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {

	#con1,
	#con2 {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}

	#con1::before,
	#con2::before {
		left: 0;
	}

	#con2 {
		padding-top: 0;
	}

	/* 탭메뉴 */
	.tab_nav {
		margin-bottom: 5rem;
	}

	/* 연혁정보 */
	.h_con {
		margin-top: 4rem;
		padding-left: 4rem;
	}

	.h_con::after {
		top: 0;
	}

	.h_con .hcon_left {
		display: none;
	}

	.h_con .hcon_left h1 {
		font-size: 3.4rem;
	}

	.h_con .hcon_right {
		margin-top: 4rem;
		padding-bottom: 0;
	}


	#con2 .h_pic {
		order: 1;
	}

	#con2 .h_con {
		order: 2;
		padding-left: 4rem;
		padding-right: 0;
		text-align: left;
	}

	#con2 .h_con .hcon_right .hconr_his>li dl {
		flex-direction: row;
	}

	#con2 .h_con .hcon_right .hconr_his>li dl dd span {
		float: none;
	}
}

@media screen and (max-width:640px) {

	/* 연혁정보 */
	.h_con {
		padding-left: 2rem;
	}

	.h_con .hcon_right .hconr_his>li dl dt {
		flex-basis: 8rem;
		font-size: var(--rem-22);
	}

	.h_con .hcon_right .hconr_his>li dl dd {
		flex-basis: calc(100% - 8rem);
	}

	.h_con .hcon_right .hconr_his>li dl dd span {
		width: 24px;
	}

	#con2 .h_con {
		padding-left: 2rem;
	}

}

/* ==================================================
	회사소개 - 오시는 길
================================================== */
.loc_con {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/* 상단이미지 */
.loc_left {
	flex-basis: 45%;
	padding-right: 3%;
}

.loc_left img {
	width: 100%;
	border-radius: 2rem;
}

/* 주소정보 */
.loc_right>h1 {
	font-size: 2.8rem;
	font-weight: var(--font-sb);
	margin-bottom: 2.5rem;
}

.loc_right>ul>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.5rem;
}

.loc_right>ul>li:first-child {
	margin-top: 0;
}

.loc_right>ul>li .icon i {
	color: var(--color-white);
	font-size: 2.3rem;
}

.loc_right>ul>li .icon {
	width: 4rem;
	height: 4rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: var(--brand-color-main);
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.loc_right>ul>li b,
.loc_right>ul>li p {
	color: var(--color-black);
}

.loc_right>ul>li b {
	display: inline-block;
	font-size: 1.9rem;
	font-weight: var(--font-bd);
	margin: 0 2.5rem 0 1.5rem;
}

.loc_right>ul>li p {
	font-size: 1.7rem;
	line-height: 1.6;
	word-break: keep-all;
}

/* 지도 */
.loc_detail {
	width: 100%;
	max-width: var(--px-base);
	margin-right: auto;
	margin-left: auto;
	margin-top: 4rem;
}

/* 모바일CSS */
@media screen and (max-width: 800px) {
	.loc_con {
		display: block;
	}

	.loc_right {
		margin-top: 2.5rem;
	}
}

@media screen and (max-width: 640px) {

	/* 주소정보 */
	.loc_right>ul>li b {
		width: 6rem;
	}
}

/* ==================================================
	회사소개 - 홍보센터 - 카탈로그
================================================== */
.prsection {
	position: relative;
	width: 100%;
	padding-top: 5rem;
}

.prsection:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #eeeff0;
}

.prbox {
	position: relative;
	max-width: 115rem;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 5rem;
}

.prbox .img {
	width: 32rem;
}

.prbox .img img {
	width: 100%;
	border: 1px solid #c7bebe;
	-webkit-box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 15px 15px 20px 0px rgba(0, 0, 0, 0.2);
}

.prbox .txt {
	padding-left: 11rem;
	padding-top: 6rem;
	line-height: 1.5;
}

.prbox .txt .eng {
	position: relative;
	font-size: 2rem;
	color: #002C6A;
	font-weight: 500;
	margin-bottom: 1.5rem;
	padding-left: 4rem;
}

.prbox .txt .eng:before {
	content: "";
	display: block;
	width: 3rem;
	height: 0.3rem;
	background: #002C6A;
	position: absolute;
	left: 0;
	top: 1.1rem;
}

.prbox .txt h4 {
	font-size: 2.8rem;
	color: #282d39;
}

.prbox .txt p {
	font-size: 1.8rem;
	margin-top: 1rem;
	margin-bottom: 3.5rem;
}

.prbox .txt p span {
	display: block;
}

.btn_wrap {
	width: 100%;
}

.btn_wrap a {
	display: inline-block;
	font-size: 1.7rem;
	color: #fff;
	position: relative;
	background: var(--brand-color-sub);
	line-height: 5.6rem;
	text-align: center;
	margin-right: 2%;
	width: 49%;
	float: left;
}

.btn_wrap a:last-child {
	background: var(--brand-color-main) !important;
}

.btn_wrap a:last-child {
	margin-right: 0;
}

.btn_wrap a:after {
	content: "";
	display: inline-block;
	width: 1.9rem;
	height: 1.8rem;
	background: url("../images/icon/link_ico.png") no-repeat center;
	background-size: cover;
	margin: 0 0 -0.2rem 1rem;
}

.btn_wrap a:last-child:after {
	background-image: url("../images/icon/download_ico.png");
}

.btn_wrap a:before {
	content: "";
	display: block;
	width: 0%;
	height: 0.4rem;
	background: var(--color-dred);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: width 0.4s;
}

.btn_wrap a:last-child::before {
	background: #004680 !important;
}

.btn_wrap a:hover:before {
	width: 100%;
}

/* 모바일CSS */
@media screen and (min-width:901px) {
	.prbox {
		display: table;
		z-index: 1;
	}

	.prbox .img {
		display: table-cell;
		vertical-align: top;
	}

	.prbox .txt {
		display: table-cell;
		vertical-align: top;
	}
}

@media screen and (max-width:900px) {
	.prbox {
		padding-bottom: 0;
	}

	.prsection {
		padding-top: 0;
	}

	.prsection:after {
		display: none;
	}

	.prbox .img {
		width: 100%;
		max-width: 28rem;
		margin: 0 auto;
	}

	.prbox .img img {
		max-width: 28rem;
	}

	.prbox .txt {
		padding-left: 0;
		padding-top: 3rem;
	}
}

@media screen and (max-width:700px) {
	.prbox .txt h4 {
		font-size: 2.5rem;
	}

	.prbox .txt p {
		font-size: 1.7rem;
		margin-bottom: 2.5rem;
	}
}

@media screen and (max-width:640px) {
	.prsection {
		margin-bottom: 0;
	}

	.prbox .txt .eng {
		font-size: 1.8rem;
	}

	.prbox .txt h4 {
		font-size: 2.3rem;
		line-height: 1.1;
	}

	.prbox .txt p span {
		display: inline;
	}

	.btn_wrap a {
		float: none;
		width: 100%;
		margin-right: 0;
	}

	.btn_wrap a:last-child {
		margin-top: 1rem;
	}
}


/* ==================================================
	제품소개 - 정밀기계사업부
================================================== */
.cont_pro2 {
	margin-top: 4rem;
}

div.cont_prodetail {
	position: relative;
	box-sizing: border-box;
	line-height: 0;
	background: #f2f1f1;
	border: 1px solid #e0e0e0;
}

.cont_prodetail_con {
	position: relative;
}

.cont_prodetail_con>h1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 1.5rem 6rem;
	background: var(--brand-color-sub);
	color: var(--color-white);
	border-radius: 0 0 2rem 0;
	font-size: 2.2rem;
	line-height: 1;
}

.cont_prodetail_bg {
	position: relative;
}

.cont_prodetail_bg img {
	width: 100%;
}

.cont_prodetail_image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* K9 */
.k9_btn01 {
	left: 49%;
	top: 54%;
}

.k9_btn02 {
	left: 65%;
	top: 50%;
}

.k9_btn03 {
	left: 72%;
	top: 58%;
}

.k9_btn04 {
	left: 74%;
	top: 67%;
}

.k9_btn05 {
	left: 67%;
	top: 61%;
}

.k9_btn06 {
	left: 58%;
	top: 29%;
}

.k9_btn07 {
	left: 60%;
	top: 46%;
}

/* K10 */
.k10_btn01 {
	left: 2%;
	top: 71%;
}

.k10_btn02 {
	left: 15%;
	top: 70%;
}

.k10_btn03 {
	left: 8.6%;
	top: 24%;
}

.k10_btn04 {
	left: 30.5%;
	top: 50%;
}

/* K77 */
.k77_btn01 {
	left: 31%;
	top: 42%;
}

.k77_btn02 {
	left: 38%;
	top: 40%;
}

.k77_btn03 {
	left: 48%;
	top: 44%;
}

.k77_btn04 {
	left: 62%;
	top: 44%;
}

.k77_btn05 {
	left: 63%;
	top: 13%;
}

.k77_btn06 {
	left: 69%;
	top: 5%;
}

/*.k77_btn07 {
	left: 70%;
	top: 27%;
}*/

/* K56*/
.k56_btn01 {
	left: 47%;
	top: 63%;
}

.k56_btn02 {
    left: 40%;
    top: 37%;
}

.k56_btn03 {
	left: 35%;
	top: 57%;
}

.k56_btn04 {
	left: 30%;
	top: 40%;
}

.k56_btn05 {
	left: 25%;
	top: 19%;
}

.k56_btn06 {
	left: 18%;
	top: 35%;
}

/*.k56_btn07 {
	left: 18%;
	top: 30%;
} */

/* KM3 */
.km3_btn01 {
	left: 40%;
	top: 78%;
}

.km3_btn02 {
	left: 60%;
	top: 70%;
}

/* K2 */
.k2_btn01 {
	left: 45%;
	top: 52%;
}

.k2_btn02 {
	left: 53%;
	top: 39%;
}

.k2_btn03 {
	left: 62%;
	top: 34%;
}

.k2_btn04 {
	left: 67%;
	top: 40%;
}

/* K808 */
.k808_btn01 {
	left: 86%;
	top: 49%;
}

div.cont_prodetail>div.prodetail_textbox {
	width: 100%;
	padding: 3rem 2.5rem;
	display: none;
	text-align: center;
}

div.cont_prodetail>div.prodetail_textbox>ul {
	position: relative;
	font-size: 0px;
	background: var(--color-white);
	border-radius: 1rem;
	padding: 3rem 2rem;
}

div.cont_prodetail>div.prodetail_textbox>ul:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

div.cont_prodetail>div.prodetail_textbox>ul>li {
	display: inline-block;
	*display: inline;
	zoom: 1;
	z-index: 1;
	width: 25%;
	padding: 0 2.5rem;
	vertical-align: top;
}

.pro_title {
	position: relative;
	text-align: left;
}

.pro_tit {
	display: inline-block;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-black);
	border-left: 4px solid var(--brand-color-sub);
	padding-left: 1rem;
	line-height: 1;
}

.pro_image {
	margin-top: 1rem;
	text-align: left;
}

.pro_image img {
	width: 100%;
	max-width: 25rem;
}

/* 하단 마우스 클릭 */
.mouse_click {
	display: flex;
	align-items: center;
	font-size: 1.7rem;
	margin-top: 2rem;
}

.prodetail_btn2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	background: #7f7f7f;
	position: relative;
	border-radius: 50%;
	z-index: 1;
	cursor: pointer;
	margin-right: 0.5rem;
}

.prodetail_btn2>.pro_plus i {
	font-size: 1.7rem;
	font-weight: bold;
	color: var(--color-white);
}

/* 모바일CSS */
@media screen and (min-width:800px) {
	.prodetail_btn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 3.4rem;
		height: 3.4rem;
		background: #7f7f7f;
		position: relative;
		border-radius: 50%;
		z-index: 1;
		cursor: pointer;
	}

	.prodetail_btn:hover {
		background: var(--brand-color-main);
	}

	.prodetail_btn>.pro_plus i,
	.prodetail_btn>.pro_minus i {
		font-size: 1.8rem;
		font-weight: bold;
		line-height: 1;
		color: var(--color-white);
	}

	.prodetail_btn>.pro_minus i,
	.bt_on>.pro_plus i {
		display: none;
	}

	.bt_on>.pro_minus i {
		display: block;
	}

	.prodetail_btn .bg {
		position: absolute;
		left: 0%;
		top: 0%;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transform-origin: center;
		background: #7f7f7f;
		transition: .6s;
		border-radius: 50%;
		z-index: -1;
		opacity: 0;
	}

	.prodetail_btn:hover .bg,
	.prodetail_btn.bt_on:hover {
		background: var(--brand-color-main);
	}

	.prodetail_btn:before,
	.prodetail_btn:after {
		content: '';
		display: block;
		background: #7f7f7f;
		border-radius: 50%;
		width: 100%;
		height: 100%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.prodetail_btn:hover:before,
	.prodetail_btn:hover:after,
	.prodetail_btn.bt_on,
	.bt_on:before,
	.bt_on:after,
	.bt_on:hover:before,
	.bt_on:hover:after {
		background: var(--brand-color-main);
	}

	.prodetail_btn:before {
		z-index: -1;
		animation: scaleWave 1s infinite;
	}

	.prodetail_btn:after {
		z-index: -2;
		animation: scaleWave 1s 0.23s infinite;
	}

	@keyframes scaleWave {
		0% {
			width: 100%;
			height: 100%;
			opacity: 1;
		}

		50% {
			opacity: 0.5;
		}

		100% {
			width: calc(180/110*100%);
			height: calc(180/110*100%);
			opacity: 0;
		}
	}
}

@media screen and (max-width:900px) {
	.prodetail_btn {
		width: 2.8rem;
		height: 2.8rem;
	}

	div.cont_prodetail>div.prodetail_textbox>ul>li {
		width: 50%;
		padding: 2rem;
	}
}

@media screen and (max-width:799px) {

	/* K9 */
	.k9_btn01 {
		top: 54%;
	}

	.k9_btn02 {
		top: 55%;
	}

	.k9_btn03 {
		top: 68%;
	}

	.k9_btn04 {
		top: 81%;
	}

	.k9_btn05 {
		top: 81%;
	}

	.k9_btn06 {
		top: 53%;
	}

	.k9_btn07 {
		top: 75.5%;
	}

	/* K10 */
	.k10_btn01 {
		top: 71%;
	}

	.k10_btn02 {
		top: 76%;
	}
	
	.k10_btn03 {
		top: 34%;
	}

	.k10_btn04 {
		top: 66%;
	}

	/* K77 */
	.k77_btn01 {
		top: 46%;
	}

	.k77_btn02 {
		top: 44%;
	}

	.k77_btn03 {
		top: 52%;
	}

	.k77_btn04 {
		top: 60%;
	}

	.k77_btn05 {
		top: 34%;
	}

	.k77_btn06 {
		top: 30%;
	}

	/* K56*/
	.k56_btn01 {
		top: 65%;
	}
	
	.k56_btn02 {
		top: 42%;
	}
	
	.k56_btn03 {
		top: 62%;
	}
	
	.k56_btn04 {
		top: 53%;
	}
	
	.k56_btn05 {
		top: 38.5%;
	}
	
	.k56_btn06 {
		top: 64%;
	}
	
	.k56_btn07 {
		top: 60%;
	}

	/* K2 */
	.k2_btn01 {
		top: 54%;
	}
	
	.k2_btn02 {
		top: 43%;
	}
	
	.k2_btn03 {
		left: 62%;
		top: 44%;
	}

	.k2_btn04 {
		top: 56%;
	}

	.prodetail_btn {
		position: absolute;
		width: 2.5rem;
		height: 2.5rem;
		cursor: pointer;
		background: url('../images/product/prodetai_plus.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.prodetail_btn:hover {
		background: url('../images/product/prodetai_plus_on.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.bt_on,
	.bt_on:hover {
		background: url('../images/product/prodetai_minus_on.svg');
		background-repeat: no-repeat;
		background-size: contain;
	}

	.prodetail_btn>.pro_plus,
	.prodetail_btn>.pro_minus,
	.prodetail_btn .bg {
		display: none;
	}
}

@media screen and (max-width:640px) {
	.cont_prodetail_con>h1 {
		padding: 1.2rem 5rem;
		border-radius: 0 0 1.5rem 0;
		font-size: 2rem;
	}

	div.cont_prodetail>div.prodetail_textbox>ul>li {
		width: 100%;
		padding: 0;
	}

	.pro_image {
		text-align: center;
	}

	.pro_image img {
		max-width: 80%;
	}
}

/* ==================================================
	제품소개 - 시스템사업부 - 소개
================================================== */
#system_info {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

#system_info .sp_pop>a {
	display: block;
	background: var(--brand-color-main);
	border: 1px solid #c7c7c7;
}

#system_info .sp_pop>a img {
	width: 100%;
}

#system_info .sp_pop>a p {
	padding: 1.5rem 0.5rem;
	text-align: center;
	color: var(--color-white);
}

.sys_img {
	width: 100%;
	max-width: 60rem;
}

/* 테이블 사이즈 */
.sys_width01 {
	width: 15%;
}

.sys_width02 {
	width: 12%;
}

.sys_width03 {
	width: 23%;
}

/* 모바일CSS */
@media screen and (max-width:800px) {
	#system_info {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* ==================================================
	기술소개 - 생산경영 - 생산공정
================================================== */
.tchpro_con+.tchpro_con {
	margin-top: 6rem;
}

.process {
	margin-top: 50px;
	padding: 65px 0;
	background: #F0F0F0;
}

.prod-accordion {
	margin-top: 3.5rem;
}

.accordion-list>li .prod-img-cover {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 1.0;
	filter: Alpha(opacity=100);
	visibility: visible;
	background-color: #2C3056;
	background-color: rgba(44, 48, 86, 0.6);
	-webkit-transition: all 0.4s, opacity 0.6s;
	-moz-transition: all 0.4s, opacity 0.6s;
	-o-transition: all 0.4s, opacity 0.6s;
	-ms-transition: all 0.4s, opacity 0.6s;
	transition: all 0.4s, opacity 0.6s;
	z-index: 1;
}

.accordion-list>li:hover .prod-img-cover {
	background-color: #2C3056;
	background-color: rgba(44, 48, 86, 0.8);
	-webkit-transition: all 0.4s, opacity 0.6s;
	-moz-transition: all 0.4s, opacity 0.6s;
	-o-transition: all 0.4s, opacity 0.6s;
	-ms-transition: all 0.4s, opacity 0.6s;
	transition: all 0.4s, opacity 0.6s;
}

.accordion-list>li.active .prod-img-cover {
	opacity: 0;
	filter: Alpha(opacity=0);
	visibility: hidden;
}

/* PC배경 */
.manufacturing-list>li.accordion-item01 .accordion-inner {
	background: url('../images/technology/manufacturing01.jpg') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item01.active .accordion-inner {
	background: url('../images/technology/manufacturing01.jpg') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item02 .accordion-inner {
	background: url('../images/technology/manufacturing02.jpg') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item02.active .accordion-inner {
	background: url('../images/technology/manufacturing02.jpg') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item03 .accordion-inner {
	background: url('../images/technology/manufacturing03.jpg?v=0813') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item03.active .accordion-inner {
	background: url('../images/technology/manufacturing03.jpg?v=0813') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item04 .accordion-inner {
	background: url('../images/technology/manufacturing04.jpg?v=0711') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item04.active .accordion-inner {
	background: url('../images/technology/manufacturing04.jpg??v=0711') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item05 .accordion-inner {
	background: url('../images/technology/manufacturing05.jpg?v=0708') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item05.active .accordion-inner {
	background: url('../images/technology/manufacturing05.jpg?v=0708') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item06 .accordion-inner {
	background: url('../images/technology/manufacturing_test.jpg?v=0813a') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item06.active .accordion-inner {
	background: url('../images/technology/manufacturing_test.jpg?v=0813a') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item07 .accordion-inner {
	background: url('../images/technology/manufacturing06.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item07.active .accordion-inner {
	background: url('../images/technology/manufacturing06.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item08 .accordion-inner {
	background: url('../images/technology/manufacturing07.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item08.active .accordion-inner {
	background: url('../images/technology/manufacturing07.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item09 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item09.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.manufacturing-list>li.accordion-item10 .accordion-inner {
	background: url('../images/technology/manufacturing10.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.manufacturing-list>li.accordion-item10.active .accordion-inner {
	background: url('../images/technology/manufacturing10.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item01 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item01.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item02 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item02.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-listt>li.accordion-item03 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item03.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item04 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item04.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item05 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item05.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item06 .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item06.active .accordion-inner {
	background: #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.assembly-list>li.accordion-item07 .accordion-inner {
	background: url('../images/technology/manufacturing10.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.assembly-list>li.accordion-item07.active .accordion-inner {
	background: url('../images/technology/manufacturing10.jpg?v=0517') #eff0f6;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
}

.accordion-list .accordion-item {
	position: relative;
	overflow: hidden;
}

.accordion-list .accordion-item .accordion-inner {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: 0 2px;
	cursor: pointer;
}

.accordion-list .accordion-item.active .accordion-inner {
	cursor: default
}

/* 아코디언  :: 타이틀 및 내용 */
.accordion-item .accordion-inner .accordion-tit {
	position: absolute;
	top: 60px;
	left: 50%;
	color: var(--color-white);
	font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
	z-index: 3;
	opacity: 1.0;
	filter: Alpha(opacity=100);
	transition: all 0.3s;
	transform: translateX(-50%);
	writing-mode: tb-rl
}

.accordion-item .accordion-inner .accordion-tit span.acc_pc {
	margin-bottom: 10px;
}

.accordion-item .accordion-inner .accordion-tit span.acc_mobile {
	display: none;
}

.accordion-item .accordion-inner .accordion-tit em {
	display: inline-block;
	transform: rotate(-90deg);
	height: 24px
}

.accordion-item .accordion-info-box {
	position: absolute;
	left: 0;
	right: 0;
	top: 0px;
}

.accordion-item .accordion-info-box dl {
	position: relative;
	z-index: 1;
	padding: 6% 5.5% 0;
	opacity: 0;
	filter: Alpha(opacity=0);
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	-ms-transition-delay: 0s;
	transition-delay: 0s;
	z-index: 1;
}

.accordion-item .accordion-info-box dl dt {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #222;
	transform: skew(-0.03deg);
}

.accordion-item .accordion-info-box dl dt>span.acc_num {
	font-size: 2.6rem;
	font-weight: 600;
	color: #575757;
	padding-right: 10px;
}

.accordion-item .accordion-info-box dl dt>span.acc_dtstxt {
	font-size: 2rem;
	font-weight: 500;
	color: #333;
}

.accordion-item .accordion-info-box dl .accordion-info-txt {
	font-size: 1.8rem;
	color: #333;
	line-height: 1.6;
	word-break: keep-all;
	white-space: normal;
	transform: skew(-0.03deg);
}

.accordion-item .accordion-info-box dl .accordion-info-txt .txt {
	display: block;
	word-break: keep-all;
}

/* 아코디언 :: 타이틀 및 내용 Active */
.accordion-item.active .accordion-inner:after {
	opacity: 0;
	filter: Alpha(opacity=0);
}

.accordion-item.active .accordion-inner .accordion-tit {
	opacity: 0;
	filter: Alpha(opacity=0);
	transition: all 0s;
}

.accordion-item.active .accordion-inner dl {
	opacity: 1.0;
	filter: Alpha(opacity=100);
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	-o-transition: all 0.3s 0.2s;
	-ms-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* 특수공정 */

.tchpro_con .txtarea {
	margin-bottom: 3rem;
	font-size: 1.8rem;
	line-height: 1.6;
}

.tchpro_con .txtarea span {
	display: block;
}

.tchpro_con .txtarea h2 {
	margin-bottom: 1rem;
}

.sp_process {
	display: grid;
	-ms-grid-columns: (1fr)[5];
	grid-template-columns: repeat(5, 1fr);
	gap: 2.5rem;
}

.sp_process>li {
	background: #f0f0f0;
	border-radius: 2rem;
	padding: 7rem 2rem 5rem;
	text-align: center;
}

.sp_process>li object {
	width: 6rem;
	height: auto;
	margin: 0 auto;
	margin-bottom: 2rem;
}

.sp_process>li h3 {
	font-size: 2.3rem;
	margin-bottom: 1rem;
}

.sp_process>li p {
	font-size: 1.75rem;
	letter-spacing: -0.02rem;
	line-height: 1.4;
	color: (--brand-color-main);
	word-break: keep-all;
}

.sp_process>li p span {
	display: block;
}

/* 모바일CSS */
@media screen and (max-width: 1024px) {
	.tchpro_con .txtarea span {
		display: inline;
	}

	.sp_process {
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

@media screen and (max-width: 640px) {
	.sp_process {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media screen and (max-width: 449px) {
	.sp_process {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
		gap: 2rem;
	}

	.sp_process li {
		display: grid;
		-ms-grid-columns: 30% 70%;
		grid-template-columns: 30% 70%;
		padding: 2rem;
		align-items: center;
	}

	.sp_process>li object {
		width: 5rem;
	}

	.sp_process>li p {
		text-align: left;
	}
}

/* 유지보수 */
.maintenance_con {
	margin-top: 3.5rem;
}

.maintenance_con_grid {
	/*display: grid;*/
	grid-template-columns: 40% 60%;
}

.maintenance_con>ul.img_con {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.maintenance_con>ul.img_con>li {
	position: relative;
	line-height: 0;
	border: 1px solid #e4e4e4;
}

.maintenance_con>ul.img_con>li:nth-child(2n-1):after {
	position: absolute;
	right: -3.5rem;
	top: calc(50% - 3.5rem);
	display: block;
	content: '';
	width: 4rem;
	height: 4rem;
	border-radius: 4rem;
	-moz-border-radius: 4rem;
	background: url('../images/technology/arrow-right.svg') var(--brand-color-sub)50% 50% no-repeat;
	background-size: 2rem auto;
	z-index: 10;
}

.maintenance_con>ul.img_con>li img {
	width: 100%;
}

.maintenance_con>ul.img_con>li p {
	background: #eeeff2;
	padding: 2rem 1rem;
	line-height: 1;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}

.maintenance_con>ul.txt>li {
	font-size: 1.8rem;
	margin-bottom: 20px;
	background: url('../images//technology/check-mark.svg') left center no-repeat;
	background-size: 2rem 2rem;
	padding-left: 2.5rem;
}



/* 모바일CSS */
@media screen and (max-width: 1400px) {
	.accordion-list .accordion-item .accordion-inner {
		background-size: cover !important
	}

	.accordion-item .accordion-info-box dl .accordion-info-txt {
		font-size: 17px;
		line-height: 1.5;
	}
}

@media screen and (min-width: 1024px) {
	.accordion-list-box .accordion-list {
		display: table;
		width: 100%;
		height: 500px;
		white-space: nowrap;
		overflow: hidden;
		font-size: 0;
	}

	.accordion-list .accordion-item {
		width: 144px;
		display: table-cell;
		height: 100%;
		white-space: nowrap;
	}

	/* 접힌 li의 width*/
	.accordion-list .accordion-item .accordion-m-img {
		display: none;
	}

}

@media screen and (max-width:1200px) {

	/* 아코디언  :: 타이틀 및 내용 */
	.accordion-item .accordion-inner .accordion-tit {
		font-size: 23px;
	}

	.accordion-item .accordion-info-box dl dt {
		font-size: 26px;
		margin-bottom: 12px;
	}

	.maintenance_con>ul.img_con {
		-ms-grid-columns: (2fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:1023px) {
	.accordion-list-box .accordion-list {
		margin: 0 auto;
	}

	.accordion-list .accordion-item {
		display: block;
		width: 100% !important;
		height: auto;
		margin-top: 10px;
		padding-left: 0;
	}

	.accordion-list .accordion-item:first-child {
		margin-top: 0
	}

	.accordion-list .accordion-item .accordion-inner {
		background-image: none;
		position: relative
	}

	.accordion-list .accordion-item .accordion-m-img {
		height: 0;
		padding-top: 110px;
		background-size: cover !important;
		-webkit-transition: padding 0.4s;
		-moz-transition: padding 0.4s;
		-o-transition: padding 0.4s;
		-ms-transition: padding 0.4s;
		transition: padding 0.4s;
	}

	.accordion-list .accordion-item.active .accordion-inner {
		cursor: default;
	}

	.accordion-list .accordion-item.active .accordion-m-img {
		padding-top: 55%
	}

	/* 모바일배경 */
	.manufacturing-list>li.accordion-item01 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing01.jpg') 50% 75% no-repeat #eff0f6;
	}

	.manufacturing-list>li.accordion-item02 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing02.jpg') 50% 75% no-repeat #eff0f6;
	}

	.manufacturing-list>li.accordion-item03 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing03.jpg?v=0813') no-repeat 50% 75% #eff0f6;
	}

	.manufacturing-list>li.accordion-item04 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing04.jpg') no-repeat 50% 75% #eff0f6;
	}

	.manufacturing-list>li.accordion-item05 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing05.jpg?v=0708') no-repeat 50% 75% #eff0f6;
	}

	.manufacturing-list>li.accordion-item06 .accordion-inner .accordion-m-img {}

	.manufacturing-list>li.accordion-item07 .accordion-inner .accordion-m-img {
		background: url('../images/technology/manufacturing06.jpg?v=0517') no-repeat 50% 75% #eff0f6;
	}

	/*
	.manufacturing-list>li.accordion-item08 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.manufacturing-list>li.accordion-item09 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.manufacturing-list>li.accordion-item10 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item01 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item02 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item03 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item04 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item05 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item06 .accordion-inner .accordion-m-img {
		background: #eff0f6;
	}

	.accordion-list>li.accordion-item07 .accordion-inner .accordion-m-img {
		background: url('../images/technology/assembly07.jpg?v=0517') no-repeat 50% 75% #eff0f6;
	}
*/
	.accordion-item .accordion-inner .accordion-tit {
		left: 5%;
		writing-mode: rl-tb;
		transform: translateY(-50%);
		top: 50%
	}

	.accordion-item .accordion-inner .accordion-tit em {
		display: contents;
		transform: inherit;
		padding: 0;
		height: auto
	}

	/* 아코디언 :: 타이틀 및 내용 */
	.accordion-item .accordion-info-box:before {
		height: 100%;
	}

	.accordion-item .accordion-inner .accordion-tit span.acc_pc {
		display: none;
	}

	.accordion-item .accordion-inner .accordion-tit span.acc_mobile {
		display: inline-block;
		padding-right: 5px;
	}

	.accordion-item .accordion-info-box dl {
		padding: 6%
	}

	.accordion-item .accordion-inner .accordion-tit {
		font-size: 22px;
	}

	.accordion-item .accordion-info-box dl dt {
		font-size: 26px;
	}

	.accordion-item .accordion-info-box dl dt>span {
		font-size: 20px;
		padding-right: 5px;
	}
}

@media screen and (max-width: 800px) {
	.accordion-list .accordion-item .accordion-m-img {
		padding-top: 80px;
	}

	.accordion-item .accordion-inner .accordion-tit {
		font-size: 20px;
	}

	/* 유지보수 */
	.maintenance_con_grid {
		display: block;
	}

}

@media screen and (max-width:640px) {

	/* 아코디언  :: 타이틀 및 내용 */
	.accordion-item .accordion-inner .accordion-tit {
		font-size: 18px;
	}

	.accordion-item .accordion-info-box dl dt {
		font-size: 20px;
	}

	.accordion-item .accordion-info-box dl .accordion-info-txt {
		font-size: 17px;
	}
}

@media screen and (max-width:450px) {
	.accordion-list .accordion-item .accordion-m-img {
		background-size: auto !important
	}

	/* 아코디언 :: 타이틀 및 내용 */
	.accordion-list .accordion-item.active .accordion-m-img {
		padding-top: 85%
	}

	.accordion-item .accordion-inner .accordion-tit {
		font-size: 16px;
	}

	.accordion-item .accordion-info-box dl .accordion-info-txt {
		font-size: 15px;
	}
}

/* ==================================================
	기술소개 - 생산경영 - 생산설비
================================================== */
.prod_img {
	margin-bottom: 2rem;
}

.prod_img img {
	width: 100%;
	border-radius: 6rem 0;
}

.prod_img2>ul {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.prod_img2>ul>li img {
	width: 100%;
	border: 1px solid #ededed;
}

/* 영상 */
.main-img {
	position: relative;
	z-index: 2;
	border-radius: 2rem;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 50rem;
	border: 1px solid #dfdfdf;
	box-shadow: 1.5rem 2rem 3rem 0 rgba(0, 0, 0, 0.1);
}

.main-img video {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

/* ==================================================
	기술소개 - 품질경영 - 품질보증
================================================== */
.guarantee_sec {
	position: relative;
}

.guarantee_sec>ul {
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

.guarantee_sec>ul>li {
	line-height: 0;
	border: 1px solid #e4e4e4;
}

.guarantee_sec>ul>li img {
	width: 100%;
}

.guarantee_sec>ul>li p {
	background: #eeeff2;
	padding: 2rem 1rem;
	line-height: 1;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}

.quality_certi_sys {
	width: 100%;
	padding: 8rem 0;
	background: #f7f7f7;
	margin-top: 5rem;
}

.quality_sect {
	position: relative;
	margin-top: 3rem;
}

.quality_sect p {
	line-height: 1.6;
}

.quality_sect ul.quality_sys_list {
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	margin-top: 5rem;
}

.quality_sect ul.quality_sys_list>li {
	text-align: center;
	border-right: solid 1px #ddd;
	padding: 1rem 0;
}

.quality_sect ul.quality_sys_list li:last-child {
	border-right: none;
}

.quality_sect ul.quality_sys_list li object {
	width: 7rem;
	height: 7rem;
	margin-bottom: 3rem;
}

.quality_sect ul.quality_sys_list h3 {
	font-size: 2.5rem;
	color: var(--brand-color-sub);
	margin-bottom: 1.5rem;
}

.quality_sect ul.quality_sys_list ul>li {
	margin-bottom: 1rem;
}

@media screen and (max-width:1200px) {
	.guarantee_sec>ul {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}

	.guarantee_sec>ul>li>p>span {
		display: none;
	}

	.quality_sect ul.quality_sys_list {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.quality_sect ul.quality_sys_list>li {
		padding: 5rem 3rem;
	}

	.quality_sect ul.quality_sys_list>li:nth-child(2) {
		border-right: 0;
	}

	.quality_sect ul.quality_sys_list>li:nth-child(n+3) {

		border-top: 1px solid #ddd;
	}

	.quality_certi_sys {
		padding: 5rem 0;
	}


}



/* ==================================================
	기술소개 - 연구개발 - 기술연구소
================================================== */
/*상단 설명 높이 조정*/
.section_top .txtarea.rnd_txt {
	height: 29rem;
}


/* R&D 조직도 */
.rnd_orgimg {
	margin-top: 2.5rem;
	padding: 3rem 0;
	border: 1px solid #d5d5d5;
}

.rnd_orgimg img {
	width: 100%;
}

/* R&D 역량 - 리스트 */
.rnd_ability {
	width: 100%;
	padding: 8rem 0;
	margin-top: 6rem;
	background: #f7f7f7;
}

.rnd_abcon {
	margin-top: 3.5rem;
}

#rnd_abinfo {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
}

a.dTbl {
	display: block;
	background: url('../images/technology/rnd_plus.png')#fff;
	background-repeat: no-repeat;
	background-position: right top;
	border: 1px solid #e5e5e5;
	width: 100%;
	padding: 5rem 2rem;
	text-align: center;
}

a.dTbl:hover {
	border: 1px solid var(--brand-color-sub);
	box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.15);
	transition: 0.3s;
}

a.dTbl>.icon_box {
	width: 100%;
	font-size: 0;
}

a.dTbl>.icon_box .icon_box_inner span {
	display: block;
	padding-bottom: 15px;
}

a.dTbl>.icon_box .icon_box_inner h1 {
	margin-top: 1rem;
	font-size: 2.2rem;
	line-height: 1;
}

a.dTbl>.icon_box .icon_box_inner span img {
	max-width: 9rem;
}

a.dTbl>p {
	margin-top: 1rem;
	font-size: 1.8rem;
	line-height: 1;
}

/* R&D 역량 - 상세 */
.rbicon .dot_title2 {
	margin-bottom: 2.5rem;
}

.rnd_twocon {
	display: flex;
	align-items: center;
	text-align: left;
	padding: 2.5rem 0;
}

.rnd_twocon_left {
	flex-basis: 20%;
}

.rnd_twocon_right {
	flex-basis: 80%;
	border-left: 1px solid #d9d9d9;
	padding-left: 2.5rem;
}

.rndbot_content {
	margin-top: 4rem;
	border: 1px solid #d9d9d9;
	text-align: center;
}

.rnd_image img {
	width: 100%;
}

.rndbot_content p {
	padding: 1.5rem 0;
	background: #F2F2F2;
	color: #030303;
	border-top: 1px solid #d9d9d9;
}

/* 모바일CSS */
@media screen and (max-width:640px) {

	/* R&D 역량 - 리스트 */
	#rnd_abinfo {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}

	/* R&D 역량 - 상세 */
	.rnd_twocon {
		display: block;
	}

	.rnd_twocon_right {
		border-left: 0;
		padding-left: 0;
		margin-top: 1.5rem;
	}
}

/* ==================================================
	지속가능 경영  - 환경 경영
================================================== */


.enviro_top.section_top {}

.enviro_top.section_top .txtarea {
	height: 25rem;
}

ul.enviro_cont {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	-ms-grid-columns: (1fr)[2];
	gap: 3rem;
}

.enviro_cont li {
	border-radius: 0 50rem 50rem 0;
	-moz-border-radius: 0 50rem 50rem 0;
}

.enviro_cont li:nth-child(1) {
	background: url('../images/management/environmenta01.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li:nth-child(2) {
	background: url('../images/management/environmenta02.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li:nth-child(3) {
	background: url('../images/management/environmenta03.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li:nth-child(4) {
	background: url('../images/management/environmenta04.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li:nth-child(5) {
	background: url('../images/management/environmenta05.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li:nth-child(6) {
	background: url('../images/management/environmenta06.png?v=0812a') right center #eeeef0 no-repeat;
	background-size: 35rem auto;
}

.enviro_cont li>div.txt {
	font-size: 1.8rem;
	line-height: 1.6;
	padding: 4rem 25rem 4rem 5rem;
	word-break: keep-all;
}


.enviro_cont li>div>h3 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

/* 모바일CSS */
@media screen and (max-width:1200px) {

	.enviro_cont li:nth-child(1),
	.enviro_cont li:nth-child(2),
	.enviro_cont li:nth-child(3),
	.enviro_cont li:nth-child(4),
	.enviro_cont li:nth-child(5),
	.enviro_cont li:nth-child(6) {
		background-size: auto 100%;
	}

	.enviro_cont li>div.txt {
		padding-right: 35rem;
	}
}

@media screen and (max-width:1100px) {

	.enviro_top.section_top .txtarea {
		height: auto;
	}


	ul.enviro_cont {
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-columns: (1fr)[2];
	}

	.enviro_cont li {
		border-radius: 0 0 5rem 5rem;
		-moz-border-radius: 0 0 5rem 5rem;
	}

	.enviro_cont li:nth-child(1) {
		background: url('../images/management/mo_environmenta01.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li:nth-child(2) {
		background: url('../images/management/mo_environmenta02.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li:nth-child(3) {
		background: url('../images/management/mo_environmenta03.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li:nth-child(4) {
		background: url('../images/management/mo_environmenta04.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li:nth-child(5) {
		background: url('../images/management/mo_environmenta05.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li:nth-child(6) {
		background: url('../images/management/mo_environmenta06.png?v=0812a') center bottom #eeeef0 no-repeat;
		background-size: 100%;
	}

	.enviro_cont li>div.txt {
		padding: 4rem 4rem 30rem;
	}
}

@media screen and (max-width:650px) {

	ul.enviro_cont {
		grid-template-columns: repeat(1, 1fr);
		-ms-grid-columns: (1fr)[1];
	}

	.enviro_cont li>div.txt {
		padding-bottom: 50rem;
	}
}

@media screen and (max-width:450px) {
	.enviro_cont li>div.txt {
		padding-bottom: 30rem;
	}
}

/* ==================================================
	지속가능 경영  - 안전보건경영
================================================== */
div.saftey_letter {
	background: url('../images/management/safety_bg.png') bottom right #f7f7f7 no-repeat;
	background-size: 1400px auto;
	padding: 10rem;
	border-radius: 2rem;
	-moz-border-radius: 2rem;
}

div.saftey_letter ul {
	width: 70%;
	margin: 0 auto;
}

div.saftey_letter ul li {
	position: relative;
	font-size: 2rem;
	line-height: 1.6;
	padding-left: 4rem;
	margin-bottom: 3rem;
	word-break: keep-all;
}

div.saftey_letter ul li>span {
	display: block;
	position: absolute;
	top: 0;
	left: -4rem;
	font-size: 3rem;
	font-family: var(--font-Outfit);
	font-weight: var(--font-bd);
	color: var(--brand-color-sub);
}


div.saftey_letter ul li>em {
	display: block;
}


div.saftey_letter div.signture {
	text-align: right;
	font-size: 2rem;
	font-weight: var(--font-md);
}

div.saftey_letter div.signture>span {
	font-size: 3.5rem;
	padding-left: 3rem;
	font-weight: var(--font-bd);
}


div.saftey_letter div.signture img {
	height: 5rem;
	width: auto;
	margin-left: 1rem;
}

.safety_pic {
	width: 100%;
	padding: 8rem 0;
	background: #f7f7f7;
	margin-top: 5rem;
}

.safety_pic ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5rem;
}

.safety_pic ul li img {
	width: 100%;
}

.safety_pic ul li p {
	padding: 2rem 1rem 0;
	line-height: 1.3;
	font-size: 2rem;
	font-weight: var(--font-md);
	text-align: center;
}

.safety_pic ul li p span.line01 {
	display: block;
}

@media screen and (max-width:1100px) {
	div.saftey_letter {
		background-size: 700px auto;
		padding: 5rem;
	}

	div.saftey_letter ul {
		width: 100%;
	}

	div.saftey_letter ul li>span {
		left: -2rem;
		font-size: 2rem;
	}

	div.saftey_letter div.signture img {
		margin-top: 2.5rem;
	}

	.safety_pic {
		padding: 5rem 0;
	}

	.safety_pic ul li p span.line01,
	.safety_pic ul li p span {
		display: none;
	}
}

@media screen and (max-width:840px) {

	div.saftey_letter ul li>em {
		display: inline;
	}
}

/* ==================================================
	지속가능 경영  - 비즈니스 연속성
================================================== */
.biz_txt span {
	display: block;
}

.business_sec01 {
	position: relative;
}

.business_sec01 .cont {
	margin-bottom: 5rem;
}

.business_sec01 .cont .textarea {
	margin-bottom: 5rem;
}

.business_sec01 .cont h3 {
	margin-bottom: 3rem;
}

.business_sec01 .cont>.bcp_tit h4 {
	display: inline;
	font-weight: var(--font-md);
	font-size: 2.5rem;
	color: #868686;
	padding-left: 1rem;
}

.business_sec01 .cont>.bcp_tit {
	margin-bottom: 3rem;
}

.business_sec01 .cont>.bcp_tit>h3,
.business_sec01 .cont>.bcp_tit>h4 {
	display: inline;
}


.business_sec01 .cont p {
	font-size: 1.8rem;
	line-height: 1.6;
	word-break: keep-all;
}

.business_sec01 .cont p span {
	display: block;
}

.business_sec01 .cont object {
	margin: 0 auto;
}

.business_sec01 .cont>ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-ms-grid-columns: (1fr)[3];
	gap: 2rem;
}

.business_sec01 .cont>ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	background: #f3f2f2;
	padding: 35px 25px;
	border-radius: 25px;
}

.business_sec01 .cont>ul li .icon {
	background: linear-gradient(45deg, #2c3056, #4d549b);
	width: 105px;
	height: 105px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	padding: 20px;
	margin-bottom: 2rem;
	display: flex;
}

.business_sec01 .cont>ul li .icon object {
	width: 100%;
}

.business_sec01 .cont>ul li h4 {
	font-size: 2.5rem;
	text-align: center;
}

.business_sec01 .cont>ul li p {
	text-align: center;
	word-break: keep-all;
}

.business_sec01 .cont>ul li p span {
	display: block;
}

.busi_bg {
	/*background: url('../images/management/buis_bg.jpg') 50% 50% no-repeat;*/
	background-size: cover;
}

.busi_bg .cont {
	position: relative;
	margin-bottom: 10rem;
	border: 1px solid #9cbefd;
	background: #ffffff;
	padding: 2rem 3rem;
	border-radius: 2rem;
	-moz-border-radius: 2rem;
}

.busi_bg .cont:last-child {
	margin-bottom: 0;
}

.busi_bg .cont h3 {
	text-align: center;
	position: relative;
	font-size: 2.5rem;
	font-weight: var(--font-bd);
	top: -4rem;
	background: #2c3056;
	color: #ffffff;
	display: inline-block;
	width: 400px;
	padding: 1.5rem;
	left: calc(50% - 200px);
	border-radius: 3rem;
	-moz-border-radius: 3rem;
}

.bcq_tit {
	font-size: 3.5rem;
	line-height: 1.6;
	word-break: keep-all;
	text-align: center;
	font-weight: var(--font-bd);
	margin-bottom: 7rem;
}

.bcq_tit span {
	color: #4d549b;
}

ul.bcp_list {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	-ms-grid-columns: (1fr)[8];
	gap: 2rem;
}

ul.bcp_list li {
	display: flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--brand-color-main);
	border-radius: 2rem;
	-moz-border-radius: 2rem;
	background: #ffffffa8;
}

ul.bcp_list li div {
	width: 100px;
	padding: 30px 10px;
}

ul.bcp_list li object {
	width: 100%;
}

ul.bcp_list li p {
	width: 100%;
	padding: 10px;
	background: var(--brand-color-main);
	color: white;
	margin: 0;
}

ul.bcp_process {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	-ms-grid-columns: (1fr)[7];
	gap: 7rem;
}

ul.bcp_process li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(45deg, #2c3056, #4d549b);
	border-radius: 2rem;
	-moz-border-radius: 2rem;
}

ul.bcp_process li:last-child {
	justify-content: center;
	background: #ffffff;
	border: 3px solid #4d549b;
	font-weight: var(--font-bd);
	font-size: 2rem;
	color: #2C3056;
}

ul.bcp_process li::after {
	position: absolute;
	content: '';
	background: url('../images/management/arrow.svg') 100% 0 no-repeat;
	background-size: auto 16px;
	top: calc(50% - 8px);
	left: 100%;
	width: 7rem;
	height: 16px;
}

ul.bcp_process li:last-child:after {
	display: none;
}

ul.bcp_process li div.num {
	position: absolute;
	top: -1rem;
	left: -1rem;
	background: #fff;
	border: 1px solid #4d549b;
	padding: 0.5rem 1.5rem;
	border-radius: 2rem;
	-moz-border-radius: 2rem;
	text-align: center;
	font-size: 1.5rem;
}


ul.bcp_process li div.num span {
	display: block;
	font-size: 2rem;
	font-weight: var(--font-bd);
	color: #2C3056;
}

ul.bcp_process li div.icon {
	width: 6rem;
	padding: 4rem 0 0;
}

ul.bcp_process li div.icon object {
	width: 100%;
}

ul.bcp_process li p {
	font-weight: var(--font-bd);
	color: #fff;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	word-break: keep-all;
}

div.arrow {
	width: 200px;
	height: 170px;
	background: url('../images/management/biz_arrow.svg') 100% 100% no-repeat;
	background-size: 100% 100%;
	margin: -15rem auto 0rem;
}

/*애니메이션*/

.business_sec01 div.cont>ul li :nth-child(1) {
	transition: all 1.3s 0.3s;
}

.business_sec01 div.cont>ul li :nth-child(2) {
	transition: all 1.3s 0.5s;
}

.business_sec01 div.cont>ul li :nth-child(3) {
	transition: all 1.3s 0.7s;
}

.busi_bg div.cont:nth-child(1) {
	transition: all 1.3s 0.3s;
}

.busi_bg div.cont:nth-child(2) {
	transition: all 1.3s 0.5s;
}


@media screen and (max-width:1100px) {

	.business_sec01 .cont>.bcp_tit>h3 {
		display: block;
		margin-bottom: 1rem;
	}

	.business_sec01 .cont>.bcp_tit>h4 {
		display: block;
		padding: 0;
	}



	ul.bcp_list {
		grid-template-columns: repeat(4, 1fr);
		-ms-grid-columns: (1fr)[4];
	}

	ul.bcp_list li div {
		width: 80px;
	}

	ul.bcp_process {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		-ms-grid-columns: (1fr)[4];
		gap: 3rem 7rem;
	}

	ul.bcp_process li:nth-child(4n)::after {
		display: none;
	}

	div.arrow {
		width: 180px;
		height: 100px;
		margin: -10rem auto 3rem;
	}
}

@media screen and (max-width:950px) {

	.biz_txt span {
		display: inline;
	}

	.business_sec01 .cont>ul {
		grid-template-columns: repeat(1, 1fr);
		-ms-grid-columns: (1fr)[1];
	}

	.business_sec01 .cont>ul li .icon {
		width: 10rem;
		height: 10rem;
	}



}

@media screen and (max-width:640px) {
	.business_sec01 .cont object.web {
		display: none;
	}

	.business_sec01 .cont object.mobile {
		display: block;
	}

	.busi_bg .cont h3 {
		font-size: 2.5rem;
		top: -2rem;
		width: 70vw;
		padding: 1rem;
		left: calc(50% - 35vw);
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	ul.bcp_list {
		grid-template-columns: repeat(3, 1fr);
		-ms-grid-columns: (1fr)[3];
	}

	ul.bcp_list li div {
		width: 10rem;
		padding: 2rem;
	}

	ul.bcp_process {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		-ms-grid-columns: (1fr)[3];
		gap: 3rem 3rem;
	}

	ul.bcp_process li::after {
		width: 3rem;
		height: 10px;
		background-size: auto 10px;
	}

	ul.bcp_process li:nth-child(3n)::after {
		display: none;
	}

	ul.bcp_process li:nth-child(4n)::after {
		display: block;
	}

	ul.bcp_process li:last-child {
		height: 100px;
	}

}


/* ==================================================
	인재채용 - 인재상
================================================== */
.talent_text {
	text-align: center;
}

.talent_text .tl_text>h2 {
	font-size: 3rem;
	font-weight: 500;
	color: #000;
}

.talent_text .tl_text>p {
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 400;
	color: #333;
	margin-top: 15px;
}

.talent_text .tl_text>p span {
	display: block;
}

/* 하단내용 */
.talent_list_wrap {
	margin-top: 60px
}

.talent_list {
	text-align: center;
}

.talent_list>li {
	display: inline-block;
	width: 29.2%;
	margin: 0 1.4%;
	text-align: center;
	background: #f3f2f2;
	padding: 35px 25px;
	border-radius: 25px;
}

.talent_list>li .talent_list_tit {
	border-bottom: 1px solid #d8d8d8
}

.talent_list>li .talent_list_tit p {
	display: table;
	width: 100%;
	height: 80px;
	font-weight: 500;
	font-size: 2.8rem;
	color: #000;
	line-height: 1.4;
	word-break: keep-all
}

.talent_list>li .talent_list_tit p strong {
	display: table-cell;
	vertical-align: middle
}

.talent_list>li .talent_list_tit p strong span {
	display: block;
}

.talent_list>li .talent_list_explain p {
	display: table;
	width: 100%;
	height: 120px;
	padding-top: 8%;
	font-weight: 400;
	font-size: 2rem;
	color: #585858;
	line-height: 1.6;
	word-break: keep-all
}

.talent_list>li .talent_list_explain p span {
	display: table-cell;
	vertical-align: top
}

/* 애니메이션 */
.talent_text>img {
	opacity: 0;
	transform: translateY(50px);
	-webkit-transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all 0.8s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.talent_text.active>img {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.talent_list>li {
	opacity: 0;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
}

.talent_list.active>li {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.talent_list.active>li:nth-child(1) {
	transition: all 1.3s 0.3s;
}

.talent_list.active>li:nth-child(2) {
	transition: all 1.3s 0.7s;
}

.talent_list.active>li:nth-child(3) {
	transition: all 1.3s 1s;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.talent_text .tl_text>h2 {
		font-size: 25px;
	}

	.talent_text .tl_text>p {
		/*font-size: 19px;*/
	}

	/* 하단내용 */
	.talent_list>li .talent_list_explain p span br {
		display: none
	}

	.talent_list_wrap {
		margin-top: 35px;
	}

	.talent_list {
		margin: 0 -1.4% -5%
	}

	.talent_list>li {
		width: 46.5%;
		margin: 0 1.4% 4%;
		padding: 30px 20px;
		border-radius: 20px;
	}

	.talent_list>li .talent_list_tit .talent_list_icon {
		display: inline-block;
	}

	.talent_list>li .talent_list_tit .talent_list_icon img {
		max-width: 70%
	}

	.talent_list>li .talent_list_tit p {
		font-size: 20px;
		height: 86px;
	}

	.talent_list>li .talent_list_explain p {
		/*font-size: 18px;*/
		height: 85px;
		padding-top: 0
	}

	.talent_list>li .talent_list_explain p span {
		vertical-align: middle
	}
}

@media screen and (max-width:640px) {
	.talent_text .tl_text>h2 {
		font-size: 22px;
	}

	.talent_text .tl_text>p {
		/*font-size: 17px;*/
	}

	.talent_text .tl_text>p span {
		display: inline;
	}

	/* 하단내용 */
	.talent_list {
		margin: 0 0 -25px
	}

	.talent_list>li {
		width: 100%;
		margin: 0 0 25px;
		padding: 25px 15px;
		border-radius: 15px;
	}

	.talent_list>li .talent_list_tit p,
	.talent_list>li .talent_list_explain p {
		height: auto;
		padding: 15px 0
	}

	.talent_list>li .talent_list_tit p strong span {
		display: inline;
	}
}

@media screen and (max-width:450px) {
	.talent_text .tl_text>h2 {
		font-size: 18px;
	}

	.talent_text .tl_text>p {
		/*font-size: 16px;*/
	}
}

/* ==================================================
	인재채용 - 인사제도
================================================== */
.hr_list {
	width: 100%
}

.hr_list>li {
	border-top: 1px solid #e0e0e0;
	padding: 6rem 0
}

.hr_list>li:last-child {
	border-bottom: 1px solid #e0e0e0;
}

.hr_list>li dl {
	overflow: hidden
}

.hr_list>li dt {
	position: relative;
	float: left;
	padding: 0 3% 0 4%;
	width: 20%;
	font-size: 3rem;
	letter-spacing: -0.0125em;
	line-height: 1.3125;
	font-weight: var(--font-bd);
	word-break: keep-all;
	word-wrap: break-word;
}

.hr_list>li dt .num {
	position: absolute;
	left: 0;
	top: 6%;
	width: 20%;
	font-size: 2.5rem;
	color: var(--brand-color-sub);
}

.hr_list>li dd {
	overflow: hidden;
	float: left;
	width: 80%
}

.hr_list>li dd .box {
	margin-top: 4rem
}

.hr_list>li dd .box:first-child {
	margin-top: 0
}

.hr_list>li .sub_txt {
	margin-bottom: 12px;
	font-size: 2.2rem;
	letter-spacing: -0.0166666667em;
	line-height: 1.5;
	font-weight: var(--font-sb);
	word-break: keep-all;
	word-wrap: break-word
}

.hr_list>li .txt {
	letter-spacing: -0.02em;
	line-height: 1.5;
	color: #333;
	word-break: keep-all;
	word-wrap: break-word
}

.hr_list>li .txt span {
	display: block;
}


/* 기본방침 */
.hysys_basic {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.hysys_basic>li img {
	width: 100%;
	border-radius: 1rem;
}

.hysys_basic>li p {
	text-align: center;
	margin-top: 1.5rem;
}

/* 보상제도 */
.hrsys_box {
	width: 100%;
	margin-top: 2rem;
	padding: 2rem;
	background: #F9F9F9;
	border: 1px solid #EEEEEE;
	line-height: 1;
	color: #222;
}

.hrsys_box p+p {
	margin-top: 1.5rem;
}

/* 애니메이션 */
.hr_list>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);
}

.hr_list.active>li:nth-child(1) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.hr_list>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);
}

.hr_list.active>li:nth-child(2) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.hr_list>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);
}

.hr_list.active>li:nth-child(3) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.hr_list>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);
}

.hr_list.active>li:nth-child(4) {
	opacity: 1;
	transform: translateX(0);
	-webkit-transform: translateX(0);
}

.hr_list>li:nth-child(1) {
	transition-delay: .5s
}

.hr_list>li:nth-child(2) {
	transition-delay: .8s
}

.hr_list>li:nth-child(3) {
	transition-delay: 1.1s
}

.hr_list>li:nth-child(4) {
	transition-delay: 1.4s
}

/* 모바일CSS */

@media screen and (max-width:1300px) {

	.hr_list>li .txt span {
		display: inline;
	}
}

@media screen and (max-width:1023px) {
	.hr_list>li dt {
		position: relative;
		float: none;
		padding: 0 0 2% 4%;
		width: 100%;
		font-size: 2.8rem;
	}

	.hr_list>li dd {
		float: none;
		width: 100%
	}

	/* 기본방침 */
	.hysys_basic {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:640px) {
	.hr_list>li {
		border-top: 1px solid #e0e0e0;
		padding: 4rem 0;
	}

	.hr_list>li dt {
		padding: 0 0 2% 30px;
	}
}

/* ==================================================
	인재채용 - 복리후생
================================================== */
.welfare_con>ul {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.welfare_con>ul>li {
	width: 100%;
	background: url('../images/common/pattern.png?v=0301')#e8f4fd;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	border: solid 1px #d0ebff;
	border-radius: 2rem;
}

.welfare_con>ul>li>dl {
	padding: 3.5rem 3rem;
	text-align: center;
}

.welfare_con>ul>li>dl>dt img {
	width: 100%;
	max-width: 25rem;
	border-radius: 50%;
}

.welfare_con>ul>li>dl>dd {
	font-weight: 500;
	line-height: 1.35;
	margin-top: 1.5rem;
}

.welfare_con>ul>li>dl>dd h1 {
	font-size: 2.2rem;
	font-weight: var(--font-bd);
}

.welfare_con>ul>li>dl>dd p {
	font-size: 1.8rem;
	color: #333;
	margin-top: 0.6rem;
}

.welfare_con>ul>li>dl>dd p span {
	display: block;
}

.welfare_con>ul>li .l-list01 {
	display: inline-block;
	text-align: left;
	margin-top: 1.5rem;
}

.welfare_con>ul>li .l-list01 {
	font-size: 1.6rem;
}

.welfare_con>ul>li .l-list01>li {
	padding-left: 1rem;
	margin-top: 0.5rem;
}

.welfare_con>ul>li .l-list01>li:first-child {
	margin-top: 0;
}

.welfare_con>ul>li .l-list01>li:before {
	top: 0.8rem;
	width: 0.4rem;
	height: 0.4rem;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.welfare_con>ul {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:768px) {
	.welfare_con>ul {
		-ms-grid-columns: (1fr)[1];
		grid-template-columns: repeat(1, 1fr);
	}

	.welfare_con>ul li dl {
		display: grid;
		-ms-grid-columns: 30% 70%;
		grid-template-columns: 30% 60%;
		gap: 10%;
	}

	.welfare_con>ul li dl {
		-ms-grid-columns: 30% 70%;
		grid-template-columns: 30% 65%;
		gap: 5%;
	}

	.welfare_con>ul>li>dl>dt img {
		width: 100%;
		height: 100%;
	}

	.welfare_con>ul>li>dl>dd {
		text-align: left;
		margin-top: 0;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	.welfare_con>ul>li>dl>dd p {
		word-break: keep-all;
	}

	.welfare_con>ul>li>dl>dd p span {
		display: inline;
	}
}


/* ==================================================
	개인정보처리방침 & 이메일무단수집거부
================================================== */
.util_box {
	padding: 30px;
	border: 1px solid #dcdcdc;
	border-top-color: rgb(220, 220, 220);
	border-top-color: #323232;
	background: #fff;
	font-size: 1.7rem;
	line-height: 1.5;
}

/* 모바일CSS */
@media screen and (max-width:640px) {
	.util_box {
		padding: 20px;
		font-size: 1.6rem;
	}
}

@media screen and (max-width:450px) {
	.util_box {
		font-size: 1.5rem;
	}
}