/* visual */
#visual{ border-bottom: 1px solid #EEE; position: relative; z-index: 100; }
#visual .text-box{ text-align: center; padding: 120px 0 150px; }
#visual .text-box h2{ font-size: 9rem; font-weight: 700; color: #000; margin-top: 40px; }


/* lnb */
#lnb a{ display: block; padding: 12px; font-size: 18px; font-weight: 500; color: #999; }
#lnb ul{ display: flex; justify-content: center; align-items: center; margin: -12px 0; }
#lnb ul li{ position: relative; }
#lnb ul li::before{ content: ""; width: 3px; height: 3px; background: #BBB; position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%); }
#lnb ul li:first-of-type::before{ display: none; }
#lnb ul li:last-of-type a{ font-weight: 600; color: var(--mainColor); }


/* tab */
#tab{ border-top: 1px solid #EEE; text-align: center; }
#tab .mobile{ display: none; }
#tab ul{ display: flex; }
#tab ul li{ position: relative; }
#tab ul li a{ min-height: 80px; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 400; color: #777; }

#tab ul li.on::before{ content: ""; width: 100%; height: 3px; background: var(--mainColor); position: absolute; bottom: 0; left: 0; }
#tab ul li.on a{ font-weight: 600; color: var(--mainColor); }


/* common */
#sub{
	--subPt: 120px;
	--subPb: 200px;

	--grayBg: #FBFBFB;
}
#sub{ padding-top: var(--headerH); }
.sub-content{ padding: var(--subPt) 0 var(--subPb); }
.grayBg{ background: var(--grayBg); }


/* 간격 */
.pt160{ padding-top: 160px; }
.pb160{ padding-bottom: 160px; }


/* aos (cover-clip) */
[data-aos=cover-clip]{ clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); position: relative; transition: clip-path var(--aosT); }
[data-aos=cover-clip]::after{ content: ""; width: 100%; height: 100%; background: var(--mainColor); position: absolute; top: 0; left: 0; z-index: 100; clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); transition: clip-path var(--aosT) var(--aosT); }
[data-aos=cover-clip].aos-animate{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
[data-aos=cover-clip].aos-animate::after{ clip-path: inset(0 0 0 100%); -webkit-clip-path: inset(0 0 0 100%); }


/* sec-title */
.sec-title{ text-align: center; }
.sec-title.left{ text-align: left; }
.sec-title h4{ font-size: 4.8rem; font-weight: 600; color: #111; line-height: 1.6; }
.sec-title p{ font-size: 22px; font-weight: 400; color: #555; line-height: 1.6; margin-top: 25px; }
.sec-title p strong{ font-weight: 600; }


/* flex-title */
.flex-title{ display: flex; justify-content: space-between; margin-bottom: 40px; }
.flex-title .search-box{ margin-bottom: 0; }


/* tab-menu */
.tab-menu ul{ display: flex; align-items: center; margin: 0 -15px; }
.tab-menu ul li{ margin: 0 15px; }
.tab-menu ul li a{ min-height: 50px; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 400; color: #777; padding: 10px 0; }
.tab-menu ul li.on a{ background: var(--mainColor); font-weight: 500; color: #FFF; padding-inline: 22px; }


/* blankImg */
.blankImg{ position: relative; pointer-events: none; }
.blankImg i{ width: 50px; height: 50px; display: flex; flex-direction: column; justify-content: center; background: #EEE; border: 1px solid #DDD; border-radius: 50%; position: absolute; bottom: 20px; right: 20px; z-index: 100; display: none; }
.blankImg i::before{ content: ""; display: block; height: 30px; background: url("/img/sub/icon_target.svg") no-repeat center center / contain; }


/* viewmore */
.viewmore{ display: inline-flex; align-items: center; font-family: var(--engFont); font-size: 18px; font-weight: 600; color: rgba(51, 51, 51, 0.6); transition: color 0.3s; }
.viewmore i{ width: 40px; height: 40px; display: inline-flex; flex-direction: column; justify-content: center; background: transparent; border: 1px solid rgba(51, 51, 51, 0.6); border-radius: 50%; overflow: hidden; margin-left: 15px; position: relative; transition: background 0.3s, border-color 0.3s; }
.viewmore i::before{ content: ""; display: block; height: 12px; background: url("/img/sub/viewmore.svg") no-repeat center center / contain; filter: grayscale(1); -webkit-filter: grayscale(1); transition: filter 0.3s; }


/* btns */
.btns{ 
	--btnH: 80px;
}
.btns{ display: flex; }
.btns button{ width: var(--btnH); height: var(--btnH); background: transparent; border: 1px solid #DDD; border-radius: 50%; transition: background 0.3s, border-color 0.3s; }
.btns button:not(:last-of-type){ margin-right: 10px; }
.btns button i{ display: block; height: 30px; filter: brightness(0.7); -webkit-filter: brightness(0.7); transition: filter 0.3s; }

.btns .prev i{ background: url("/img/sub/icon_prev.svg") no-repeat center center / contain; }
.btns .next i{ background: url("/img/sub/icon_next.svg") no-repeat center center / contain; }


/* table-box */
.table-box{ 
	--theadSize: 22px;
	--tbodySize: 18px;
}
.table-box{ overflow-x: auto; overflow-y: clip; padding-bottom: 15px; }
.table-box.os-theme-dark > .os-scrollbar-horizontal, 
.table-box.os-theme-light > .os-scrollbar-horizontal{ height: 12px; padding: 3px; }
.table-box.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle{ background: #888; }

.table-box thead{ background: #EEE; position: relative; }
.table-box thead th{ font-size: var(--theadSize); font-weight: 600; color: #111; padding: var(--theadSize); border: 1px solid #DDD; border-left: none; }
.table-box thead tr > *:last-child{ border-right: none; }
.table-box tbody th,
.table-box tbody td{ font-size: var(--tbodySize); border: 1px solid #EEE; border-left: none; color: #333; padding: var(--tbodySize); }
.table-box thead tr.border > *{ border: none; border-bottom: 1px solid #111; padding: 0 !important; }
.table-box tbody tr > *:last-child{ border-right: none; }
.table-box tbody th{ background: #F8F8F8; font-weight: 500; }
.table-box tbody td{ font-family: var(--engFont); font-weight: 333; }

.table-box thead .bR{ border-right: 1px solid #DDD !important; }
.table-box tbody .bR{ border-right: 1px solid #EEE !important; }


@media screen and (hover: hover) and (pointer: fine){	
	/* btns */
	.btns button:hover{ background: var(--mainColor); border-color: var(--mainColor); }
	.btns button:hover i{ filter: unset; -webkit-filter: unset; }
}

@media screen and (max-width: 1700px){
	/* visual */
	#visual .text-box{ padding: 80px 0 120px; }
	#visual .text-box h2{ margin-top: 30px; }

	/* lnb */
	#lnb a{ font-size: 17px; }
	#lnb img{ width: auto; height: 22px; }

	/* tab */
	#tab ul li a{ min-height: 70px; font-size: 18px; }

	/* common */
	#sub{
		--subPt: 80px;
		--subPb: 160px;
	}

	/* 간격 */
	.pt160{ padding-top: 120px; }
	.pb160{ padding-bottom: 120px; }

	/* sec-title */
	.sec-title p{ font-size: 20px; }

	/* tab-menu */
	.tab-menu ul li a{ font-size: 19px; }

	/* viewmore */
	.viewmore i{ width: 35px; height: 35px; }

	/* btns */
	.btns{ 
		--btnH: 70px;
	}
	.btns button i{ height: 26px; }

	/* table-box */
	.table-box{ 
		--theadSize: 20px;
	}
}

@media screen and (max-width: 1280px){
	/* visual */
	#visual .text-box{ padding: 60px 0 80px; }
	#visual .text-box h2{ font-size: 8rem; margin-top: 20px; }

	/* lnb */
	#lnb a{ font-size: 16px; }
	#lnb img{ height: 20px; }

	/* tab */
	#tab ul li a{ min-height: 60px; font-size: 17px; }

	/* common */
	#sub{
		--subPt: 50px;
		--subPb: 100px;
	}

	/* 간격 */
	.pt160{ padding-top: 80px; }
	.pb160{ padding-bottom: 80px; }

	/* sec-title */
	.sec-title p{ font-size: 18px; margin-top: 10px; }

	/* flex-title */
	.flex-title{ margin-bottom: 25px; }

	/* tab-menu */
	.tab-menu ul{ margin: 0 -10px; }
	.tab-menu ul li{ margin: 0 10px; }
	.tab-menu ul li a{ min-height: 45px; font-size: 18px; }
	.tab-menu ul li.on a{ padding-inline: 17px; }

	/* blankImg */
	.blankImg i{ width: 40px; height: 40px; bottom: 10px; right: 10px; }
	.blankImg i::before{ height: 23px; }

	/* viewmore */
	.viewmore{ font-size: 17px; }
	.viewmore i{ width: 30px; height: 30px;margin-left: 10px; }
	.viewmore i::before{ height: 10px; }

	/* btns */
	.btns{ 
		--btnH: 60px;
	}
	.btns button:not(:last-of-type){ margin-right: 5px; }
	.btns button i{ height: 24px; }

	/* table-box */
	.table-box{ 
		--theadSize: 18px;
		--tbodySize: 17px;
	}
	.table-box thead th,
	.table-box tbody tr > *{ padding: 12px; }
}

@media screen and (max-width: 900px){
	/* visual */
	#visual .text-box{ padding: 40px 0; }
	#visual .text-box h2{ font-size: 7rem; }

	/* tab */
	#tab .pc{ display: none; }
	#tab .mobile{ display: block; position: relative; } 

	#tab button{ width: 100%; min-height: 55px; display: flex; align-items: center; background: none; border: none; font-family: var(--baseFont); font-size: 18px; font-weight: 600; color: var(--mainColor); padding: 10px 20px; padding-right: 54px; text-align: left; position: relative; }
	#tab button::before,
	#tab button::after{ content: ""; width: 1px; height: 12px; background: #EEE; position: absolute; top: 50%; transform: translateY(-50%); }
	#tab button::before{ left: 0; }
	#tab button::after{ right: 0; }
	#tab button i{ width: 24px; height: 24px; background: url("/img/sub/tab_arrow.svg") no-repeat center center / contain; position: absolute; top: calc(50% - 2px); right: 20px; transform: translateY(-50%) rotate(0); transition: top 0.3s, transform 0.3s; }
	#tab button.on i{ top: 50%; transform: translateY(-50%) rotate(-180deg); }

	#tab ul{ width: 100%; background: var(--mainColor); border-radius: 0 0 10px 10px; padding: 10px 0; position: absolute; top: calc(100% + 1px); left: 0; display: none; }
	#tab ul li{ width: 100% !important; }
	#tab ul li::before{ display: none; }
	#tab ul li a{ min-height: auto; display: block; font-weight: 300; color: rgba(255, 255, 255, 0.5); text-align: left; padding: 10px 20px; }
	#tab ul li.on a{ font-weight: 400; color: #FFF; }

	/* sec-title */
	.sec-title h4{ font-size: 5rem; }

	/* flex-title */
	.flex-title{ flex-direction: column; }
	.flex-title .tab-menu{ margin-bottom: 60px; }
	.flex-title .tab-menu ul{ justify-content: center; }

	/* tab-menu */
	.tab-menu ul li a{ min-height: 40px; }
	.tab-menu ul li.on a{ padding-inline: 15px; }

	/* btns */
	.btns{ 
		--btnH: 55px;
	}

	/* table-box */
	.table-box{ 
		--theadSize: 17px;
	}
}

@media screen and (max-width: 499px){
	/* tab */
	#tab button{ font-size: 20px; }
	#tab ul li a{ font-size: 20px; padding-block: 12px; }
}


/* 회사소개 - 인사말 */
#ceo{ background: url("/img/sub/company/symbol_bg.png") no-repeat bottom right / auto; }
#ceo .sec-title{ margin-bottom: 60px; }

#ceo .p-box{ margin-bottom: 60px; }
#ceo .p-box p{ font-size: 20px; font-weight: 300; color: #333; line-height: 2.6; }

#ceo .name{ display: flex; align-items: flex-end; }
#ceo .name p{ font-size: 22px; font-weight: 500; color: #111; padding-right: 20px; }

@media screen and (max-width: 1700px){
	#ceo .sec-title{ margin-bottom: 40px; }

	#ceo .p-box{ margin-bottom: 40px; }
	#ceo .p-box p{ font-size: 18px; }

	#ceo .name p{ font-size: 20px; }
	#ceo .name img{ max-height: 60px; }
}

@media screen and (max-width: 1500px){
	#ceo .p-box br{ display: none; }
}

@media screen and (max-width: 1280px){
	#ceo{ background-size: 60%; }
	#ceo .sec-title{ margin-bottom: 20px; }

	#ceo .p-box{ margin-bottom: 20px; }
	#ceo .p-box p{ font-size: 17px; }

	#ceo .name p{ font-size: 19px; }
	#ceo .name img{ max-height: 55px; }
}

@media screen and (max-width: 900px){
	#ceo{ background-size: 80%; }

	#ceo .name img{ max-height: 50px; }
}


/* 회사소개 - 회사연혁 */
#history{
	--left: 41.843%;	
}

#history .grid-box{ display: grid; grid-template-columns: var(--left) calc(100% - var(--left)); }
#history .grid-box > *{ padding-inline: 100px; }
#history .left{ padding-left: 0 !important; }
#history .right{ padding-top: 35px; padding-right: 0 !important; position: relative; }

#history .sticky{ position: sticky; top: calc(50% - (var(--stickyH) / 2)); left: 0; }
#history .line{ width: 2px; height: 100%; background: #EEE; position: absolute; top: 0; left: 0; }
#history .line div{ width: 3px; height: 0; background: var(--mainColor); transition: height 0.15s ease-out; will-change: height; }

#history section{ position: relative; }
#history section:not(:last-of-type){ padding-bottom: 80px; }
#history section i{ width: 14px; height: 14px; background: #FFF; border: 2px solid #DDD; border-radius: 50%; position: absolute; top: 19px; left: -99px; transform: translateX(-50%); }
#history section i::before{ content: ""; width: calc(100% + 6px); height: calc(100% + 6px); display: block; border: 3px solid var(--mainColor); border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); box-sizing: border-box; opacity: 0; transition: opacity 0.3s; }

#history section h6{ font-family: var(--engFont); font-size: 40px; font-weight: 600; color: var(--mainColor); margin-bottom: 30px; position: relative; }
#history section dl{ display: grid; grid-template-columns: 60px calc(100% - 60px); align-items: baseline; }
#history section dl:not(:last-of-type){ margin-bottom: 30px; }
#history section dl dt{ font-family: var(--engFont); font-size: 22px; font-weight: 600; color: #333; }
#history section dl dd{ font-size: 20px; font-weight: 400; color: #333; }
#history section dl dd p{ font-size: 17px; font-weight: 300; color: #777; margin-top: 10px; }

#history section.on i::before{ opacity: 1; }

@media screen and (max-width: 1700px){
	#history section i{ top: 14px; }
	#history section h6{ font-size: 36px; margin-bottom: 20px; }
	#history section dl dt{ font-size: 21px; }
	#history section dl dd{ font-size: 19px; }
}

@media screen and (max-width: 1400px){
	#history .grid-box > *{ padding-inline: 60px; }
	#history section i{ width: 10px; height: 10px; left: -59px; }
}

@media screen and (max-width: 1280px){
	#history section:not(:last-of-type){ padding-bottom: 60px; }
	#history section i{ top: 16px; }
	#history section h6{ font-size: 32px; margin-bottom: 15px; }
	#history section dl{ grid-template-columns: 40px calc(100% - 40px); }
	#history section dl:not(:last-of-type){ margin-bottom: 20px; }
	#history section dl dt{ font-size: 19px; }
	#history section dl dd{ font-size: 18px; }
	#history section dl dd p{ margin-top: 7px; }
}

@media screen and (max-width: 1000px){
	#history .grid-box{ display: block; }
	#history .grid-box > *{ padding-inline: 35px; }

	#history .left{ padding: 0; padding-bottom: 30px; }
	#history .left figure{ display: block; }
	#history .left figure img{ width: 100%; }

	#history .line{ left: 5px; }
	#history section i{ left: -29px; }
}

@media screen and (max-width: 900px){
	#history section i{ top: 14px; }
	#history section h6{ font-size: 29px; }
}


/* 회사소개 - 조직도 */
#organ{ text-align: center; }
#organ picture{ display: block; }
#organ picture img{ width: 100%; height: auto; display: block; }


/* 회사소개 - 오시는 길 */
#location .iframe{ min-height: 400px; position: relative; border: 1px solid #EEE; padding-bottom: 39.474%; overflow: hidden; margin-bottom: 40px; }
#location .iframe .root_daum_roughmap_landing{ width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
#location .iframe .root_daum_roughmap .wrap_map{ height: 100%; }
#location .iframe .root_daum_roughmap .map_border, 
#location .iframe .root_daum_roughmap .cont{ display: none; } 

#location address{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#location address .item{ margin: 10px; }
#location address .icon{ margin-bottom: 30px; }
#location address .icon img{ transition: filter 0.3s; }
#location address dl{ height: 100%; background: #FFF; border: 1px solid #EEE; padding: 30px; position: relative; transition: background 0.3s, border-color 0.3s; }
#location address dl::before{ content: ""; width: 100%; height: 100%; background: url("/img/sub/company/location_symbol.svg") no-repeat top right / auto; position: absolute; top: 0; left: 0; opacity: 0.03; transition: opacity 0.3s; }
#location address dl > *{ position: relative; z-index: 10; }
#location address dl dt{ font-size: 26px; font-weight: 600; color: #111; margin-bottom: 15px; transition: color 0.3s; }
#location address dl dd{ font-family: var(--engFont); font-size: 18px; font-weight: 300; color: #333; transition: color 0.3s; }

@media screen and (hover: hover) and (pointer: fine){
	#location address .item:hover .icon{ filter: grayscale(1) brightness(4); -webkit-filter: grayscale(1) brightness(4); }
	#location address .item:hover dl{ background: var(--mainColor); border-color: var(--mainColor); }
	#location address .item:hover dl::before{ opacity: 0.06; }
	#location address .item:hover dl dt,
	#location address .item:hover dl dd{ color: #FFF; }
}

@media screen and (max-width: 1700px){
	#location address dl{ padding: 25px; }
	#location address dl dt{ font-size: 24px; }
}

@media screen and (max-width: 1280px){
	#location .iframe{ margin-bottom: 20px; }

	#location address .icon{ margin-bottom: 20px; }
	#location address dl{ padding: 20px; }
	#location address dl dt{ font-size: 22px; margin-bottom: 10px; }
	#location address dl dd{ font-size: 17px; }
}

@media screen and (max-width: 1000px){
	#location address{ grid-template-columns: repeat(1, 100%); }
	#location address .item{ transition-delay: unset !important; }
}

@media screen and (max-width: 900px){
	#location address dl dt{ font-size: 20px; }
}


/* 핵심사업 (공통) */
#business{ padding-bottom: 0; }
#business section:last-of-type{ padding-bottom: var(--subPb); }
#business .overflow{ overflow: hidden; }

#business .intro .sec-title{ margin-bottom: 60px; }
#business .intro figure{ margin-bottom: 40px; }
#business .intro .content{ display: grid; grid-template-columns: repeat(2, 50%); }
#business .intro .content .left{ padding-right: 40px; }
#business .intro .content h5{ font-size: 36px; font-weight: 600; color: #111; }
#business .intro .content p{ font-size: 20px; font-weight: 300; color: #333; line-height: 1.6; }
#business .intro .content p:not(:last-of-type){ margin-bottom: 10px; }


#business .performance .sec-title{ margin-bottom: 80px; }
#business .performance .slick-slider,
#business .performance .slick-list{ overflow: visible; }
#business .performance .slick-slider{ pointer-events: none; }
#business .performance .slick-list{ margin-right: -30px; }
#business .performance .item{ width: 540px; margin-right: 30px; }
#business .performance .item.slick-cloned{ opacity: 0; }
#business .performance .item figure{ display: block; position: relative; padding-bottom: 66.668%; overflow: hidden; }
#business .performance .item figure img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#business .performance .item .txt{ margin-top: 25px; }
#business .performance .item .txt span{ display: block; font-size: 18px; font-weight: 600; color: var(--mainColor); margin-bottom: 15px; } 
#business .performance .item .txt h6{ font-size: 24px; font-weight: 600; color: #111; }

#business .performance .slide-info{ display: flex; align-items: center; margin-top: 60px; }
#business .performance .slide-info .bar{ flex: 1 0 auto; background: #DDD; margin-right: 30px; }
#business .performance .slide-info .bar div{ width: 0; height: 2px; background: var(--mainColor); }

#business .performance .autoplay .slick-slider{ pointer-events: unset; }
#business .performance .autoplay .item.slick-cloned{ opacity: 1; }


#business .method .sec-title{ margin-bottom: 90px; }
#business .method .grid-box{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#business .method .item{ margin: 10px; }
#business .method .item a{ display: block; height: 100%; padding: 30px; background: transparent; border: 1px solid #EEE; transition: background 0.3s, border-color 0.3s; }
#business .method .item p{ font-family: var(--engFont); font-size: 24px; font-weight: 500; color: var(--mainColor); text-stroke: 0.01em var(--mainColor); -webkit-text-stroke: 0.01em var(--mainColor); transition: color 0.3s, text-stroke-color 0.3s; }
#business .method .item h6{ font-size: 30px; font-weight: 500; color: #000; text-stroke: 0.01em #000; -webkit-text-stroke: 0.01em #000; margin: 40px 0; transition: color 0.3s, text-stroke-color 0.3s; }
#business .method .item .right{ text-align: right; }	


@media screen and (hover: hover) and (pointer: fine){
	#business .method .item:hover a{ background: var(--mainColor); border-color: var(--mainColor); }
	#business .method .item:hover p{ color: rgba(255, 255, 255, 0.4); text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#business .method .item:hover h6{ color: #FFF; text-stroke-color: transparent; -webkit-text-stroke-color: transparent; }
	#business .method .item:hover .viewmore{ color: #FFF; }
	#business .method .item:hover .viewmore i{ background: #FFF; border-color: #FFF; }
	#business .method .item:hover .viewmore i::before{ filter: unset; -webkit-filter: unset; }
}

@media screen and (max-width: 1700px){
	/* 핵심사업 (공통) */
	#business .intro .sec-title{ margin-bottom: 40px; }
	#business .intro figure{ margin-bottom: 30px; }
	#business .intro .content h5{ font-size: 32px; }
	#business .intro .content p{ font-size: 18px; }

	#business .performance .sec-title{ margin-bottom: 50px; }
	#business .performance .item{ width: 480px; }
	#business .performance .item .txt{ margin-top: 20px; }
	#business .performance .item .txt span{ font-size: 17px; } 
	#business .performance .item .txt h6{ font-size: 22px; }

	#business .performance .slide-info{ margin-top: 40px; }
	#business .performance .slide-info .bar{ margin-right: 20px; }

	#business .method .sec-title{ margin-bottom: 50px; }
	#business .method .item a{ padding: 25px; } 
	#business .method .item p{ font-size: 20px; }
	#business .method .item h6{ font-size: 26px; margin: 20px 0 30px; }
}

@media screen and (max-width: 1400px){
	/* 핵심사업 - 건축 구조물 철거 */
	#business.building .intro .content br{ display: none; }
}

@media screen and (max-width: 1280px){
	/* 핵심사업 (공통) */
	#business .intro .sec-title{ margin-bottom: 20px; }
	#business .intro figure{ margin-bottom: 20px; }
	#business .intro .content h5{ font-size: 26px; }
	#business .intro .content p{ font-size: 17px; }

	#business .performance .sec-title{ margin-bottom: 20px; }
	#business .performance .item{ width: 430px; }
	#business .performance .item .txt{ margin-top: 15px; }
	#business .performance .item .txt span{ font-size: 16px; margin-bottom: 10px; } 
	#business .performance .item .txt h6{ font-size: 20px; }

	#business .performance .slide-info{ margin-top: 20px; }
	#business .performance .slide-info .bar{ margin-right: 15px; }

	#business .method .sec-title{ margin-bottom: 20px; }
	#business .method .item a{ padding: 20px; } 
	#business .method .item p{ font-size: 18px; }
	#business .method .item h6{ font-size: 22px; margin: 10px 0 20px; }
}

@media screen and (max-width: 1150px){
	/* 핵심사업 - 플랜트 해체 */
	#business.plant .intro br{ display: none; }

	/* 핵심사업 - 리모델링 해체 */
	#business.remodeling .intro br{ display: none; }
}

@media screen and (max-width: 1100px){
	/* 핵심사업 - 토목 구조물 해체 */
	#business.civil .intro br{ display: none; }
}

@media screen and (max-width: 1000px){
	/* 핵심사업 (공통) */
	#business .intro .content{ grid-template-columns: repeat(1, 100%); }
	#business .intro .content .left{ padding-right: 0; padding-bottom: 10px; }

	#business .method .grid-box{ grid-template-columns: repeat(1, 100%); }
	#business .method .item{ transition-delay: unset !important; }
}

@media screen and (max-width: 900px){
	/* 핵심사업 (공통) */
	#business .intro .sec-title h4{ font-size: 4.5rem; }
	#business .intro .content h5{ font-size: 20px; }

	#business .performance .item{ width: 380px; }

	#business .method .item a{ padding: 15px 20px; }
	#business .method .item h6{ margin: 10px 0; }
}

@media screen and (max-width: 700px){
	/* 핵심사업 - 건축 구조물 철거 */
	#business.building .intro .sec-title br{ display: none; }

	/* 핵심사업 - 석면해체 */
	#business.asbestos .intro br{ display: none; }

	/* 핵심사업 - 폐기물 처리 */
	#business.waste .intro br{ display: none; }
}


/* 기술현황 (공통) */
#technique{ padding: 0; }
#technique section:last-of-type{ padding-bottom: var(--subPb); }
#technique .sec-title{ margin-bottom: 80px; }


#technique .intro .grid-box{ display: grid; grid-template-columns: calc(100% - 540px) 540px; }
#technique .intro .left{ display: flex; flex-direction: column; justify-content: center; padding-right: 50px; }
#technique .intro h3{ font-size: 5.4rem; font-weight: 600; color: #111; margin-bottom: 40px; }
#technique .intro h3 em{ color: var(--mainColor); }
#technique .intro p{ font-size: 21px; font-weight: 300; color: #333; line-height: 1.6; }

#technique .intro .right{ height: 100vh; overflow: hidden; }
#technique .intro .right ul li{ padding-bottom: 30px; }
#technique .intro .right ul li figure, 
#technique .intro .right ul li figure img{ width: 100%; }
#technique .intro .right ul li figure{ margin-bottom: -4px; }

#technique .intro .origin{ animation: orginUp 60s linear infinite; }
#technique .intro .clone{ animation: cloneUp 60s linear infinite; }

#technique .intro .aniStop{ height: auto; }
#technique .intro .aniStop ul{ animation: unset; }
#technique .intro .aniStop ul:last-of-type{ display: none; }
#technique .intro .aniStop ul li:last-of-type{ padding-bottom: 0 !important; }


#technique .box-list ul{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#technique .box-list ul li{ background: #FFF; border: 1px solid #DDD; font-size: 20px; font-weight: 300; color: #333; line-height: 1.6; padding: 30px; padding-bottom: 50px; margin: 10px; transition: background 0.3s, border-color 0.3s, color 0.3s; }
#technique .box-list ul li *{ line-height: inherit; }
#technique .box-list ul li::before{ content: ""; width: 5px; height: 5px; display: inline-block; background: var(--mainColor); margin-bottom: 20px; transition: background 0.3s; }
#technique .box-list ul li strong{ display: block; font-weight: 600; line-height: 1.3; margin-bottom: 15px; }
#technique .box-list ul li strong:only-child{ margin-bottom: 0; }

#technique .box-list ul.grid04{ grid-template-columns: repeat(4, 25%); }


#technique .sec-box .sec{ background: #FFF; border: 1px solid #DDD; padding: 50px; }
#technique .sec-box .sec:not(:last-of-type){ margin-bottom: 40px; }
#technique .sec-box .tit{ margin-bottom: 30px; }
#technique .sec-box .tit h5{ font-size: 24px; font-weight: 600; color: #111; padding-left: 60px; position: relative; }
#technique .sec-box .tit h5 span{ font-family: var(--engFont); font-size: inherit; color: var(--mainColor); position: absolute; top: 0; left: 0; }
#technique .sec-box .tit p{ font-size: 20px; font-weight: 300; color: #333; line-height: 1.6; margin-top: 30px; }
#technique .sec-box figure{ display: block; text-align: center; }


#technique .num-dl{
	--numH: 36px;
}
#technique .num-dl dt{ font-size: 24px; font-weight: 600; color: #111; padding-left: calc(var(--numH) + 20px); position: relative; margin-bottom: 30px; }
#technique .num-dl dt::before{ content: attr(data-num); width: var(--numH); height: var(--numH); background: var(--mainColor); border-radius: 50%; font-family: var(--engFont); font-size: 18px; font-weight: 500; color: #FFF; line-height: var(--numH); text-align: center; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }
#technique .num-dl dd{ font-size: 18px; font-weight: 300; color: #555; line-height: 1.5; }


#technique .pros-cons{
	--padding: 50px;
}
#technique .pros-cons{ display: grid; grid-template-columns: repeat(2, 50%); margin: -10px; }
#technique .pros-cons > *{ margin: 10px; }
#technique .pros-cons .block{ grid-column: auto / span 2; }
#technique .pros-cons dl{ height: 100%; display: flex; flex-direction: column; }
#technique .pros-cons dl dt{ font-size: 20px; font-weight: 600; }
#technique .pros-cons dl dd{ flex: 1 0 auto; font-size: 18px; font-weight: 400; color: #333; }
#technique .pros-cons ul li{ line-height: 1.5; padding-left: 13px; position: relative; }
#technique .pros-cons ul li::before{ content: ""; width: 3px; height: 3px; background: var(--mainColor); border-radius: 50%; position: absolute; top: calc(1.5em / 2); left: 0; transform: translateY(-50%); transition: background 0.3s; }
#technique .pros-cons ul li:not(:last-of-type){ margin-bottom: 15px; }

#technique .pros-cons .gray{ background: var(--grayBg); padding: var(--padding); }
#technique .pros-cons .gray dt{ color: #333; margin-bottom: 30px; }

#technique .pros-cons .pros dl dt,
#technique .pros-cons .cons dl dt{ text-align: center; padding: 12px; }
#technique .pros-cons .pros dl dd,
#technique .pros-cons .cons dl dd{ padding: var(--padding); }

#technique .pros-cons .pros dl dt{ background: var(--mainColor); font-weight: 500; color: #FFF; }
#technique .pros-cons .pros dl dd{ background: rgba(var(--mainRGB), 0.03); border: 1px solid rgba(var(--mainRGB), 0.6); }

#technique .pros-cons .cons dl dt{ background: #EEE; color: #555; }
#technique .pros-cons .cons dl dd{ border: 1px solid #DDD; border-top: none; }

@media screen and (hover: hover) and (pointer: fine){
	#technique .box-list ul li:hover{ background: var(--mainColor); border-color: var(--mainColor); color: #FFF; }
	#technique .box-list ul li:hover::before{ background: #FFF; }
}

@media screen and (max-width: 1700px){
	#technique .sec-title{ margin-bottom: 50px; }


	#technique .intro .grid-box{ grid-template-columns: calc(100% - 480px) 480px; }
	#technique .intro h3{ margin-bottom: 30px; }
	#technique .intro p{ font-size: 19px; }


	#technique .box-list ul li{ font-size: 18px; padding: 25px; padding-bottom: 40px; }
	#technique .box-list ul li strong{ margin-bottom: 10px; }

	
	#technique .sec-box .sec{ padding: 35px; }
	#technique .sec-box .tit h5{ font-size: 23px; padding-left: 45px; }
	#technique .sec-box .tit p{ font-size: 18px; margin-top: 20px; }


	#technique .num-dl{
		--numH: 32px;
	}
	#technique .num-dl dt{ font-size: 22px; padding-left: calc(var(--numH) + 15px); margin-bottom: 20px; }
	#technique .num-dl dt::before{ font-size: 17px; }


	#technique .pros-cons{
		--padding: 35px;
	}
	#technique .pros-cons ul li:not(:last-of-type){ margin-bottom: 10px; }
	#technique .pros-cons .gray dt{ margin-bottom: 20px; }
}

@media screen and (max-width: 1400px){
	#technique .box-list ul.grid04{ grid-template-columns: repeat(3, calc(100% / 3)); }
}

@media screen and (max-width: 1280px){
	#technique .sec-title{ margin-bottom: 30px; }


	#technique .intro .grid-box{ grid-template-columns: calc(100% - 400px) 400px; }
	#technique .intro h3{ margin-bottom: 20px; }
	#technique .intro p{ font-size: 17px; }
	#technique .intro .right ul li{ padding-bottom: 20px; }


	#technique .box-list ul li{ font-size: 17px; padding: 20px; }
	#technique .box-list ul li::before{ margin-bottom: 10px; }
	#technique .box-list ul li strong{ margin-bottom: 5px; }


	#technique .sec-box .sec{ padding: 25px; }
	#technique .sec-box .sec:not(:last-of-type){ margin-bottom: 25px; }
	#technique .sec-box .tit{ margin-bottom: 20px; }
	#technique .sec-box .tit h5{ font-size: 21px; padding-left: 35px; }
	#technique .sec-box .tit p{ font-size: 17px; margin-top: 10px; }


	#technique .num-dl{
		--numH: 28px;
	}
	#technique .num-dl dt{ font-size: 20px; padding-left: calc(var(--numH) + 10px); margin-bottom: 15px; }
	#technique .num-dl dt::before{ font-size: 15px; }


	#technique .pros-cons{
		--padding: 20px;
	}
	#technique .pros-cons dl dt{ font-size: 18px; }
	#technique .pros-cons dl dd{ font-size: 17px; }
	#technique .pros-cons ul li{ padding-left: 10px; }
	#technique .pros-cons ul li:not(:last-of-type){ margin-bottom: 7px; }

	#technique .pros-cons .pros dl dt, 
	#technique .pros-cons .cons dl dt{ padding: 8px; }
	#technique .pros-cons .gray dt{ margin-bottom: 10px; }
}

@media screen and (max-width: 1000px){
	#technique .intro{ padding: var(--subPt) 0 80px; }
	#technique .intro .grid-box{ grid-template-columns: repeat(1, 100%); }
	#technique .intro .left{ padding-right: 0; margin-bottom: 30px; }
	#technique .intro .right{ width: calc(100% + 40px); height: auto; display: flex; transform: translateX(-20px); }
	#technique .intro .right ul{ display: flex; }
	#technique .intro .right ul li{ width: 350px; padding-bottom: 0; padding-right: 20px; }

	#technique .intro .origin{ animation-name: orginRight; }
	#technique .intro .clone{ animation-name: cloneRight; }

	#technique .intro .aniStop ul:last-of-type{ display: flex; }
	#technique .intro .aniStop ul li:last-of-type{ padding-right: 20px; }
	#technique .intro .aniStop .origin{ animation: orginRight 60s linear infinite; }
	#technique .intro .aniStop .clone{ animation: cloneRight 60s linear infinite; }


	#technique .box-list ul, 
	#technique .box-list ul.grid04{ grid-template-columns: repeat(2, 50%); }
	#technique .box-list ul{ margin: -7px; }
	#technique .box-list ul li{ margin: 7px; }


	#technique .pros-cons{ grid-template-columns: repeat(1, 100%); }
	#technique .pros-cons .block{ grid-column: unset; }
}

@media screen and (max-width: 900px){
	#technique .sec-title{ margin-bottom: 20px; }
	#technique .sec-title br{ display: none; }

	#technique .intro h3{ margin-bottom: 10px; }

	#technique .sec-box .tit h5{ font-size: 20px; }

	#technique .num-dl{
		--numH: 26px;
	}
	#technique .num-dl dt{ font-size: 19px; }

	#technique .pros-cons dl dt{ font-size: 17px; }
}

@media screen and (max-width: 700px){
	#technique .box-list ul, 
	#technique .box-list ul.grid04{ grid-template-columns: repeat(1, 100%); }
}


/* 기술현황 - 압쇄 공법 */
#technique.crushing .box-list ul li strong{ display: inline; }
#technique.crushing .grayBg .box-list ul li{ min-height: 240px; }

@media screen and (max-width: 1700px){
	#technique.crushing .grayBg .box-list ul li{ min-height: 200px; }
}

@media screen and (max-width: 1450px){
	#technique.crushing .box-list br{ display: none; }
}

@media screen and (max-width: 1280px){
	#technique.crushing .grayBg .box-list ul li{ min-height: 170px; }
}

@media screen and (max-width: 700px){
	#technique.crushing .grayBg .box-list ul li{ min-height: unset; }
}

@media screen and (max-width: 600px){
	#technique.crushing .sec-title br{ display: none; }
}


/* 기술현황 - 다이아몬드 와이어 쏘우 공법 */
#technique.diamond .table-box{ text-align: center; }


#technique.diamond .border-figure{ border: 1px solid #DDD; text-align: center; padding: 60px; }
#technique.diamond .border-figure h6{ font-size: 24px; font-weight: 600; color: #333; margin-bottom: 60px; }
#technique.diamond .border-figure p{ font-size: 18px; font-weight: 400; color: #333; line-height: 1.6; margin-top: 30px; }


#technique.diamond .icon-dl{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#technique.diamond .icon-dl > *{ background: #FFF; border: 1px solid #DDD; padding: 50px; margin: 10px; transition: background 0.3s, border-color 0.3s; }
#technique.diamond .icon-dl dl dt{ font-size: 26px; font-weight: 600; color: #333; margin-bottom: 20px; transition: color 0.3s; }  
#technique.diamond .icon-dl dl dt .icon{ margin-bottom: 20px; }
#technique.diamond .icon-dl dl dt .icon img{ transition: filter 0.3s; }
#technique.diamond .icon-dl dl dd{ font-size: 18px; font-weight: 300; color: #333; line-height: 1.6; transition: color 0.3s; }


#technique.diamond .sec02 h6{ font-size: 22px; font-weight: 600; color: #111; text-align: center; padding: 20px 0 25px; }

#technique.diamond .sec03 .num-dl{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#technique.diamond .sec03 .num-dl > *{ background: #F8F8F8; padding: 50px; margin: 10px; }
#technique.diamond .sec03 .num-dl dt{ display: flex; justify-content: space-between; align-items: center; }
#technique.diamond .sec03 .num-dl dt span{ font-family: var(--engFont); font-size: 20px; font-weight: 600; color: #999; }

#technique.diamond .sec04 ul{ display: grid; grid-template-columns: repeat(2, 50%); margin: -10px; }
#technique.diamond .sec04 ul li{ background: #F8F8F8; font-size: 18px; font-weight: 300; color: #333; padding: 20px 30px; margin: 10px; }
#technique.diamond .sec04 ul li p{ position: relative; padding-left: 18px; }
#technique.diamond .sec04 ul li p::before{ content: ""; width: 3px; height: 3px; background: var(--mainColor); border-radius: 50%; position: absolute; top: calc(1.3em / 2); left: 0; transform: translateY(-50%); }

@media screen and (hover: hover) and (pointer: fine){
	#technique.diamond .icon-dl > *:hover{ background: var(--mainColor); border-color: var(--mainColor); }
	#technique.diamond .icon-dl > *:hover .icon img{ filter: grayscale(1) brightness(5); -webkit-filter: grayscale(1) brightness(5); }
	#technique.diamond .icon-dl > *:hover dt,
	#technique.diamond .icon-dl > *:hover dd{ color: #FFF; }
}

@media screen and (max-width: 1700px){
	#technique.diamond .border-figure{ padding: 40px; }
	#technique.diamond .border-figure h6{ font-size: 22px; margin-bottom: 40px; }

	#technique.diamond .icon-dl > *{ padding: 35px; }
	#technique.diamond .icon-dl dl dt{ font-size: 23px; }

	#technique.diamond .sec02 h6{ font-size: 20px; }
	#technique.diamond .sec03 .num-dl > *{ padding: 35px; }
	#technique.diamond .sec03 .num-dl dt span{ font-size: 18px; }
}

@media screen and (max-width: 1400px){
	#technique.diamond .icon-dl br{ display: none; }

	#technique.diamond .sec-box .sec br{ display: none; }
}

@media screen and (max-width: 1280px){
	#technique.diamond .border-figure{ padding: 25px; }
	#technique.diamond .border-figure h6{ font-size: 20px; margin-bottom: 20px; }
	#technique.diamond .border-figure p{ font-size: 17px; margin-top: 20px; }

	#technique.diamond .icon-dl > *{ padding: 25px; }
	#technique.diamond .icon-dl dl dt{ font-size: 20px; margin-bottom: 10px; }
	#technique.diamond .icon-dl dl dt .icon{ margin-bottom: 10px; }
	#technique.diamond .icon-dl dl dd{ font-size: 17px; }

	#technique.diamond .sec02 h6{ font-size: 18px; padding: 15px 0; }
	#technique.diamond .sec03 .num-dl > *{ padding: 25px; }
	#technique.diamond .sec03 .num-dl dt span{ font-size: 17px; }
	#technique.diamond .sec04 ul li{ font-size: 17px; padding: 15px 20px; }
	#technique.diamond .sec04 ul li p{ padding-left: 13px; }
}

@media screen and (max-width: 1200px){
	#technique.diamond .sec03 .num-dl{ grid-template-columns: repeat(1, 100%); }
}

@media screen and (max-width: 1000px){
	#technique.diamond .icon-dl{ grid-template-columns: repeat(2, 50%); }

	#technique.diamond .sec04 ul{ grid-template-columns: repeat(1, 100%); margin: -5px; }
	#technique.diamond .sec04 ul li{ margin: 5px; }
}

@media screen and (max-width: 900px){
	#technique.diamond .border-figure h6{ font-size: 18px; }

	#technique.diamond .icon-dl{ grid-template-columns: repeat(1, 100%); }

	#technique.diamond .sec03 .num-dl dt span{ font-size: 16px; }
}

@media screen and (max-width: 600px){
	#technique.diamond .sec-title h4 span{ display: block; }
}

@media screen and (max-width: 500px){
	#technique.diamond .intro br{ display: none; }
}


/* 기술현황 - 발파해체 공법 */
#technique.explosive .intro ul li figure{ padding-bottom: 55.556%; position: relative; overflow: hidden; }
#technique.explosive .intro ul li figure img{ width: 100%; height: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.01); }


#technique.explosive .table-box{
	--theadSize: 20px;
	--tbodySize: 17px;
}
#technique.explosive .table-box thead th span{ display: block; font-family: var(--engFont); font-weight: 500; color: #999; margin-top: 5px; }

#technique.explosive .table01{ text-align: center; }
#technique.explosive .table01 .min{ display: flex; flex-direction: column; justify-content: center; min-height: 45px; }
#technique.explosive .table01 colgroup col.s{ width: 6.5%; }
#technique.explosive .table01 colgroup col.m{ width: 9.2%; }
#technique.explosive .table01 colgroup col.l{ width: 13.2%; }
#technique.explosive .table01 thead th{ padding: 13px; }
#technique.explosive .table01 tbody th,
#technique.explosive .table01 tbody td{ padding: 5px; }
#technique.explosive .table01 tbody th{ font-weight: 400; }

#technique.explosive .table02{
	--tbodySize: 18px;
}
#technique.explosive .table02 colgroup col.s{ width: 200px; }
#technique.explosive .table02 th{ padding: var(--tbodySize); }
#technique.explosive .table02 td{ padding: 15px; line-height: 1.6; }
#technique.explosive .table02 ul li{ padding-left: 13px; position: relative; line-height: 1.6; }
#technique.explosive .table02 ul li::before{ content: ""; width: 3px; height: 3px; background: #333; border-radius: 50%; position: absolute; top: calc(1.6em / 2); left: 0; transform: translateY(-50%); }
#technique.explosive .table02 ul.grid{ display: grid; grid-template-columns: repeat(2, 50%); margin: 0 -5px; }
#technique.explosive .table02 ul.grid li{ margin: 0 5px; }

#technique.explosive .diagram{
	--width01: 22.728%;
	--width02: 34.885%;
	
	--gapR: 160px;
	--gapB: 20px;
	--min: 70px;
	--num: 30px;
	--dot: 6px;

	--dashed: 1px dashed #999;
}
#technique.explosive .diagram{ padding: 80px 100px; }
#technique.explosive .diagram .flex01{ display: flex; align-items: center; }

#technique.explosive .diagram .circle{ width: var(--width01); background: linear-gradient(180deg, #3A87CA, #0F4B80); border-radius: 50%; padding: 35px; position: relative; top: calc(var(--min) * -0.5); }
#technique.explosive .diagram .circle::before{ content: ""; display: block; background: #FFF; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); border-radius: inherit; padding-bottom: 100%; }
#technique.explosive .diagram .circle p{ font-size: 26px; font-weight: 600; color: #111; text-align: center; position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); }

#technique.explosive .diagram .square{ width: calc(100% - var(--width01)); padding-left: var(--gapR); }
#technique.explosive .diagram .square .item{ display: flex; }
#technique.explosive .diagram .square .item:not(:last-of-type){ margin-bottom: var(--gapB); }
#technique.explosive .diagram .square .item > *{ display: flex; flex-direction: column; }
#technique.explosive .diagram .square p{ min-height: var(--min); display: flex; align-items: center; padding: 10px 30px; }

#technique.explosive .diagram .square .blue{ width: var(--width02); }
#technique.explosive .diagram .square .blue div{ position: relative; z-index: 10; }
#technique.explosive .diagram .square .blue div::before{ content: ""; width: calc(100% + (var(--gapR) * 1.5)); height: calc(200% + var(--gapB)); background: var(--grayBg); border-top: var(--dashed); border-left: var(--dashed); position: absolute; top: 50%; left: calc(var(--gapR) * -0.5); z-index: -1; box-sizing: border-box; }
#technique.explosive .diagram .square .blue div::after{ content: ""; width: var(--dot); height: var(--dot); background: var(--mainColor); border-radius: 50%; position: absolute; top: 50%; left: calc(var(--gapR) * -0.5); transform: translate(-50%, -50%); }
#technique.explosive .diagram .square .blue p{ justify-content: center; background: linear-gradient(90deg, #196BB3, #0F4B80); font-size: 22px; font-weight: 500; color: #FFF; text-align: center; }

#technique.explosive .diagram .square .border{ width: calc(100% - var(--width02)); padding-left: var(--gapR); }
#technique.explosive .diagram .square .border > *:not(:last-of-type){ margin-bottom: var(--gapB); }
#technique.explosive .diagram .square .border div{ position: relative; z-index: 10; }
#technique.explosive .diagram .square .border div::before{ content: ""; width: calc(var(--gapR) / 2); height: calc(100% + var(--gapB)); background: var(--grayBg); border-top: var(--dashed); border-left: var(--dashed); position: absolute; top: 50%; left: 0; transform: translateX(-100%); box-sizing: border-box; }
#technique.explosive .diagram .square .border div:only-child::before{ display: none; }
#technique.explosive .diagram .square .border div:last-child::before{ background: none; border-top: none; border-left: none; border-bottom: var(--dashed); transform: translate(-100%, -100%); }
#technique.explosive .diagram .square .border div::after{ content: ""; width: var(--dot); height: var(--dot); background: #777; border-radius: 50%; position: absolute; top: 50%; left: calc(var(--gapR) * -0.5); z-index: 20; transform: translate(-50%, -50%); }
#technique.explosive .diagram .square .border div:only-child::after{ display: none; }
#technique.explosive .diagram .square .border p{ background: #FFF; border: 1px solid #DDD; font-size: 20px; font-weight: 500; color: #333; }
#technique.explosive .diagram .square .border span{ width: var(--num); height: var(--num); background: #EEE; border-radius: 50%; font-family: var(--engFont); font-size: 16px; font-weight: 500; color: #777; line-height: var(--num); text-align: center; margin-right: 20px; }

#technique.explosive .diagram .square .item02{ position: relative; z-index: 15; }
#technique.explosive .diagram .square .item02 .blue{ justify-content: center; }
#technique.explosive .diagram .square .item02 .blue div::before{ width: calc(100% + ((var(--gapR) / 2) * 4)); background: none; border-left: none; left: calc(var(--gapR) * -1); }
#technique.explosive .diagram .square .item02 .border div:last-child::before{ border-top: var(--dashed); }
#technique.explosive .diagram .square .item03 .blue div::before{ top: 50%; border-top: none; border-bottom: var(--dashed); transform: translateY(-100%); }
#technique.explosive .diagram .square .item03 .border div:first-child::before{ border-top: none; }


#technique.explosive .pros-cons{
	--padding: 30px;
}

#technique.explosive .sec01 .pros-cons{ margin: -15px; }
#technique.explosive .sec01 .pros-cons > *{ margin: 15px; }
#technique.explosive .sec01 .pros-cons .gray dl dt{ margin-bottom: 20px; }
#technique.explosive .sec01 .pros-cons p{ font-size: 20px; font-weight: 500; color: #333; padding-left: 30px; position: relative; }
#technique.explosive .sec01 .pros-cons p::before{ content: ""; width: 10px; height: 2px; background: var(--mainColor); position: absolute; top: calc(1.3em / 2); left: 0; transform: translateY(-50%); }

#technique.explosive .sec03 .pros-cons ul li i{ display: inline-block; font-weight: 500; font-style: normal; vertical-align: middle; margin: 0 2px; transform: translateY(-0.1em); }

#technique.explosive .figure figure{ display: block; background: #FFF; border: 1px solid #DDD; padding: 100px; text-align: center; }


@media screen and (max-width: 1700px){
	#technique.explosive .table-box{
		--theadSize: 18px;
	}
	#technique.explosive .table01 thead th{ padding: 10px; }

	#technique.explosive .diagram{
		--min: 65px;
	}
	#technique.explosive .diagram{ padding: 50px 70px; }
	#technique.explosive .diagram .circle p{ font-size: 23px; }

	#technique.explosive .diagram .square p{ padding-inline: 20px; }
	#technique.explosive .diagram .square .blue p{ font-size: 20px; }
	#technique.explosive .diagram .square .border p{ font-size: 19px; }
	#technique.explosive .diagram .square .border span{ margin-right: 15px; }

	#technique.explosive .sec01 .pros-cons p{ font-size: 18px; padding-left: 25px; }

	#technique.explosive .figure figure{ padding: 70px; }
}

@media screen and (max-width: 1400px){
	#technique.explosive .table02 br{ display: none; }
}

@media screen and (max-width: 1280px){
	#technique.explosive .table-box{
		--theadSize: 17px;
		--tbodySize: 16px;
	}
	#technique.explosive .table-box thead th span{ margin-top: 0; }

	#technique.explosive .table01 .min{ min-height: 35px; }
	#technique.explosive .table02 colgroup col.s{ width: 150px; }
	#technique.explosive .table02 td{ padding: 10px 12px; }
	#technique.explosive .table02 ul li{ padding-left: 10px; }

	#technique.explosive .diagram{
		--gapR: 120px;
		--min: 55px;
		--num: 25px;
	}
	#technique.explosive .diagram{ padding-inline: 40px; }
	#technique.explosive .diagram .circle{ padding: 25px; }
	#technique.explosive .diagram .circle p{ font-size: 21px; }

	#technique.explosive .diagram .square p{ padding-inline: 15px; }
	#technique.explosive .diagram .square .blue p{ font-size: 18px; }
	#technique.explosive .diagram .square .border p{ font-size: 17px; }
	#technique.explosive .diagram .square .border span{ font-size: 15px; margin-right: 10px; }
	
	#technique.explosive .pros-cons {
		--padding: 20px;
	}
	#technique.explosive .sec01 .pros-cons{ margin: -5px; }
	#technique.explosive .sec01 .pros-cons > *{ margin: 5px; }
	#technique.explosive .sec01 .pros-cons p{ font-size: 17px; padding-left: 17px; }
	#technique.explosive .sec01 .pros-cons p::before{ width: 7px; }

	#technique.explosive .figure figure{ padding: 20px 30px; }
}

@media screen and (max-width: 1100px){
	#technique.explosive .intro br{ display: none; }

	#technique.explosive .table02 ul.grid{ grid-template-columns: repeat(1, 100%); }
}

@media screen and (max-width: 1000px){
	#technique.explosive .diagram{
		--gapR: 80px;
	}
	#technique.explosive .diagram .circle{ padding: 20px; }
	#technique.explosive .diagram{ padding-inline: 0; }
}

@media screen and (max-width: 800px){
	#technique.explosive .blankImg{ pointer-events: unset; }
	#technique.explosive .blankImg i{ display: flex; }

	#technique.explosive .diagram{
		--gapR: 30px;
		--gapB: 5px;
		--min: 22px;
	}
	#technique.explosive .diagram{ padding-top: 10px; }
	#technique.explosive .diagram .flex01{ flex-direction: column; align-items: center; }
	#technique.explosive .diagram .circle{ width: 200px; top: unset; }

	#technique.explosive .diagram .square{ width: 100%; padding-top: var(--gapR); padding-left: 0; }
	#technique.explosive .diagram .square .item{ flex-direction: column; position: relative; }
	#technique.explosive .diagram .square .item:not(:last-of-type){ margin-bottom: var(--gapR); }
	#technique.explosive .diagram .square .item::before{ content: ""; width: 1px; height: var(--gapR); border-right: var(--dashed); position: absolute; top: 0; left: 50%; transform: translateY(-100%); }
	#technique.explosive .diagram .square .item > *{ width: 100%; }
	#technique.explosive .diagram .square .item > * > div::before, 
	#technique.explosive .diagram .square .item > * > div::after{ display: none; }
	#technique.explosive .diagram .square .border{ padding-left: 0; margin-top: var(--gapB); }
}


/* 기술현황 - 워터젯 공법 */
#technique.waterjet .box-list li{ min-height: 200px; padding-bottom: 30px; }

#technique.waterjet .grid-dl{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); margin: -10px; }
#technique.waterjet .grid-dl > *{ border: 1px solid #DDD; padding: 50px; margin: 10px; }
#technique.waterjet .grid-dl dl dd{ font-size: 20px; }
#technique.waterjet .grid-dl ul li{ padding-left: 13px; line-height: 1.6; position: relative; }
#technique.waterjet .grid-dl ul li:not(:last-of-type){ margin-bottom: 5px; }
#technique.waterjet .grid-dl ul li::before{ content: ""; width: 3px; height: 3px; background: var(--mainColor); border-radius: 50%; position: absolute; top: calc(1.6em / 2); left: 0; transform: translateY(-50%); }


#technique.waterjet .section-box > div:not(:last-of-type){ margin-bottom: 80px; }
#technique.waterjet .section-box > div > *:not(:last-child){ margin-bottom: 20px; }
#technique.waterjet .section-box h6{ background: var(--mainColor); font-family: var(--engFont); font-size: 26px; font-weight: 500; color: #FFF; text-align: center; padding: 25px; margin-bottom: 0 !important; }
#technique.waterjet .section-box .box,
#technique.waterjet .section-box dl{ background: #FFF; border: 1px solid #DDD; padding: 50px; }
#technique.waterjet .section-box dl dt{ margin-bottom: 40px; }
#technique.waterjet .section-box ul li{ font-size: 20px; font-weight: 500; color: #111; padding-left: 18px; position: relative; }
#technique.waterjet .section-box ul li::before{ content: ""; width: 3px; height: 3px; background: var(--mainColor); border-radius: 50%; position: absolute; top: calc(1.3em / 2); left: 0; transform: translateY(-50%): }
#technique.waterjet .section-box ul li p{ font-weight: 300; color: #333; margin-top: 15px; line-height: 1.6; }
#technique.waterjet .section-box ul li p{ width: calc(100% + 18px); margin-left: -18px; }


#technique.waterjet .sec01 .dl01 ul{ display: grid; grid-template-columns: repeat(3, calc(100% / 3)); }
#technique.waterjet .sec01 .dl01 ul li{ margin: 0 30px; position: relative; }
#technique.waterjet .sec01 .dl01 ul li::after{ content: ""; width: 1px; height: 100%; background: #DDD; position: absolute; top: 0; right: -30px; }
#technique.waterjet .sec01 .dl01 ul li:last-of-type::after{ display: none; }
#technique.waterjet .sec01 .dl01 ul li p{ font-family: var(--engFont); }

#technique.waterjet .sec01 .dl02 ul{ display: grid; grid-template-columns: repeat(2, 50%); margin: -12px -7px; }
#technique.waterjet .sec01 .dl02 ul li{ font-family: var(--engFont); margin: 12px 7px; }
#technique.waterjet .sec01 .dl02 ul li p{ font-family: var(--baseFont); font-size: 18px; margin-top: 10px; }

#technique.waterjet .sec02 .dl01 .num-dl{ display: grid; grid-template-columns: repeat(2, 50%); }
#technique.waterjet .sec02 .dl01 .num-dl > *:not(:last-of-type){ border-right: none; }

#technique.waterjet .sec02 .box dl{ background: none; border: none; padding: 0; }
#technique.waterjet .sec02 .box dl:not(:last-of-type){ margin-bottom: 40px; }
#technique.waterjet .sec02 .box dl dt{ background: #F5F5F5; font-family: var(--engFont); font-size: 22px; font-weight: 600; color: #111; text-align: center; padding: 10px; margin-bottom: 40px; }
#technique.waterjet .sec02 .box ul{ display: grid; grid-template-columns: repeat(2, 50%); margin: -7px; }
#technique.waterjet .sec02 .box ul li{ font-size: 18px; font-weight: 400; color: #333; margin: 7px; }

@media screen and (max-width: 1700px){
	#technique.waterjet .box-list li{ min-height: 160px; padding-bottom: 25px; }
	
	#technique.waterjet .grid-dl > *{ padding: 35px; }
	#technique.waterjet .grid-dl dl dd{ font-size: 18px; }

	#technique.waterjet .section-box h6{ font-size: 23px; padding: 17px; }
	#technique.waterjet .section-box .box, 
	#technique.waterjet .section-box dl{ padding: 35px; }
	#technique.waterjet .section-box dl dt{ margin-bottom: 30px; }
	#technique.waterjet .section-box ul li{ font-size: 19px; }

	#technique.waterjet .sec02 .box dl dt{ font-size: 20px; margin-bottom: 30px; }
}

@media screen and (max-width: 1280px){
	#technique.waterjet .box-list li{ min-height: 120px; padding-bottom: 20px; }

	#technique.waterjet .grid-dl > *{ padding: 20px; }
	#technique.waterjet .grid-dl dl dd{ font-size: 17px; }
	#technique.waterjet .grid-dl ul li{ padding-left: 10px; }

	#technique.waterjet .section-box > div:not(:last-of-type){ margin-bottom: 50px; }
	#technique.waterjet .section-box h6{ font-size: 20px; padding: 12px; }
	#technique.waterjet .section-box .box, 
	#technique.waterjet .section-box dl{ padding: 25px; }
	#technique.waterjet .section-box dl dt{ margin-bottom: 20px; }
	#technique.waterjet .section-box ul li{ font-size: 18px; padding-left: 13px; }
	#technique.waterjet .section-box ul li p{ width: calc(100% + 13px); margin-top: 10px; margin-left: -13px; }

	#technique.waterjet .sec01 .dl01 ul li{ margin: 0 20px; }
	#technique.waterjet .sec01 .dl01 ul li::after{ right: -20px; }

	#technique.waterjet .sec01 .dl02 ul li p{ font-size: 17px; margin-top: 5px; }

	#technique.waterjet .sec02 .dl01 .num-dl dl{ padding: 20px; }
	#technique.waterjet .sec02 .dl01 .num-dl dl dt{ margin-bottom: 15px; }
	#technique.waterjet .sec02 .dl01 .num-dl dl dd{ font-size: 17px; }

	#technique.waterjet .sec02 .box dl dt{ font-size: 18px; padding: 7px; margin-bottom: 20px; }
	#technique.waterjet .sec02 .box ul{ margin: -5px -7px; }
	#technique.waterjet .sec02 .box ul li{ font-size: 17px; margin: 5px 7px; }
}

@media screen and (max-width: 1200px){
	#technique.waterjet .sec01 .dl02 br{ display: none; }
}

@media screen and (max-width: 1100px){
	#technique.waterjet .grid-dl{ grid-template-columns: repeat(1, 100%); }
	#technique.waterjet .grid-dl br{ display: none; }
}

@media screen and (max-width: 1000px){
	#technique.waterjet .sec02 .box ul{ grid-template-columns: repeat(1, 100%); }
}

@media screen and (max-width: 700px){
	#technique.waterjet .intro br, 
	#technique.waterjet .box-list br{ display: none; }

	#technique.waterjet .sec01 .dl01 ul{ margin: 0 -20px; }

	#technique.waterjet .sec01 .dl02 ul{ grid-template-columns: repeat(1, 100%); }
}


/* 기술현황 - 석면해체 공법 */
@media screen and (max-width: 600px){
	#technique.buster .intro br{ display: none; }
}


/* 기술현황 - 석면해체 공법 */
#technique.asbestos .num-dl{ display: grid; grid-template-columns: repeat(4, 25%); margin: -10px; }
#technique.asbestos .num-dl > *{ background: #FFF; border: 1px solid #DDD; padding: 30px; margin: 10px; transition: background 0.3s,  border-color 0.3s; }
#technique.asbestos .num-dl dl *{ font-size: 20px; }
#technique.asbestos .num-dl dl dt{ font-weight: 600; color: #111; padding-left: 40px; margin-bottom: 20px; transition: color 0.3s; }
#technique.asbestos .num-dl dl dt::before{ width: auto; height: auto; background: transparent; font-size: inherit; font-weight: 600; color: var(--mainColor); line-height: inherit; top: 0; transform: unset; transition: color 0.3s; }
#technique.asbestos .num-dl dl dd{ font-weight: 300; color: #333; line-height: 1.6; transition: color 0.3s; }


#technique.asbestos .box-list.figure ul li{ background: #FFF; border-color: #DDD; padding: 50px; }
#technique.asbestos .box-list.figure ul li::before{ background: var(--mainColor); }
#technique.asbestos .box-list.figure ul li strong{ color: #111; margin-bottom: 20px; }
#technique.asbestos .box-list.figure ul li figure,
#technique.asbestos .box-list.figure ul li figure img{ width: 100%; }


#technique.asbestos .border{ background: #FFF; border: 1px solid #DDD; padding: 60px; }
#technique.asbestos .border + .border{ margin-top: 40px; }
#technique.asbestos .border h5{ font-size: 28px; font-weight: 600; color: #111; text-align: center; margin-bottom: 60px; }
#technique.asbestos .border h6{ font-size: 24px; font-weight: 600; color: #333; text-align: center; margin-bottom: 30px; }


#technique.asbestos .diagram{
	--width: 100% / 6;
	--icon: 54px;
}
#technique.asbestos .diagram{ max-width: 1390px; width: 100%; margin: 0 auto; }
#technique.asbestos .diagram .flex-box{ display: flex; }
#technique.asbestos .diagram .flex-box > *{ width: calc(var(--width)); background: rgba(var(--mainRGB), 0.05); border-radius: 999px; padding: 15px; position: relative; }
#technique.asbestos .diagram .flex-box > *::before{ content: ""; width: var(--icon); height: var(--icon); background: var(--mainColor) url("/img/sub/technique/icon_arrow.svg") no-repeat center center / auto; border-radius: 50%; position: absolute; top: 50%; left: 0; z-index: 10; transform: translate(-50%, -50%); }
#technique.asbestos .diagram .flex-box > *:first-of-type::before{ display: none; }
#technique.asbestos .diagram .circle{ background: #FFF; border: 2px solid rgba(var(--mainRGB), 0.05); border-radius: 50%; position: relative; }
#technique.asbestos .diagram .circle::before{ content: ""; display: block; padding-bottom: 100%; }
#technique.asbestos .diagram .circle p{ font-size: 20px; font-weight: 600; color: var(--mainColor); text-align: center; position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); }

#technique.asbestos .diagram .block{ width: calc((var(--width)) * 3); }
#technique.asbestos .diagram .flex{ display: flex; }
#technique.asbestos .diagram .flex > *{ width: calc((100% - 9%) / 3); position: relative; }
#technique.asbestos .diagram .flex > *:not(:last-of-type){ margin-right: 4.5%; }
#technique.asbestos .diagram .flex > *::before{ content: ""; width: var(--icon); height: var(--icon); background: var(--mainColor) url("/img/sub/technique/icon_equals.svg") no-repeat center center / auto; border-radius: 50%; position: absolute; top: 50%; left: -8%; z-index: 10; transform: translate(-50%, -50%); }
#technique.asbestos .diagram .flex > *:first-of-type::before{ display: none; }

#technique.asbestos .step{
	--num: 36px;
	--padding: 15px;
}
#technique.asbestos .step{ text-align: center; padding-top: 9px; overflow: hidden; }
#technique.asbestos .step ul{ display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: -70px; }
#technique.asbestos .step ul li{ margin-bottom: 70px; position: relative; z-index: 10; }
#technique.asbestos .step ul li::before, 
#technique.asbestos .step ul li::after{ content: ""; width: 24px; height: 24px; background: url("/img/sub/technique/icon_blue_arrow.svg") no-repeat center center / contain; position: absolute; top: -1px; }
#technique.asbestos .step ul li::before{ left: var(--padding); transform: translate(-50%, -50%); display: none; }
#technique.asbestos .step ul li::after{ right: 0; transform: translate(50%, -50%); }
#technique.asbestos .step ul li:last-of-type::after{ display: none !important; }

#technique.asbestos .step ul li i{ width: 16px; height: 16px; background: #FFF; border: 3px solid var(--mainColor); border-radius: 50%; position: absolute; top: -1px; left: 50%; z-index: 10; transform: translate(-50%, -50%); }
#technique.asbestos .step ul li i::before,
#technique.asbestos .step ul li i::after{ content: ""; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; } 
#technique.asbestos .step ul li i::before{ width: calc(100% + 30px); height: calc(100% + 30px); background: rgba(var(--mainRGB), 0.1); }
#technique.asbestos .step ul li i::after{ width: calc(100% + 92px); height: calc(100% + 92px); background: rgba(var(--mainRGB), 0.05); }

#technique.asbestos .step ul li .box{ height: 100%; display: flex; flex-direction: column; align-items: center; padding: 0 var(--padding); padding-top: 40px; }
#technique.asbestos .step ul li .box::before{ content: ""; width: var(--vw); height: 1px; display: none; border-bottom: 2px dashed var(--mainColor); position: absolute; top: -2px; left: 0; z-index: -1; transform: translateX(-10%); }
#technique.asbestos .step ul li:first-of-type .box::before{ display: block; }
#technique.asbestos .step ul li span{ display: inline-block; width: var(--num); height: var(--num); background: var(--mainColor); border: 2px solid var(--mainColor); border-radius: 50%; font-family: var(--engFont); font-size: 18px; font-weight: 600; color: #FFF; line-height: calc(var(--num) - 4px); font-style: normal; text-align: center; margin-bottom: 10px; position: relative; z-index: 10; }
#technique.asbestos .step ul li p{ flex: 1 0 auto; font-family: var(--engFont); font-size: 19px; font-weight: 400; color: #333; line-height: 1.6; padding-bottom: 25px; }
#technique.asbestos .step ul li p small{ display: block; font-size: 17px; color: #777; }
#technique.asbestos .step .box div{ max-width: 100%; width: 240px; height: 100%; display: flex; flex-direction: column; background: var(--mainColor); }
#technique.asbestos .step .box div p{ display: flex; justify-content: center; align-items: center; color: #FFF; padding: 10px; }
#technique.asbestos .step .box .flex{ width: 100%; display: flex; flex-direction: row; justify-content: center; background: transparent; }
#technique.asbestos .step .box .flex > *{ max-width: calc((100% - 8px) / 3); }
#technique.asbestos .step .box .flex > *:not(:last-child){ margin-right: 4px; }

#technique.asbestos .step ul li:last-of-type i{ width: 8px; height: 8px; background: var(--mainColor); }
#technique.asbestos .step ul li:last-of-type i::before,
#technique.asbestos .step ul li:last-of-type i::after{ display: block; }
#technique.asbestos .step ul li:last-of-type span{ background: #FFF; color: var(--mainColor); }


#technique.asbestos .step01{
	--padding: 50px;
}
#technique.asbestos .step01 ul li{ width: calc(100% / 3); } 
#technique.asbestos .step01 ul li:nth-of-type(3n) + li::before{ display: block; }
#technique.asbestos .step01 ul li:nth-of-type(3n)::after{ right: var(--padding); }
#technique.asbestos .step01 ul li:nth-of-type(3n) + li .box::before{ display: block; }


#technique.asbestos .step02 ul li{ width: 20%; }
#technique.asbestos .step02 ul li:nth-of-type(5n) + li::before{ display: block; }
#technique.asbestos .step02 ul li:nth-of-type(5n)::after{ right: var(--padding); }
#technique.asbestos .step02 ul li:nth-of-type(5n) + li .box::before{ display: block; }


#technique.asbestos .step03 ul li{ width: 20%; }
#technique.asbestos .step03 ul li:nth-of-type(1), 
#technique.asbestos .step03 ul li:nth-of-type(2),
#technique.asbestos .step03 ul li:nth-of-type(3), 
#technique.asbestos .step03 ul li:nth-of-type(4){ width: 25%; }
#technique.asbestos .step03 ul li:nth-of-type(4)::after{ right: var(--padding); }
#technique.asbestos .step03 ul li:nth-of-type(4) + li::before{ display: block; }
#technique.asbestos .step03 ul li:nth-of-type(4) + li .box::before{ display: block; }


#technique.asbestos .download{ background: url("/img/sub/technique/asbestos_bg.jpg") no-repeat center center / cover; text-align: center; position: relative; }
#technique.asbestos .download::before{ content: ""; content: ""; width: 100%; height: 100%; background: var(--mainColor); position: absolute; top: 0; left: 0; clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); transition: opacity var(--aosT); }
#technique.asbestos .download::after{ content: ""; width: 100%; height: 100%; background: url("/img/sub/technique/asbestos_symbol.svg") no-repeat bottom left 10% / contain; position: absolute; top: 0; left: 0; }
#technique.asbestos .download .inner{ padding: 60px; position: relative; z-index: 10; }
#technique.asbestos .download h6{ font-size: 26px; font-weight: 500; color: #FFF; }
#technique.asbestos .download .viewmore{ padding: 30px; margin-bottom: -30px; }
#technique.asbestos .download .viewmore{ color: rgba(255, 255, 255, 0.6); }
#technique.asbestos .download .viewmore i{ border-color: rgba(255, 255, 255, 0.6); }
#technique.asbestos .download .viewmore i::before{ filter: grayscale(1) brightness(5); -webkit-filter: grayscale(1) brightness(5); }

@media screen and (hover: hover) and (pointer: fine){
	#technique.asbestos .num-dl > *:hover{ background: var(--mainColor); border-color: var(--mainColor); }
	#technique.asbestos .num-dl > *:hover dt{ color: #FFF; }
	#technique.asbestos .num-dl > *:hover dt::before,
	#technique.asbestos .num-dl > *:hover dd{ color: rgba(255, 255, 255, 0.8); }

	#technique.asbestos .download:hover::before{ opacity: 0; }
	#technique.asbestos .download:hover .viewmore{ color: #FFF; }
	#technique.asbestos .download:hover .viewmore i{ background: #FFF; }
	#technique.asbestos .download:hover .viewmore i::before{ filter: grayscale(1) opacity(0.7); -webkit-filter: grayscale(1) opacity(0.7); }
}

@media screen and (max-width: 1700px){
	#technique.asbestos .num-dl > *{ padding: 25px; }
	#technique.asbestos .num-dl dl *{ font-size: 19px; }  
	#technique.asbestos .num-dl dl dt{ padding-left: 30px; }

	#technique.asbestos .box-list.figure ul li{ padding: 35px; }

	#technique.asbestos .border{ padding: 40px; }
	#technique.asbestos .border h5{ font-size: 24px; margin-bottom: 40px; }
	#technique.asbestos .border h6{ font-size: 22px; }

	#technique.asbestos .diagram .circle p{ font-size: 18px; }

	#technique.asbestos .step01{
		--padding: 40px;
	}

	#technique.asbestos .download .inner{ padding: 40px; }
	#technique.asbestos .download h6{ font-size: 24px; }
}

@media screen and (max-width: 1400px){
	#technique.asbestos .step03 ul li:nth-of-type(5) br, 
	#technique.asbestos .step03 ul li:nth-of-type(6) br, 
	#technique.asbestos .step03 ul li:nth-of-type(7) br, 
	#technique.asbestos .step03 ul li:nth-of-type(8) br,
	#technique.asbestos .step03 ul li:nth-of-type(9) br{ display: none; }
}

@media screen and (max-width: 1280px){
	#technique.asbestos .num-dl{ grid-template-columns: repeat(2, 50%); }
	#technique.asbestos .num-dl > *{ padding: 20px; }
	#technique.asbestos .num-dl dl *{ font-size: 17px; }  
	#technique.asbestos .num-dl dl dt{ padding-left: 25px; margin-bottom: 10px; }

	#technique.asbestos .box-list.figure ul li{ padding: 25px; }

	#technique.asbestos .border{ padding: 40px 30px; }
	#technique.asbestos .border h5{ font-size: 22px; margin-bottom: 25px; }
	#technique.asbestos .border h6{ font-size: 20px; }

	#technique.asbestos .diagram{
		--icon: 45px;
	}


	#technique.asbestos .step{
		--num: 32px;
	}
	#technique.asbestos .step ul{ margin-bottom: -40px; }
	#technique.asbestos .step ul li{ margin-bottom: 40px; }
	#technique.asbestos .step ul li .box{ padding-top: 20px; }
	#technique.asbestos .step ul li i{ width: 12px; height: 12px; }
	#technique.asbestos .step ul li i::before{ width: calc(100% + 25px); height: calc(100% + 25px); }
	#technique.asbestos .step ul li i::after{ width: calc(100% + 50px); height: calc(100% + 50px); }
	#technique.asbestos .step ul li .box::before{ transform: translateX(-5%); }
	#technique.asbestos .step ul li span{ font-size: 17px; }
	#technique.asbestos .step ul li p{ font-size: 18px; padding-bottom: 10px; }

	#technique.asbestos .step01{
		--padding: 30px;
	}

	#technique.asbestos .download .inner{ padding: 30px 20px; }
	#technique.asbestos .download h6{ font-size: 20px; }
	#technique.asbestos .download .viewmore{ padding: 20px; margin-bottom: -20px; }
}

@media screen and (max-width: 1200px){
	#technique.asbestos .diagram{
		--icon: 40px;
	}
	#technique.asbestos .diagram{ max-width: 200px; }
	#technique.asbestos .diagram .flex-box{ flex-direction: column; align-items: center; }
	#technique.asbestos .diagram .flex-box > *{ width: 100%; padding: 10px; }
	#technique.asbestos .diagram .flex-box > *::before{ top: 0; left: 50%; transform: translate(-50%, -50%) rotate(90deg); }
	#technique.asbestos .diagram .block{ width: 100%; }
	#technique.asbestos .diagram .flex{ flex-direction: column; }
	#technique.asbestos .diagram .flex > *{ width: 100%; }
	#technique.asbestos .diagram .flex > *::before{ top: 0; left: 50%; transform: translate(-50%, -50%); }


	#technique.asbestos .step01{
		--padding: 15px;
	}

	#technique.asbestos .step02 ul li{ width: calc(100% / 3); }
	#technique.asbestos .step02 ul li:nth-of-type(5n) + li::before{ display: none; }
	#technique.asbestos .step02 ul li:nth-of-type(5n)::after{ right: 0; }
	#technique.asbestos .step02 ul li:nth-of-type(5n) + li .box::before{ display: none; }
	#technique.asbestos .step02 ul li:nth-of-type(3n) + li::before{ display: block; }
	#technique.asbestos .step02 ul li:nth-of-type(3n)::after{ right: var(--padding); }
	#technique.asbestos .step02 ul li:nth-of-type(3n) + li .box::before{ display: block; }

	#technique.asbestos .step03 ul li{ width: calc(100% / 3) !important; }
	#technique.asbestos .step03 ul li br{ display: block !important; } 
	#technique.asbestos .step03 ul li:nth-of-type(4)::after{ right: 0; }
	#technique.asbestos .step03 ul li:nth-of-type(4) + li::before{ display: none; }
	#technique.asbestos .step03 ul li:nth-of-type(4) + li .box::before{ display: none; }
	#technique.asbestos .step03 ul li:nth-of-type(3n)::after{ right: var(--padding); }
	#technique.asbestos .step03 ul li:nth-of-type(3n) + li::before{ display: block; }
	#technique.asbestos .step03 ul li:nth-of-type(3n) + li .box::before{ display: block; }
}

@media screen and (max-width: 1100px){
	#technique.asbestos .step01 ul li{ width: 50%; }
	#technique.asbestos .step01 ul li:nth-of-type(3n) + li::before{ display: none; }
	#technique.asbestos .step01 ul li:nth-of-type(3n)::after{ right: 0; }
	#technique.asbestos .step01 ul li:nth-of-type(3n) + li .box::before{ display: none; }
	#technique.asbestos .step01 ul li:nth-of-type(2n) + li::before{ display: block; }
	#technique.asbestos .step01 ul li:nth-of-type(2n)::after{ right: var(--padding); }
	#technique.asbestos .step01 ul li:nth-of-type(2n) + li .box::before{ display: block; }

	#technique.asbestos .download br{ display: none; }
}

@media screen and (max-width: 900px){
	#technique.asbestos .border h5{ font-size: 20px; }

	#technique.asbestos .step ul li p{ font-size: 17px; }
}

@media screen and (max-width: 850px){	
	#technique.asbestos .step03 ul li{ width: calc(100% / 2) !important; }
	#technique.asbestos .step03 ul li:nth-of-type(3n)::after{ right: 0; }
	#technique.asbestos .step03 ul li:nth-of-type(3n) + li::before{ display: none; }
	#technique.asbestos .step03 ul li:nth-of-type(3n) + li .box::before{ display: none; }
	#technique.asbestos .step03 ul li:nth-of-type(2n)::after{ right: var(--padding); }
	#technique.asbestos .step03 ul li:nth-of-type(2n) + li::before{ display: block; }
	#technique.asbestos .step03 ul li:nth-of-type(2n) + li .box::before{ display: block; }
	#technique.asbestos .step03 ul li:last-of-type .box::before{ left: 50%; transform: translateX(-50%); }
}

@media screen and (max-width: 800px){
	#technique.asbestos .step02{
		--padding: 10px;
	}
}

@media screen and (max-width: 700px){
	#technique.asbestos .num-dl{ grid-template-columns: repeat(1, 100%); }

	#technique.asbestos .step02 ul li{ width: 50%; }
	#technique.asbestos .step02 ul li:nth-of-type(3n) + li::before{ display: none; }
	#technique.asbestos .step02 ul li:nth-of-type(3n)::after{ right: 0; }
	#technique.asbestos .step02 ul li:nth-of-type(3n) + li .box::before{ display: none; }
	#technique.asbestos .step02 ul li:nth-of-type(2n) + li::before{ display: block; }
	#technique.asbestos .step02 ul li:nth-of-type(2n)::after{ right: var(--padding); }
	#technique.asbestos .step02 ul li:nth-of-type(2n) + li .box::before{ display: block; }
	#technique.asbestos .step02 ul li:last-of-type .box::before{ left: 50%; transform: translateX(-50%); }
}

@media screen and (max-width: 600px){
	#technique.asbestos .border{ padding: 30px 15px; }

	#technique.asbestos .step01{
		--padding: 10px;
	}

	#technique.asbestos .step03 ul li br{ display: none !important; }
	#technique.asbestos .step03 ul li .box{ padding-inline: 7px; }
}


/* 자료실 - 협력업체 등록 현황 */
#cooperation .grid-box{ display: grid; grid-template-columns: repeat(5, 20%); margin: -30px -15px; }
#cooperation .grid-box .item{ margin: 30px 15px; }
#cooperation .grid-box .item figure, 
#cooperation .grid-box .item figure img{ width: 100%; }
#cooperation .grid-box .item figure{ border: 1px solid #EEE; }
#cooperation .grid-box .item p{ font-size: 20px; font-weight: 500; color: #333; text-align: center; margin-top: 15px; }

@media screen and (max-width: 1700px){
	#cooperation .grid-box .item p{ font-size: 19px; }
}

@media screen and (max-width: 1280px){
	#cooperation .grid-box{ margin: -20px -10px; }
	#cooperation .grid-box .item{ margin: 20px 10px; }
	#cooperation .grid-box .item p{ font-size: 17px; margin-top: 10px; }
}

@media screen and (max-width: 1200px){
	#cooperation .grid-box{ grid-template-columns: repeat(4, 25%); }
}

@media screen and (max-width: 900px){
	#cooperation .grid-box{ grid-template-columns: repeat(3, calc(100% / 3)); }
}

@media screen and (max-width: 700px){
	#cooperation .grid-box{ grid-template-columns: repeat(2, 50%); }
}


/* 개인정보처리방침 */
#policy *{ font-size: 16px; font-weight: 300; color: #111; line-height: 1.5; }
#policy .title{ border-top: 1px solid #111; border-bottom: 1px solid #111; padding: 60px 0; text-align: center; }
#policy .title p{ font-size: 20px; font-weight: 500; color: #333; }
#policy .title p em{ font-size: inherit; font-weight: inherit; color: var(--mainColor); } 

#policy .privacy > dl{ margin-top: 60px; }
#policy .privacy > dl > dt{ font-size: 18px; font-weight: 500; color: #111; line-height: 1.3; padding-left: 21px; position: relative; }
#policy .privacy > dl > dt::before{ content: ""; width: 6px; height: 6px; background: var(--mainColor); position: absolute; top: 0; left: 0; }
#policy .privacy > dl > dd{ margin-top: 15px; }
#policy .privacy > dl > dd > p{ line-height: inherit; }
#policy .privacy > dl > dd ul li{ font-weight: 500; margin-top: 15px; padding-left: 10px; position: relative; }
#policy .privacy > dl > dd ul li::before{ content: ""; width: 2px; height: 2px; background: #111; border-radius: 50%; position: absolute; top: calc(1.5em / 2); left: 0; transform: translateY(-50%); }
#policy .privacy > dl > dd ul li p{ margin-top: 5px; margin-left: -10px; }
#policy .privacy > dl > dd ul li span{ margin-left: 30px; }
#policy .privacy > dl > dd ol{ margin-top: 3px; }
#policy .privacy > dl > dd ol li{ list-style: auto; list-style-position: inside; padding-left: 17px; text-indent: -17px; }

@media screen and (max-width: 1700px){
	#policy .title{ padding: 40px 0; }
	#policy .title p{ font-size: 19px; }
}

@media screen and (max-width: 1450px){
	#policy br{ display: none; }
}

@media screen and (max-width: 1280px){
	#policy .title{ padding: 25px 0; }
	#policy .title p{ font-size: 17px; }

	#policy .privacy > dl > dt{ font-size: 17px; padding-left: 15px; }
	#policy .privacy > dl > dt::before{ width: 5px; height: 5px; }
	#policy .privacy > dl > dd ul li span{ margin-left: 15px; }
}