@charset "utf-8";
body {
    word-break: keep-all;
    overflow-wrap: break-word;
}
#wrap {overflow-x: hidden;}

/* main_visual */
.main_visual {background-color: #0054a3; aspect-ratio: 1 / 0.544;border-radius: 30px;position: relative;text-align: center;}
.main_visual_text p {font-size: 22px;color: #fff;font-weight: 600;}
.main_visual_text h2 {font-size: 60px;color: #fff;font-weight: 400;}
.main_visual_text h2 b {font-size: 60px;color: #fff;font-weight: 700;}
.main_visual_text {position: absolute;left: 50%; top: 80%;transform: translate(-50%, -80%);width: 100%;}

@media all and (max-width:1400px) {
	.main_visual_text p {font-size: 20px;color: #fff;font-weight: 600;}
	.main_visual_text h2 {font-size: 40px;color: #fff;font-weight: 400;}
	.main_visual_text h2 b {font-size: 40px;color: #fff;font-weight: 700;}
}

@media all and (max-width:700px) {
	.main_visual_text p {font-size: 16px;color: #fff;font-weight: 600;}
	.main_visual_text h2 {font-size: 19px;color: #fff;font-weight: 400;}
	.main_visual_text h2 b {font-size: 19px;color: #fff;font-weight: 700;}
}

/* 메인 페이지 */

.title_box h2 {
    font-size: 44px;
    font-weight: 700;
    word-break: keep-all;
    overflow-wrap: break-word;   
}
.sec01_left_wrapper {
    aspect-ratio: 1 / 0.706;
    border-radius: 30px;
    overflow: hidden;
}
.sec01_right_wrapper {aspect-ratio: 1 / 0.706;}
.sec01_left_wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sec01_left_wrapper:hover img {transform: scale(1.1);}

.sec01_right_wrapper {border-radius: 30px;padding: 50px;display: flex;align-items: center;position: relative;background: #FFFFFF;
    box-shadow: 0px 0px 30px rgba(0, 84, 163, 0.05);}
.sec01_right_text h2 {
    font-size: 36px;
    font-weight: 600;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.sec01_right_text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}
.sec01_right_text .gray_custom {font-size: 16px;font-weight: 400;color: #555555;line-height: 28px;}

.sec01_line {width: 36px;height: 1px;background-color: #000000;margin: 40px 0 20px 0;}
.sec01_right_bg {
    position: absolute;
    right: 2%; bottom: 0;
    /* aspect-ratio: 1 / 1.848; */
    height: 100%;
}
.sec01_right_bg img {
    height: 100%;
    opacity: 0.6;
}

.sec01_wrapper {display: flex;gap: 20px;align-items: center;}

.sec01_left {width: 100%;}
.sec01_right {width: 100%;}
.pc_only {display: block;}

@media all and (max-width:1400px) {
    .sec01_left {width: 80%;}
    .sec01_right {width: 80%;}
    
}

@media all and (max-width:1100px) {
    .sec01_wrapper {flex-direction: column;}
}


@media all and (max-width:900px) {
    .sec01_left {width: 100%;}
    .sec01_right {width: 100%;}
    .sec01_right_wrapper {padding: 30px;}
}
@media all and (max-width:700px) {
    .pc_only {display: none;}
}


/* sec02 */
.sec02_slide_img {aspect-ratio: 1 / 1; position: relative;}
.sec02_slide_img .slide_main_img {object-fit: cover;width: 100%;height: 100%;}
.sec02_slide_text p {
    font-size: 16px;
    color: #222222;
}
.sec02_slide_text span {
    font-size: 22px;
    color: #222222;display: block;
    word-break: keep-all;
    overflow-wrap: break-word;
} 

.happy_icon {
    width: 50px; height: 50px;
    border-radius: 25px;
    background-color: #0054A3;
    color: #fff;
    text-align: center; line-height: 50px;
    font-size: 1.2rem;
    position: absolute;
    right: 0; bottom: 0;
    transition: background-color 0.3s ease;
}
.sec02_slide_box:hover .happy_icon {
    background-color: #fff;
    color: #0054A3; 
}

.slide_title_custom {display: flex; justify-content: space-between;align-items: center;}
.slide_arrow_box {display: flex;gap: 10px;}
.slide_prev_btn, .slide_next_btn{
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 84, 163, 0.05);
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 11;
    width: 100%;
    gap: 10px;
    margin-top: 60px;
}

.custom-pagination .current-slide,
.custom-pagination .total-slides {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #0054A3;
}

.custom-pagination .current-slide {
    left: 0;
}

.custom-pagination .total-slides {
    right: 0;
}

.custom-pagination .progress-bar {
    position: relative;
    background-color: #E0E0E0;
    width: 100%;
    height: 1px;
    display: flex;
    align-items: center;
}

.custom-pagination .progress-fill {
    height: 4px;
    background-color: #0054A3;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 500px;
}

.slide_controll_box {
    position: absolute;
    display: flex;
    z-index: 11;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    justify-content: flex-end;
}

.slide_controll_box>a img {
    height: 100%;
}


/* 2024.11.08 수정 */
.con {
    position: relative;
    padding: 100px 0;
}
.main_section03 {
    padding-bottom: 130px;
}
.main .section03::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: #0054A3;
}
.main_con03_flex_box_wrap {
    position: relative;
    margin-top: -50px;
}
.main_con03_flex_box {
    display: flex;
    justify-content: center;
    gap: 38px;
}
.main_con03_flex_box:last-child {
    margin-top: -195px;
}

.main_con03_flex_box.type02 {
    justify-content: space-between;
    margin-top: -235px;
}
.main_con03_flex_box .img {
    width: 322px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}
.main_con03_flex_box .img img {
    z-index: -1;
    transition: transform 0.3s ease;
}
.main_con03_flex_box .img:hover img {
    transform: scale(1.1);
}
.main_con03_flex_box .img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    border-radius: 0px 0px 30px 30px;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);    
}

.main_con03_flex_box .img .alt_box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    z-index: 2;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.main_con03_flex_box .img .alt_box .tit {
    margin-bottom: 10px;
    border-radius: 500px;
    padding: 7px 10px;
    font-size: 16px;
    color: #222;
    display: inline-block;
    font-weight: 600;
}

.main_con03_flex_box .img .alt_box .alt {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    line-height: 1.36em;
    min-height: 60px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.mobile_only {display: none;}

@media all and (max-width:1400px) {
    .title_box h2 {
        font-size: 40px;        
    }
    .main_con03_flex_box.type02 { 
        margin: 0 auto;       
        margin-top: -160px;
        max-width: 1060px;
    }
    .main_con03_flex_box:last-child {
        margin-top: -120px;
    }
    .main_con03_flex_box_wrap {
        margin-top: 40px;
    }
    .main_con03_flex_box .img {
        width: 235px;
    }
    .main_con03_flex_box .img .alt_box .alt {
        font-size: 18px;
    }
    .main_con03_flex_box .img .alt_box {
        bottom: 15px;
        left: 15px;
    }
}

@media all and (max-width:1100px) {
    .main_con03_flex_box.type02 {
        margin: 0 auto;
        margin-top: unset;
        justify-content: center;
    }
    .main_con03_flex_box:last-child {
        margin-top: unset;
    }

    .main_con03_flex_box_wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 40px 38px;
    }
    .main_con03_flex_box {
        width: calc(50% - 19px);        
    }
    .main_con03_flex_box.type02 {
        margin-left: auto;
    }
    .main_con03_flex_box .img {
        width: 100%;
    }
    .main_con03_flex_box .img .alt_box {
        width: calc(100% - 30px);
    }
}

@media all and (max-width:1024px) {
    .title_box h2 {
        font-size: 32px;        
    }
    .main_con03_flex_box {
        width: 100%;        
    }
    .main_con03_flex_box .img {
        max-width: 322px;
    }
    .main_con03_flex_box{
        gap: 40px 20px;
    }
    .main_con03_flex_box .img .alt_box .alt,
    .main_con03_flex_box .img .alt_box .tit {
        font-size: 14px;
    }
    .main_con03_flex_box .img .alt_box {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 10px;
    }
    .main_con03_flex_box .img .alt_box .alt {
        min-height: 40px;
    }
    .con {
        padding: 80px 0;
    }
}

.sub_visual{
    padding: 40px 0;
    border-radius: 0px 0px 30px 30px;
    background: #0054A3 url(/img/sub_visual_img01.png)no-repeat center right;
}

.sub_visual .sv_txt h2{
    color: #fff;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
}

.sub_radi_us{border-radius: 30px; background-color: #fff; overflow: hidden;}
.wh_ite_tab{display: flex; background-color: #edeeee; flex-wrap: wrap;}
.wh_ite_tab.item07 .wh_btn{width: 14.285%;}
.wh_ite_tab.item06 .wh_btn{width: 16.666%;}
.wh_ite_tab .wh_btn{
     display: flex;
    justify-content: center;
    align-items: center;  
    padding: 20px 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 22px; color: #888;
    font-weight: 500;}
.wh_ite_tab .wh_btn.active{background-color: #0054A3; color: #fff; font-weight: 700;}
.wh_ite_tab .wh_btn a {line-height: 50%;}


.wh_ite_box{display: none;}
.wh_ite_box.active{display: block;}

.won_sub_txt{
    color: #555;
    text-align: center;
    font-size: 16px;
    line-height: 1.75em;
}
.won_two_sub{
    color: #333;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media all and (max-width:1024px){
    .sub_visual .sv_txt h2{font-size: 32px;}
    .wh_ite_tab.item07 .wh_btn,
    .wh_ite_tab.item06 .wh_btn{width: 33.333%;}
    .wh_ite_tab.item07 .wh_btn:nth-child(n+4){width: 25%;}
}
@media all and (max-width:650px){
    .wh_ite_tab.item07 .wh_btn,
    .wh_ite_tab.item06 .wh_btn{width: 50%;}
    .wh_ite_tab.item07 .wh_btn:nth-child(n+4){width: 50%;}
    .wh_ite_tab.item07 .wh_btn:nth-child(7){width: 100%;}
}


/* 2024.11.12 수정 */
.main_visual .mv_slide {
    width: 100%;
    height: 100%;
}
.main_visual .mv_slide .swiper-pagination {
    bottom: 60px;
    left: 90px;
    width: auto;    
    text-align: left;
}   
.main_visual .mv_slide .swiper-pagination-bullet {
    width: 44px;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: unset;
}
.main_visual .mv_slide .swiper-pagination-bullet-active {
    background-color: #d9d9d9;
}

@media all and (max-width:1024px) {
    .main_visual .mv_slide .swiper-pagination {
        bottom: 50px;
        left: 60px;
    }  
    .main_visual .mv_slide .swiper-pagination-bullet {
        width: 30px;
        height: 5px;
    }
}

@media all and (max-width:700px) {
    .main_visual .mv_slide .swiper-pagination-bullet {
        width: 20px;
        height: 5px;
    }
    .main_visual .mv_slide .swiper-pagination {
        bottom: 8%;
        left: 4.4%;
    } 
    .mobile_only {display: block;}
}
@media all and (max-width: 1023px) {
    body {
    word-break: normal;
    overflow-wrap: normal;
    }
}
/* END 2024.11.12 수정 */