@charset "utf-8";
/* 서비스 :: 특장점 */
.features_item { display: flex; flex-wrap: wrap; align-items: center; }
.features_item ~ .features_item { margin-top: 90px; }
.features_item .img_area { width: 50%; background-color: #f2f2f2; border-radius: var(--border-radius); overflow: hidden; }
.features_item .img_area img { display: block; max-width: 100%; height: auto; margin: 0 auto; }
.features_item .txt_area { width: 50%; padding-left: 8.7%; }
.features_item .txt_area p { font-size: 32px; font-weight: 700; line-height: 1.4; }
.features_item .txt_area ul { margin-top: 32px; }
.features_item .txt_area li { position: relative; font-size: 20px; font-weight: 500; padding-left: 22px; }
.features_item .txt_area li::before { position: absolute; left: 0; top: 15px; content: ''; width: 8px; height: 1px; background-color: #000; }
.features_item:nth-child(2n) { flex-direction: row-reverse; }
.features_item:nth-child(2n) .txt_area { padding-left: 0; padding-right: 8.7%; }
.features_item .fi_img { display: block; margin-top: 8px; }

@media all and (max-width:768px) {
	.features_item ~ .features_item { margin-top: 45px; }
	.features_item .img_area { width: 100%; }
	.features_item .txt_area { width: 100%; padding-left: 0; margin-top: 24px; }
	.features_item .txt_area p { font-size: 24px; }
	.features_item .txt_area ul { margin-top: 16px; }
	.features_item .txt_area li { font-size: 15px; padding-left: 18px; }
	.features_item .txt_area li::before { top: 11px; }
	.features_item:nth-child(2n) { flex-direction: row; }
	.features_item:nth-child(2n) .txt_area { padding-left: 0; padding-right: 0; }
}
@media all and (max-width:480px) {
	.features_item .fi_img { margin-top: 5px; }
	.features_item .fi_img img { display: block; width: 50%; }
}

/* 서비스 :: 진행 절차 */
.serv_steps { display: flex; flex-wrap: wrap; gap: 40px; }
.steps_item { display: flex; flex-direction: column; align-items: center; position: relative; width: calc((100% - 80px) / 3); padding: 44px; background-color: #fff; border: 1px solid var(--border-line); border-radius: var(--border-radius); transition: all 0.3s; box-shadow: 4px 8px 14px rgba(0, 0, 0, .05); }
.steps_item::after { position: absolute; right: -38px; top: 50%; font-family: 'Material Symbols Outlined'; content: '\e5cc'; font-size: 32px; color: #ddd; transform: translateY(-50%); }
.steps_item:nth-of-type(3n)::after, 
.steps_item:last-of-type::after { display: none; }
.steps_item .num { font-size: 18px; font-weight: 700; color: #1e73e1; margin: 27px 0 20px; }
.steps_item .title { font-size: 22px; line-height: 1.4; }
.steps_item .desc { font-size: 18px; color: #707070; text-align: center; margin-top: 10px; }
.steps_item:hover { background-color: var(--color-secondary); }
.steps_item:hover .num,
.steps_item:hover .title,
.steps_item:hover .desc { color: #fff; }

@media all and (max-width:1024px) {
	.steps_item { width: calc((100% - 40px) / 2); padding: 32px; }
	.steps_item:nth-of-type(3n)::after { display: block; }
	.steps_item:nth-of-type(2n)::after { display: none; }
	.steps_item:last-of-type::after { display: none !important; }
}

@media all and (max-width:768px) {
	.serv_steps { gap: 20px; }
	.steps_item { width: calc((100% - 20px) / 2); }
	.steps_item::after { right: -28px; }
	.steps_item .icon img { width: 104px; height: 104px; }
	.steps_item .num { font-size: 15px; margin: 20px 0 14px; }
	.steps_item .title { font-size: 20px; }
	.steps_item .desc { font-size: 15px; }
}

@media all and (max-width:480px) {
	.serv_steps { gap: 30px; }
	.steps_item { width: 85%; margin: 0 auto; }
	.steps_item::after { right: 50%; top: calc(100% - 8px); transform: translateX(50%) rotate(90deg); }
	.steps_item:nth-of-type(2n)::after { display: block; }
}

/* 서비스 :: 풀필먼트 */
#fulfillment .con.bg { background-color: #f9f9f9; }
.ffmt1 { background-color: var(--color-secondary); }
.ffmt1 .inner { background-color: #fff; max-width: 1200px; padding: 60px 60px 0; border-top-left-radius: 56px; border-top-right-radius: 56px; }

@media all and (max-width:768px) {
	.ffmt1 .inner { padding: 40px 40px 0; border-top-left-radius: 28px; border-top-right-radius: 28px; }
}

/* 서비스 :: 임대 */
.center_location { display: flex; flex-wrap: wrap; align-items: center; }
.center_location .map_area { position: relative; width: 38%; max-width: 410px; }
.center_location .map_area img { width: 100%; height: auto; }
.center_location .map_area .map_cover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.center_location .map_area .map_cover > li { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0; transition: all 0.3s; }
.center_location .map_area .map_cover > li.on {
	-webkit-animation: blink 0.5s ease-in-out infinite alternate;
	-moz-animation: blink 0.5s ease-in-out infinite alternate;
	animation: blink 0.5s ease-in-out infinite alternate;
}
.center_location .ctinfo_area { flex: 1 1 0; border-top: 2px solid var(--color-primary); margin-left: 6.48%; }
.ct_info { display: flex; align-items: center; padding: 25px 32px; border-bottom: 1px solid #dbdfe5; cursor: pointer; }
.ct_info.on,
.ct_info:hover {  background-color: #f1f5f8; }
.ct_info .tit { display: block; font-size: 20px; font-weight: 700; padding-right: 32px; }
.ct_info .info { border-left: 1px solid var(--color-primary); padding-left: 32px; }
.ct_info .info p { font-size: 18px; color: #7c7c7c; }

@-webkit-keyframes blink{
	0% {opacity: 0;}
	100% {opacity: 1;}
}
  
@-moz-keyframes blink{
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes blink{
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@media all and (max-width:1024px) {
	.ct_info { align-items: flex-start; flex-direction: column; padding: 18px 24px; }
	.ct_info .tit { font-size: 18px; padding-right: 0; margin-bottom: 8px; }
	.ct_info .info { border-left: none; padding-left: 0; }
	.ct_info .info p { font-size: 15px; }
}

@media all and (max-width:768px) {
	.center_location .map_area { width: 100%; margin: 0 auto; }
	.center_location .ctinfo_area { flex: auto; width: 100%; margin-left: 0; margin-top: 38px; }
}

@media all and (max-width:480px) {
	.center_location .map_area { max-width: 240px; }
}


/* 회사 :: 조직도 */
.orga2 .cs_info { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.orga2 .cs_info > div { width: calc((100% - 20px) / 2); text-align: center; padding: 36px 24px; font-size: 18px; border: 1px solid #ddd; border-radius: var(--border-radius); }
.orga2 .cs_info .tit { position: relative; display: block; font-size: 26px; font-weight: 700; color: #000; margin: 16px 0 24px 0; padding-bottom: 24px; }
.orga2 .cs_info .tit::after { position: absolute; left: 50%; bottom: 0; content: ''; width: 27px; height: 2px; background-color: var(--color-secondary); transform: translateX(-50%); }
.orga2 .cs_info .email { }

@media all and (max-width:480px) {
	.orga2 .cs_info > div { width: 100%; font-size: 16px; }
	.orga2 .cs_info .tit { font-size: 22px; }
	
}


/* 회사 :: 오시는길 */
.loc1 .loc_info { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; }
.loc1 .addr_area { flex: 1 1 0; display: flex; flex-wrap: wrap; }
.loc1 .addr_area > p { display: flex; flex-wrap: wrap; align-items: center; position: relative; width: 100%; }
.loc1 .addr_area > p + p { margin-top: 10px; }
.loc1 .addr_area .ico { width: 40px; height: 40px; background-color: var(--color-tertiary); border-radius: 50%; overflow: hidden; }
.loc1 .addr_area .ico img { display: block; width: 20px; height: 20px; margin: 10px auto; }
.loc1 .addr_area .addr { flex: 1 1 0; margin-left: 16px; font-size: 18px; line-height: 1.4; }
.loc1 .link_area { display: flex; gap: 6px; margin-left: 64px; }
.loc1 .link_area a { width: 64px; }
.loc1 .link_area a img { width: 100%; height: auto; border-radius: 8px; overflow: hidden; }
.loc1 .map_box { width: 100%; margin-top: 32px; border: 1px solid #eaeaea; border-radius: var(--border-radius); overflow: hidden; }
.loc1 .root_daum_roughmap { width: 100%; border: 0; padding: 0; border-radius: 0; }
.loc1 .root_daum_roughmap .wrap_map { width: 100%; height: 518px; }
.loc1 .root_daum_roughmap .wrap_map .map_border { display: none; }
.loc1 .wrap_controllers.hide { display: none; }
.loc1 .root_daum_roughmap_landing .border2 { display: block; }

.dock_list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; } 
.dock_list .dock_item { width: calc((100% - 80px) / 2);}
.dock_list .dock_item .tit1 { font-size: 26px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.dock_list .dock_item .tit2 { font-size: 20px; margin-bottom: 18px; }
.dock_list .dock_item .desc { font-size: 18px; margin-top: 18px; }
.dock_list + .desc { font-size: 16px; margin-top: 18px; }

@media all and (max-width:768px) {
	.loc1 .addr_area { flex: none; width: 100%; }
	.loc1 .addr_area .addr { font-size: 16px; }
	.loc1 .link_area { width: 100%; justify-content: flex-end; margin-left: 0; margin-top: 16px; }
	.loc1 .link_area a { width: 48px; }
	.loc1 .map_box { margin-top: 16px; }
	.loc1 .root_daum_roughmap .wrap_map { height: 324px; }

	.dock_list .dock_item { width: 100%; max-width: 500px; margin: 0 auto; }
	.dock_list .dock_item .tit1 { font-size: 20px; }
	.dock_list .dock_item .tit2 { font-size: 16px; margin-bottom: 10px; }
	.dock_list .dock_item .desc { font-size: 14px; margin-top: 10px; }
	.dock_list + .desc { font-size: 14px; margin-top: 10px; }
}


/* 견적문의 */
.application { width: 100%; }
.application .form-section { display: flex; flex-wrap: wrap; justify-content: space-between; position: relative; }
.application .form-section + .form-section { margin-top: 36px; border-top: 1px dashed #ccc; padding-top: 36px; }
.application .form-section.pdT { padding-top: 50px; }
.application .form-section .item:last-child { margin-bottom: 0; }
.application .form-section .tit { position: absolute; left: 0; top: 15px; font-size: 0.85em; font-weight: 500; color: #000; }
 
.application .item { display: flex; flex-direction: column; width: calc(50% - 10px); margin-bottom: 24px; }
.application .item.wdf { width: 100%; }
.application .item label { display: block; font-weight: 500; color: #000; margin-bottom: 6px; }
.application .item label .req { display: inline-block; font-size: 12px; color: #e56262; margin-left: 12px; vertical-align: middle; }
.application input[type="text"] { display: block; width: 100%; height: 56px; border-radius: 6px; }
.application .item .chkField input { vertical-align: middle; }
.application .item .chkField input + span { display: inline-block; margin: 2px 0 2px 8px; }

.application select { height: 56px; border-radius: 6px; }
.application textarea { display: block; width: 100%; padding: 10px 16px; background: #fff; border: 0; border-radius: 6px; outline-style: none; border: 1px solid #d2d2d2;	-webkit-appearance: none; }
.form-box input[type="submit"] { display: block; text-align: center; width: 198px; height: 53px; line-height: 53px; color: #fff; margin: 20px auto 0; font-size: 17px; font-weight: 700; background-color: var(--color-primary); border-radius: 4px; }
.form-box .privacy-box { position: relative; font-size: 14px; margin: 32px 0 12px; }
.form-box .privacy-box label { display: none; }
.form-box .btn_pyC { display: inline-block; color: #fff; margin-left: 12px; background-color: var(--color-secondary); border-radius: 4px; padding: 3px 10px; }
.form-box .pyC { }
.form-box .pyC textarea { width: 100%; height: 168px; padding: 12px; background: #f7f7f7; border-radius: 7px; border: 1px solid #efefef; font-size: 13px; line-height: 1.5; color: #666; text-align: left; }

.white-popup { position: relative; background: #fff; padding: 28px; width: auto; max-width: 860px; margin: 20px auto; transition: all 1s all ease-out; }
.mfp-fade.mfp-bg { opacity: 0; transition: all 0.15s ease-out; }
.mfp-fade.mfp-bg.mfp-ready { opacity: 0.8; } /* overlay animate in */
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; } /* overlay animate out */
.mfp-fade.mfp-wrap .mfp-content { opacity: 0; transition: all 0.4s ease-out; }
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }
#pyC_ly textarea { border: 1px solid #dfdfdf; width: 100%; min-height: 436px; padding: 16px; font-size: 14px; color: #666; }

@media all and (max-width:768px) {
	.application .item { width: 100%; }
	.application .item .chkField { font-size: 16px; }
}
