<meta charset="utf-8">
.main_visual { height: 100vh; }
.swiper { margin: 0; width: 100%; height: 100vh; }
.main_visual .swiper-slide:nth-child(1n) { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main_banner_img01.jpg); background-position: center; background-size: cover; }
.main_visual .swiper-slide:nth-child(2n) { background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main_banner_img02.jpg); background-position: center; background-size: cover; }
.main_visual .swiper-slide.video-slide,
.main_visual .swiper-slide.youtube-slide { background-image: none; }
.main_visual .swiper-slide .visual-tit { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: #fff; text-align: center; position: relative; z-index: 2; opacity: 0.8 }
.main_visual .swiper-slide .title { display: block; font-weight: 500; transition: opacity 0.75s ease 0.75s; line-height: 1; font-size: 70px; margin-bottom: 20px; letter-spacing: -2px }
.main_visual .swiper-slide .description { font-size: 18px; color: #fff; transition: opacity 0.75s ease 0.75s; }
.main_visual .swiper-pagination { position: absolute; bottom: 80px; right: 80px; font-size: 16px; color: #fff; display: flex; align-items: center; }
.main_visual .swiper-pagination .current { font-size: 20px; margin: 0 10px; }
.main_visual .swiper-pagination .total { font-size: 20px; opacity: 0.8; margin: 0 10px; }
.main_visual .swiper-pagination .prev, .swiper-pagination .next { cursor: pointer; font-size: 28px; }

.video-background,
#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide::before,
.youtube-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


/* 반응형 미디어 쿼리 */
@media screen and (max-width: 1200px) {
    .main_visual .swiper-slide .title {
        font-size: 60px;
        margin-bottom: 18px;
    }

    .main_visual .swiper-slide .description {
        font-size: 16px;
    }

    .main_visual .swiper-pagination {
        bottom: 60px;
        right: 60px;
    }
}

@media screen and (max-width: 992px) {
    .main_visual .swiper-slide .title {
        font-size: 50px;
        margin-bottom: 16px;
    }

    .main_visual .swiper-slide .description {
        font-size: 15px;
    }

    .main_visual .swiper-pagination {
        bottom: 50px;
        right: 50px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 18px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    .main_visual {
        height: 80vh;
    }

    .swiper {
        height: 80vh;
    }

    .main_visual .swiper-slide .title {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .main_visual .swiper-slide .description {
        font-size: 14px;
    }

    .main_visual .swiper-pagination {
        bottom: 40px;
        right: 40px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 16px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .main_visual {
        height: 60vh;
    }

    .swiper {
        height: 60vh;
    }

    .main_visual .swiper-slide .title {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .main_visual .swiper-slide .description {
        font-size: 12px;
    }

    .main_visual .swiper-pagination {
        bottom: 30px;
        right: 30px;
    }

    .main_visual .swiper-pagination .current,
    .main_visual .swiper-pagination .total {
        font-size: 14px;
    }

    .main_visual .swiper-pagination .prev,
    .swiper-pagination .next {
        font-size: 18px;
    }
}



.container { max-width: 1600px; margin: 0 auto; padding: 20px; }

.section01 { width: 100%; padding: 250px 0 200px 0;}    
.section01 h2 { font-size: 35px; margin-bottom: 20px; letter-spacing: -0.035em; }
.section01 .profile-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.section01 .profile { flex: 0 0 calc(33.33% - 27px); background-color: #f4f5f7; border-radius: 10px; overflow: visible;  position: relative; padding: 20px 20px 20px 200px; min-height: 150px; display: flex; flex-direction: column; margin-bottom: 80px;}
.section01 .profile-image { position: absolute; left: 30px; top: -70px; width: 130px; height: 130px; border-radius: 50%; overflow: hidden;}
.section01 .profile-image img { width: 100%; height: 100%; object-fit: cover; }
.section01 .profile-info { position: absolute; top: -65px; left: 200px; background-color: #fff; }
.section01 .profile-info h2 { margin: 0; font-size: 20px; color: #333; }
.section01 .profile-info p { margin: 5px 0 0; font-size: 14px; color: #666; }
.section01 .description-wrapper { display: flex; flex-direction: column; justify-content: center; flex-grow: 1; }
.section01 .description { font-size: 17px; color: #333; line-height: 1.5; }
.section01 .social-icons { position: absolute; left: 50px; top: 80px; display: flex; gap:10px; align-items: center; }
.section01 .social-icons a { margin-bottom: 10px; color: #333; text-decoration: none; }
.section01 .social-icons .material-icons { font-size: 24px; }
 @media (max-width: 1200px) { 
	 .section01 .profile { flex: 0 0 calc(50% - 20px); } 
	}
 @media (max-width: 768px) { 
	 .section01 .profile { flex: 0 0 100%; } 
	}
 @media (max-width: 480px) {
     .section01 { width: 100%; padding: 200px 0 0; }   
	 .section01 .profile { padding: 100px 20px 20px 20px; } 
	 .section01 .profile-image { left: 23%; transform: translateX(-50%); } 
	 .section01 .profile-info { left: 50%; transform: translateX(-50%);} 
	 .section01 .description-wrapper { align-items: center; } 
	 .section01 .social-icons { position: static; flex-direction: row;  margin-top: 20px; } 
	 .section01 .social-icons a { margin: 0 10px; } 
	}
	


/* 기본 스타일 */
.webicon { width: 100%;  padding: 200px 0; background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/section01_bg.jpg); background-size: cover; } 
.webicon .container { max-width: 1600px; margin: 0 auto;  display: flex; flex-wrap: wrap; justify-content: center; } 
.webicon .box { color: #fff; text-align: center; display: flex; align-items: center; justify-content: center; flex-direction: column; border-radius: 50%; border: 1px solid rgba(229,229,229,0.2); background-color: rgba(0,0,0,0.1); transition: transform 0.5s ease; position: relative; margin: 10px; width: calc(25% - 30px);  aspect-ratio: 1 / 1;  } 
.webicon .box .photo { width: 58px; height: 58px; background-repeat: no-repeat; background-position: center; opacity: 0; transform: translateY(50px); transition: opacity 0.5s ease, transform 0.5s ease; position: absolute; } 
.webicon .box.b01 .photo { background-image: url(../img/s02_icon01.png); } 
.webicon .box.b02 .photo { background-image: url(../img/s02_icon02.png); } 
.webicon .box.b03 .photo { background-image: url(../img/s02_icon03.png); } 
.webicon .box.b04 .photo { background-image: url(../img/s02_icon04.png); } 
.webicon .box.b05 .photo { background-image: url(../img/s02_icon05.png); } 
.webicon .box.b06 .photo { background-image: url(../img/s02_icon06.png); } 
.webicon .box.b01 .photo,.webicon .box.b02 .photo,.webicon .box.b03 .photo,.webicon .box.b04 .photo,.webicon .box.b05 .photo,.webicon .box.b06 .photo {  background-size: 100% auto;}    
.webicon .box:hover .photo { opacity: 1; transform: translateY(-70px); } 
.webicon .box .box_txt { position: absolute; transform: translateY(0px); transition: transform 0.5s ease; } 
.webicon .box .box_txt h3 { font-size: 20px}    
.webicon .box:hover .box_txt { transform: translateY(30px); } 
.webicon p { margin: 10px 0 0;; color: #fff; opacity: 0.8; max-width: 200px; } 

/* 반응형 스타일 */
@media (max-width: 1024px) { 
    .webicon .box { width: calc(33.333% - 20px);} } 
@media (max-width: 768px) { 
    .webicon {padding: 50px 0}
    .webicon .box { width: calc(100% - 20px);} } 
@media (max-width: 400px) { 
    .webicon .box { width: calc(100% - 20px);} }

    
    

/* 반응형 조정 */
@media screen and (max-width: 1200px) { 
    .section01 .clearfix { max-width: calc(25% - 15px); } 
  }
@media screen and (max-width: 900px) { 
    .section01 .clearfix { max-width: calc(33.33% - 13.33px); } 
  }
@media screen and (max-width: 600px) { 
    .section01 .clearfix { max-width: calc(50% - 10px); }
  }
@media screen and (max-width: 400px) { 
    .section01 .clearfix { max-width: 100%; } 
  }

    
.section01 .korean-section h2 { font-size: 35px; margin-bottom: 10px; }
.section01 .korean-section p {  line-height: 1.6; color: #666 }
.section01 .image-container { width: 100%; margin:0 auto}
.section01 .image-container img { width: 100%; border-radius: 10px; }
    
  
/* 반응형 디자인을 위한 미디어 쿼리 */
@media (max-width: 1024px) { 
    .section01 .team-member { 
        flex-basis: calc(50% - 20px); 
    } 
}
@media (max-width: 768px) { 
    .section01 .team-member {
        flex-basis: 100%; 
    } 
}
    
.section02 { width: 100%; padding-top: 200px}    
.section02 h2  { font-size: 50px; margin-bottom: 20px; max-width: 1000px; line-height: 1.2; letter-spacing: -0.5px;}
.section02 .main_copy { margin: 0 auto}
.section02 .subtitle { font-size: 18px; color: #666;  line-height: 1.65 }
.section02 .services { display: flex; flex-direction: column; gap: 20px; margin: 0 auto}
.section02 .services .copy { margin: 100px 0 0}
.section02 .services .copy .main { max-width: 650px; margin-bottom: 60px; font-size: 60px}
.section02 .services .copy .sub {  color: #666; line-height: 1.65; padding-bottom: 20px; font-size: 20px} 
.section02 .service-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.section02 .service-content { display: flex; align-items: center; gap: 20px; flex-grow: 1; }
.section02 .service-item h2 { font-size: 24px; margin: 0; min-width: 600px; letter-spacing: -0.5px; color: #111; font-weight: 600 }
.section02 .service-item p { color: #666; margin: 0; flex-grow: 1; font-size: 18px }
.section02 .arrow { font-size: 1.5em; transform: rotate(45deg); display: inline-block; }
.section02 .banner { margin: auto; position: relative; max-width: 1400px }
.section02 .banner img { width: 100%;  margin: 50px auto; display: block; border-radius: 10px}
.section02 .banner-text { position: absolute; top: 50%; left: 50px; transform: translateY(-50%); color: white; max-width: 50%; }
.section02 .banner-text h2 { font-size: 2em; margin-bottom: 10px; }
.section02 .swiper {width: 100%; height: inherit;}
.section02 .swiper-slide img {width: 100%; height: 100%;object-fit: cover;}    
    
    
@media (max-width: 768px) {
    .section02 { padding-top: 50px;}
    .section02 h2 { font-size: 32px; line-height: 1.4}
    .section02 .services .copy .main { font-size: 32px}
    .section02 .service-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .section02 .service-item h2 { min-width: unset; }
    .section02 .banner-text { left: 20px; max-width: 80%; } 
}
    

.section03 { width: 100%; padding:50px  0 0; } 
.section03 .top { display: flex; flex-direction: column; margin-bottom: 50px;}
.section03 .top .left span { font-size: 18px; display: block; margin-bottom: 20px; font-weight: 500; color: #666}
.section03 .top .left h2 {font-size: 35px; font-weight: bold; margin-bottom: 20px;}
.section03 .top .right p { margin: 0; line-height: 1.65;}
.section03 .top .right span {display: block; font-weight: 700; color: #1a1a1a; font-size:30px; margin-bottom: 20px; line-height: 1.4 }
.section03 .img_roll {width: 100%; height: 400px; position: relative;}
.section03 .swiper-container {width: 100%; height: 100%;}
.section03 .swiper-slide img {width: 100%; height: 100%; object-fit: cover;}
.section03 .bottom {position: relative; padding: 50px 0;}
.section03 .recruit-box {background-color: white; padding: 30px 60px 30px 30px;  z-index: 1; gap:20px}
.section03 .recruit-box h3 {font-size: 24px; margin-bottom: 15px;}
.section03 .swiper-pagination { left: 50px}
@media (min-width: 768px) {
    .section03 { width: 100%; padding:200px  0 0; } 
    .section03 .top { flex-direction: row; justify-content: space-between;}
    .section03 .top .left { width: 55%;}
    .section03 .top .right {width: 45%;}
    .section03 .top .left h2 {font-size: 50px; letter-spacing: -0.5px}
    .section03 .img_roll { height: 800px;}
    .section03 .bottom {height: 300px;}
    .section03 .recruit-box {position: absolute; top: -150px; left: 0; width: 45%; height: 300px; display: flex; flex-direction: row; justify-content: flex-end;}
}

	
    
    
    
    
    
    

.section04 { width: 100%; padding: 60px 0; background-color: #f3f3f3; margin: 200px 0}
.section04 .section { display: flex; justify-content: space-between; align-items: center;}
.section04 .section-content { flex: 1; padding-right: 2rem; }
.section04 .section-content h2 { font-size: 60px; font-weight: bold; letter-spacing: -0.5px; max-width: 600px; word-break: keep-all; margin-bottom: 60px}
.section04 .section-content p { font-size: 20px; color: #666; font-weight: 500; max-width: 600px; word-break: keep-all; line-height: 1.65}
.section04 .section-image { flex: 1; }
.section04 .section-image img { width: 100%; height: auto; border-radius: 8px; }
.section04 .btn { display: inline-block; color:#333; border: 1px solid #ccc; text-decoration: none; margin-top: 1rem; height: 50px; line-height: 50px }
    
@media (max-width: 768px) { 
    .section04 .section { flex-direction: column; }
    .section04 .section-content h2 { font-size: 32px}
    .section04 .section-content, .section04 .section-image { width: 100%; padding-right: 0; }
    .section04 .section-image { margin-top: 2rem; }
}
    

    
.section05 { width: 100%; }   
.section05 .flex-container { display: flex; flex-wrap: wrap; gap: 20px; max-width: 1600px; margin: 0 auto; }
.section05 .flex-item { flex-basis: calc(33.333% - 14px); box-sizing: border-box; display: flex; flex-direction: column; justify-content: space-between;  border: 1px solid #ddd}
.section05 .flex-item.no-border { border: none; }
.section05 .flex-item .txt { padding: 80px 30px 30px 30px; word-break: keep-all; line-height: 1.65; }
.section05 .flex-item .txt .sub { color: #fff; opacity: 0.8; }
.section05 .flex-item h2, .section05 .flex-item h3 { font-size: 2.2rem; line-height: 1.3; margin-top: 0; margin-bottom: 10px; max-width: 300px; }
.section05 .flex-item p { color: #000; opacity: 0.8; margin-bottom: 0; word-break: keep-all; line-height: 1.65; max-width: 450px;}
.section05 .image-text-container { display: flex; gap: 20px; }
.section05 .image-text-item { flex: 1; display: flex; flex-direction: column; }
.section05 .image-text-item div { margin-top: 20px}
.section05 .image-text-item img { width: 100%; margin-bottom: 10px; }
.section05 .number { color: #ff6600; font-weight: 600; font-size: 16px; padding: 30px 0 0 30px; }
@media (max-width: 1280px) { 
    .section05 .flex-item { flex-basis: calc(33.3333% - 14px); }
}
@media (max-width: 768px) { 
    .section05 { padding: 0}
    .section05 .flex-item { flex-basis: 100%; }
    .section05 .image-text-container { flex-direction: column; }
    .section05 .image-text-item div { padding-left: 20px}
} 
    
    
.section07 .copy { display: flex; justify-content: center; align-items: flex-start; margin-bottom: 40px; }
.section07 .company-info { flex: 1; max-width: 1200px; margin: 250px auto 0 auto; }
.section07 .title-group { display: flex; align-items: center; }
.section07 .auto-print { font-size: 15px; color: #666; width: 100px; text-align: center; margin-right: 20px; font-weight: 500 }
.section07 .logo_img { width: 100px; height: 100px;border-radius: 50%; margin-left: 20px;overflow: hidden;}



.section07 .main-title { font-size: 3.5rem; text-align: left; max-width: 600px; font-family: 'Paperlogy-8ExtraBold';}
.section07 .subtitle-group { display: flex; justify-content: flex-end; align-items: center; }
.section07 .subtitle { font-size: 3.5rem; text-align: left; max-width: 600px; font-family: 'Paperlogy-8ExtraBold';}
.section07 .map-section { margin-bottom: 40px; }
.section07 .map-container { height: 500px; background-color: #e0e0e0; margin-bottom: 20px; }
.section07 .address { display: flex; justify-content: space-between; background-color: #f8f8f8; padding: 40px; }
.section07 .contact-us { background-color: #000; color: #fff; padding: 30px; flex: 0 0 300px; }
.section07 .business-info { flex: 1; margin-left: 40px; }
.section07 .btn { display: inline-block; padding: 10px 20px; background-color: #fff; color: #000; text-decoration: none; margin-top: 20px; font-weight: bold; }
.section07 .business-info p { margin: 10px 0; line-height: 1.5; }
.section07 .copyright { font-size: 0.8em; color: #666; margin-top: 20px; }

@media (max-width: 1200px) {
    .section07 .container { padding: 20px; }
    .section07 .main-title { font-size: 2em; }
    .section07 .subtitle { font-size: 2em; }
    .section07 .map-container { height: 400px; }
}

@media (max-width: 768px) {
    .section07 .copy { flex-direction: column; align-items: center; }
    .section07 .company-info { text-align: center; margin:50px auto 0 auto;}
    .section07 .title-group, .sub-title-group { flex-direction: column; align-items: center; }
    .section07 .auto-print { margin-right: 0; margin-bottom: 10px; }
    .section07 .logo_img { background-size: 100% 100%; background-position: center; }
    .section07 .main-title, .sub-title { text-align: center; }
    .section07 .address { flex-direction: column; }
    .section07 .contact-us { margin-bottom: 20px; flex: none; width: 100%; box-sizing: border-box; }
    .section07 .business-info { margin-left: 0; }
}
    
    

/* 이미지 슬라이드 시작 */
.slid_wrap { width: 100%; overflow: hidden; }
.slid_wrap .swiper-container { width: 100%; height: 500px; margin: 0 auto; position: relative; overflow: visible; }
.slid_wrap .swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.slid_wrap .slide-image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slid_wrap .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.slid_wrap .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); }
.slid_wrap .slide-content { position: absolute; bottom: 50px; left: 30px; right: 0; z-index: 1; color:#fff; text-align: left; padding: 0 20px; }
.slid_wrap .slide-content h2 { font-size: 32px; margin-bottom: 10px; line-height: 1.5 }
.slid_wrap .slide-content p { font-size: 18px; color: #fff; opacity: 0.8; font-weight: 400 }
.slid_wrap .swiper-button-next, .slid_wrap .swiper-button-prev { color: white; z-index: 10; }
.slid_wrap .swiper-pagination { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; z-index: 10; }
.slid_wrap .swiper-pagination-bullet { width: 12px; height: 12px; background: white; opacity: 0.5; }
.slid_wrap .swiper-pagination-bullet-active { opacity: 1; background: #007aff; }
@media (max-width: 1024px) { 
    .slid_wrap .swiper-container { height: 400px; } 
    }
@media (max-width: 768px) { 
    .slid_wrap .swiper-container { height: 300px; } 
    .slid_wrap .slide-content h2 { font-size: 20px; }
    .slid_wrap .slide-content p { font-size: 14px; } 
    .slid_wrap .slide-content { bottom: 30px; left: 10px } 
    .slid_wrap .swiper-pagination-bullet { width: 8px; height: 8px}
    }
/* 이미지 슬라이드 끝*/
    

.section08 { width: 100%; padding: 200px 0} 
.section08 .container { max-width: 1600px; margin: 0 auto; padding: 20px; display: flex; flex-direction: row; }
.section08 .flex-item { flex: 1 1 50%; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.section08 .contact-us { background-color: black; color: #fff; }
.section08 .business { background-color: #fff; color: black; position: relative; padding-left: 75px; border: 0 }
.section08 .business::before { content: ''; position: absolute; left: 20px; top: 31%; transform: translateY(-50%); width: 15px; height: 88px; background-color: #000; margin-right: 110px; }
.section08 h2 { font-size: 24px; margin-bottom: 15px; font-weight: bold; }
.section08 ul { list-style-type: none; }
.section08 ul li { font-size: 18px; color: #666; line-height: 1.6}    
.section08 .contact-info { display: flex; justify-content: space-between; align-items: center; }
.section08 .contact-details { text-align: left; }
.section08 .contact-details p { color: #fff; opacity: 0.8}    
.section08 .button { display: inline-block; padding: 15px 30px; text-align: center; border: 1px solid #333; color: #fff; text-decoration: none; font-size: 18px; width: 180px }

@media (max-width: 768px) { 
    .section08 {padding: 50px 0}
    .section08 .container { flex-direction: column; } 
    .section08 .flex-item { flex: 1 1 100%; } 
    .section08 .contact-info { flex-direction: column; align-items: flex-start; } 
    .section08 .button { margin-top: 15px; } 
    .section08 .business { padding-left: 50px; } 
    .section08 .business::before { left: 0; top: 0; transform: none; margin-right: 20px; } 
    .section08 ul li { font-size: 16px; color: #666; line-height: 1.6}    
}

    