/**
 * Created by PhpStorm.
 * Date         :
 * Developer    :
 * Description  : wp_style.css
 * ⓒ 2024. WebPlanet Co. All Rights Reserved.
 */

@charset "utf-8";

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


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/

/*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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Light.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Regular.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Medium.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-SemiBold.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Bold.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-ExtraBold.woff2') format('woff2');
    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'),
    url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff'),
    url('/_wp/font/pretendard/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

/*색상*/
.wp_wrap .cm_style1 {color: #fff;}
.wp_wrap .cm_style2 {color: #000;}


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

html{
    scroll-behavior: smooth;
}
.wp_wrap {
    font-family: var(--font-pre400);
    word-break: keep-all;
    position: relative;
}

.wp_wrap .cm_inner {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}



/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header{
    position: fixed;    
    top: 0;
    left: 0;
    width: 100%;    
    z-index: 999;
    transition: 0.5s;
    background: transparent;
}
.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .h_inner .right{
    display: flex;
    align-items: center;
    gap: 130px;
}
/* 메뉴 */
.wp_wrap header .h_inner .right .gnb a{
    display: block;
}
.wp_wrap header .h_inner .right .gnb{
    display: flex;
    align-items: center;
}
.wp_wrap header .h_inner .right .gnb .m_list{
    position: relative;
    width: 200px;
}
.wp_wrap header .h_inner .right .gnb .m_list>a{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: var(--font-pre700);
    color: #fff;
}
/* 서브메뉴 */
.wp_wrap header .h_inner .right .gnb .m_list .sub_mnu{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 10px 0;
}
.wp_wrap header .h_inner .right .gnb .m_list .sub_mnu>li>a{
    text-align: center;
    font-size: 18px;
    font-family: var(--font-pre200);
    padding: 10px 0;
    color: #fff;
}
.wp_wrap header .h_inner .right .gnb .m_list .sub_mnu>li>a:hover {
    color: #F9AD14;
}
/* 메뉴배경 */
.wp_wrap header .mnu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:rgba(0, 0, 0, 0);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}


/* 서브메뉴배경 */
.wp_wrap header .sub_mnu_bg {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 240px;
    background:rgba(0, 0, 0, 0.5);
    /* border-bottom: 1px solid #DDDDDD; */
    display: none;
    z-index: -1;
}

/* 메뉴아이콘 */
.wp_wrap header .h_inner .right .ful_mopen{
    cursor: pointer;
}
.wp_wrap header .h_inner .right .ful_mopen .icon_box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.wp_wrap header .h_inner .right .ful_mopen .icon_box span{
    width: 34px;
    height: 3px;
    background: #fff; 
    margin-bottom: 7px;
    border-radius: 4px;
    
}
.wp_wrap header .h_inner .right .ful_mopen .icon_box span:nth-child(2){
    width: 28px;
    background: #fff;
}
.wp_wrap header .h_inner .right .ful_mopen .icon_box span:nth-child(3){
    width: 23px;
    background: #fff;
}
.wp_wrap header .h_inner .right .ful_mopen .icon_box span:last-child{
    margin-bottom: 0;
}

/* 풀메뉴 */
.wp_wrap header .ful_mnu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right, #1C70C4, #3F1163);
    z-index: 1000;
    padding-top: 120px;
}
.wp_wrap header .ful_mnu.on{
    /*display: block;*/
}

.wp_wrap header .ful_mnu .ful_mnu_inner  .ful_mnu_header{
    margin-bottom: 80px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner  .ful_mnu_header .fh_inner{    
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_header .fh_inner .close_box {}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_header .fh_inner .close_box .close_icon i{
    font-size: 70px;
    color: #fff;
    cursor: pointer;
} 
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    padding: 60px 0 0 0; 
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb a{
    display: inline-block;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb>li{
    width: 100%;
    height: 345px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb>li>a{
    cursor: default;
    font-size: 36px;
    font-family: var(--font-pre300);
    margin-bottom: 30px;
    color: #fff;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb>li .ful_sub_mnu>li{
    width: 100%;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb>li .ful_sub_mnu>li>a{
    font-size: 20px;
    font-family: var(--font-pre300);
    padding: 12px 0;
    color: #fff;
    padding-left: 10px;
}
.wp_wrap header .ful_mnu .ful_mnu_inner .ful_mnu_gnb>li .ful_sub_mnu>li>a:hover{
    color: #F9AD14;
}


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

/* 푸터 */
/**********************************************************************************************************************/
/* fix_box */
.wp_wrap .fix_box {
    position: fixed;
    bottom: 7%;
    right: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.wp_wrap .fix_box .inq {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(157, 196, 235, 0.8);
    transition: 0.3s;
}
.wp_wrap .fix_box .inq:hover {
    background: rgba(157, 196, 235, 1);
}
.wp_wrap .fix_box .inq>img {}
.wp_wrap .fix_box .inq>p {
    font-size: 15px;
    color: #fff;
    text-align: center;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .fix_box .go_top {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(28, 111, 196, 0.8);
    transition: 0.3s;
}
.wp_wrap .fix_box .go_top:hover {
    background: rgba(28, 111, 196, 1);
}
.wp_wrap .fix_box .go_top>i {
    font-size: 20px;
    color: #fff;
}



.wp_wrap footer {
    background: inherit;
    border-top: 1px solid #DDDDDD;
    padding-top: 60px;
    padding-bottom: 80px;
}
.wp_wrap footer .top {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DDDDDD;
}
.wp_wrap footer .top .f_logo {}
.wp_wrap footer .top .f_logo>img {}
.wp_wrap footer .top .info_list {
    display: flex;
    align-items: center;
    gap: 33px;
}
.wp_wrap footer .top .info_list>li {}
.wp_wrap footer .top .info_list>li>p {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap footer .bot {
    padding-top: 30px;
}
.wp_wrap footer .bot .b_info_list {
    font-size: 17px;
    font-family: 'Pretendard-Regular';
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.wp_wrap footer .bot .b_info_list>li {}
.wp_wrap footer .bot .copyright {
    font-size: 17px;
    font-family: 'Pretendard-Regular';
    color: #939393;
}
.wp_wrap footer .bot .copyright>a {
    color: #939393;
}

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


/* 메인 */
/**********************************************************************************************************************/
.wp_wrap #visual {
    position: relative;
    overflow: hidden;
}
.wp_wrap #visual .v_box {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.wp_wrap #visual .v_box .img_box:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
    left: 0;
}
.wp_wrap #visual .v_box .img_box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wp_wrap #visual .v_box .img_box>img {
    width: 1920px;
    height: 1080px;
    position: absolute;
    top: -80px;
    left: 0;
}
.wp_wrap #visual .v_box .img_box iframe {
    position: absolute;
    top: -80px;
    left: 0;
}
.wp_wrap #visual .v_box .txt_box {
    position: absolute;
    top: 42%;
    left: 10.5%;
    transform: translateY(-50%);
    color: #fff;
}
.wp_wrap #visual .v_box .txt_box .tit {
    font-size: 48px;
    font-family: 'Pretendard-ExtraBold';
    margin-bottom: 28px;
}
.wp_wrap #visual .v_box .txt_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
}



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

.wp_wrap #visual .scr .scr_icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.wp_wrap #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 #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 #visual .scr .scr_icon .arr_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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


/* business */
.wp_wrap #business {
    padding: 200px 0;
}
.wp_wrap #business .tit_box {
    margin-bottom: 60px;
}
.wp_wrap #business .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 5px;
}
.wp_wrap #business .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #business .slide-buttons { 
    margin-bottom: 40px; 
    display: flex; 
    gap: 10px; }
.wp_wrap #business .slide-buttons button {
    padding: 20px 30px;
    background-color: #EEEEEE;
    color: #000;
    cursor: pointer;
    border-radius: 15px;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    transition: all 0.3s ease;
    white-space: nowrap; /* 버튼 텍스트가 줄바꿈되지 않도록 */
}
.wp_wrap #business .slide-buttons button.active {
    background-color: #1C70C4;
    color: white;
    font-family: 'Pretendard-Medium';
}
/* 슬라이더 컨테이너 (뷰포트 역할) */
.wp_wrap #business .slider-viewport {
    width: 100%; /* 보이는 전체 너비 */
    height: 550px;
    overflow: hidden; /* 영역 밖의 내용 숨김 */
    position: relative;
}
/* 모든 슬라이드를 담는 내부 컨테이너 (이것이 움직임) */
.wp_wrap #business .slider-viewport .slides-container {
    display: flex;
    /* gap: 50px; */
    height: 100%;
    transition: transform 0.7s ease-in-out;
    position: absolute;
    left: 0;
    transform: translateX(0px);
}
/* 각 개별 슬라이드 아이템 */
.wp_wrap #business .slider-viewport .slides-container .slide-item {
    width: 1500px; /* 각 슬라이드(중앙에 올)의 고정 너비 */
    height: 100%;
    flex-shrink: 0; /* 슬라이드가 줄어들지 않도록 */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.wp_wrap #business .slider-viewport .slides-container .slide-item img {
    max-width: 95%; 
    object-fit: cover;
    border-radius: 40px;
}
.wp_wrap #business .slider-viewport .slides-container .slide-item .name {
    width: 88.5%;
    position: absolute;
    bottom: 13px;
    left: 0;
    padding: 30px 0;
    padding-left: 75px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 25px;
    font-family: 'Pretendard-Regular';
    border-radius: 0 0 40px 40px;
}

/* about */
.wp_wrap #about {
    background: url(../img/main/about.jpg) no-repeat center center / cover;
    padding: 291px 0;
}
.wp_wrap #about>.cm_inner {
    display: flex;
    gap: 188px;
    align-items: center;
}
.wp_wrap #about .left {}
.wp_wrap #about .left .tit_box {
    padding-top: 25px;
    position: relative;
    margin-bottom: 87px;
}
.wp_wrap #about .left .tit_box:after {
    content: '';
    width: 35px;
    height: 7px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.wp_wrap #about .left .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
    color: #fff;
}
.wp_wrap #about .left .txt_box {
    color: #fff;
}
.wp_wrap #about .left .txt_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 15px;
}
.wp_wrap #about .left .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #about .right {}
.wp_wrap #about .right .btn_list {
    display: flex;
    align-items: center;
    gap: 55px;
}
.wp_wrap #about .right .btn_list>li {}
.wp_wrap #about .right .btn_list>li>a {}
.wp_wrap #about .right .btn_list>li>a .circle {
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(249, 173, 20, 0.4);
    margin-bottom: 20px;
    transition: 0.5s;
}
.wp_wrap #about .right .btn_list>li>a:hover .circle {
    background: rgba(249, 173, 20, 1);
}
.wp_wrap #about .right .btn_list>li>a .circle>img {}
.wp_wrap #about .right .btn_list>li>a .name {
    font-size: 22px;
    font-family: 'Pretendard-Medium';
    color: #fff;
    text-align: center;
}

/* info */
.wp_wrap #info {
    padding: 200px 0;
}
.wp_wrap #info .tit_box {
    padding-top: 25px;
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.wp_wrap #info .tit_box:after {
    content: '';
    width: 35px;
    height: 7px;
    background: #3F1163;
    position: absolute;
    top: 0;
    left: 0;
}
.wp_wrap #info .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #info .tit_box>a {
    font-size: 20px;
    font-family: 'Pretendard-Bold';
    color: #000;
}
.wp_wrap #info .info_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.wp_wrap #info .info_list>li {
    width: 100%;
}
.wp_wrap #info .info_list>li>a {
    width: 100%;
}
.wp_wrap #info .info_list>li>a .info_box {
    width: 100%;
    padding: 22px 40px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: 0.3s;
}
.wp_wrap #info .info_list>li>a:hover .info_box {
    background: #F9AD14;
    border: 1px solid #F9AD14;
}
.wp_wrap #info .info_list>li>a .info_box .left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #info .info_list>li>a .info_box .left .new {
    font-size: 18px;
    font-family: 'Pretendard-SemiBold';
    color: #FF9B59;
    transition: 0.3s;
}
.wp_wrap #info .info_list>li>a:hover .info_box .left .new {
    color: #fff;
}
.wp_wrap #info .info_list>li>a .info_box .left .date {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    color: #000;
    transition: 0.3s;
}
.wp_wrap #info .info_list>li>a:hover .info_box .left .date {
    color: #fff;
}
.wp_wrap #info .info_list>li>a .info_box .right {}
.wp_wrap #info .info_list>li>a .info_box .right .name {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    color: #000;
    transition: 0.3s;
}
.wp_wrap #info .info_list>li>a:hover .info_box .right .name {
    color: #fff;
}

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


/* 서브 */
/**********************************************************************************************************************/

/*서브탑 ============================================================================================*/
.wp_wrap #sub_top {}

.wp_wrap #sub_top .sub_top_bg {
    width: 100%;
    height: 520px;
}

.wp_wrap #sub_top .sub_top_bg .sub_top_wrap {
    width: 100%;
    height: 100%;
}

.wp_wrap #sub_top .sub_top_bg .sub_top_wrap .sub_top_inner {
      display: flex;
      align-items: center;
      height: 100%;
      padding-top: 220px;
}

.wp_wrap #sub_top .sub_top_bg .sub_top_wrap .sub_top_inner .txt_box {
    color: #fff;
}

.wp_wrap #sub_top .sub_top_bg .sub_top_wrap .sub_top_inner .txt_box .sub_top_tit {
      font-size: 50px;
      font-family: 'Pretendard-Bold';
      margin-bottom: 10px;
}

.wp_wrap #sub_top .sub_top_bg .sub_top_wrap .sub_top_inner .txt_box .sub_top_des {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #FFFFFF;
    opacity: 0.6;
}

.wp_wrap #sub_top .sub_top_nav {
    background: #F5F5F5;
}

.wp_wrap #sub_top .sub_top_nav .sub_nav_list {
      display: flex;
      justify-content: center;
      align-items: center;
}

.wp_wrap #sub_top .sub_top_nav .sub_nav_list>li {
      position: relative;
      max-width: 250px;
      width: 100%;
      padding: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
}
.wp_wrap #sub_top .sub_top_nav .sub_nav_list .nav_list_item.on::before {
      position: absolute;
      left: 0;
      bottom: 0;
      display: block;
      content:"";
      width: 100%;
      height: 3px;
      transform: scale(1);
      background-color: #195591;
      transition: 0.4s;
}

.wp_wrap #sub_top .sub_top_nav .sub_nav_list>li>a {
      font-size: 16px;
      font-family: 'Pretendard-Medium';
      color: #000;
}

.wp_wrap #sub_top .sub_top_nav .sub_nav_list .nav_list_item.on>a {
	color:#195591;
}

/* ceo */
.wp_wrap #ceo {
    padding: 140px 0 200px;
}
.wp_wrap #ceo .tit_box {
    margin-bottom: 100px;
}
.wp_wrap #ceo .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #ceo .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #ceo .txt_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
}
.wp_wrap #ceo .txt_box .ex {
    font-size: 30px;
    font-family: 'Pretendard-Light';
    line-height: 1.5;
}
.wp_wrap #ceo .txt_box .ex>span {
    font-family: 'Pretendard-Bold';
}


/* history */
.wp_wrap #history {
    padding: 140px 0 200px;
    position: relative;
}
.wp_wrap #history:after {
    content: '';
    width: 1px;
    height: 1200px;
    background: #D5D5D5;
    position: absolute;
    top: 28.9%;
    left: 27.1%;
    z-index: -1;
}
.wp_wrap #history .tit_box {
    margin-bottom: 75px;
}
.wp_wrap #history .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #history .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #history .img_box {
    position: relative;
}
.wp_wrap #history .img_box>img {
    overflow: hidden;
    border-radius: 30px;
}
.wp_wrap #history .img_box .txt_box {
    position: absolute;
    bottom: 15%;
    left: 8%;
    color: #fff;
}
.wp_wrap #history .img_box .txt_box .year {
    font-size: 44px;
    font-family: 'Pretendard-ExtraBold';
    margin-bottom: 10px;
}
.wp_wrap #history .img_box .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #history .his_list {
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-left: 120px;
}
.wp_wrap #history .his_list>li {}
.wp_wrap #history .his_list>li .his_box {
    display: flex;
    align-items: center;
    gap: 150px;
    position: relative;
}
.wp_wrap #history .his_list>li .his_box:after {
    content: '';
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #C7C9CC;
    position: absolute;
    top: 50%;
    left: 13%;
    transform: translateY(-50%);
    transition: 1s;
}
.wp_wrap #history .his_list>li .his_box.on:after {
    background: #F9AD14;
}
.wp_wrap #history .his_list>li .his_box .year {
    font-size: 40px;
    color: #B4B4B4;
    font-family: 'Pretendard-Bold';
    width: 105px;
    transition: 1s;
}
.wp_wrap #history .his_list>li .his_box.on .year {
    color: #195591;
}
.wp_wrap #history .his_list>li .his_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
    transition: 1s;
}
.wp_wrap #history .his_list>li .his_box.on .ex {
    color: #000;
}


/* finance */
.wp_wrap #finace {
    padding: 140px 0 200px;
}
.wp_wrap #finace .back_g {
    width: 100%;
    padding: 10px 0px;
    background: inherit;
    border-radius: 45px;
    z-index: -2;
}
.wp_wrap #finace .back_g>nav {
    background: #f9f9f9;
    position: relative
}
.wp_wrap #finace .tab_mnu {
    margin-bottom: 100px;
    width: 100%;
    padding: 10px 25px;
    background: #F9F9F9;
    border-radius: 45px;
}
.wp_wrap #finace .back_g>nav>ul {
    z-index: 10;
    display: flex;
    justify-content: space-between;
}
.wp_wrap #finace .back_g>nav>ul>li>a {
    color: #454545;
    transition: all 0.6s;
}
.wp_wrap #finace .back_g>nav>ul>li>a:hover {
    color: #2F70B7;
    transition: all 0.2s;
}
.wp_wrap #finace .back_g>nav>ul>li.on>a {
    color: #fff;
}
.wp_wrap #finace .tab_mnu #red_bar {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 462px;
    height: 54px;
    background-color: #2F70B7;
    border-radius: 30px;
    transition: all 0.5s;
}
.wp_wrap #finace .tab_mnu>ul>li>a {
    width: 462px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.wp_wrap #finace .tab_mnu>li {}
.wp_wrap #finace .tab_mnu>li>a {
    width: 347px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 10;
    display: inline-block;
}
/* on */
.wp_wrap #finace .tab_mnu>li.on>a {
    color: #fff;
    z-index: 10;
}
.wp_wrap #finace .sub_mo_mnu {
    display: none;
}
.wp_wrap #finace .txt_box {
    margin-bottom: 70px;
}
.wp_wrap #finace .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #finace .txt_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #finace .fir {
    margin-bottom: 120px;
}
.wp_wrap #finace .fir .tit {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #finace .fir table {
    width: 100%;
    border-spacing: 0;
  border-collapse: collapse; /* 필요에 따라 */
}
.wp_wrap #finace .fir table thead {
    width: 100%;
    background: #2F70B7;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 10px;
}
.wp_wrap #finace .fir table thead tr {
}
.wp_wrap #finace .fir table thead tr th {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    padding: 11px 0;
}
.wp_wrap #finace .fir table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
}
.wp_wrap #finace .fir table thead tr th:last-child {
    border-radius: 0px 10px 10px 0px;
}
.wp_wrap #finace .fir table tbody {
    width: 100%;
}
.wp_wrap #finace .fir table tbody tr {
    border-bottom: 1px solid #ECECEC;
}
.wp_wrap #finace .fir table tbody tr td {
    text-align: center;
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding: 25px 0;
    border-right: 1px solid #ECECEC;
}
.wp_wrap #finace .fir table tbody tr td:last-child {
    border-right: none;
}

.wp_wrap #finace .sec {
    margin-bottom: 120px;
}
.wp_wrap #finace .sec .tit {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #finace .sec table {
    width: 100%;
    border-spacing: 0;
  border-collapse: collapse; /* 필요에 따라 */
}
.wp_wrap #finace .sec table thead {
    width: 100%;
    background: #2F70B7;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 10px;
}
.wp_wrap #finace .sec table thead tr {}
.wp_wrap #finace .sec table thead tr th {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    padding: 15px 0;
}
.wp_wrap #finace .sec table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
    width: 235px;
}
.wp_wrap #finace .sec table thead tr th:last-child {
    border-radius: 0px 10px 10px 0px;
}
.wp_wrap #finace .sec table tbody {}
.wp_wrap #finace .sec table tbody tr {
    border-bottom: 1px solid #ECECEC;
}
.wp_wrap #finace .sec table tbody tr td {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding: 13px 0;
}
.wp_wrap #finace .sec table tbody tr td:first-child {
    text-align: center;
    border-right: 1px solid #ECECEC;
}
.wp_wrap #finace .sec table tbody tr td:last-child {
    padding-left: 70px;
}

.wp_wrap #finace .thi {}
.wp_wrap #finace .thi .tit {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #finace .thi table {
    width: 100%;
    border-spacing: 0;
  border-collapse: collapse; /* 필요에 따라 */
}
.wp_wrap #finace .thi table thead {
    width: 100%;
    background: #2F70B7;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 10px;
}
.wp_wrap #finace .thi table thead tr {}
.wp_wrap #finace .thi table thead tr th {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    padding: 15px 0;
}
.wp_wrap #finace .thi table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
    width: 235px;
}
.wp_wrap #finace .thi table thead tr th:last-child {
    border-radius: 0px 10px 10px 0px;
}
.wp_wrap #finace .thi table tbody {}
.wp_wrap #finace .thi table tbody tr {
    border-bottom: 1px solid #ECECEC;
}
.wp_wrap #finace .thi table tbody tr td {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding: 13px 0;
}
.wp_wrap #finace .thi table tbody tr td:first-child {
    text-align: center;
    border-right: 1px solid #ECECEC;
}
.wp_wrap #finace .thi table tbody tr td:last-child {
    padding-left: 70px;
}


/* rent */
.wp_wrap #rent {
    padding: 140px 0 200px;
}
.wp_wrap #rent .tab_zone {
    position: relative;
}
.wp_wrap #rent .tab_zone .back_g {
    width: 100%;
    padding: 10px 0px;
    background: inherit;
    border-radius: 45px;
    z-index: -2;
}
.wp_wrap #rent .tab_zone .back_g>nav {
    background: #f9f9f9;
    position: relative
}
.wp_wrap #rent .tab_zone .tab_mnu {
    margin-bottom: 80px;
    width: 100%;
    padding: 10px 25px;
    background: #F9F9F9;
    border-radius: 45px;
}
.wp_wrap #rent .tab_zone .back_g>nav>ul {
    z-index: 10;
    display: flex;
    justify-content: space-between;
}
.wp_wrap #rent .tab_zone .back_g>nav>ul>li>a {
    color: #454545;
    transition: all 0.6s;
}
.wp_wrap #rent .tab_zone .back_g>nav>ul>li>a:hover {
    color: #2F70B7;
    transition: all 0.2s;
}
.wp_wrap #rent .tab_zone .back_g>nav>ul>li.on>a {
    color: #fff;
}
#red_bar {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 347px;
    height: 54px;
    background-color: #2F70B7;
    border-radius: 30px;
    transition: all 0.5s;
}
.wp_wrap #rent .tab_zone .tab_mnu>ul>li>a {
    width: 347px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.wp_wrap #rent .tab_zone .tab_mnu>li {}
.wp_wrap #rent .tab_zone .tab_mnu>li>a {
    width: 347px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 10;
    display: inline-block;
}
/* on */
.wp_wrap #rent .tab_zone .tab_mnu>li.on>a {
    color: #fff;
    z-index: 10;
}
.wp_wrap #rent .tab_zone .sub_mo_mnu {
    display: none;
}

.wp_wrap #rent .tab_zone .tab_content .tab_layer {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .txt_box {
    margin-bottom: 90px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .txt_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 45px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .img_box {
    margin-bottom: 120px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .img_box>img {
    width: 100%;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .name {
    font-size: 35px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 40px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 120px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box .s_tit {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    text-align: center;
    margin-bottom: 30px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box .ex {
    margin-top: 15px;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse; /* 필요에 따라 */
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead {
    width: 100%;
    background: #2F70B7;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 10px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr th {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    padding: 13px 0;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr th:first-child {
    border-radius: 10px 0 0 10px;
    width: 217px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr th:nth-child(2) {
    width: 230px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr th:nth-child(5) {
    width: 272px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table thead tr th:last-child {
    border-radius: 0px 10px 10px 0px;
    width: 276px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table tbody {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table tbody tr {
    border-bottom: 1px solid #ECECEC;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table tbody tr td {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    text-align: center;
    padding: 13px 0;
    border-right: 1px solid #ECECEC;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .table_box table tbody tr td:last-child {
    border: none;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box {
    margin-bottom: 120px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .tit {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    text-align: center;
    margin-bottom: 40px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 968px;
    margin: 0 auto;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box {
    width: 100%;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 0;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box {
    margin-bottom: 30px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box .tit_box {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box .tit_box .tit {
    font-size: 33px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box .tit_box .s_tit {
    font-size: 12px;
    font-family: 'Pretendard-Regular';
    color: #000;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box .txt_box {
    margin-bottom: 0;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .top_box .txt_box .ex {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .small {
    font-size: 16px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 15px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list {
    display: flex;
    gap: 11px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box .img_box {
    margin: 0;
    margin-bottom: 5px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box .img_box>img {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box .name {
    font-size: 13px;
    font-family: 'Pretendard-Regular';
    text-align: center;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box .name.small {
    font-size: 11px;
    font-family: 'Pretendard-Regular';
    text-align: center;
    margin-bottom: 0;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .left .bot_box .bot_list>li .b_box .name.little {
    font-size: 11px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list {
    display: flex;
    gap: 13px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box {
    width: 170px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .tit {
    font-size: 16px;
    font-family: 'Pretendard-Medium';
    color: #007FC3;
    padding-bottom: 8px;
    margin-bottom: 0;
    text-align: start;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .num {
    width: 100%;
    border-top: 2px solid #007FC3;
    display: flex;
    margin-bottom: 7px;
    padding-top: 5px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .num .number {
    font-size: 38px;
    font-family: 'Pretendard-Bold';
    color: #007FC3;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .num .ko {
    font-size: 16px;
    font-family: 'Pretendard-Medium';
    color: #007FC3;
    padding-top: 10px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .r_inner {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .r_inner>li {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .in_box .txt_box .right .r_list>li .r_box .r_inner>li>p {
    font-size: 14px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .int_box .img_inner .big {
    width: 100%;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .organ_box {}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .organ_box .tit {
    text-align: center;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 50px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .organ_box .img_box {
    margin-bottom: 100px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .organ_box .img_box>img {
    margin: 0 auto;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .info_box {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .info_box.none {
    display: block;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .info_box.none .tit {
    text-align: center;
    margin-bottom: 50px;
}
.wp_wrap #rent .tab_zone .tab_content .tab_layer .info_box>p {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
}


/* tpl */
.wp_wrap #tpl {
    padding: 140px 0 200px;
}
.wp_wrap #tpl .txt_box {
    margin-bottom: 120px;
}
.wp_wrap #tpl .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #tpl .txt_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 45px;
}
.wp_wrap #tpl .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #tpl .pro_inner {
    margin-bottom: 120px;
}
.wp_wrap #tpl .pro_inner .tit_box {
    margin-bottom: 70px;
}
.wp_wrap #tpl .pro_inner .tit_box .tit {
    font-size: 35px;
    font-family: 'Pretendard-Bold';
    text-align: center;
    margin-bottom: 30px;
}
.wp_wrap #tpl .pro_inner .tit_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    text-align: center;
}
.wp_wrap #tpl .pro_inner .pro_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.wp_wrap #tpl .pro_inner .pro_list>li {}
.wp_wrap #tpl .pro_inner .pro_list>li .pro_box {
    width: 340px;
    height: 260px;
    border-radius: 10px;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.wp_wrap #tpl .pro_inner .pro_list>li .pro_box>img {}
.wp_wrap #tpl .pro_inner .pro_list>li .pro_box .name {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    color: #2F70B7;
}
.wp_wrap #tpl .pro_inner .pro_list>li .pro_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #tpl .ser_inner {}
.wp_wrap #tpl .ser_inner .tit_box {
    margin-bottom: 70px;
    text-align: center;
}
.wp_wrap #tpl .ser_inner .tit_box .tit {
    font-size: 35px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 30px;
}
.wp_wrap #tpl .ser_inner .tit_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #tpl .ser_inner .ser_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.wp_wrap #tpl .ser_inner .ser_list>li {
    width: 100%;
}
.wp_wrap #tpl .ser_inner .ser_list>li .ser_box {
    width: 100%;
    border-radius: 10px;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 318px;
}
.wp_wrap #tpl .ser_inner .ser_list>li .ser_box>img {
    margin-bottom: 10px;
}
.wp_wrap #tpl .ser_inner .ser_list>li .ser_box .name {
    margin-bottom: 30px;
    font-size: 30px;
    font-family: 'Pretendard-SemiBold';
    color: #2F70B7;
}
.wp_wrap #tpl .ser_inner .ser_list>li .ser_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    text-align: center;
}
.wp_wrap #tpl .va_inner {}
.wp_wrap #tpl .va_inner .tit_box {
    margin-bottom: 70px;
    text-align: center
}
.wp_wrap #tpl .va_inner .tit_box .tit {
    font-size: 35px;
    margin-bottom: 30px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #tpl .va_inner .tit_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #tpl .va_list {
    display: flex;
    justify-content: center;
    gap: 120px;
}
.wp_wrap #tpl .va_list>li {}
.wp_wrap #tpl .va_list>li .va_box {
    width: 400px;
    height: 318px;
    border-radius: 10px;
    box-shadow: 3px 2px 7px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}
.wp_wrap #tpl .va_list>li .va_box>img {
    margin-bottom: 10px;
}
.wp_wrap #tpl .va_list>li .va_box .name {
    margin-bottom: 30px;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    color: #2F70B7;
}
.wp_wrap #tpl .va_list>li .va_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    text-align: center;
    line-height: 1.5;
}


/* video */
.wp_wrap #video {
    padding: 140px 0 200px;
    background: #e9e9e9;
}
.wp_wrap #video .tit_box {
    margin-bottom: 60px;
}
.wp_wrap #video .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #video .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #video .tab_zone {
    position: relative;
}
.wp_wrap #video .tab_zone .back_g {
    width: 100%;
    padding: 10px 0px;
    background: inherit;
    border-radius: 45px;
    z-index: -2;
}
.wp_wrap #video .tab_zone .back_g>nav {
    background: #2F70B7;
    position: relative
}
.wp_wrap #video .tab_zone .tab_mnu {
    margin-bottom: 80px;
    width: 100%;
    padding: 10px 25px;
    background: #F9F9F9;
    border-radius: 45px;
}
.wp_wrap #video .tab_zone .back_g>nav>ul {
    z-index: 10;
    display: flex;
    justify-content: space-between;
}
.wp_wrap #video .tab_zone .back_g>nav>ul>li>a {
    color: #fff;
    transition: all 0.6s;
}
.wp_wrap #video .tab_zone .back_g>nav>ul>li>a:hover {
    color: #2F70B7;
    transition: all 0.2s;
}
.wp_wrap #video .tab_zone .back_g>nav>ul>li.on>a {
    color: #454545;
}
.wp_wrap #video .tab_zone #red_bar {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 347px;
    height: 54px;
    background-color: #f9f9f9;
    border-radius: 30px;
    transition: all 0.5s;
}
.wp_wrap #video .tab_zone .tab_mnu>ul>li>a {
    width: 347px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.wp_wrap #video .tab_zone .tab_mnu>li {}
.wp_wrap #video .tab_zone .tab_mnu>li>a {
    width: 347px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    color: #434343;
    padding: 15px 0;
    background: inherit;
    position: relative;
    z-index: 10;
    display: inline-block;
}
/* on */
.wp_wrap #video .tab_zone .tab_mnu>li.on>a {
    color: #fff;
    z-index: 10;
}
.wp_wrap #video .tab_zone .sub_mo_mnu {
    display: none;
}


/* inq */
.wp_wrap #inq {
    padding: 140px 0 200px;
}
.wp_wrap #inq .tit_box {
    margin-bottom: 100px;
}
.wp_wrap #inq .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
}
.wp_wrap #inq .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #inq .form_wrap {}
.wp_wrap #inq .form_wrap .top {
    margin-bottom: 50px;
}
.wp_wrap #inq .form_wrap .top .txt_box {
    width: 100%;
    margin-bottom: 40px;
}
.wp_wrap #inq .form_wrap .top .txt_box .tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    background: #DAE8F5;
    padding: 17px 0 16px;
    border-top: 2px solid #2F70B7;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 25px;
}
.wp_wrap #inq .form_wrap .top .txt_box .ex {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    padding-left: 25px;
}
.wp_wrap #inq .form_wrap .top .form_list {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap #inq .form_wrap .top .form_list>li {}
.wp_wrap #inq .form_wrap .top .form_list>li .form_line {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}
.wp_wrap #inq .form_wrap .top .form_list>li .form_line .name {
    width: 160px;
    font-size: 18px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #inq .form_wrap .top .form_list>li .form_line .input_box {
    height: 75px;
}
.wp_wrap #inq .form_wrap .top .form_list>li .form_line input[type='text'] {
    width: 585px;
    padding: 17px 15px;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    border: 1px solid #D9D9D9;
}
.wp_wrap #inq .form_wrap .top .form_list>li .form_line input[type='text']:focus {
    outline: none;
}
.wp_wrap #inq .form_wrap .bot {}
.wp_wrap #inq .form_wrap .bot .txt_box {
    margin-bottom: 40px;
}
.wp_wrap #inq .form_wrap .bot .txt_box .tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    background: #DAE8F5;
    padding: 17px 0 16px;
    border-top: 2px solid #2F70B7;
    width: 100%;
    margin-bottom: 15px;
    padding-left: 25px;
}
.wp_wrap #inq .form_wrap .bot .form_list {
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li {}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line {
    width: 100%;
    display: flex;
    gap: 50px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line.flex {
    align-items: center;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .name {
    width: 160px;
    font-size: 18px;
    font-family: 'Pretendard-SemiBold';
    flex-shrink: 0;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area {
    width: 100%;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box {
    width: 100%;
    height: 75px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box.text {
    height: 198px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li:nth-child(3) .form_line .input_area label {
    margin-bottom: 20px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area label input[type='text'] {
    width: 180px;
    padding: 5px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area label input[type='text']:focus {
    outline: none;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='radio'] {}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='checkbox'] {}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box input[type='text'] {
    width: 585px;
    padding: 17px 15px;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    border: 1px solid #D9D9D9;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box input[type='text']:focus {
    outline: none;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box textarea {
    width: 100%;
    height: 180px;
    resize: none;
    border: 1px solid #D9D9D9;
    padding: 20px;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_box textarea:focus {
    outline: none;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_last {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box{
    margin-bottom: 30px;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .line_rt button {
    width: 300px;
    padding: 23px 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    background: #2F70B7;
    transition: 0.3s;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .line_rt button:hover {
    background: #1e5591;
}
.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box input[type="checkbox"] {
    display: none;
}

.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box input[type="checkbox"] + label {
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box 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;
}

.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box 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 {
}

.wp_wrap #inq .form_wrap .bot .form_list>li .form_last .agr_box input[type="checkbox"] + label .txt_deco {
    font-weight:var(--font-pre500);
    text-underline-offset: 3px;
    text-decoration: underline
}


.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='radio'] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #1C6FC4;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

/* 선택 시 테두리 색 변경 */
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='radio']:checked {
    border-color: #1C6FC4;
}

/* 선택 시 내부 점 */
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='radio']:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #1C6FC4;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* label을 인라인으로 */
.input_area label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    white-space: nowrap; /* 줄바꿈 방지 */
    margin-right: 35px;
}

/* 체크박스 기본 숨기기 */
.wp_wrap #inq .form_wrap .bot .form_list>li .form_line .input_area input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #1C6FC4;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

/* 체크 시 테두리 색 + 배경색 */

/* 체크 시 체크마크 */
input[type="checkbox"]:checked::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #1C6FC4;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* 기타 입력창 스타일 */
#storage_type_other_text {
    margin-left: 6px;
    padding: 4px 6px;
    border: 1px solid #b5c9e1;
    border-radius: 4px;
    font-size: 14px;
}

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


/* 모달 */
/**********************************************************************************************************************/
.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;
}
/**********************************************************************************************************************/













































