
 p br { display: none; } 


.main_visual { height: 100vh; }
.main_visual .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 {<strong></strong>
        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) {

    .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: 100vh;
    }

    .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;
    }
}
.section01 { width: 100%; padding: 200px 0}
.section01 .container { max-width: 1600px; margin: 0 auto; padding: 20px; display: flex; justify-content: space-between; height: auto; }
.section01 .main-image { flex: 0 0 auto; width: 800px; height: 527px; overflow: hidden; }
.section01 .main-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; }
.section01 .content-wrapper { flex: 0 0 auto; width: 620px; display: flex; flex-direction: column; justify-content: space-between; height: 527px; }
.section01 .text-content { margin-bottom: 20px; }
.section01 .gallery-title { font-size: 18px; font-weight: bold; margin-bottom: 10px; }
.section01 .gallery-container { position: relative; }
.section01 .image-gallery { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; user-select: none; }
.section01 .image-gallery::-webkit-scrollbar { display: none; }
.section01 .gallery-item { flex: 0 0 auto; min-width: 100px; overflow: hidden; height: 200px }
.section01 .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.3s ease; pointer-events: none; }
.section01 .gallery-item:hover img { transform: scale(1.05); }
.section01 h2 { font-size: 48px; margin:0 0 10px 0; }
.section01 p { font-size: 18px; color: #666; line-height: 1.65; word-break: keep-all; max-width: 650px; }
.section01 .gallery-nav { position: absolute; top: -40px; right: 0; }
.section01 .nav-btn { background: none; border: none; font-size: 18px; cursor: pointer; padding: 5px 10px; }

@media (max-width: 1600px) {
    .section01 .container { 
        justify-content: center; 
        gap: 40px;
    } 
    .section01 .main-image, .section01 .content-wrapper {  
        flex: 0 0 auto;  
        width: calc(50% - 20px); 
    }
}

@media (max-width: 1200px) { 
    .section01 { padding: 50px 0; }
    .section01 .container { 
        flex-direction: column; 
        height: auto; 
        align-items: center; 
        gap: 30px;
    } 
    .section01 .main-image, .section01 .content-wrapper {  
        width: 100%;  
        max-width: 800px;  
        height: auto; 
    }
    .section01 .main-image { 
        height: 400px; 
    }
    .section01 .content-wrapper {
        height: auto;
    }
    .section01 h2 { 
        font-size: 36px; 
    }
    .section01 p { 
        font-size: 16px; 
    }
}

@media (max-width: 768px) { 
    .section01 .main-image {
        height: 300px;
    }
    .section01 .image-gallery { 
        flex-direction: row; 
        overflow-x: auto; 
    } 
    .section01 .gallery-item img { 
        height: 150px; 
        width: 150px; 
    } 
    .section01 h2 { 
        font-size: 28px; 
    }
    .section01 p { 
        font-size: 14px; 
    }
}




.section02 { padding: 0; }
.section02 h2 { font-size: 48px; margin-bottom: 20px; }
.section02 .image-container { display: flex; gap: 20px; height: 400px; }
.section02 .image-item { overflow: hidden; position: relative; }
.section02 .image-item img { width: 100%; height: 100%; object-fit: cover; }
.section02 .image-item-left { flex: 3; }
.section02 .image-item-right { flex: 2; }
.section02 .overlay { position: absolute;  top: 0;left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0;transition: opacity 0.3s ease; cursor: pointer}
.section02 .overlay h3, .section02 .overlay p {color: white; text-align: center;transform: translateY(20px); opacity: 0; transition: all 0.3s ease;}
.section02 .overlay h3 {font-size: 24px; margin-bottom: 10px;}
.section02 .image-item:hover .overlay { opacity: 1;}
.section02 .image-item:hover .overlay h3,
.section02 .image-item:hover .overlay p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .section02 h2 { font-size: 28px}
    .section02 .image-container {
        flex-direction: column;
        height: auto;
    }
    .section02 .image-item {
        height: 300px;
    }
    .section02 .image-item-left, .image-item-right {
        flex: none;
    }
}


.section03 { width: 100% ;padding: 150px 0}
.section03 .container { max-width: 1600px; margin: 0 auto; padding: 20px; display: flex; gap: 20px; }
.section03 .title { font-size: 70px; text-align: center; margin: 100px 0; font-weight: 200; font-family: 'NanumMyeongjo';}
.section03 .column { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.section03 .item { width: 100%; overflow: hidden; }
.section03 .item img { width: 100%; height: 100%; object-fit: cover; }
.section03 .text-content { padding: 20px 0; }
.section03 h2 { margin-top: 0; font-size: 24px; margin-bottom: 10px }
.section03 p { line-height: 1.65; color: #666; word-break: keep-all; margin-bottom: 20px}
.section03 .view-more { display: inline-block; margin-top: 10px; color: #0066cc; text-decoration: none; font-size: 16px }
.section03 .column-1 .item-image { height: 40%; }
.section03 .column-1 .text-content { height: 40%; max-width: 480px; }
.section03 .column-2 { padding-top: 82px; /* 새로 추가된 부분 */ }
.section03 .column-2 .item-image-top { height: 50%; }
.section03 .column-2 .item-image-bottom { height: 40%; }
.section03 .column-3 { padding-top: 197px; /* 새로 추가된 부분 */ }
.section03 .column-3 .item-image-top { height: 49%; }
.section03 .column-3 .item-image-bottom { height: 40%; }

@media (max-width: 1200px) { 
    .section03 .container { flex-direction: column; } 
    .section03 .column { width: 100%; padding-top: 0 !important; /* 반응형에서 padding 제거 */ } 
}

@media (max-width: 768px) { 
    .section03 { width: 100% ;padding: 50px 0}
    .section03 .title { font-size: 32px; padding: 50px 0; margin: 0}
}




.section04  { width: 100%; overflow: hidden; }
.section04 h2 { text-align: center; font-weight: bold; font-size: 48px; margin-bottom: 50px}
.section04 .swiper-container { width: 100%; height: 500px; margin: 0 auto; position: relative; overflow: visible; }
.section04 .swiper-slide { height: inherit; text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.section04 .slide-image-wrapper { position: absolute; top: 0; left: 0; width: 100%;  }
.section04 .swiper-slide img { width: 100%; object-fit: cover; }
.section04 .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; background-color: rgba(0, 0, 0, 0.3); }
.section04 .slide-content { position: absolute; bottom: 50px; left: 30px; right: 0; z-index: 1; color:#fff; text-align: left; padding: 0 20px; }
.section04 .slide-content h2 { font-size: 32px; margin-bottom: 10px; line-height: 1.5; text-align: left }
.section04 .slide-content p { font-size: 18px; color: #fff; opacity: 0.8; font-weight: 400 }
.section04 .swiper-button-next, .section04 .swiper-button-prev { color: white; z-index: 10; }
.section04 .swiper-pagination { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; z-index: 10; }
.section04 .swiper-pagination-bullet { width: 12px; height: 12px; background: white; opacity: 0.5; }
.section04 .swiper-pagination-bullet-active { opacity: 1; background: #007aff; }
@media (max-width: 1024px) { 
    .section04 .swiper-container { height: 400px; } 
    }
@media (max-width: 768px) { 
    .section04 h2 { font-size: 28px}
    .section04 .swiper-container { height: 170px; } 
    .section04 .slide-content h2 { font-size: 20px; }
    .section04 .slide-content p { font-size: 14px; } 
    .section04 .slide-content { bottom: 30px; left: 10px } 
    .section04 .swiper-pagination-bullet { width: 8px; height: 8px}
    }



.section05 { width: 100%; height: initial; padding: 200px 0 150px 0; }
.section05 .section { display: flex; margin-bottom: 50px; gap: 70px; }
.section05 .image { flex: 1; position: relative; width: 100%; height: 853px; padding-bottom: 40%; }
.section05 .swiper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.section05 .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.section05 .content01, .section05 .content02 { flex: 1;   display: flex;   flex-direction: column;  justify-content: center;   align-items: flex-start;  padding-top: 0;}
.section05 .content01 { height: auto; min-height: 500px; }
.section05 .content02 { height: auto; min-height: 863px; }
.section05 h3 { font-size: 16px; color: #888; margin-bottom: 10px; }
.section05 h2 { font-size: 48px; margin-bottom: 20px; max-width: 650px; word-break: keep-all; }
.section05 p { line-height: 1.6; margin-bottom: 20px; max-width: 550px; word-break: keep-all; }
.section05 .view-more { color: #888; text-decoration: none; font-size: 16px; }
.section05 .view-more:hover { text-decoration: underline; }
.section05 .swiper-nav-buttons {  position: absolute;  bottom: 10px;  right: 10px;  z-index: 10;  display: flex; gap: 10px; }
.section05 .swiper-button-prev, .section05 .swiper-button-next {  position: static;   width: 30px;  height: 30px;  margin-top: 0;  color: white;  background-color: rgba(0, 0, 0, 0.5); border-radius: 50%;  display: flex;  align-items: center; justify-content: center; }
.section05 .swiper-button-prev::after, .section05 .swiper-button-next::after { content: none; }
.section05 .swiper-button-prev i, .section05 .swiper-button-next i { font-size: 20px; }

@media (max-width: 1024px) {
    .section05 { padding: 100px 0 75px 0; }
    .section05 .section { gap: 40px; }
    .section05 h2 { font-size: 36px; }
    .section05 p { font-size: 14px; }
}

@media (max-width: 768px) { 
    .section05 { padding: 50px 0; }
    .section05 .section { flex-direction: column; gap: 30px; } 
    .section05 .image { padding-bottom: 60%; }
    .section05 .content01, .section05 .content02 {  order: 1; min-height: auto;padding: 20px 0; }
    .section05 h2 { font-size: 28px; }
    .section05 p { font-size: 14px; }
}


.section06 { width: 100%; padding: 0 0 200px; } 
.section06 .container { margin: 0 auto; overflow: hidden; width: 100%; position: relative; } 
.section06 .swiper-container { width: 100%; position: relative; } 
.section06 .swiper-slide { width: auto; display: flex; flex-direction: column; } 
.section06 .swiper-slide img { width: 100%; object-fit: cover; } 
.section06 .image-2 img, .section06 .image-4 img, .section06 .image-6 img { height: 537px; } 
.section06 .slide-text { padding: 10px; text-align: left; } 
.section06 .slide-text h2 { font-size: 32px; padding: 0 0 5px 0; font-weight: bold; margin: 10px 0 5px 0; } 
.section06 .slide-text p { font-size: 18px; color: #666; line-height: 1.65; font-weight: 400; word-break: keep-all; max-width: 400px; padding: 0 0 10px 0; margin: 0; } 
.section06 .swiper-button-prev, .section06 .swiper-button-next { position: absolute; top: 30%; width: 45px; height: 45px; margin-top: -20px; z-index: 10; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; border-radius: 50%; } 
.section06 .swiper-button-prev { left: 10px; } 
.section06 .swiper-button-next { right: 10px; } 
.section06 .swiper-button-prev:after, .section06 .swiper-button-next:after { font-family: swiper-icons; font-size: 26px; text-transform: none !important; letter-spacing: 0; text-transform: none; font-variant: initial; line-height: 1; } 
.section06 .swiper-button-prev:after { content: 'prev'; } 
.section06 .swiper-button-next:after { content: 'next'; } 

@media (max-width: 1200px) { 
    .section06 .swiper-slide img, .section06 .image-2 img, .section06 .image-4 img, .section06 .image-6 img { height: auto; } 
}

@media (max-width: 768px) { 
   .section06 { width: 100%;  padding: 0 0 50px;}
   .section06 .slide-text h2 { font-size: 28px}
}



