@charset "utf-8";


/* 사이트맵 영역 */
section#site_map { position: fixed; left: 0; top: 0; width: 100%; height: 100vh; background-color: rgba(0, 91, 172, 0.9); padding-top: 35px; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 140;}
section#site_map.active { opacity: 1; visibility: visible; }

section#site_map > div { position: relative; width: 100%; height: 100%; }

section#site_map div.popup_contents { margin-top: 100px; }
section#site_map div.popup_contents ul#nav_1dep { display: flex; justify-content: space-between; }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli { width: calc(25% - 100px); }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { position: relative; display: inline-block; width: 100%; font-family: var(--font-pretendard); font-size: 25px; padding: 0; padding-bottom: 10px; color: #fff; font-weight: 500; }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da::after { content:''; position: absolute; left: 0; top: 100%; display: inline-block; width: 0; height: 2px; background-color: #fff; transition: width 0.3s; }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli:hover a.gnb_1da::after { width: 100%; }

section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul { display: block !important; position: relative; top: revert; padding-top: revert; }

section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul ul.gnb_2dul_box { border: none; box-shadow: none; }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul ul.gnb_2dul_box > li { margin-top: 10px; }
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { background-color: transparent; color: #fff; font-family: var(--font-pretendard); font-size: 20px; opacity: 0.6; transition: all 0.3s; padding: 0;}
section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da:hover { opacity: 1; }

/* 비주얼 섹션 */
section.visual {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

section.visual div.slides_wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

section.visual div.slides_wrap div.slide {
    position: absolute; /* 절대 위치 지정 */
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
    transition: opacity 1s ease; /* 부드러운 전환 효과 */
    z-index: 1; /* 기본 z-index 설정 */
}

section.visual div.slides_wrap div.slide p.desc {
    position: relative;
    z-index: 2; /* 텍스트 위에 표시 */
    font-family: var(--font-pretendard);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    word-break:keep-all;
}

section.visual div.slides_wrap div.slide h2 {
    position: relative;
    z-index: 2; /* 텍스트 위에 표시 */
    font-family: var(--font-line);
    font-size: 80px;
    font-weight: 900;
    line-height: 1.07;
    color: #fff;
    margin-top: 50px;
    word-break:keep-all;
}

section.visual div.swiper-slide {
    opacity: 0 !important; /* 초기 투명도 */
    transition: opacity 1s ease-in-out; /* 부드러운 전환 효과 */
    position: absolute; /* 절대 위치 지정 */
    width: 100%;
    height: 100%;
    z-index: 1; /* 기본 z-index 설정 */
}

section.visual div.swiper-slide-active {
    opacity: 1 !important; /* 활성 슬라이드만 보이게 */
    z-index: 2; /* 활성 슬라이드의 z-index를 높게 설정 */
}

section.visual div.slides_wrap div.slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transform: scale(1.2); /* 배경 이미지 확대 */
    transition: opacity 1s ease, transform 3s ease;
    z-index: 0; /* 배경 이미지의 z-index를 낮게 설정 */
    opacity: 0; /* 초기 상태는 보이지 않음 */
}

/* 배경 이미지 설정 */
section.visual div.slides_wrap div.slide01::before { background: url('../img/img_visual_07.png') no-repeat center center; background-size: cover; }
section.visual div.slides_wrap div.slide02::before { background: url('../img/img_visual_04.png') no-repeat center center; background-size: cover; }
section.visual div.slides_wrap div.slide03::before { background: url('../img/img_visual_05.png') no-repeat center center; background-size: cover; }
section.visual div.slides_wrap div.slide04::before { background: url('../img/img_visual_02.png') no-repeat center center; background-size: cover; }
section.visual div.slides_wrap div.slide05::before { background: url('../img/img_visual_01.png') no-repeat center center; background-size: cover; }
section.visual div.slides_wrap div.slide06::before { background: url('../img/img_visual_03.png') no-repeat center center; background-size: cover; }
/* section.visual div.slides_wrap div.slide07::before { background: url('../img/img_visual_06.png') no-repeat center center; background-size: cover; } */

section.visual div.slides_wrap div.swiper-slide-active::before {
    opacity: 1; /* 활성화된 슬라이드의 배경 이미지 보이게 */
    transform: scale(1); /* 활성화된 슬라이드의 배경 이미지 스케일 */
}


section.visual div.slide_page_wrap { position: absolute; left: 0; top: 65vh; z-index: 10; width: 100%; }
section.visual div.slide_page_wrap > div { display: flex; align-items: center; column-gap: 20px; }
section.visual div.slide_page_wrap div.play_btn_wrap > button { display: flex; justify-content: center; align-items: center; width: 35px; height: 35px; background-color: transparent; border-radius: 9999px; border: 3px solid #fff; }
section.visual div.slide_page_wrap div.play_btn_wrap > button > span { font-family: var(--font-pretendard); font-size: 14px; font-weight: 400; color: #fff; }
section.visual div.slide_page_wrap div.page_wrap { display: flex; align-items: center; column-gap: 14px; }
section.visual div.slide_page_wrap div.page_wrap span { font-family: var(--font-pretendard); font-weight: 900; font-size: 15px; color: #fff; }
section.visual div.slide_page_wrap div.page_wrap span > img { display: block; height: 100%; object-fit: cover; }

section.visual div.slide_page_wrap div.page_wrap div.page_num { margin-bottom: 3px; }
section.visual div.slide_page_wrap div.page_wrap div.page_num > span:nth-of-type(2) { margin: 0 5px; }
section.visual div.slide_page_wrap div.page_wrap div.page_num > span:not(:first-child) { color: rgba(255, 255, 255, 0.3); }

/* 비주얼 제외 섹션 공통 섹션 */
section.sec { padding: 100px 0; background-color: #fff; }
section.sec h2 { font-family: var(--font-ubuntu); font-weight: 500; font-size: 32px; line-height: 1.4; color: var(--acc-color); }

/* 어바웃 섹션 */
section.about_sec h2+p.desc { margin-top: 15px; font-family: var(--font-line); font-weight: 700; font-size: 48px; color: var(--bas-color); line-height: 1.2; word-break: keep-all; }
section.about_sec > div > div.flex_wrap { display: flex; justify-content: space-between; align-items: center; column-gap: 30px; width: 100%; height: 100%; margin-top: 50px; }
section.about_sec > div > div.flex_wrap > div.left_flex { width: 100%; max-width: 950px; }
section.about_sec > div > div.flex_wrap > div.right_flex { display: flex; justify-content: center; align-items: center; flex-direction: column; row-gap: 60px; width: 100%; max-width: 420px; height: 550px; border-radius: 10px; background-color: #f9f9f9; }
section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap { text-align: center; }
section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p { font-family: var(--font-pretendard); line-height: 1.2; color: var(--bas-color); }
section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:first-child { font-family: var(--font-line); font-weight: 700; font-size: 35px;  }
section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:last-child { margin-top: 10px; font-weight: 500; font-size: 25px; opacity: 0.5;}

section.about_sec div.flex_wrap_02 { display: flex; flex-direction: column; row-gap: 30px; width: 100%; }
section.about_sec div.flex_wrap_02 > div.bot_flex { display: flex; align-items: center; column-gap: 50px; width: 100%; height: 260px; padding-left: 75px; border-radius: 10px; background-color: #f9f9f9; }
section.about_sec div.flex_wrap_02 > div.bot_flex > div.text_wrap > p { font-family: var(--font-line); font-weight: 700; font-size: 28px; line-height: 1.5; word-break: keep-all; }

section.about_sec div.flex_wrap_03 { display: flex; align-items: center; column-gap: 30px; }
section.about_sec div.flex_wrap_03 > div.left_flex { width: 100%; max-width: 300px; height: 260px; border-radius: 10px; padding-left: 40px; padding-top: 50px; background-color: var(--dom-color); }
section.about_sec div.flex_wrap_03 > div.left_flex > p { margin-bottom: 25px; font-family: var(--font-line); font-weight: 700; font-size: 25px; line-height: 1.2; color: #fff; }
section.about_sec div.flex_wrap_03 > div.left_flex > p:last-child { margin-bottom: 0; font-family: var(--font-pretendard); font-weight: 600; }
section.about_sec div.flex_wrap_03 > div.left_flex > p:last-child > span { font-family: var(--font-ubuntu); font-weight: 700; font-size: 65px; letter-spacing: -0.003em; }
section.about_sec div.flex_wrap_03 > div.right_flex { display: flex; align-items: center; width: 100%; max-width: 620px; height: 260px; border-radius: 10px; background-color: #f9f9f9; }
section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) { padding: 0 60px; }
section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p { font-family: var(--font-line); font-weight: 700; font-size: 25px; line-height: 1.2; }
section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p:last-child { font-family: var(--font-pretendard); font-weight: 600; color: var(--dom-color); margin-top: 25px; }
section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p:last-child > span { font-family: var(--font-ubuntu); font-weight: 700; font-size: 65px; letter-spacing: -0.003em; }

section.about_sec div.flex_wrap_03 > div.right_flex > div:nth-of-type(2) { width: 1px; height: 100px; background-color: #e6e6e6; }

/* 비즈니스 섹션 */
section.business_sec { background-color: #f2f9ff; overflow-x: hidden; }
section.business_sec h2+p.desc { margin-top: 15px; font-family: var(--font-line); font-weight: 700; font-size: 48px; color: var(--bas-color); line-height: 1.2; word-break: keep-all; }

section.business_sec div.business_slide { margin-top: 90px; position:relative; left: calc((100vw - 1400px) / 2); }
section.business_sec div.business_slide div.slick-track { display: flex; align-items: center; column-gap: 50px; }
section.business_sec div.business_slide div.slide { width: 100%; max-width: 650px; flex: 0 0 33.33%; cursor: pointer; }
section.business_sec div.business_slide div.slide div.img_wrap { width: 100%; }
section.business_sec div.business_slide div.slide div.img_wrap img { display: inline-block; width: 100%; height: 100%; object-fit: cover; }

section.business_sec div.business_slide div.text_wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
section.business_sec div.business_slide div.text_box > p.title { font-family: var(--font-line-rg); font-weight: 400; font-size: 30px; }
section.business_sec div.business_slide div.text_box > p.desc { margin-top: 8px; font-family: var(--font-noto); font-weight: 400; font-size: 20px; line-height: 1.3; color: #595959; }

section.business_sec ul.slick-dots { display: none !important; }

/* 솔루션 섹션 */
section.solution_sec div.flex_wrap { display: flex; justify-content: flex-start; align-items: center; column-gap: 50px; }

section.solution_sec div.flex_wrap > div.left_flex {display: flex;flex-direction: column;width: 55%;}
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex {display: flex;justify-content: flex-start;align-items: flex-start;width: 100%;height: 405px;}
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.img_flex { width: 50%; height: 100%; }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.img_flex > img {display: block;width: 100%;height: 100%;object-fit: cover;}
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex { display: flex; flex-direction: column; background-color: #f8f8f8; padding-top: 30px; padding-bottom: 30px; padding-left: 30px; width: 50%; height: 100%; }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > h2 { font-size: 16px; line-height: 1.4; }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.sub_title { margin-bottom: 15px; font-family: var(--font-line); font-weight: 700; font-size: 37px; color: var(--bas-color); }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.desc { font-family: var(--font-noto); font-weight: 400; font-size: 20px; line-height: 1.7; color: #595959; word-break: keep-all; }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > a { position: relative; display: inline-block; margin-top: auto; width: fit-content; font-family: var(--font-noto); font-size: 16px; line-height: 1.2; color: var(--bas-color); }
section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > a::after { content: ''; display: block; width: 0; height: 1px; background-color: #000; transition: all 0.3s;}

section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > a:hover::after { width: 100%; }

section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex {width: 100%;height: 50%;padding: 30px 0;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div { display: flex; justify-content: flex-start; align-items: center; justify-content: space-between; }
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.text_box {width: 75%;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.img_box {width: 20%;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.img_box > img {display: block;max-width: 60%;width: 100%;height: 100%;object-fit: cover;margin: 0 auto;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.title {margin-bottom: 15px;font-family: var(--font-line-rg);font-weight: 400;font-size: 28px;line-height: 1.4;color: var(--bas-color);}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.title:has(a:hover) {font-weight: 600;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.desc {margin-bottom: 20px;font-family: var(--font-noto);font-weight: 400;font-size: 18px;line-height: 1.2;color: #333;word-break: keep-all;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > a {position: relative;display: inline-block;margin-top: auto;width: calc(100% - 70px);font-family: var(--font-noto);font-size: 16px;line-height: 1;color: var(--bas-color);}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > a::after { content: ''; display: block; width: 0; height: 1px; background-color: #000; transition: all 0.3s;}
section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > a:hover::after { width: 100%; }


section.solution_sec div.flex_wrap > div.right_flex { width: 500px;}
section.solution_sec div.flex_wrap > div.right_flex > div { display: flex; justify-content: flex-start; align-items: center; justify-content: space-between; }
section.solution_sec div.flex_wrap > div.right_flex > div > div.text_box {width: 75%;}
section.solution_sec div.flex_wrap > div.right_flex > div > div.img_box {width: 20%;}
section.solution_sec div.flex_wrap > div.right_flex > div > div.img_box > img { display: block; width: 100%; height: 100%; object-fit: cover; margin: 0 auto; }
section.solution_sec div.flex_wrap > div.right_flex > div p.title { margin-bottom: 15px; font-family: var(--font-line-rg); font-weight: 400; font-size: 28px; line-height: 1.4; color: var(--bas-color); }
section.solution_sec div.flex_wrap > div.right_flex > div p.title:has(a:hover) {font-weight: 600;}
section.solution_sec div.flex_wrap > div.right_flex > div p.desc {margin-bottom: 20px;font-family: var(--font-noto);font-weight: 400;font-size: 18px;line-height: 1.2;color: #333;word-break: keep-all;}
section.solution_sec div.flex_wrap > div.right_flex > div > a { position: relative; display: inline-block; margin-top: auto; width: fit-content; font-family: var(--font-noto); font-size: 16px; line-height: 1; color: var(--bas-color); }
section.solution_sec div.flex_wrap > div.right_flex > div > a::after { content: ''; display: block; width: 0; height: 1px; background-color: #000; transition: all 0.3s;}
section.solution_sec div.flex_wrap > div.right_flex > div > a:hover::after { width: 100%; }



section.solution_sec div.flex_wrap > div.right_flex > div.top_box {padding-bottom: 20px;}

section.solution_sec div.flex_wrap > div.right_flex > div.top_box,
section.solution_sec div.flex_wrap > div.right_flex > div.mid_box { border-bottom: 1px solid #d9d9d9; }

section.solution_sec div.flex_wrap > div.right_flex > div.top_box ,
section.solution_sec div.flex_wrap > div.right_flex > div.mid_box,
section.solution_sec div.flex_wrap > div.right_flex > div.bot_box {padding: 20px 0;}

section.solution_sec div.flex_wrap > div.right_flex > div.top_box > div.img_box > img {max-width: 85%;}
section.solution_sec div.flex_wrap > div.right_flex > div.mid_box > div.img_box > img {max-width: 85%;}
section.solution_sec div.flex_wrap > div.right_flex > div.bot_box > div.img_box > img {max-width: 85%;}


@media screen and (max-width: 1410px){

    section.visual div.slides_wrap div.slide p.desc { font-size: 36px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 80px; }
    section.visual div.slide_page_wrap { top: 65vh; }

    section.business_sec div.business_slide { padding-left: 30px; left: 0; }
    section.about_sec div.flex_wrap_03 > div.right_flex { justify-content: center; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) { padding: 0 30px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.sub_title { font-size: 34px; }

    section.about_sec h2+p.desc { font-size: 44px; }
    section.business_sec h2+p.desc { font-size: 44px; }
    
}

@media screen and (max-width: 1300px){
    section.about_sec > div > div.flex_wrap > div.right_flex { width: 30%; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.sub_title { font-size: 30px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.desc { font-size: 18px; }

    section.sec h2 { font-size: 30px; }
    section.about_sec h2+p.desc { font-size: 40px; }
    section.business_sec h2+p.desc { font-size: 40px; }

    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:first-child { font-size: 32px; }

}

@media screen and (max-width: 1280px){
    section.visual div.slides_wrap div.slide p.desc { font-size: 32px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 80px; }
    section.visual div.slide_page_wrap { top: 65vh; }
}

@media screen and (max-width: 1112px){
    section.business_sec h2+p.desc > br { display: none; }
    section.solution_sec div.flex_wrap > div.right_flex > div p.desc > br { display: none; }
    section.about_sec div.flex_wrap_03 > div.left_flex { width: 35%; padding-left: 10px; padding-right: 10px; }
    section.about_sec div.flex_wrap_03 > div.right_flex { width: 75%; }

    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex { padding-left: 15px; padding-right: 15px; }

    section.about_sec div.flex_wrap_02 > div.bot_flex > div.text_wrap > p { font-size: 24px; }
}

@media screen and (max-width: 1040px){
    section.about_sec div.flex_wrap_03 > div.left_flex > p { font-size: 23px; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p { font-size: 23px; }
}

@media screen and (max-width: 1024px){

    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli { width: 25%; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { font-size: 23px; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { font-size: 18px; }

    section.sec h2 { font-size: 28px; }

    section.visual div.slides_wrap div.slide p.desc { font-size: 28px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 80px; }
    section.visual div.slide_page_wrap { top: 60vh; }

    section.about_sec h2+p.desc { font-size: 35px; }
    section.about_sec > div > div.flex_wrap { flex-direction: column; row-gap: 30px; }
    section.about_sec > div > div.flex_wrap > div.left_flex { width: 100%; }
    
    section.about_sec > div > div.flex_wrap > div.right_flex { flex-direction: row; width: 100%; height: 260px; justify-content: flex-start; padding-left: 75px; column-gap: 50px; max-width: revert; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.img_wrap { order: 1; width: 12.5%; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.img_wrap > img { display: inline-block; width: 100%; height: 100%; object-fit: cover; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap { order: 2; }

    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p { text-align: left; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:first-child > br { display: none; }

    section.about_sec div.flex_wrap_03 { column-gap: revert; justify-content: space-between; }
    section.about_sec div.flex_wrap_03 > div.left_flex { width: 32.5%; padding-left: 30px; padding-right: 0; }
    section.about_sec div.flex_wrap_03 > div.right_flex { width: 65%; }

    section.business_sec h2+p.desc { font-size: 35px; }
    
    section.business_sec div.business_slide { left: revert; padding-left: 30px; padding-right: 30px; }
    section.business_sec div.business_slide div.slide { width: 100%; max-width: calc(50vw - 60px); flex: 0 0 50%;  }
    section.business_sec div.business_slide div.text_box > p.title { font-size: 25px; }
    section.business_sec div.business_slide div.text_box > p.desc { font-size: 14px; }
    section.business_sec div.business_slide div.img_wrap { width: 100%; }
    section.business_sec div.business_slide div.img_wrap > img { display: inline-block; width: 100%; object-fit: cover; }

    section.solution_sec div.flex_wrap {flex-direction: column;/* row-gap: 50px; */}

    section.solution_sec div.flex_wrap > div.left_flex { width: 100%; }

    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex {width: 100%;padding: 20px 0;border-bottom: 1px solid #d9d9d9;}
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.text_box {/* width: 60%; */}
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.desc > br { display: none; }
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.img_box {/* width: 30%; */}
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex div.img_box > img { max-width: 140px; }
    

    section.solution_sec div.flex_wrap > div.right_flex { width: 100%; }
    section.solution_sec div.flex_wrap > div.right_flex > div { justify-content: space-between;}

    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.desc { font-size: 16px; }

    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.title {font-size: 24px;}
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.desc { font-size: 16px; }

    section.solution_sec div.flex_wrap > div.right_flex > div p.title { font-size: 24px; }
    section.solution_sec div.flex_wrap > div.right_flex > div p.desc { font-size: 16px; }

    section.solution_sec div.flex_wrap > div.right_flex > div.top_box > div.img_box > img {max-width: 60%;}
    section.solution_sec div.flex_wrap > div.right_flex > div.mid_box > div.img_box > img {max-width: 60%;}
    section.solution_sec div.flex_wrap > div.right_flex > div.bot_box > div.img_box > img {max-width: 60%;}
}

@media screen and (max-width: 950px){
    section.business_sec div.business_slide div.text_box > p.title { font-size: 22px; }
}

@media screen and (max-width: 945px){
    section.about_sec div.flex_wrap_03 > div.left_flex > p:last-child > span { font-size: 55px; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) { padding: 0 30px; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p:last-child > span { font-size: 55px; }

    section.business_sec h2+p.desc { font-size: 32px; }
    
    
}

@media screen and (max-width: 840px) {
    section.business_sec div.business_slide div.slide { width: 100vw; max-width: calc(100vw - 60px); flex: 0 0 100%;  }

    section.business_sec div.business_slide div.text_box > p.title { font-size: 22px; }
    section.business_sec div.business_slide div.text_box > p.desc { font-size: 16px; }
}

@media screen and (max-width: 820px) {
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli { width: 16.5%; }

    section.visual div.slides_wrap div.slide p.desc { font-size: 26px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 80px; }
    section.visual div.slide_page_wrap { top: 59vh; }

    section.about_sec > div > div.flex_wrap > div.right_flex { flex-direction: column; padding: 20px 0; padding-left: 0; row-gap: 20px; justify-content: center; height: 100%; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p { text-align: center; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.img_wrap { width: 15%; }

    section.about_sec div.flex_wrap_02 > div.bot_flex { flex-direction: column; padding: 20px 0; padding-left: 0; row-gap: 20px; justify-content: center; text-align: center; height: 100%; }
    
    section.about_sec div.flex_wrap_03 > div.left_flex { padding-left: 0; padding-top: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) { width: 50%; text-align: center; }

    section.business_sec h2+p.desc { font-size: 30px; }
    
    section.solution_sec div.flex_wrap > div.right_flex > div p.desc > br { display: none; }
}

@media screen and (max-width: 768px) {

    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { font-size: 20px; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { font-size: 16px; }

    section.visual { height: 70vh; }
    section.visual div.slides_wrap div.slide:not(.slide01) { opacity: 0; }
    section.visual div.slides_wrap div.slide p.desc { font-size: 24px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 70px; }
    section.visual div.slide_page_wrap { top: 45vh; }
    

    section.sec h2 { font-size: 24px; }

    section.about_sec h2+p.desc { font-size: 28px; }
    section.about_sec div.flex_wrap_03 > div.left_flex { max-width: revert; }
    section.about_sec div.flex_wrap_03 > div.left_flex > p { font-size: 20px; }
    section.about_sec div.flex_wrap_03 > div.left_flex > p:last-child > span { font-size: 44px; }

    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p { font-size: 20px; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) > p:last-child > span { font-size: 44px; }

    section.business_sec h2+p.desc { font-size: 28px; }
    section.business_sec div.business_slide { margin-top: 50px; }

    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > h2 { font-size: 16px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.sub_title { font-size: 26px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.desc { font-size: 16px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > a { font-size: 16px; }

    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div p.desc { font-size: 16px; }
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > a { font-size: 16px; }

    section.solution_sec div.flex_wrap > div.right_flex > div p.desc { font-size: 16px; }
    section.solution_sec div.flex_wrap > div.right_flex > div > a { font-size: 16px; }
    
    

}

@media screen and (max-width: 640px){
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli { width: 25%; text-align: center; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { font-size: 20px; }

    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul { min-width: revert; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { text-align: center; font-size: 16px; }
    

    section.sec h2 { font-size: 20px; }

    section.visual div.slides_wrap div.slide p.desc { font-size: 22px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 65px; margin-top: 30px; }
    section.visual div.slide_page_wrap { top: 42.5vh; }

    section.about_sec h2+p.desc { font-size: 25px; word-break: keep-all; }
    section.about_sec h2+p.desc > br { display: none; }
    
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:first-child { font-size: 25px; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:last-child { font-size: 20px; }

    section.about_sec div.flex_wrap_02 > div.bot_flex > div.img_wrap { width: 15%; }
    section.about_sec div.flex_wrap_02 > div.bot_flex > div.img_wrap > img { display: inline-block; width: 100%; height: 100%; object-fit: cover; }
    section.about_sec div.flex_wrap_02 > div.bot_flex > div.text_wrap > p { font-size: 20px; word-break: keep-all; }
    
    section.about_sec div.flex_wrap_03 { flex-direction: column; row-gap: 30px; }
    section.about_sec div.flex_wrap_03 > div.left_flex { width: 100%; }
    section.about_sec div.flex_wrap_03 > div.left_flex > p { font-size: 25px; }
    section.about_sec div.flex_wrap_03 > div.left_flex > p:last-child > span { font-size: 48px; }
    

    section.about_sec div.flex_wrap_03 > div.right_flex { width: 100%; }

    

    section.business_sec h2+p.desc { font-size: 25px; word-break: keep-all; }
    section.business_sec h2+p.desc > br { display: none; }

    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.img_flex { width: 100%; height: 400px; }
    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.img_flex > img { object-position: center; }
    section.solution_sec div.flex_wrap > div.right_flex > div p.desc { word-break: keep-all; }

    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex { flex-direction: column; height: auto; }
    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.text_flex { padding: 30px 0; padding-left: 30px; }
    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.text_flex > p.sub_title { margin-bottom: 15px; font-size: 28px; }
    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.text_flex > p.desc { line-height: 1.5; font-size: 16px; }
    section.solution_sec div.flex_wrap > div.top_flex > div.left_flex > div.text_flex > a { margin-top: 30px; }

    section.solution_sec div.flex_wrap > div.left_flex > div.top_flex > div.text_flex > p.desc > br { display: none; }

}

@media screen and (max-width: 580px){

    section.visual div.slides_wrap div.slide p.desc { font-size: 20px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 60px; }
    section.visual div.slide_page_wrap { top: 41vh; }

}

@media screen and (max-width: 540px){
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { font-size: 18px; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { font-size: 14px; }

    
    section.visual div.slides_wrap div.slide p.desc { font-size: 18px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 55px; }
    section.visual div.slide_page_wrap { top: 41vh; }

    section.about_sec h2+p.desc { font-size: 20px; }
    section.business_sec h2+p.desc { font-size: 20px; }

    section.business_sec div.business_slide div.text_box > p.desc { font-size: 14px; }


    
}

@media screen and (max-width: 425px){

    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli a.gnb_1da { font-size: 16px; }
    section#site_map div.popup_contents ul#nav_1dep li.gnb_1dli div.gnb_2dul a.gnb_2da { text-align: center; font-size: 12px; }

    section.visual div.slides_wrap div.slide p.desc { font-size: 20px; }
    section.visual div.slides_wrap div.slide h2 { font-size: 48px; margin-top: 20px; }

    section.sec h2 { font-size: 16px; }
    section.about_sec h2+p.desc { font-size: 20px; }

    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:first-child { font-size: 18px; }
    section.about_sec > div > div.flex_wrap > div.right_flex > div.text_wrap > p:last-child { font-size: 16px; }
    
    section.about_sec div.flex_wrap_02 > div.bot_flex { padding: 30px; }
    section.about_sec div.flex_wrap_02 > div.bot_flex > div.text_wrap > p { font-size: 18px; }
    
    

    section.about_sec div.flex_wrap_03 > div.right_flex { flex-direction: column; height: auto; padding: 30px 0; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:not(:nth-of-type(2)) { width: 100%; }
    section.about_sec div.flex_wrap_03 > div.right_flex > div:nth-of-type(2) { width: calc(100% - 30px); height: 1px; margin: 30px 0; }
    

    section.business_sec h2+p.desc { font-size: 20px; }

    section.business_sec div.business_slide { padding-left: 15px; padding-right: 15px; }
    section.business_sec div.business_slide div.slide { max-width: calc(100vw - 30px); }
    section.business_sec div.business_slide div.text_box > p.title { font-size: 24px; }
    section.business_sec div.business_slide div.text_box > p.desc { font-size: 14px; }

    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div {flex-direction: column;/* row-gap: 10px; */padding-right: 0;}

    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.text_box { width: 100%; }
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.img_box { text-align: right; margin-left: auto; }
    section.solution_sec div.flex_wrap > div.left_flex > div.bot_flex > div > div.img_box > img {/* display: inline-block; */max-width: 80%;}

    section.solution_sec div.flex_wrap > div.right_flex > div {flex-direction: column;/* row-gap: 30px; */padding-right: 0;}

    section.solution_sec div.flex_wrap > div.right_flex > div > div.text_box { width: 100%; }
    section.solution_sec div.flex_wrap > div.right_flex > div > div.img_box { text-align: right; margin-left: auto; }
    section.solution_sec div.flex_wrap > div.right_flex > div > div.img_box > img { display: inline-block; }

    section.solution_sec div.flex_wrap > div.right_flex > div.mid_box { padding-right: 0; }

    section.solution_sec div.flex_wrap > div.right_flex > div.top_box > div.text_box { margin-right: 0; }
    section.solution_sec div.flex_wrap > div.right_flex > div.mid_box > div.text_box { margin-right: 0; }
    section.solution_sec div.flex_wrap > div.right_flex > div.bot_box > div.text_box { margin-right: 0; }
    section.solution_sec div.flex_wrap > div.right_flex > div.top_box > div.img_box > img {max-width: 80%;}
    section.solution_sec div.flex_wrap > div.right_flex > div.mid_box > div.img_box > img {max-width: 80%;}
    section.solution_sec div.flex_wrap > div.right_flex > div.bot_box > div.img_box > img {max-width: 80%;}
    

    
    
}