@charset "utf-8";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/* font */
@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';
}

.wp_wrap {
      word-break: keep-all;
      overflow: hidden;
      font-family: var(--font-pre400);
}

.wp_wrap main section {
      padding: 120px 0;
}

.wp_wrap table {
      font-family: var(--font-pre400);
}

.hidden {
      height: 100%;
      min-height: 100%;
      overflow: hidden !important;
      touch-action: none;
}


/* cm 스타일 */

.wp_wrap .cm_container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 15px;
}

/* title */
.wp_wrap .cm_sec_title {
      font-size: 50px;
      font-weight: 600;
      margin-bottom: 20px;
}

.wp_wrap .cm_sec_title span {
      font-weight: 200;
}

.wp_wrap .cm_sec_sub_title {
      font-size: 17px;
      font-weight: 200;
      text-align: center;
      margin-bottom: 80px;
}

.wp_wrap .cm_sub_tit {
      position: relative;
      color: #333333;
      text-align: center;
      font-size: 48px;
      font-weight: 500;
      margin-bottom: 80px;
}

.wp_wrap .cm_sub_tit::before {
      content: "";
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 5px;
      background: #22448B;
      background: #FD7623;
}

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




/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/*헤더*/

.wp_wrap .header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      line-height: 80px;
      /* background: #fff; */
      z-index: 500;
}

.wp_wrap .header .cm_container {
      /* display: flex */
      justify-content: space-between;
      /* align-items: center; */
}

.wp_wrap .header .cm_container .gnb  {
      width: 40%;
}
.wp_wrap .header .cm_container .gnb a {
      display: block;
      color: #fff;
}

.wp_wrap .header .cm_container .gnb ul {
      display: flex;
      width: 100%;
      /* gap: 60px; */
}

.wp_wrap .header .cm_container .gnb>ul>li {
      flex-grow: 1;
      text-align: center;
      font-size: 18px;
      font-weight: 500;
      position: relative;
      width: 80%;

}

.wp_wrap .header .cm_container .gnb>ul>li::after {
      display: block;
      content: "";
      width: 100%;
      height: 3px;
      background-color: #FD7623;
      transform: scale(0);
      transition: 0.4s;
}

.wp_wrap .header .cm_container .gnb>ul>li:hover::after {
      transform: scale(1);
      transition: 0.4s;
}

.wp_wrap .header .cm_container .gnb .s_menu {
      position: absolute;
      top: 100%;
      left: 50%;
      display: none;
      /* background: #fff; */
      font-size: 16px;
      line-height: 42px;
      width: 145px;
      transform: translateX(-50%);
      text-align: center;
      /* border-top: 3px solid #4a6eb5; */
      z-index: 99999;
}


.wp_wrap .header .cm_container .m_open {
      display: none;
}

.wp_wrap .header .cm_container .m_open i {
      cursor: pointer;
}

.wp_wrap header .mo_nav {
      display: none;
}


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



/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/*메인 슬라이드*/
.wp_wrap .main_visual {
      position: relative;
}

.wp_wrap .main_visual .main_slider figure {
      position: relative;
      height: 100vh;
}

.wp_wrap .main_visual .main_slider .main_slide01 {
      background: url(../img/main/mainSlide01.jpg) no-repeat center center / cover;
}

.wp_wrap .main_visual .main_slider .main_slide02 {
      background: url(../img/main/mainSlide02.jpg) no-repeat center center / cover;
}

.wp_wrap .main_visual .cm_arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      font-size: 80px;
}

.wp_wrap .main_visual .ar_left {
      left: 5%;
      z-index: 99;
}

.wp_wrap .main_visual .ar_right {
      right: 5%;
}


.wp_wrap .main_visual .main_slider figure .slide_inner {
    width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      line-height: 1;
      letter-spacing: 1px;
      display: flex;
      flex-direction: column;
      justify-content: center;
}

.wp_wrap .main_visual .main_slider figure .slide_inner .slide_sub {
      font-size: 30px;
      text-shadow: 0 0 3px rgba(33, 33, 33, 0.5);
      opacity: 0;
      margin-bottom: 10px;
      transform: translateY(100px);

}

.wp_wrap .main_visual .main_slider figure.on .slide_inner .slide_sub {
      opacity: 1;
      transform: translateY(0);
      transition: 0.5s;
}

.wp_wrap .main_visual .main_slider figure .slide_inner .slide_tit {
      text-shadow: 0 0 3px rgba(33, 33, 33, 0.5);
      font-size: 70px;
      font-weight: 900;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(100px);
      text-align: center;
}

.wp_wrap .main_visual .main_slider figure.on .slide_inner .slide_tit {
      opacity: 1;
      transform: translateY(0);
      transition: 0.7s;
}

.wp_wrap .main_visual .main_slider figure .slide_inner span {
      text-shadow: 0 0 3px rgba(33, 33, 33, 0.5);
      font-size: 50px;
      font-weight: 300;
      opacity: 0;
      transform: translateY(100px);
      text-align: center;
      width: 100%;
}

.wp_wrap .main_visual .main_slider figure.on .slide_inner span {
      opacity: 1;
      transform: translateY(0);
      transition: 0.7s 0.9s;
}


/*About us*/
.wp_wrap .sec01 {
    padding-bottom: 180px;
}
.wp_wrap .sec01 .cm_sec_title,
.wp_wrap .sec01 .cm_sec_sub_title {
      text-align: center;
}

.wp_wrap .sec01 .sec01_inner {
      gap: 100px;
}

.wp_wrap .sec01 .cm_container .sec01_inner .img {
      border-radius: 40px;
      overflow: hidden;
      width: 52%;

}

.wp_wrap .sec01 .cm_container .sec01_inner .img img {
      transition: 1s;
      width: 100%;
}

.wp_wrap .sec01 .cm_container .sec01_inner .img:hover img {
      transform: scale(1.1);
}

.wp_wrap .sec01 .sec01_inner .tit {
    font-size: 40px;
    font-family: 'Pretendard-ExtraBold';
    margin-bottom: 20px;
}

.wp_wrap .sec01 .sec01_inner .desc_tit {
      font-size: 25px;
      margin-bottom: 15px;
      font-family: 'Pretendard-SemiBold';
}

.wp_wrap .sec01 .sec01_inner .desc_content {
      font-size: 16px;
      line-height: 22px;
      letter-spacing: 1.1px;
      margin-bottom: 40px;
      font-weight: 200;
      font-family: 'Pretendard-Regular';
}

.wp_wrap .sec01 .sec01_inner .more_btn {
      font-size: 13px;
      font-weight: 200;
}

.wp_wrap .sec01 .sec01_inner .more_btn a {
      display: inline-block;
      border: 1px solid #707070;
      border-radius: 22px;
      padding: 13px 33px;
      transition: 0.4s;
}

.wp_wrap .sec01 .sec01_inner .more_btn:hover a {
      border: 1px solid #FD6F22;
      background-color: #FD6F22;
      color: #fff;
}




/*Business*/
body {
    margin: 0;
    transition: background-color 0.5s ease; /* body 배경색 변경 애니메이션 */
    background-color: #fff; /* 기본 body 배경색 (흰색) */
}
.wp_wrap .sec02 {
    position: relative;
    background: #EEEEEE;
    padding-top: 180px;
}
.wp_wrap .sec02 .img_box {
    position: absolute;
    top: -111px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
}
.wp_wrap .sec02 .img_box>img {
    width: 100%;
}


.wp_wrap .sec02 .sec02_right {
      /* width: calc((100% - 1200px) / 2 + 1200px); */
      width: 100%;
}


.wp_wrap .sec02 .cm_sec_title,
.wp_wrap .sec02 .sec02_sub_title {
      text-align: left;
}

.wp_wrap .sec02 .cm_sec_title {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sec02 .sec02_sub_title {
      font-size: 16px;
      font-weight: 200;
      margin-bottom: 30px;
      line-height: 21px;
      color: #6a6a6a;
}

.wp_wrap .sec02 .wp_flex {
      gap: 50px;
}

.wp_wrap .sec02 .cm_container .sec02_left .business_arrow i {
      cursor: pointer;
      font-size: 17px;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_slider {
      position: relative;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_slider figure {
      position: relative;
      width: 326px;
      height: 418px;
      margin: 0 20px;
      border-radius: 40px;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_slider figure .shadow {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      color: #fff;
      padding: 30px;
      border-radius: 0 0 40px 40px;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_slider figure .shadow .ko_name {
      font-size: 21px;
      margin-bottom: 5px;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_slider figure .shadow .en_name {
      font-size: 17px;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_itm01 {
      background: url(../img/main/business01.jpg) no-repeat center center / cover;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_itm02 {
      background: url(../img/main/business02.jpg) no-repeat center center / cover;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_itm03 {
      background: url(../img/main/business03.jpg) no-repeat center center / cover;
}

.wp_wrap .sec02 .cm_container .sec02_right .business_itm04 {
      background: url(../img/main/business04.jpg) no-repeat center center / cover;
}

.wp_wrap .sec02 .cm_container .sec02_left .business_arrow {
      text-align: right;
}

.wp_wrap .sec02 .cm_container .sec02_left .business_arrow i {
      border: 1px solid #b5b5b5;
      color: #b5b5b5;
      padding: 8px;
}



/*COMPANY INFO*/
.wp_wrap .sec02 .cm_sec_title,
.wp_wrap .sec02 .cm_sec_sub_title {
      text-align: center;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm {
      position: relative;
      /* overflow: hidden; */
      width: 100%;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm>p {
      font-size: 20px;
      font-family: 'Pretendard-Medium';
      margin-top: 15px;
      text-align: center;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0px 5px 15px #b0b0b0;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow {
      position: absolute;
      top: 0;
      left: 0;
      /* bottom: -100%; */
      width: 100%;
      height: 88%;
      color: #fff;
      background: rgba(0, 56, 174, 0.7);
      transition: 0.5s;
      opacity: 0;
      border-radius: 10px;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm:hover .shadow {
      opacity: 1;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow .txt {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow:hover .txt {
      bottom: 0;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow .tit {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 25px;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow .desc {
      font-size: 17px;
      margin-bottom: 55px;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow a {
      border: 1px solid #fff;
      color: #fff;
      padding: 9px 33px;
      border-radius: 35px;
      font-weight: 700;
      font-size: 15px;
      transition: 0.4s;
      margin-top: 15px;
}
.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow .txt>i {
    font-size: 40px;
    text-align: center;
}

.wp_wrap .sec02 .cm_container .info_img .img_itm .shadow a:hover {
      border: 1px solid #7188B7;
      background: #7188B7;
      color: #fff;
}









/* Inquiry */
.wp_wrap #shp_counsel01 {
    background-image: url(../img/main/sub_counsel01.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.wp_wrap #shp_counsel01 .shp_ir {
    padding: 120px 0;
}
.wp_wrap #shp_counsel01 .shp_ir .lt {
    margin-top: 50px;
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap {
      color: #fff;
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .tit_box {
    margin-bottom: 90px;
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 13px;
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .tit_box .des {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .info_box {}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .info_box .tit {
    font-size: 30px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 10px;
}
.wp_wrap #shp_counsel01 .shp_ir .lt .txt_wrap .info_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}

input[type=text] {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    padding-right: 20px;
    padding-left: 150px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(30px);
    z-index: -1;
}
.form_lin input[type=checkbox] {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    padding-right: 20px;
    padding-left: 150px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    z-index: -1;
}
input[type=text]:focus {
    outline: none;
}
.rt_ir .form_wrap .form_line {
    position: relative;
    margin-bottom: 15px;
}
.rt_ir .form_wrap .form_line .form_tit {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.rt_ir .form_wrap .form_line .form_tit .red {
    color: red;
}
.rt_ir .form_wrap .form_line:nth-child(4), .rt_ir .form_wrap .form_line:nth-child(5) {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    padding-right: 20px;
    padding-left: 200px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(30px);
}
.rt_ir .form_wrap .form_line:nth-child(4) .form_inp, .rt_ir .form_wrap .form_line:nth-child(5) .form_inp {
      gap: 10px;
}
.rt_ir .form_wrap .form_line:nth-child(6) .form_tit {
    position: absolute;
    left: 3%;
    top: 10%;
}
.rt_ir .form_wrap .form_line .form_tit .txt {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    color: #000;
}
#wp_1_6 {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0);
    resize: none;
    padding: 0 20px;
    padding-top: 40px;
    box-sizing: border-box;
    border-radius: 5px;
    backdrop-filter: blur(30px);
}
textarea:focus {
    outline: none;
}
.rt_ir .form_wrap .form_last_line .line_rt {
    display: flex;
    justify-content: end;
    margin-top: 30px;
}
.rt_ir .form_wrap .form_last_line .line_rt>button {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #707070;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    padding: 15px 72px;
    transition: 0.3s;
}
.rt_ir .form_wrap .form_last_line .line_rt>button:hover {
    background: #FD6F22;
    border: 1px solid #FD6F22;
    color: #fff;
}

.rt_ir .form_wrap .form_last_line {}
.rt_ir .form_wrap .form_last_line .file_box {
    margin-bottom: 15px;
    background: #fff;
    width: 40%;
}

.rt_ir .form_wrap .form_last_line .file_box>label {
    position: relative;
}

.rt_ir .form_wrap .form_last_line .file_box>label i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    color: #fff;
    font-size: 16px;
}

.rt_ir .form_wrap .form_last_line .file_box>p {
    font-size: 14px;
    font-family: 'Pretendard-Regular';
}

input[type='file'] {
    width: 100%;
    background-color: #fff;
    cursor: pointer;
    background: transparent;
    font-size: 14px;
    font-family: var(--font-pre400);
    color: #707070;
}

input[type='file']::file-selector-button{
    height: 35px;
    font-size: 14px;
    font-family: var(--font-pre300);
    color: #fff;
    background-color: #101010;
    border: none;
    padding: 0 15px 0 35px;
    cursor: pointer;
}

.rt_ir .form_wrap .form_last_line .agr_box{
    margin-bottom: 20px;
}
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"] + label{
    font-size: 16px;
    font-family: var(--font-pre300);
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
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{
    font-family: var(--font-pre600);
    text-decoration: underline;
    text-underline-offset: 3px;
}





/* 위로가기 버튼 */

.wp_wrap .toTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 40px;
      height: 40px;
      font-size: 21px;
      background: #f1f1f1;
      border-radius: 50%;
}

.wp_wrap .toTop i {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 21px;
      padding: 8px;
      color: #2E4574;
}



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



/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/

.wp_wrap footer {
      background: #F6F6F6;
      padding: 40px 0 10px 0;
}

.wp_wrap footer .fot_a,
.wp_wrap footer>* {
      color: #858585;
}

.wp_wrap footer .logo {
      margin-bottom: 20px;
}

.wp_wrap footer .menu {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 20px;
      font-size: 15px;
}

.wp_wrap footer .menu li~li {
      position: relative;
}

.wp_wrap footer .menu li~li::before {
      content: "";
      display: inline-block;
      background: #9AB4E9;
      width: 1px;
      height: 10px;
      vertical-align: -1px;
      margin: 0 8px;
}


.wp_wrap footer .info {
    gap: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FD6F22;
}

.wp_wrap footer .info .txt {
      font-size: 15px;
      margin-bottom: 4px;
}


.wp_wrap footer .copyright {
      font-size: 13px;
      padding: 10px 0;
}

.wp_wrap footer .copyright>a {
      color: #C4C4C4;
}

.wp_wrap footer .copyright>a:hover {
    color: #FD6F22;
}





/**********************************************************************************************************************/
/* 서브 페이지 */
/**********************************************************************************************************************/
/* 서브메인 */
.wp_wrap .sub_main figure {
      position: relative;
      height: 500px;
      background: url(../img/sub/subMainBg.jpg) no-repeat center center / cover;
      /* filter: brightness(70%); */
}

.wp_wrap .sub_main figure .shadow {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
}

.wp_wrap .sub_main figure .txt {
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
}

.wp_wrap .sub_main figure .txt .tit {
      font-size: 50px;
      margin-bottom: 10px;
}

.wp_wrap .sub_main figure .txt .min_tit {
      font-size: 20px;
}

.wp_wrap .sub_menu ul {
      justify-content: center;
}

.wp_wrap .sub_menu ul li {
      margin-top: -30px;
      position: relative;
      width: 300px;
      height: 80px;
      border-top: 1px solid #ddd;
      border-left: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      background: #fff;
}

.wp_wrap .sub_menu ul li.on {
      border-top: 1px solid #FD6F22;
      border-left: 1px solid #FD6F22;
      border-bottom: 1px solid #FD9F28;
      background: linear-gradient(to bottom, #FD6F22, #FD9F28);
      color: #fff;
}

.wp_wrap .sub_menu ul li:last-child {
      border-right: 1px solid #ddd;
}

.wp_wrap .sub_menu ul .last.on {
      border-right: 1px solid #FD6F22;
}



.wp_wrap .sub_menu li a {
      height: 100%;
      font-size: 20px;
      font-family: 'Pretendard-Regular';
      display: flex;
      position: absolute;
      top: 50%;
      width: 100%;
      left: 50%;
      transform: translate(-50%, -50%);
      align-items: center;
      justify-content: center;
}

.wp_wrap .sub_menu li a:hover {
    color: #000;
}

.wp_wrap .sub_menu li a>br {
      display: none;
}

.wp_wrap .sub_menu li:first-child {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.wp_wrap .sub_menu li:first-child a {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.wp_wrap .sub_menu li:last-child {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.wp_wrap .sub_menu li:last-child a {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.wp_wrap .sub_menu ul li.on a {
      color: #fff;
      background: linear-gradient(to bottom, #FD6F22, #FD9F28);
}

.wp_wrap .sub_main02 figure {
      position: relative;
      height: 500px;
      background: url(../img/sub/subMain02Bg.jpg) no-repeat center center / cover;
      /* filter: brightness(70%); */
}

.wp_wrap .sub_main02 figure .shadow {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
}

.wp_wrap .sub_main02 figure .txt {
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
}

.wp_wrap .sub_main02 figure .txt .tit {
      font-size: 50px;
      margin-bottom: 10px;
}

.wp_wrap .sub_main02 figure .txt .min_tit {
      font-size: 20px;
}

.wp_wrap .sub_main03 figure {
      position: relative;
      height: 500px;
      background: url(../img/sub/subMain03Bg.jpg) no-repeat center center / cover;
      /* filter: brightness(70%); */
}

.wp_wrap .sub_main03 figure .shadow {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
}

.wp_wrap .sub_main03 figure .txt {
      color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
}

.wp_wrap .sub_main03 figure .txt .tit {
      font-size: 50px;
      margin-bottom: 10px;
}

.wp_wrap .sub_main03 figure .txt .min_tit {
      font-size: 20px;
}


/* sub01(intro - ceo) */
.wp_wrap .sub01_sec01 .cm_container {}
.wp_wrap .sub01_sec01 .cm_sub_tit {
    font-size: 45px;
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub01_sec01 .cm_container .sec01_left p {
      font-size: 30px;
      margin-bottom: 20px;
      font-family: 'Pretendard-Regular';
      line-height: 1.5;
      padding-left: 30px;
}

.wp_wrap .sub01_sec01 .cm_container .sec01_left p>span {
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub01_sec01 .cm_container .sec01_left .name span {
      font-size: 25px;
      font-weight: 600;
}

.wp_wrap .sub01_sec01 .cm_container .sec01_right {
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 60px;
}

.wp_wrap .sub01_sec01 .cm_container .sec01_right img {
      width: 100%;
}

.wp_wrap .sub01_sec02 .cm_sub_tit {
    font-size: 45px;
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub01_sec02 .cm_container .img_box {
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 60px;
}

.wp_wrap .sub01_sec02 .cm_container .txt_box {
    margin-bottom: 60px;
}

.wp_wrap .sub01_sec02 .cm_container .txt_box .txt {
    font-size: 30px;
      margin-bottom: 20px;
      font-family: 'Pretendard-Regular';
      line-height: 1.5;
      padding-left: 30px;
}

.wp_wrap .sub01_sec02 .cm_container .txt_box .txt .bold {
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub01_sec02 .cm_container .img_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 40px;
}

.wp_wrap .sub01_sec02 .cm_container .img_list li {}
.wp_wrap .sub01_sec02 .cm_container .img_list li .img_box {
    border-radius: 10px;
}

.wp_wrap .sub01_sec02 .cm_container .img_list li .img_box>img {
    width: 100%;
    filter: saturate(0);
    transition: 0.5s;
}

.wp_wrap .sub01_sec02 .cm_container .img_list li .img_box:hover>img {
    filter: saturate(100%);
}




/* sub01(intro - vision) */
.wp_wrap .sub02_sec01 figure {
      position: relative;
      height: 500px;
      background: url(../img/sub/visionBg.jpg) no-repeat center center / cover;
}

.wp_wrap .sub02_sec01 figure .shadow {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
}

.wp_wrap .sub02_sec01 figure .inner_txt {
      color: #fff;
      position: absolute;
      width: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
}

.wp_wrap .sub02_sec01 figure .inner_txt .vision_tit {
      font-size: 45px;
      font-weight: 900;
      margin-bottom: 45px;
}

.wp_wrap .sub02_sec01 figure .inner_txt .vision_desc {
      font-size: 24px;
      line-height: 40px;
}

.wp_wrap .sub02_sec02 .cm_container .value {
      justify-items: center;
}

.wp_wrap .sub02_sec02 .cm_sub_tit {
    font-size: 45px;
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub02_sec02 .cm_container .value .icon {
      text-align: center;
      position: relative;
      width: 200px;
      height: 200px;
      background: #f6f6f6;
      border-radius: 50%;
      margin-bottom: 20px;
}

.wp_wrap .sub02_sec02 .cm_container .value .icon img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
}

.wp_wrap .sub02_sec02 .cm_container .value .value_item {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
}

.wp_wrap .sub02_sec02 .cm_container .value .value_item .value_name {
      font-size: 24px;
      margin-bottom: 17px;
      font-weight: 600;

}

.wp_wrap .sub02_sec02 .cm_container .value .value_item .value_name span {
      color: #22448B;
}

.wp_wrap .sub02_sec02 .cm_container .value .value_item .value_txt {
      font-size: 16px;
}



/* sub01(intro - location) */
.wp_wrap .sub03_sec01 .cm_container {
      justify-content: space-between;
      gap: 80px;
}

.wp_wrap .sub03_sec01 .cm_sub_tit {
    font-size: 45px;
    font-family: 'Pretendard-Bold';
}

.wp_wrap .sub03_sec01 .map_box {
    padding-bottom: 50px;
    border-bottom: 3px solid #757575;
}
.wp_wrap .sub03_sec01 .info_list {
    align-items: center;
}
.wp_wrap .sub03_sec01 .info_list>li {
    padding: 38px 0;
    border-bottom: 1px solid #C8C8C8;
}
.wp_wrap .sub03_sec01 .info_list>li .info_box {}
.wp_wrap .sub03_sec01 .info_list>li .info_box .tit {
    font-size: 20px;
    font-family: 'Pretendard-Semibold';
    width: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap .sub03_sec01 .info_list>li .info_box .tit>i {
    font-size: 25px;
    color: #949494;
}
.wp_wrap .sub03_sec01 .info_list>li .info_box .name {
    font-family: 'Pretendard-Regular';
    font-size: 18px;
}

.root_daum_roughmap .cont .section.lst {
    display: none;
}
.root_daum_roughmap .wrap_map {
    height: 500px;
}
.root_daum_roughmap .wrap_controllers {
    display: none;
}
.root_daum_roughmap .map_border {
    display: none;
}
#daumRoughmapContainer1736917800010 {
    height: 80%;
}

/* inquiry */
.wp_wrap .sub03_sec01 .shp02_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 10px;
    padding-bottom: 35px;
    background: #F6F6F6;
    border-radius: 30px;
}

.wp_wrap .sub03_sec01 .shp02_wrap .shp_ir {
    gap: 30px;
    display: flex;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt {
    padding: 50px 0;
    padding-left: 45px;
    background: linear-gradient(to bottom, #FD6F22, #FD9F28);
    border-radius: 20px;
    height: 445px;
    width: 54%;
}
.wp_wrap .sub03_sec01 .shp02_wrap .rt {
      width: 100%;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap {
    color: #fff;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .tit_box {
    margin-bottom: 85px;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .tit_box .tit {
    font-size: 35px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 40px;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .tit_box .des {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .info_box {}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .info_box .tit {
    font-size: 30px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}

.wp_wrap .sub03_sec01 .shp02_wrap .lt .txt_wrap .info_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}

.wp_wrap .sub03_sec01 .shp02_wrap input[type=text] {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    padding-right: 20px;
    padding-left: 150px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 1);
    border-radius: 5px;
    /* backdrop-filter: blur(30px); */
    z-index: -1;
}

.wp_wrap .sub03_sec01 .shp02_wrap .rt_ir .form_wrap .form_line:nth-child(4), .wp_wrap .sub03_sec01 .shp02_wrap .rt_ir .form_wrap .form_line:nth-child(5) {
    width: 100%;
    font-size: 16px;
    padding: 20px 0;
    padding-right: 20px;
    padding-left: 200px;
    border: 1px solid rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 1);
    border-radius: 5px;
    /* backdrop-filter: blur(30px); */
}

.wp_wrap .sub03_sec01 .shp02_wrap #wp_1_6 {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0);
    resize: none;
    padding: 0 20px;
    padding-top: 40px;
    box-sizing: border-box;
    border-radius: 5px;
    /* backdrop-filter: blur(30px); */
}