/**
* Created by PhpStorm.
* Date         : 2021-11-12
* Developer    : SeHwan Hwang
* Description  : wp_style.css
* ⓒ 2021. WebPlanet Co. All Rights Reserved.
*/

@charset "utf-8";

/**********************************************************************************************************************/
/* 작성방법 */
/*
1. 모든 스타일은 클래스명 .wp_wrap 을 시작으로 작성한다.
2. 공통 스타일의 클래스명은 cm_ 접두어를 사용한다.
*/
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
@charset "utf-8";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/* font */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
/* font-family: 'Play', sans-serif; */
@import url('https://font.elice.io/css?family=Elice+DX+Neolli');
@font-face {
    font-family: 'Pretendard-Thin';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Light';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Medium';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Bold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Black';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

:root {
    --font-pre100: 'Pretendard-Thin';
    --font-pre200: 'Pretendard-Light';
    --font-pre300: 'Pretendard-ExtraLight';
    --font-pre400: 'Pretendard-Regular';
    --font-pre500: 'Pretendard-Medium';
    --font-pre600: 'Pretendard-SemiBold';
    --font-pre700: 'Pretendard-Bold';
    --font-pre800: 'Pretendard-ExtraBold';
    --font-pre900: 'Pretendard-Black';
}


html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}


.wp_wrap {
    font-family: var(--font-pre400);
    word-break: keep-all;
    overflow-x: hidden;
    position: relative;
}
.wp_wrap .cm_inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.wp_wrap  .cm_sec{
    padding: 160px 0;
}

/* 메인타이틀 - 제목 */
.wp_wrap .tit_box .m_tit{
    font-size: 50px;
    font-family: 'Pretendard-Regular';
}

/* 메인타이틀 - 설명 */
.wp_wrap .tit_box .m_desc{
    font-size: 20px;
}

/* 서브타이틀 - 제목 */
.wp_wrap .tit_box .s_tit{
    font-size: 50px;
    font-family: 'Pretendard-Regular';
}

/* 서브타이틀 - 설명 */
.wp_wrap .tit_box .s_desc{
    font-size: 18px;
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/* 헤더 */
.wp_wrap header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 9999;
    background: transparent;
}
/* .wp_wrap header:hover{
    background: #fff;
} */
.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .h_inner .mlogo{
    min-width: 200px;
}
.wp_wrap header .h_inner .mlogo>a>img {
    width: 100%;
}
.wp_wrap header .h_inner nav .gnb{
    display: flex;
    align-items: center;
}
.wp_wrap header .h_inner nav .gnb .m_list{
    position: relative;
    text-align: center;
    width: 180px;
    height: 100px;
}
.wp_wrap header .h_inner nav .gnb .m_list::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #0D9FB2;
    transform: scale(0);
    transition: 0.3s;
}
.wp_wrap header .h_inner nav .gnb .m_list:hover::after{
    transform: scale(1);
}
.wp_wrap header .h_inner nav .gnb .m_list>a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Regular';
}
.wp_wrap header .h_inner nav .gnb .m_list:hover>a{
    font-weight: 700;    
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu{
    display: none;
    position: absolute;
    width: 100%;
    padding: 15px 0;
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu a{
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap header .sub_mnu_bg{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 220px;
    z-index:-1 ;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.wp_wrap .mo_mnu{
    display: none;
}
.wp_wrap header .h_inner .convenient_box{
    display: flex;
    align-items: center;
    gap: 30px;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang {
    position: relative;
    min-width: 56px;
    width: 56px;
    height: 26px;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang>a{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    background: rgba(146, 146, 146, 0.27);
    border-radius: 5px;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang>a>p{
    color: #fff;
    font-family: 'Pretendard-Regular';
    font-size: 15px;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang>a>i{
    color: #fff;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang .other_lang {
    position: absolute;
    top: 30px;
    background: #fff;
    width: 100%;
    border-radius: 10px;
    display: none;
}
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang .other_lang .iner{
    padding: 10px 10px 10px 5px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    border: 1px solid #ddd;
    border-radius: 10px;
} 
.wp_wrap header .h_inner .convenient_box .lang_box .now_lang .other_lang>.iner>a{
    display: block;
    width: 100%;
    color: #000;
    font-size: 15px;
}
.wp_wrap header .h_inner .convenient_box .momnu_icon {
    padding: 40px 0;
    min-width: 29px;
}
.wp_wrap header .h_inner .convenient_box .momnu_icon .icon_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.wp_wrap header .h_inner .convenient_box .momnu_icon .icon_box span{
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.wp_wrap header .mnu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:#fff;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

/* 사이드메뉴 */
.wp_wrap .side_mnu{
    position: absolute;
    top: 0;
    right: -100%;
    width: 800px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid #ddd;
    transition: 0.8s;
    overflow-y: auto;
}
.wp_wrap .side_mnu.on{
    right: 0;
}
.wp_wrap .side_mnu .side_mnu_inner {
    position: relative;
    padding: 0 90px;
}
.wp_wrap .side_mnu .side_mnu_inner .back{
    padding-top: 50px;
    display: flex;
    justify-content: flex-end;
}
.wp_wrap .side_mnu .side_mnu_inner .back button{
    background: transparent;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_header{
    display: flex;
    align-items: center;
    gap: 70px;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_header .itm .imt_inner{
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 40px 0;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu{
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu .sm_list .top p{
    position: relative;
    font-size: 27px;
    font-family: 'Pretendard-Regular';
    max-width: 1200px;
    width: 100%;
    text-align: left;
    display:flex;
    align-items: center;   
    gap: 15px; 
    color: #515151;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu .sm_list .top p::after{
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu .sm_list .bot ul{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu .sm_list .bot ul li a{
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Pretendard-Regular';
    color: #515151;
    font-size: 16px;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_menu .sm_list .bot ul li a .dot{
    width: 7px;
    height: 7px;
    background: #0D9FB2;
    border-radius:50%;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_info{
    text-align: center;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_info .tel{
    font-size: 30px;
    margin-bottom: 20px;
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_info .tel a{
    font-family: var(--font-pre800);
}
.wp_wrap .side_mnu .side_mnu_inner .inner_box .side_info .adress{
    font-size: 18px;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
/* 푸터 */
.wp_wrap footer{
    background: #EFEFEF;
    padding: 30px 0;
}
.wp_wrap footer .f_inner{
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.wp_wrap footer .f_inner .left .logo{
    min-width: 130px;
}
.wp_wrap footer .f_inner .mid{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.wp_wrap footer .f_inner .itm{
    display: flex;
    align-items: center;
}
.wp_wrap footer .f_inner .itm.last{
    margin-bottom: 25px;
}
.wp_wrap footer .f_inner .itm .ques{
    color: #828282;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    min-width: 120px;
}
.wp_wrap footer .f_inner .itm .ans,
.wp_wrap footer .f_inner .itm .ans>a{
    color: #202020;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}

.wp_wrap footer .f_inner .copyright p,
.wp_wrap footer .f_inner .copyright p>a{
    color: #828282;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap footer .f_inner .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 10px;
}
.wp_wrap footer .f_inner .right .top{
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 25px;
}
.wp_wrap footer .f_inner .right .top li a{
    color: #CCCCCC;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}

.wp_wrap footer .f_inner .right .bot{
    display: flex;
    align-items: center;
    gap: 12px;
}
.wp_wrap footer .f_inner .flex {
    width: 100%;
}
.wp_wrap footer .f_inner .flex .flex_inner {
    display: flex;
    gap: 60px;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* 메인 */
.wp_wrap .m_visual{
    position:relative;
    overflow: hidden;
}
.wp_wrap .m_visual .m_slider{
    position: relative;
}
.wp_wrap .m_visual .m_slider .mv_slide{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.wp_wrap .m_visual .m_slider .mv_slide .mv_img.mv_img01{
    background: url(../img/main/mainslider01.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .mv_slide .mv_img.mv_img02{
    background: url(../img/main/mainslider02.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .mv_slide .mv_img.mv_img03{
    background: url(../img/main/mainslider03.jpg) no-repeat center center / cover;
}
.wp_wrap .m_visual .m_slider .mv_slide .mv_img{
    display: block; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border:0;
    transform: scale(1.1);    
    transition: 4s;
}
.wp_wrap .m_visual .m_slider .mv_slide.action .mv_img {
    transform: scale(1); 
}
.wp_wrap .m_visual .m_slider .mv_slide .txt_box_out{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp_wrap .m_visual .m_slider .mv_slide .txt_box_out .txt_box .mv_txt{
    font-size: 50px;
    color: #fff;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
    letter-spacing: -2px;
    transform: translateY(100px);
    transition: 1.5s;
    opacity: 0;
}
.wp_wrap .m_visual .m_slider .mv_slide.action .txt_box_out .txt_box .mv_txt{
    transform: translateY(0);
    opacity: 1;
}
.wp_wrap .m_visual .m_slider .mv_slide .txt_box_out .txt_box .txt {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
    color: #fff;
    line-height: 1.5;
    transform: translateY(100px);
    transition: 2s;
    opacity: 0;
}
.wp_wrap .m_visual .m_slider .mv_slide.action .txt_box_out .txt_box .txt {
    transform: translateY(0);
    opacity: 1;
}
.wp_wrap .m_visual .control_box{
    position: absolute;
    top: 64%;
    transform: translateY(-65%);
    left: calc(50% - 695px);
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap .m_visual .control_box .ms_arr{
    background: transparent;
}
.wp_wrap .m_visual .control_box .ms_arr i{
    color: rgba(245, 245, 245, 0.54);
}
.wp_wrap .m_visual .control_box .pause .icon_box{
    background: transparent;
}
.wp_wrap .m_visual .control_box .pause .icon_box i{
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    color: rgba(245, 245, 245, 0.54);
}
.wp_wrap .m_visual .control_box .progress01 { 
    position: relative;   
    width: 230px;
    height: 1px;
    background:#BFBFBF;
}
.wp_wrap .m_visual .control_box .progress01::after {  
    content: '';    
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: #0D9FB2; 
}
.wp_wrap .m_visual .control_box .progress01.bar_ani01::after {  
    animation: visual_bar01 6s linear;
}
@keyframes visual_bar01{
    0%{width:0;}
    100%{width:100%;}
} 

.wp_wrap .m_visual .scr{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.wp_wrap .m_visual .scr .scr_icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.wp_wrap .m_visual .scr .scr_icon .mouse_box{
    position: relative;
    width: 18px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.73);
    border-radius: 10px;
}
.wp_wrap .m_visual .scr .scr_icon .mouse_box .wheel{
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 2px;
    height: 5px;
    background: rgba(255, 255, 255, 0.73);
    animation: wheel 1s infinite;
}
@keyframes wheel{
    0%{top:5px;}
    100%{top:13px;}
} 
.wp_wrap .m_visual .scr .scr_icon .arr_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wp_wrap .m_visual .scr .scr_icon .arr_box i{
    color: rgba(255, 255, 255, 0.73);
    font-size: 15px;
}

.wp_wrap .m_visual .scr .scr_icon .arr_box i.arr01 {
    position: relative;
    color: rgba(255, 255, 255, .2);
    bottom: 6px;
}

.wp_wrap .m_visual .scr .scr_icon .arr_box i.arr02 {
    position: relative;
    color: rgba(255, 255, 255, .6);
    bottom: 10px;
}



/* main - sec01 */

.wp_wrap #m_business .bsn_inner .top{
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.wp_wrap #m_business .bsn_inner .top .tit_box .m_tit{
    font-size: 50px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #m_business .bsn_inner .top .slide_btn_box{
    flex: 1;
}
.wp_wrap #m_business .bsn_inner .top .slide_btn_box ul{
    display: flex;
    align-items: center;
    gap: 70px;
    justify-content: flex-end;
    border-bottom: 1px solid #E8E8E8;
}
.wp_wrap #m_business .bsn_inner .top .slide_btn_box ul button{
    position: relative;
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    background: transparent;
    margin-bottom: 10px;
}

.wp_wrap #m_business .bsn_inner .top .slide_btn_box ul button::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0D9FB2;
    transform: scale(0);
    transition: 0.3s;
}

.wp_wrap #m_business .bsn_inner .top .slide_btn_box ul button.on::after{
    transform: scale(1);
}
.wp_wrap #m_business .bsn_inner .bottom{
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-top: 80px;
    padding-top: 100px;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone{
    position: absolute;
    top: 0;
    left: 0;
    width: 440px;
    height: 450px;
    z-index: 999;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide{
    background: linear-gradient(to bottom, #07346E, #098697);
    border-radius: 20px;
    overflow: hidden;
    padding: 57px 70px 57px 40px;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide .txt_box{
    color: #fff;
}
.boxin {
	padding-bottom: 10px!important;
}
.boxin li {
	line-height: 1.6em;
	position: relative;
	padding-left: 10px;
}
.boxin li::before {
	content: '·';
	position: absolute;
	top:0px;
	left: 0px;
	
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide .txt_box .tit{
    color: #fff;
    font-size: 38px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide .txt_box .desc{
    color: #fff;
    font-size: 19px;
    margin-bottom: 25px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 200;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide .txt_box .more a{
    color: #fff;
    font-size: 20px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 200;
}
.wp_wrap #m_business .bsn_inner .bottom .slider_zone .txt_slider .txt_slide .txt_box .boxin>li {
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 200;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone{
    /* width: 1150px; */
    height: 500px;
    /* background: #ff0; */
    display: flex;
    align-items: stretch;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm{
    position: relative;
    width: 20%;
    width: 100px;
    transition: 0.5s;
    cursor: pointer;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.now{ 
    width: 100%;
    width: 850px;
    transition: 0.5s;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.itm01{
    background: url(../img/main/m_bsn01.jpg) no-repeat center center / cover;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.itm02{
    background: url(../img/main/m_bsn04.jpg) no-repeat center center / cover;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.itm03{
    background: url(../img/main/m_bsn03.jpg) no-repeat center center / cover;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.itm04{
    background: url(../img/main/m_bsn02.jpg) no-repeat center center / cover;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.itm05{
    background: url(../img/main/m_bsn05.jpg) no-repeat center center / cover;
}

.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm .shadow{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 36, 36, 0.74);
    opacity: 1;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
}
.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm .shadow p{  
/*    transform: rotate(-90deg);*/
    font-size: 20px;
    color: #fff;
    font-family: 'Elice DX Neolli', sans-serif;
	writing-mode: vertical-rl ;
    padding-right: 10px;
}

.wp_wrap #m_business .bsn_inner .bottom .img_zone .bsn_itm.now .shadow{ 
    opacity: 0;
}






/* main - sec02 */
.wp_wrap #m_company{
    position: relative;
    background: url(../img/main/m_com_bg.jpg) no-repeat center center / cover;
}
.wp_wrap #m_company .line{
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background:rgba(204, 204, 204, 0.61);
    z-index: 0;
}
.wp_wrap #m_company .line.line01{
    left: 238px;
}
.wp_wrap #m_company .line.line02{
    left: 665px;
    left: 715px;
}
.wp_wrap #m_company .line.line03{
    left: 1095px;
    left: 1190px;
}
.wp_wrap #m_company .line.line04{
    left: 1525px;
    left: 1667px;
}
.wp_wrap #m_company .last{
    position: absolute;    
    top: 65%;
    transform: translateY(-50%);
    left: 1667px;
}
.wp_wrap #m_company .last .line.line05{   
    width: 50px;
    height: 1px;
    background:rgba(204, 204, 204, 0.61);
}
.wp_wrap #m_company .last a{
    display: inline-block;
    right: -55px;
    position: relative;
    top: -12px;
    color: #FBFBFB;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    font-size: 20px;
} 
.wp_wrap #m_company .comp_inner .top .tit_box{
    margin-bottom: 80px;
}
.wp_wrap #m_company .comp_inner .top .tit_box .m_tit{
    color: #fff;
    margin-bottom: 15px;
}
.wp_wrap #m_company .comp_inner .top .tit_box .m_desc{
    color: #fff;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider{
    position: relative;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide{
    background: rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .slick-list {
    margin: 0 -23px;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .slick-slide {
    margin: 0 23px;
}

.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    padding: 0 21px;
    padding-top: 28px;
    height: 450px;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .name{
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #515151;
    margin-bottom: 30px;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .icon_box{
    height: 60px;
    margin-bottom: 55px;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .icon_box img{
    height: 100%;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .img_box {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .img_box>img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .year{
    margin-bottom: 10px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #161616;
}
.wp_wrap #m_company .comp_inner .bot .slide_zone .com_slider .com_slide .slide_inner .desc{
    font-size: 20px;
    color: #000;
    font-family: 'Pretendard-Regular';
}









/* main - sec03 */
.wp_wrap #m_agency{
    background: #F8F8F8;
    padding: 90px 0;
}
.wp_wrap #m_agency .cont_box{}
.wp_wrap #m_agency .cont_box .img_box{}
.wp_wrap #m_agency .cont_box .img_box img{
    margin: 0 auto;
}







/* main - sec03 */
.wp_wrap #m_news .news_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}
.wp_wrap #m_news .news_inner .left{
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}
.wp_wrap #m_news .news_inner .left .more a{
    font-size: 20px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    color:#515151;
}
.wp_wrap #m_news .news_inner .right{
    width: 85%;
    flex: 1;
}
.wp_wrap #m_news .news_inner .right .list{
    padding: 25px;
    border-bottom: 1px solid #ccc;
}
.wp_wrap #m_news .news_inner .right .list:first-child{
    border-top: 1px solid #ccc;
}
.wp_wrap #m_news .news_inner .right .list a{
    display: block;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 50px; */
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .txt{
    width: 80%;
    line-height: 1.35;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .txt .tit{
    font-size: 30px;
    font-family: var(--font-pre500);
}

.wp_wrap #m_news .news_inner .right .list a .list_inner .txt .desc{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #6E6E6E;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .date{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .date .day{
    font-size: 30px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    color: #484848;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .date .year{
    font-size: 20px;
    font-family: 'Elice DX Neolli', sans-serif;
    font-weight: 700;
    color: #828282;
}
.wp_wrap #m_news .news_inner .right .list a .list_inner .arrow{}
.wp_wrap #m_news .news_inner .right .list a .list_inner .arrow i{
    color: #CCCCCC;
    font-size: 23px;
    font-weight: 700;
}

.wp_wrap #m_news .news_inner .right .list a:hover .list_inner .txt .tit{
    color: #0D9FB2;
}

.wp_wrap #m_news .news_inner .right .list a:hover .list_inner .date .day{
    color: #4B5E24;
}

/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
/* 서브 */
.wp_wrap .sub_main{
    position: relative;
    top: 0;
    width: 100%;
    height: 380px;
    background: url(../img/sub/sub_main_bg.jpg) no-repeat center center / cover;
}
.wp_wrap .sub_main.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
}
.wp_wrap .sub_main .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #07346E, #0D9FB2);
    transform: scaleX(0);
    transition: 2s;
    opacity: 0;
}
.wp_wrap .sub_main .shadow.on{
    transform: scaleX(1);
    opacity: 0.9;
}
.wp_wrap .stick_main{
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
}
.wp_wrap .stick_main .sticky_inner {
    position: relative;
}
.wp_wrap .stick_main .sticky_inner .top{
    /* position: fixed;
    top: 200px;
    left: auto; */
    z-index: 12;
    max-width: 1390px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    padding: 0 40px;
}
.wp_wrap .stick_main .sticky_inner .top.fix{
    top: 50px;
}
.wp_wrap .stick_main .sticky_inner .top .left p{
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    color: #fff;
}
.wp_wrap .stick_main .sticky_inner .bot .right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.wp_wrap .stick_main .sticky_inner .bot .home a,
.wp_wrap .stick_main .sticky_inner .bot .arrow i,
.wp_wrap .stick_main .sticky_inner .bot .first_mnu .m_top p,
.wp_wrap .stick_main .sticky_inner .bot .second_mnu .m_top p{
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap .stick_main .sticky_inner .bot .right .first_mnu,
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu{
    position: relative;
}
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu {
    width: 140px;
}
.wp_wrap .stick_main .sticky_inner .bot .right .first_mnu .m_top,
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu .m_top{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu .m_top {
    justify-content: space-between;
}
.wp_wrap .stick_main .sticky_inner .bot .right .first_mnu .first_menu,
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu .second_menu{
    position: absolute;
    top: 30px;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    /* width: 100%; */
    padding: 10px;
    border-left:1px solid #DFDFDF;
    border-right:1px solid #DFDFDF;
    border-bottom:1px solid #DFDFDF;
    display: none;
}
.wp_wrap .stick_main .sticky_inner .bot .right .second_mnu .second_menu {
    width: 100%;
}
.wp_wrap .stick_main .sticky_inner .bot .right .sub_mmnu a{
    display: block;
    padding: 5px 0;
    font-size: 16px;
}

.wp_wrap .stick_main .sticky_inner .bot{
    margin-top: 90px;
    /* transition: 0.3s; */
}
.wp_wrap .stick_main .sticky_inner .bot.fix{
    position: fixed;
    top: -350px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    max-width: 1380px;
    /* padding: 0 15px; */
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
}
.wp_wrap .stick_main .sticky_inner .bot .img_box{
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap .stick_main .sticky_inner .bot .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.1;
    transition: 1.5s 1s;
}
.wp_wrap .stick_main .sticky_inner.on .bot .img_box img{
    scale: 1;
}




.wp_wrap #s_greeting {
    padding: 120px 0 160px 0;
}

.wp_wrap #s_greeting .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #s_greeting .grt_inner .left{
    width: auto;
}
.wp_wrap #s_greeting .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #s_greeting .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #s_greeting .grt_inner .right{
    width: 75%;
}
.wp_wrap #s_greeting .grt_inner .right .txt_box .txt{
    font-size: 29px;
    line-height: 1.5;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #s_greeting .grt_inner .right .txt_box .desc{
    font-size: 20px;
    color: #515151;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #s_greeting .grt_inner .right .txt_box .desc.last {
    margin-bottom: 0;
}


/* air */
.wp_wrap #air {
    padding: 120px 0 160px 0;
}
.wp_wrap #air .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #air .grt_inner .left{
    width: auto;
}
.wp_wrap #air .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #air .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #air .grt_inner .right{
    width: 75%;
}
.wp_wrap #air .grt_inner .right .lr {
    display: none;
}
.wp_wrap #air .grt_inner .right .top {
    margin-bottom: 60px;
}
.wp_wrap #air .grt_inner .right .top .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #air .grt_inner .right .top .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #air .grt_inner .right .mid {
    margin-bottom: 60px;
}
.wp_wrap #air .grt_inner .right .mid .fir {
    margin-bottom: 60px;
}
.wp_wrap #air .grt_inner .right .mid .fir .tit_box {
    margin-bottom: 27px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #air .grt_inner .right .mid .fir .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #air .grt_inner .right .mid .fir .ex_box {
    display: flex;
    gap: 5px;
    padding-left: 30px;
}
.wp_wrap #air .grt_inner .right .mid .fir .ex_box .circle {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #9CBF56;
    margin-top: 10px;
}
.wp_wrap #air .grt_inner .right .mid .fir .ex_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #air .grt_inner .right .mid .fir .ex_box>p>span {
    color: #0D9FB2;
}
.wp_wrap #air .grt_inner .right .mid .sec {}
.wp_wrap #air .grt_inner .right .mid .sec .tit_box {
    margin-bottom: 45px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #air .grt_inner .right .mid .sec .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #air .grt_inner .right .mid .sec table {
    border-top: 1px solid #707070;
    width: 100%;
    border-spacing: 0px;
    color: #555555;
}
.wp_wrap #air .grt_inner .right .mid .sec table>thead {
    background: #F9F9F9;
}
.wp_wrap #air .grt_inner .right .mid .sec table>thead>tr {
}
.wp_wrap #air .grt_inner .right .mid .sec table>thead>tr>th {
    padding: 23px 0;
    border-bottom: 1px solid #CFCFCF;
}
.wp_wrap #air .grt_inner .right .mid .sec table>tbody {
}
.wp_wrap #air .grt_inner .right .mid .sec table>tbody>tr {
}
.wp_wrap #air .grt_inner .right .mid .sec table>tbody>tr>td {
    padding: 27px 0;
    border-bottom: 1px solid #CFCFCF;
}
.wp_wrap #air .grt_inner .right .mid .sec table .name {
    font-size: 20px;
    font-family: 'Pretendard-Bold';
    text-align: center;
}
.wp_wrap #air .grt_inner .right .mid .sec table .namet {
    font-size: 20px;
    width: 30%;
}
.wp_wrap #air .grt_inner .right .mid .sec table .ext {
    font-size: 20px;
    font-family: 'Pretendard-Light';
    width: 70%;
}
.wp_wrap #air .grt_inner .right .mid .sec table .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #air .grt_inner .right .bot {}
.wp_wrap #air .grt_inner .right .bot .tit_box {
    margin-bottom: 45px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #air .grt_inner .right .bot .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #air .grt_inner .right .bot table {
    border-top: 1px solid #707070;
    width: 100%;
    border-spacing: 0px;
    color: #555555;
}
.wp_wrap #air .grt_inner .right .bot table thead {
    background: #F9F9F9;
    width: 100%;
}
.wp_wrap #air .grt_inner .right .bot table thead tr {
}
.wp_wrap #air .grt_inner .right .bot table>thead>tr>th {
    font-size: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #CFCFCF;
    border-right: 1px solid #cfcfcf;
}
.wp_wrap #air .grt_inner .right .bot table>thead>tr .one {
    width: 15%;
    border-left: 1px solid #cfcfcf;
}
.wp_wrap #air .grt_inner .right .bot table>thead>tr .two {
    width: 7%;
}
.wp_wrap #air .grt_inner .right .bot table>thead>tr .three {
    width: 78%;
}
.wp_wrap #air .grt_inner .right .bot table tbody {}
.wp_wrap #air .grt_inner .right .bot table tbody tr {}
.wp_wrap #air .grt_inner .right .bot table tbody tr td {
    font-size: 16px;
    border-right: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr td>span {
    font-family: 'Pretendard-Bold';
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .name {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    padding: 44px 0;
    border-bottom: 1px solid #cfcfcf;
    text-align: center;
    border-left: 1px solid #cfcfcf;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .name.two {
    padding: 25px 0;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .name.three {
    padding: 80px 0;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .bold {
    font-family: 'Pretendard-Bold';
    text-align: center;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .sec {
    text-align: center;
}
.wp_wrap #air .grt_inner .right .bot table tbody tr .last {
    padding-left: 5px;
}


/* research */
.wp_wrap #research {
    padding: 120px 0 160px 0;
}
.wp_wrap #research .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #research .grt_inner .left{
    width: auto;
}
.wp_wrap #research .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #research .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #research .grt_inner .right{
    width: 75%;
}
.wp_wrap #research .grt_inner .right .lr {
    display: none;
}
.wp_wrap #research .grt_inner .right .top {
    margin-bottom: 60px;
}
.wp_wrap #research .grt_inner .right .top .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #research .grt_inner .right .top .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
    margin-bottom: 60px;
}
.wp_wrap #research .grt_inner .right .top .fir {
    margin-bottom: 60px;
}
.wp_wrap #research .grt_inner .right .top .fir .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #research .grt_inner .right .top .fir .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #research .grt_inner .right .top .fir .ex_box {
    display: flex;
    gap: 5px;
    padding-left: 30px;
}
.wp_wrap #research .grt_inner .right .top .fir div:nth-child(2) {
    margin-bottom: 10px;
}
.wp_wrap #research .grt_inner .right .top .fir .ex_box .circle {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #9CBF56;
    margin-top: 10px;
}
.wp_wrap #research .grt_inner .right .top .fir .ex_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #research .grt_inner .right .top .fir .ex_box>p>span {
    color: #0D9FB2;
}
.wp_wrap #research .grt_inner .right .top .sec {}
.wp_wrap #research .grt_inner .right .top .sec .tit_box {
    margin-bottom: 45px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #research .grt_inner .right .top .sec .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #research .grt_inner .right .top .sec table {
    border-top: 1px solid #707070;
    font-size: 16px;
    color: #555555;
    width: 100%;
    border-spacing: 0px;
}
.wp_wrap #research .grt_inner .right .top .sec table>tr {}
.wp_wrap #research .grt_inner .right .top .sec table tr td {
    font-family: 'Pretendard-Regular';
    border-bottom: 1px solid #cfcfcf;
    padding-left: 15px;
}
.wp_wrap #research .grt_inner .right .top .sec table tr .name {
    font-family: 'Pretendard-Regular';
    text-align: center;
    background: #F9F9F9;
    padding: 115px 0;
    width: 12%;
    line-height: 1.5;
    border-right: 1px solid #cfcfcf;
}
.wp_wrap #research .grt_inner .right .top .sec table tr .name.two {
    padding: 101px 0;
}
.wp_wrap #research .grt_inner .right .top .sec table tr .big {
    padding: 10px 0;
    padding-left: 15px;
}
.wp_wrap #research .grt_inner .right .top .sec>table>tr>td>span {}
.wp_wrap #research .grt_inner .right .top .sec>table>tr>td>ul {}
.wp_wrap #research .grt_inner .right .top .sec>table>tr>td>ul>li {}
.wp_wrap #research .grt_inner .right .bot {}
.wp_wrap #research .grt_inner .right .bot .re_box {}
.wp_wrap #research .grt_inner .right .bot .re_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
    margin-bottom: 30px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex_box {
    display: flex;
    gap: 5px;
    padding-left: 30px;
    margin-bottom: 60px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex_box.fir {
    margin-bottom: 8px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex_box .circle {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #9CBF56;
    margin-top: 10px;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #research .grt_inner .right .bot .re_box .ex_box>p>span {
    color: #0D9FB2;
}




/* environment */
.wp_wrap #environment {
    padding: 120px 0 160px 0;
}
.wp_wrap #environment .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #environment .grt_inner .left{
    width: auto;
}
.wp_wrap #environment .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #environment .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #environment .grt_inner .right {
    width: 75%;
}
.wp_wrap #environment .grt_inner .right .lr {
    display: none;
}
.wp_wrap #environment .grt_inner .right .top {
    margin-bottom: 60px;
}
.wp_wrap #environment .grt_inner .right .top .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #environment .grt_inner .right .top .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
    margin-bottom: 30px;
}
.wp_wrap #environment .grt_inner .right .mid {
    margin-bottom: 60px;
}
.wp_wrap #environment .grt_inner .right .mid .fir {
    margin-bottom: 60px;
}
.wp_wrap #environment .grt_inner .right .mid .fir .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #environment .grt_inner .right .mid .fir .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #environment .grt_inner .right .mid .fir .ex_box {
    display: flex;
    gap: 5px;
    padding-left: 30px;
    margin-bottom: 60px;
}
.wp_wrap #environment .grt_inner .right .mid .fir .ex_box .circle {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #9CBF56;
    margin-top: 10px;
}
.wp_wrap #environment .grt_inner .right .mid .fir .ex_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #environment .grt_inner .right .mid .fir .ex_box>p>span {
    color: #0D9FB2;
}
.wp_wrap #environment .grt_inner .right .mid .sec {}
.wp_wrap #environment .grt_inner .right .mid .sec .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #environment .grt_inner .right .mid .sec .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #environment .grt_inner .right .mid .sec .ex_list {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #555555;
    border-top: 1px solid #707070;
}
.wp_wrap #environment .grt_inner .right .mid .sec .ex_list>li {
    border-bottom: 1px solid #CFCFCF;
    padding-left: 15px;
}
.wp_wrap #environment .grt_inner .right .mid .sec .ex_list>li>p {
    padding: 23px 0;
}
.wp_wrap #environment .grt_inner .right .bot {}
.wp_wrap #environment .grt_inner .right .bot .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #environment .grt_inner .right .bot .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #environment .grt_inner .right .bot table {
    border-spacing: 0px;
    width: 100%;
}
.wp_wrap #environment .grt_inner .right .bot table thead {
    background: #F9F9F9;
}
.wp_wrap #environment .grt_inner .right .bot table thead th {
    font-size: 18px;
    font-family: 'Pretendard-Light';
    padding: 24px 0;
    border-bottom: 1px solid #CFCFCF;
    border-right: 1px solid #CFCFCF;
    border-top: 1px solid #707070;
}
.wp_wrap #environment .grt_inner .right .bot table thead th:nth-child(1) {
    border-left: 1px solid #cfcfcf;
}
.wp_wrap #environment .grt_inner .right .bot table tbody {}
.wp_wrap #environment .grt_inner .right .bot table tbody td {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    text-align: center;
    border-bottom: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
}
.wp_wrap #environment .grt_inner .right .bot table tbody tr td:nth-child(1) {
    border-left: 1px solid #cfcfcf;
}
.wp_wrap #environment .grt_inner .right .bot table tbody td>ul {
    text-align: start;
    padding: 25px 0;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap #environment .grt_inner .right .bot table tbody td>ul>li {
    display: flex;
    gap: 5px;
}
.wp_wrap #environment .grt_inner .right .bot table tbody td>ul>li>p {}



/* noise */
.wp_wrap #noise {
    padding: 120px 0 160px 0;
}
.wp_wrap #noise .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #noise .grt_inner .left{
    width: auto;
}
.wp_wrap #noise .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #noise .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #noise .grt_inner .right{
    width: 75%;
}
.wp_wrap #noise .grt_inner .right .lr {
    display: none;
}
.wp_wrap #noise .grt_inner .right .top {
    margin-bottom: 60px;
}
.wp_wrap #noise .grt_inner .right .top .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #noise .grt_inner .right .top .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
    margin-bottom: 30px;
}
.wp_wrap #noise .grt_inner .right .top .fir {
    margin-bottom: 60px;
}
.wp_wrap #noise .grt_inner .right .top .fir .tit_box {
    margin-bottom: 30px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #noise .grt_inner .right .top .fir .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #noise .grt_inner .right .top .fir .ex_box {
    display: flex;
    gap: 5px;
    padding-left: 30px;
    margin-bottom: 60px;
}
.wp_wrap #noise .grt_inner .right .top .fir .ex_box .circle {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #9CBF56;
    margin-top: 10px;
}
.wp_wrap #noise .grt_inner .right .top .fir .ex_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
}
.wp_wrap #noise .grt_inner .right .top .fir .ex_box>p>span {
    color: #0D9FB2;
}
.wp_wrap #noise .grt_inner .right .top .sec {}
.wp_wrap #noise .grt_inner .right .top .sec .tit_box {
    margin-bottom: 45px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #noise .grt_inner .right .top .sec .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}

.wp_wrap #noise .grt_inner .right .top .sec table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Pretendard-Regular';
  font-size: 13px;
  color: #555555;
  text-align: center;
  border: 1px solid #CFCFCF;
  margin-bottom: 80px;
}

.wp_wrap #noise .grt_inner .right .top .sec table thead th {
    font-family: 'Pretendard-Light';
}
/* 헤더 첫 줄 */
.wp_wrap #noise .grt_inner .right .top .sec table thead tr:nth-child(1) th {
  border: 1px solid #CFCFCF;
  background-color: #F9F9F9; /* 연한 회색 */
  font-weight: bold;
  vertical-align: middle;
  font-size: 18px;
  font-family: 'Pretendard-Regular';
  padding: 24px 0;
  border-top: 1px solid #707070;
}
.wp_wrap #noise .grt_inner .right .top .sec table thead tr:nth-child(1) th:nth-child(2) {
    font-weight: 500;
}

/* 헤더 둘째 줄 */
.wp_wrap #noise .grt_inner .right .top .sec table thead tr:nth-child(2) th {
  border: 1px solid #CFCFCF;
  background-color: #EEEEEE; /* 조금 더 밝은 회색 */
  font-weight: normal;
  vertical-align: middle;
  padding: 6px;
  font-size: 16px;
}

/* 헤더 셋째 줄 */
.wp_wrap #noise .grt_inner .right .top .sec table thead tr:nth-child(3) th {
  border: 1px solid #CFCFCF;
  background-color: #EEEEEE; /* 거의 흰색 */
  font-weight: normal;
  font-size: 15px;
  line-height: 1.2em;
  padding: 4px 6px;
}

/* 본문 행 */
.wp_wrap #noise .grt_inner .right .top .sec table tbody tr {
  background-color: white; /* 본문 배경 흰색 */
  color: #555555; /* 본문 글자 검정 */
}

/* 본문 셀 */
.wp_wrap #noise .grt_inner .right .top .sec table tbody td {
  border: 1px solid #CFCFCF; /* 연한 회색 테두리 */
  font-size: 16px;
  font-family: 'Pretendard-Regular';
  padding: 15px 0;
  padding-left: 15px;
  color: #555555;
  text-align: start;
}

/* 본문 숫자 열 (2번째 열부터) */
.wp_wrap #noise .grt_inner .right .top .sec table tbody td:nth-child(n+2) {
  text-align: center;
  padding-left: 0;
}
.wp_wrap #noise .grt_inner .right .bot {
}
.wp_wrap #noise .grt_inner .right .bot .re_box {
    margin-bottom: 60px;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 30px;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    line-height: 1.5;
    margin-bottom: 30px;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .tit_box {
    margin-bottom: 45px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(to right, #07346E, #0D9FB2);
    padding: 15px 0;
    padding-left: 25px;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .tit_box .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 0;
}
.wp_wrap #noise .grt_inner .right .bot .re_box table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Pretendard-Regular';
  font-size: 16px;
  border: 1px solid #ccc;
  text-align: center;
  color: #555555;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table thead th {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  border-top: 1px solid #707070;
  padding: 8px 6px;
  font-size: 16px;
  font-family: 'Pretendard-Light';
}
.wp_wrap #noise .grt_inner .right .bot .re_box table thead tr:nth-child(2) th {
    font-size: 15px;
    background: #EEEEEE;
}
.wp_wrap #noise .grt_inner .right .bot .re_box table thead tr:nth-child(1) th:nth-child(1) {
    width: 60%;
    font-size: 16px;
}
.wp_wrap #noise .grt_inner .right .bot .re_box table thead th:nth-child(3) {
    padding: 25px 0;
    width: 25%;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody td {
  border: 1px solid #ccc;
  padding-left: 10px;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody tr {
    height: 70px;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody td:first-child {
  padding-left: 0;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody tr:first-child td:first-child {
    text-align: start;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.5;
}
.wp_wrap #noise .grt_inner .right .bot .re_box table tbody tr:nth-child(5) td:first-child {
    text-align: start;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody td:nth-child(2) {
    padding-left: 0;
}

.wp_wrap #noise .grt_inner .right .bot .re_box table tbody td:nth-child(n+3) {
    padding-left: 0;
}


.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) {
    margin-bottom: 0;
}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta {}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta thead {}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta thead th {
    text-align: center;
    padding: 25px 0;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta tbody {}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta tbody td {
    text-align: center;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta tbody td:first-child {
    text-align: center;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ta tbody tr:first-child td:first-child {
    text-align: center;
    padding-left: 0;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ta tbody tr:nth-child(5) td:first-child{
    text-align: center;
    padding-left: 0;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ta tbody tr:first-child td:first-child {
    text-align: center;
    padding-left: 0;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ta thead tr:nth-child(1) th:nth-child(1) {
    width: 15%;
    font-weight: 500;
}
.wp_wrap #noise .grt_inner .right .bot .re_box .ta thead tr:nth-child(1) th:nth-child(2) {
    font-weight: 500;
}
.wp_wrap #noise .grt_inner .right .bot div:nth-child(2) .ta tbody tr:nth-child(3) td:nth-child(2) {
    width: 20%;
}




/* inquiry */
.wp_wrap #inquiry {
    padding: 120px 0 160px 0;
}
.wp_wrap #inquiry .grt_inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap #inquiry .grt_inner .left{
    width: auto;
}
.wp_wrap #inquiry .grt_inner .left .tit_box .s_tit{
    position: relative;
    padding-top: 50px;
    font-size: 40px;
}
.wp_wrap #inquiry .grt_inner .left .tit_box .s_tit::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 3px;
    background: #07346E;
}
.wp_wrap #inquiry .grt_inner .right{
    width: 75%;
}
.wp_wrap #inquiry .grt_inner .right .inq_box {
    width: 100%;
    background: url(../img/sub/inq_bg.jpg) no-repeat center center / cover;
    border-radius: 30px;
    padding-top: 100px;
    padding-bottom: 45px;
    padding-left: 80px;
    padding-right: 115px;
    display: flex;
    gap: 45px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_left {
    color: #fff;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_left .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 70px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_left .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    margin-bottom: 45px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_left .con {
    font-size: 30px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_left .tel {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right {
    width: 100%;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line {
    position: relative;
    width: 100%;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_tit {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_tit .txt {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_tit .txt span {
    color: #E51010;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_inp {
    width: 100%;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_inp>input {
    width: 100%;
    font-size: 18px;
    padding: 20px;
    padding-left: 120px;
    border-radius: 5px;
    border: none;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.5);
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .form_inp>input:focus {
    outline: none;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line textarea {
    width: 100%;
    resize: none;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 18px;
    padding-top: 25px;
    padding-left: 30px;
    padding-right: 30px;
    height: 190px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.5);
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line textarea:focus {
    outline: none;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line textarea::placeholder {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    color: #000;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .file_box {}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .file_box>label {
    position: relative;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .file_box>label>i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #fff;
    font-size: 18px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_line .file_box>label>input {
    width: 40%;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-pre400);
    color: #707070;
    border-radius: 5px;
    border: 1px solid #707070;
    margin-bottom: 5px;
    font-family: 'Pretendard-Regular';

}
input[type='file']::file-selector-button{
    font-size: 12px;
    font-family: var(--font-pre300);
    color: #fff;
    background-color: #393939;
    border: none;
    padding: 15px 15px 15px 35px;
    cursor: pointer;
    border-radius: 5px;
}
.wp_wrap #inquiry .grt_inner .right .inq_box .inq_right .form_wrap .form_last_line {}

.form_wrap .form_last_line .agr_box{
    margin-bottom: 30px;
}
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"] + label{
    font-size: 14px;
    font-family: var(--font-pre300);
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 3px;
    color: #fff;
    font-family: 'Pretendard-Regular';
}
input[type="checkbox"] + label .chk_cst{
    width: 19px;
    height: 19px;
    display: inline-block;
    margin-right: 5px;
    background: url(../img/icon/agr_chk_bf.png) no-repeat center center / cover;
}
input[type="checkbox"]:checked + label .chk_cst{
    background: url(../img/icon/agr_chk_at.png) no-repeat center center / cover;
}
input[type="checkbox"]:checked + label .chk_cst{}
input[type="checkbox"] + label .txt_deco{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form_wrap .form_last_line .line_rt {
    display: flex;
    justify-content: flex-end;
}
.form_wrap .form_last_line .line_rt button {
    border-radius: 5px;
    background: #FFFFFF;
    padding: 15px 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-family: 'Pretendard-Regular';
}
.form_wrap .form_last_line .line_rt button:hover {
    background: #0D9FB2;
    color: #fff;
}
/**********************************************************************************************************************/

/* 모달 */
/**********************************************************************************************************************/
.wp_wrap .com_md {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
}
.wp_wrap .pv_md.on {
    display: block;
}
.wp_wrap .tou_md.on {
    display: block;
}
.wp_wrap .com_md .md_outer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 100%;
}
.wp_wrap .com_md .md_outer .width_inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    height: 80vh;
    background: #fff;
    padding: 30px 40px 60px 40px;
}
.wp_wrap .com_md .md_outer .width_inner .icon_box {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
}
.wp_wrap .com_md .md_outer .width_inner .icon_box i {
    border: 2px solid #999999;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    color: #999999;
    font-weight: 900;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner p {
    font-size: 33px;
    font-family: var(--font-pre500);
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box {
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;    
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar { 
    width: 6px;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar-thumb { 
    border-radius:10px; 
    background-color: #e0e0e0;
    cursor: pointer;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar-track {  
    background-color: #fff; 
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box .txt_body pre {
    font-family: var(--font-pre400);
    font-weight: 400;
    font-size: 17px;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.4;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box .txt_body pre .cicnum {
    position: relative;
    display: inline-block;
    top: -2px;
    font-size: 10px;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* qikmnu */
/**********************************************************************************************************************/
.wp_wrap .qik_mnu {
    position: fixed;
    top: 70%;
    transform: translateY(-50%);
    right: 40px;
    z-index: 1000;
}
.wp_wrap .qik_mnu .qik_itms{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.wp_wrap .qik_mnu .qik_itms>li{}
.wp_wrap .qik_mnu .qik_itms>li .li_in{
    width: 125px;
    aspect-ratio: auto 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.wp_wrap .qik_mnu .qik_itms>li:nth-child(1) .li_in{
    background: rgba(74, 123, 185, 0.91);
}
.wp_wrap .qik_mnu .qik_itms>li:nth-child(2) .li_in{
    background: rgba(191, 186, 18, 0.86);
}
.wp_wrap .qik_mnu .qik_itms>li:nth-child(3) .li_in{
    background: rgba(13, 159, 178, 0.86);
}
.wp_wrap .qik_mnu .qik_itms>li .li_in .icon_box{}
.wp_wrap .qik_mnu .qik_itms>li .li_in .icon_box img{}
.wp_wrap .qik_mnu .qik_itms>li .li_in .name{
    color: #fff;
    font-size: 15px;
    font-family: var(--font-pre500);
}
/**********************************************************************************************************************/