/**
* 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";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
/* font-family: 'Play', sans-serif; */
@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; */
    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: 1500px;
    width: 100%;
    margin: 0 auto;
}
.wp_wrap .cm_inner02 {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}

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

.wp_wrap  .cm_sec02{
    padding: 120px 0;
}

/* 메인타이틀 - 제목 */
.wp_wrap .m_tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
} 

/* 메인타이틀 - 설명 */
.wp_wrap .m_desc{
    font-size: 18px;
    font-family: var(--font-pre500);
}

/* 서브타이틀 - 제목 */
.wp_wrap .tit_box .s_tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}

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

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






/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/* 헤더 */
.wp_wrap header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 9999;
    background: transparent;
}
.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .h_inner .mlogo{
    min-width: 190px;
}
.wp_wrap header .h_inner nav{
    display: flex;
    align-items: center;
    gap: 35px;
}
.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: 170px;
}
.wp_wrap header .h_inner nav .gnb .m_list>a{
    display: block;
    font-size: 20px;
    color: #fff;
    padding: 38.5px 0;
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu{
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    width: 100%;
    padding: 15px 0;
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu a{
    display: block;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
}
.wp_wrap header .h_inner .momnu_icon .icon_box{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 36px;
}
.wp_wrap header .h_inner .momnu_icon .icon_box>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.wp_wrap header .h_inner .momnu_icon .icon_box span{
    position: relative;
    display: inline-block;
    background: #fff;
}

.wp_wrap header .h_inner .momnu_icon .icon_box .short{    
    width:3px;
    height:3px;
    border-radius: 50%;
}
.wp_wrap header .h_inner .momnu_icon .icon_box .mid{
    width: 28px;
    height: 3px;
    border-radius: 3px;
    transition: 0.3s;

}
.wp_wrap header .h_inner .momnu_icon .icon_box .long{    
    width: 36px;
    height:3px;
    border-radius: 3px;
}



.wp_wrap header .h_inner .momnu_icon .icon_box:hover .mid{
    width:36px;
}

.wp_wrap header .h_inner .momnu_icon .icon_box:hover .short{
    display: none;
}
.wp_wrap header .sub_mnu_bg{
    display: none;
    position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index:-1 ;
    background: rgba(0, 0, 0, 0.6);
}
.wp_wrap .mo_mnu{
    display: none;
}
.wp_wrap header .mnu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #E1E1E1;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}


.wp_wrap .ful_mnu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: url(../img/main/fulmenu_bg.jpg) no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.wp_wrap .ful_mnu.on{
    right: 0;
}
.wp_wrap .ful_mnu .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.wp_wrap .ful_mnu .close_icon{
    position: absolute;
    top: 30px;
    right: 30px;

}
.wp_wrap .ful_mnu .close_icon i{
    color:#fff;
    font-size: 40px;
    cursor: pointer;
}
.wp_wrap .ful_mnu .ful_mnu_inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.wp_wrap .ful_mnu .ful_mnu_inner .ful_logo {
    margin-bottom: 70px;
}
.wp_wrap .ful_mnu .ful_mnu_inner .ful_m_gnb{
    display: flex;
    align-items: flex-start;
    gap: 100px;
}
.wp_wrap .ful_mnu .ful_mnu_inner .ful_m_gnb .ful_m_list p{
    font-size: 33px;
    font-family: var(--font-pre600);
    color: #ffF;
    margin-bottom: 40px;
    text-align: center;
}
.wp_wrap .ful_mnu .ful_mnu_inner .ful_m_gnb .ful_m_list .ful_sub_mnu li{}
.wp_wrap .ful_mnu .ful_mnu_inner .ful_m_gnb .ful_m_list .ful_sub_mnu li a{
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    color: #fff;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
/* 푸터 */
.wp_wrap footer{
    background: #FFF;
    padding: 70px 0;
}

.wp_wrap footer .f_inner .top{
    display: flex;
    align-items: center;
    gap: 60px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #939393;
}
.wp_wrap footer .f_inner .top .fmenu{
    display: flex;
    align-items: center;
    gap: 40px;
}
.wp_wrap footer .f_inner .top .fmenu li a{
    font-size: 18px;
    color: #939393;
}
.wp_wrap footer .f_inner .bot{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.wp_wrap footer .f_inner .bot .f_info{
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.wp_wrap footer .f_inner .bot .f_info p{
    position: relative;
    font-size: 17px;
    color: #939393;
    margin-right: 10px;
    padding-right:10px;
}
.wp_wrap footer .f_inner .bot .f_info p:last-child{
    margin-right: 0;
    padding-right:0;
}
.wp_wrap footer .f_inner .bot .f_info p::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 2px;
    height: 13px;
    background: #939393;
}
.wp_wrap footer .f_inner .bot .f_info p:last-child::after{
    display: none;
}

.wp_wrap footer .f_inner .bot .copyright{
    font-size: 17px;
    color: #939393;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* 메인 */
.wp_wrap .m_visual,
.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 .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}
.wp_wrap .m_visual .m_slider .mv_slide .shadow .slider_inner{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp_wrap .m_visual .m_slider .mv_slide .shadow .slider_inner .txt_box .mv_mtit{
    font-size: 60px;
    color: #fff;
    font-family: var(--font-pre700);
    margin-bottom: 10px;
    transform: translateY(100px);
    transition: 0.7s 1s;
    opacity: 0;
}
.wp_wrap .m_visual .m_slider .mv_slide.action .shadow .slider_inner .txt_box .mv_mtit{
    transform: translateY(0);
    opacity: 1;
}
.wp_wrap .m_visual .m_slider .mv_slide .shadow .slider_inner .txt_box .mv_stxt{
    font-size: 20px;
    color: #fff;
    font-family: var(--font-pre300);
    transform: translateY(100px);
    transition: 0.7s 1.7s;
    opacity: 0;
}
.wp_wrap .m_visual .m_slider .mv_slide.action .shadow .slider_inner .txt_box .mv_stxt{
    transform: translateY(0);
    opacity: 1;
}


.wp_wrap .m_visual .control_box{
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
    left: calc(50% - 750px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.wp_wrap .m_visual .control_box .slick-dots{
    gap: 20px;
}
.wp_wrap .m_visual .control_box .slick-dots li button {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    font-size: 0;
}
.wp_wrap .m_visual .control_box .slick-dots li.slick-active button {
    border: none;
    width: 77px;
    border-radius: 10px;
    overflow: hidden;
}
.wp_wrap .m_visual .control_box .slick-dots li button::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: 0 100%;
    background: #fff;
}
.wp_wrap .m_visual .control_box .slick-dots li.slick-active button::after {
    transform: scaleX(1);
    animation: prg_dot 4s;  

}
@keyframes prg_dot{
    0%{
        width: 0;
    }
    100%{
        width: 100%;
    }
}


.wp_wrap .m_visual .control_box .mv_slideDot .slick-dots{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 7px;
    border-radius: 50%;
}
.wp_wrap .m_visual .control_box .ms_arrow{
    background: transparent;
}
.wp_wrap .m_visual .control_box .ms_arrow i{
    font-size: 20px;
    color:#fff;
}


.wp_wrap .m_visual .scr_box{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap .m_visual .scr_box a{
    display: block;
}
.wp_wrap .m_visual .scr_box a .scr_box_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.wp_wrap .m_visual .scr_box .scr_box_inner .arws{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws i{
    font-size: 13px;
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw {
    position: relative;
    font-size: 18px;
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw01 {
    top: 0;
    color: rgba(255, 255, 255, 0.196);
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw02 {
    top: -8px;
    color: rgba(255, 255, 255, 0.226);
}

.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw03 {
    top: -16px;
    color: rgba(255, 255, 255, .38);
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw04 {
    top: -24px;
    color: rgba(255, 255, 255, .75);
}
.wp_wrap .m_visual .scr_box .scr_box_inner .arws .arw05 {
    top: -32px;
    color: #fff;
    
}
.wp_wrap .m_visual .scr_box a .scr_box_inner>p{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-top: -30px;
}
.wp_wrap .link_box {
    z-index: 999;
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    padding: 23px 0;
    border-radius: 10px;
    background: #C1993C;
    cursor: pointer;
    transition: opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
}
.wp_wrap .link_box.show {
    opacity: 1;
    visibility: visible;
}
.wp_wrap .link_box>a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .link_box:hover {
    background: #d8b970;
}



.wp_wrap #m_about {
    position: relative;
    padding: 180px 0 260px 0;
    /* height: 100vh; */
}
.wp_wrap #m_about .video_box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wp_wrap #m_about .video_box .video_content {
    height: 100%;
    width: 100%;
    object-fit: cover;    
}

.wp_wrap #m_about  {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.wp_wrap #m_about .about_inner {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
}
.wp_wrap #m_about .about_inner .lt {
    position: relative;
    width: 48%;
}
.wp_wrap #m_about .about_inner .txt_slider {
    padding: 0;
    color: #fff;
}
/* .wp_wrap #m_about .about_inner .txt_slider::after {
    content: '';
    display: block;
    clear: both;
} */
.wp_wrap #m_about .about_inner .lt .txt_slider .txt_slide .small_tit{
    font-size: 18px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 100px;
    line-height: 1.5;
    height: 70px;
}
.wp_wrap #m_about .about_inner .lt .txt_slider .txt_slide .tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
    height: 125px;
}
.wp_wrap #m_about .about_inner .lt .txt_slider .txt_slide .desc{
    font-size: 16px;
    font-family: var(--font-pre500);
    line-height: 1.5;
    color: #C5C5C5;
    margin-bottom: 40px;
}
.wp_wrap #m_about .about_inner .lt .txt_slider .txt_slide .more a{
    display: inline-block;
    border-radius: 50px;
    padding: 15px 25px;
    color: #fff;
    background: #C1993C;
    font-size: 18px;
    font-family:var(--font-pre500);
    transition: 0.3s;
}
.wp_wrap #m_about .about_inner .lt .txt_slider .txt_slide .more a:hover {
    background: #fff;
    color: #C1993C;
}






.wp_wrap #m_about .about_inner .rt {
    position: relative;
    width: 70%;
}
.wp_wrap #m_about .about_inner .rt .img_slider {
    overflow: hidden;
}
/* .wp_wrap #m_about .about_inner .rt .img_slider::after {
    content: '';
    display: block;
    clear: both;
} */
.wp_wrap #m_about .about_inner .rt .img_slider .slick-list {
    overflow: visible; 
    margin: 0 30px;
}
.wp_wrap #m_about .about_inner .rt .img_slider .slick-slide {
    margin: 0 20px;
}

.wp_wrap #m_about .about_inner .rt .img_slider .slick-track {
    transition: all 1000ms ease 0s !important;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide {
    width: 645px;
    height: 645px;
    margin-left: -250px;
    position: absolute;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-transform: translate3d(0,0,0);
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active {
    position: relative;
    z-index: 2;
    margin-left: 0;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide .outline {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    /* background:url('../img/icon/outline.png') no-repeat center/100% auto;  */
    /* animation:solution_line 8s linear infinite; */
}
@keyframes solution_line {
	0% { transform:rotate(0); }
	100% { transform:rotate(360deg); }
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide::before{
    content: "";
    position:absolute;
    top: 10px;
    left:210px;
    width: 16px;
    height: 16px;
    background:#616161;
    border-radius:50%;
    opacity: 0;
}

.wp_wrap #m_about .about_inner .rt .img_slider .img_slide::after{
    content: "";
    position:absolute;
    bottom: 10px;
    right:210px;
    width: 16px;
    height: 16px;
    background:#616161;
    border-radius:50%;
    opacity: 0;
}

.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active .outline {
    opacity: 1;
}

.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active::before,
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active::after {
    opacity: 1;
    z-index: 1;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide .img_slide_inner {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    background: #efefef;
    display: block;
    border-radius: 50%;
    isolation: isolate;
    overflow: hidden;
    transition: all 0.3s linear;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active .img_slide_inner {
    width: 520px;
    height: 520px;
    width: 600px;
    height: 600px;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide .img_slide_inner img {
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all 0.3s linear;
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide .img_slide_inner img {
    opacity: 0.4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.wp_wrap #m_about .about_inner .rt .img_slider .img_slide.slick-active .img_slide_inner img {
    opacity: 1;
    filter: grayscale(0);
}
.wp_wrap #m_lawyer .lawyer_inner .top{
    position: relative;
    padding: 150px 0 60px 0;
    background: url(../img/main/msec02bg.jpg) no-repeat fixed center center  / cover;
}
.wp_wrap #m_lawyer .lawyer_inner .top .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.5);    
}
.wp_wrap #m_lawyer .lawyer_inner .top .txt_box{
    position: relative;
}
.wp_wrap #m_lawyer .lawyer_inner .top .txt_box .tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    color: #fff;
    margin-bottom: 20px;
}
.wp_wrap #m_lawyer .lawyer_inner .top .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);
    color: #fff;
}
.wp_wrap #m_lawyer .lawyer_inner .bot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm{
    position: relative;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm:last-child{
    border-right:none;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.img_box{
    height: 700px;
    overflow: hidden;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: 0.3s;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box{
    position: absolute;
    bottom: 35px;
    left: 35px;
    width: 100%;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm:hover>.hide_peo{
    opacity: 1;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box .txt_box .mintit{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom: 10px;
    color: #AB8D47;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box .txt_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);
    margin-bottom: 40px;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box .more a{
    display: inline-block;
    border-radius: 50px;
    padding: 15px 25px;
    color: #fff;
    background: #000;
    font-size: 18px;
    font-family:var(--font-pre500);
    transition: 0.3s;
}
.wp_wrap #m_lawyer .lawyer_inner .bot .peo_itm>.hide_peo .inner_box .more a:hover {
    background: #C1993C;
}


.wp_wrap #m_notice{
    position: relative;
    overflow: hidden;
}
.wp_wrap #m_notice .sec03_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wp_wrap #m_notice .sec03_bg img{
    opacity: 0.15;
}
.wp_wrap #m_notice .ntc_inner{
    position: relative;
}
.wp_wrap #m_notice .ntc_inner .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.wp_wrap #m_notice .ntc_inner .top .lt .tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #m_notice .ntc_inner .top .lt .desc{
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #m_notice .ntc_inner .top .rt{
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #m_notice .ntc_inner .top .rt button{
    background: transparent;
}
.wp_wrap #m_notice .ntc_inner .top .rt button i{
    font-size: 30px;
    padding: 13px;
    border: 1px solid #000;
    border-radius: 50%;
}
.wp_wrap #m_notice .ntc_inner .bot{
    position: relative;
    width: 2000px;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider{
    overflow: hidden;
    padding-top: 20px;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide{
    position: relative;
    background: #fff;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .category{
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 40px;
    padding: 20px;
    background: #AB8D47;
    color: #fff;
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner{
    padding: 60px 40px 40px 40px ;
    background: #fff;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .mintit{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom:20px;
    color:#AB8D47;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);      
    margin-bottom: 20px;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);    
    margin-bottom: 35px;
    height: 84px;
    overflow: hidden;
}  
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .date{
    color: #CCCCCC;
    font-size: 18px;
    font-family: var(--font-pre500);
    margin-bottom: 30px;
    text-align: right;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .more a{
    width: 100%;
    font-size: 18px;
    font-family: var(--font-pre500);
    color: #fff;
    padding: 20px 0;
    display: block;
    background: #000;
    text-align: center;
    transition: 0.3s;
}
.wp_wrap #m_notice .ntc_inner .bot .ntc_slider .swiper-slide .slide_inner .txt_box .more a:hover{
    background: #AB8D47;
}







.wp_wrap #m_news{
    position: relative;
    overflow: hidden;
}
.wp_wrap #m_news .sec03_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wp_wrap #m_news .sec03_bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}
.wp_wrap #m_news .news_inner{
    position: relative;
}
.wp_wrap #m_news .news_inner .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.wp_wrap #m_news .news_inner .top .lt .tit{
    font-size: 80px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #m_news .news_inner .top .lt .desc{
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #m_news .news_inner .top .rt{
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #m_news .news_inner .top .rt button{
    background: transparent;
}
.wp_wrap #m_news .news_inner .top .rt button i{
    font-size: 30px;
    padding: 13px;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.3s;
}
.wp_wrap #m_news .news_inner .top .rt button:hover i {
    border: 1px solid #AB8D47;
    background: #AB8D47;
    color: #fff;
}
.wp_wrap #m_news .news_inner .bot{
    position: relative;
    width: 2000px;
    /* width: 100%; */
}
.wp_wrap #m_news .news_inner .bot .news_slider{
    width: 100%;    
    display: flex;
    gap: 40px;
}
.wp_wrap #m_news .news_inner .bot .news_slider .slick-list{
    margin: 0 -20px;
}
.wp_wrap #m_news .news_inner .bot .news_slider .slick-slide{
    margin: 20px;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide{
    position: relative;
    background: #fff;
    height: 450px;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .category{
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 40px;
    padding: 20px;
    background: #AB8D47;
    color: #fff;
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner{
    padding: 60px 40px 40px 40px ;
    background: #fff;
    width: 480px;
    height: 100%;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box {
    height: 100%;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .mintit{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom:20px;
    color:#AB8D47;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);      
    margin-bottom: 20px;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);    
    margin-bottom: 110px;
    height: auto;
    overflow: hidden;
    line-height: 1.5;
    max-height: calc(1.5em * 4);
    overflow: hidden;             
    display: -webkit-box;         
    -webkit-line-clamp: 4;        
    -webkit-box-orient: vertical; 
    text-overflow: ellipsis;      
    word-wrap: break-word;
}  
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .date{
    color: #CCCCCC;
    font-size: 18px;
    font-family: var(--font-pre500);
    margin-bottom: 30px;
    text-align: right;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .more {}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .more a{
    width: 100%;
    font-size: 18px;
    font-family: var(--font-pre500);
    color: #fff;
    padding: 20px 0;
    display: block;
    background: #000;
    text-align: center;
    transition: 0.3s;
}
.wp_wrap #m_news .news_inner .bot .news_slider .news_slide .slide_inner .txt_box .more a:hover{
    background: #AB8D47;
}
/**********************************************************************************************************************/











/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
/* 서브 */
.wp_wrap .sub_main{
    position: relative;
    width: 100%;
    height: 550px;
} 
.wp_wrap .sub_main.sub_main01{
    background: url(../img/sub/sub_main01.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main.sub_main02{
    background: url(../img/sub/sub_main02.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main.sub_main03{
    background: url(../img/sub/sub_main03.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main.sub_main04{
    background: url(../img/sub/sub_main04.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main.sub_main05{
    background: url(../img/sub/sub_main05.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main.sub_main06{
    background: url(../img/sub/sub_main06.jpg)no-repeat center center / cover;
}
.wp_wrap .sub_main .txt_box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .sub_main .txt_box .inner_box{
    text-align: center;
    padding: 0 15px;
} 
.wp_wrap .sub_main .txt_box .inner_box .sm_tit{
    font-size: 60px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
    color:#fff;
    
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
} 
.wp_wrap .sub_main .txt_box .inner_box .sm_desc{
    font-size: 20px;
    color:#fff;
    
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s 0.8s;
} 
.wp_wrap .sub_main.on .txt_box .inner_box .sm_tit,
.wp_wrap .sub_main.on .txt_box .inner_box .sm_desc{
    opacity: 1;
    transform: translateY(0);
}




/* 서브 - 스티키메뉴 */
.wp_wrap #fix_menu{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #DFDFDF;
    background: #F5F5F5;
    z-index: 995;
}
.wp_wrap #fix_menu .cm_inner{
    padding: 0;
}
.wp_wrap #fix_menu .menu_inner{
    display: flex;
}
.wp_wrap #fix_menu .menu_inner>div{
    padding: 20px 0; 
}
.wp_wrap #fix_menu .menu_inner .first{
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    min-width: 80px;
}
.wp_wrap #fix_menu .menu_inner .first i{
    font-size: 14px;
}
.wp_wrap #fix_menu .menu_inner .second,
.wp_wrap #fix_menu .menu_inner .third{
    position: relative;
    display: flex;
    border-right: 1px solid #ddd;
}
.wp_wrap #fix_menu .menu_inner .third{
    min-width: 240px;
}
.wp_wrap #fix_menu .menu_inner .second .m_top,
.wp_wrap #fix_menu .menu_inner .third .m_top{
    padding: 0 30px;
    /* border-right: 1px solid #DFDFDF; */
    display: flex;
    align-items: center;
    cursor: pointer;
}
.wp_wrap #fix_menu .menu_inner .third .m_top{
    width: 100%;
    justify-content: space-between;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu,
.wp_wrap #fix_menu .menu_inner .third .third_menu{
    position: absolute;
    top: 79px;
    left: -1px;
    background: #fff;
    width: calc(100% + 2px);
    padding: 10px 30px;
    font-size: 16px;
    line-height: 40px;
    border-left:1px solid #DFDFDF;
    border-right:1px solid #DFDFDF;
    border-bottom:1px solid #DFDFDF;
    display: none;
}
.wp_wrap #fix_menu .menu_inner .third .third_menu br{
    display: none;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu>li>a,
.wp_wrap #fix_menu .menu_inner .third .third_menu>li>a{
    display: block;
    width: 100%;
    color:#949494;
}
.wp_wrap #fix_menu .menu_inner .second .m_top br, 
.wp_wrap #fix_menu .menu_inner .third .m_top br{
    display: none;
}
.wp_wrap #fix_menu .menu_inner .second .m_top p, 
.wp_wrap #fix_menu .menu_inner .third .m_top p {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#2E2E2E;
}
.wp_wrap #fix_menu .menu_inner .second .second_menu ul>li>a{
    display: inline-block;
    width: 100%;
}
.wp_wrap #fix_menu .menu_inner .second .m_top p,
.wp_wrap #fix_menu .menu_inner .third .m_top p{
    font-size: 16px;
    font-family: var(--font-pre500);
    margin-right: 80px;
}
.wp_wrap #fix_menu .menu_inner .second .m_top i,
.wp_wrap #fix_menu .menu_inner .third .m_top i{    
    font-size: 18px;
}








.wp_wrap #sub03 .sub03_inner .tit_box,
.wp_wrap #sub02 .sub02_inner .tit_box,
.wp_wrap #sub01 .sub01_inner .tit_box{
    margin-bottom: 120px;
}

/* sub01 */
.wp_wrap #sub01 {
    background: #f9f9f9;
    overflow: hidden;
}
.wp_wrap #sub01 .top {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}
.wp_wrap #sub01 .top .left {}
.wp_wrap #sub01 .top .left .tit {
    font-size: 60px;
    font-family: 'Pretendard-bold';
    margin-bottom: 30px;
}
.wp_wrap #sub01 .top .left .tit>span {
    font-family: 'Pretendard-Bold';
}
.wp_wrap #sub01 .top .left .ex {
    font-size: 25px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 30px;
}
.wp_wrap #sub01 .top .left .ex_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap #sub01 .top .left .ex_list>li {}
.wp_wrap #sub01 .top .left .ex_list>li .ex_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #sub01 .top .left .ex_list>li .ex_box .g_box {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #ebb000;
}
.wp_wrap #sub01 .top .left .ex_list>li .ex_box>p {
    font-size: 23px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #sub01 .top .right {}
.wp_wrap #sub01 .top .right .img_box {
    overflow: hidden;
    border-radius: 30px;
}
.wp_wrap #sub01 .top .right .img_box>img {}
.wp_wrap #sub01 .f_slide {
    width: 2200px;
    overflow: hidden;
}
.wp_wrap #sub01 .f_slide li {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}
.wp_wrap #sub01 .f_slide li p {
    font-size: 220px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    letter-spacing: -10px;
}
.scroll-track {
    width: 100%;
    animation: scroll-text 20s linear infinite; /* 애니메이션 적용! */
    /* white-space: nowrap; 이 속성은 li에 주는 게 더 정확해 */
    display: flex;
    gap: 100px;
}
/* animation */
@keyframes scroll-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.wp_wrap #sub01 .mid {
    width: 1828px;
    margin-left: auto;
}
.wp_wrap #sub01 .mid .mid_box {
    width: 100%;
    background: url(../img/sub/mid_box.jpg) no-repeat center center / cover;
    overflow: hidden;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 197px 0;
}
.wp_wrap #sub01 .mid .mid_box .cm_inner02 {
    display: flex;
    justify-content: space-between;
}
.wp_wrap #sub01 .mid .mid_box .left {
    width: 30%;
}
.wp_wrap #sub01 .mid .mid_box .left .tit {
    font-size: 70px;
    font-family: 'Pretendard-Light';
    color: #fff;
}
.wp_wrap #sub01 .mid .mid_box .left .tit>span {
    font-family: 'Pretendard-ExtraBold';
}
.wp_wrap #sub01 .mid .mid_box .right {
    width: 70%;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list:before {
    content: '';
    width: 1px;
    height: 225px;
    border-left: 2px dotted #979797;
    position: absolute;
    top: 50%;
    left: 29%;
    transform: translateY(-50%);
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list:after {
    content: '';
    width: 1px;
    height: 225px;
    border-left: 2px dotted #979797;
    position: absolute;
    top: 50%;
    right: 33%;
    transform: translateY(-50%);
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li {}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .img_box {
    width: 208px;
    height: 208px;
    border-radius: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .img_box>img {}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .txt_box {}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-ExtraBold';
    color: #A2A2A2;
    margin-bottom: 23px;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .txt_box .txt {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    color: #fff;
}
.wp_wrap #sub01 .mid .mid_box .right .vi_list>li .vi_box .txt_box .txt>span {
    font-family: 'Pretendard-ExtraBold';
}
.wp_wrap #sub01 .f_g_slide {
        width: 2200px;
    overflow: hidden;
}
.wp_wrap #sub01 .f_g_slide li {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}
.wp_wrap #sub01 .f_g_slide li p {
    font-size: 220px;
    font-family: 'Pretendard-SemiBold';
    color: #E9E9E9;
    letter-spacing: -10px;
}
.scroll-track2 {
    transform: translateX(-50%); /* 중요! 초기 위치 설정 */
    width: 100%;
    animation: scroll-text2 20s linear infinite; /* 애니메이션 적용! */
    /* white-space: nowrap; 이 속성은 li에 주는 게 더 정확해 */
    display: flex;
    gap: 100px;
}
/* animation */
@keyframes scroll-text2 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
.wp_wrap #sub01 .bot {
    width: 1828px;
    margin-right: auto;
}
.wp_wrap #sub01 .bot .bot_box {
    width: 100%;
    background: url(../img/sub/bot_box.jpg) no-repeat center center / cover;
    overflow: hidden;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: 197px 0;
}
.wp_wrap #sub01 .bot .bot_box .tit {
    font-size: 50px;
    color: #fff;
    font-family: 'Pretendard-Light';
    margin-bottom: 70px;
    text-align: center;
}
.wp_wrap #sub01 .bot .bot_box .tit>span {
    font-family: 'Pretendard-Bold';
}
.wp_wrap #sub01 .bot .bot_box .why_list {
    display: flex;
    justify-content: space-between;
}
.wp_wrap #sub01 .bot .bot_box .why_list>li {}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box {}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box .img_box {
    margin-bottom: 22px;
}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box .img_box>img {}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box .txt_box {}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box .txt_box .tit {
    font-size: 30px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 11px;
}
.wp_wrap #sub01 .bot .bot_box .why_list>li .why_box .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    text-align: center;
    color: #fff;
}






/* map */
.wp_wrap #map {
    background: #F9F9F9;
}
.wp_wrap #map .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 35px;
}
.wp_wrap #map .map_box {
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 35px;
}
.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;
}
.wp_wrap #map .info_box {
    width: 100%;
    background: #fff ;
    padding: 42px 0;
    padding-left: 58px;
    border-radius: 40px;
    display: flex;
    gap: 80px;
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #map .info_box .left {}
.wp_wrap #map .info_box .left .left_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap #map .info_box .left .left_list>li {}
.wp_wrap #map .info_box .left .left_list>li .l_box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp_wrap #map .info_box .left .left_list>li .l_box .name {
    display: flex;
    gap: 10px;
    align-items: center;
}
.wp_wrap #map .info_box .left .left_list>li .l_box .name>i {}
.wp_wrap #map .info_box .left .left_list>li .l_box .name>p {}
.wp_wrap #map .info_box .right {}
.wp_wrap #map .info_box .right .right_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap #map .info_box .right .right_list>li {}
.wp_wrap #map .info_box .right .right_list>li .r_box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp_wrap #map .info_box .right .right_list>li .r_box_last {
    display: flex;
    gap: 33px;
}
.wp_wrap #map .info_box .right .right_list>li .r_box .name {
    display: flex;
    gap: 10px;
    align-items: center;
}
.wp_wrap #map .info_box .right .right_list>li .r_box_last .name {
    display: flex;
    gap: 10px;
}
.wp_wrap #map .info_box .right .right_list>li .r_box .name>i {}
.wp_wrap #map .info_box .right .right_list>li .r_box_last .mid {
    margin-bottom: 10px;
}



/* introduce */
.wp_wrap #introduce {
    background: #F9F9F9;
}
.wp_wrap #introduce .intro_box {
    background: #D9D9D9;
    border-radius: 60px;
    padding: 74px;
    padding-top: 100px;
}
.wp_wrap #introduce .intro_box .top {
    display: flex;
    justify-content: space-between;
    height: 250px;
    margin-bottom: 100px;
}
.wp_wrap #introduce .intro_box .top .left {
    width: 30%;
    height: 100%;
}
.wp_wrap #introduce .intro_box .top .left .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}
.wp_wrap #introduce .intro_box .top .left .ex {
    font-size: 25px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #introduce .intro_box .top .right {
    width: 70%;
    height: 100%;
}
.wp_wrap #introduce .intro_box .top .right .r_list {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li {
    position: absolute;
    left: 20%;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(2) {
    position: absolute;
    left: 42%;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(3) {
    position: absolute;
    left: 64%;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li .r_box {
    width: 243px;
    height: 243px;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #E5E5E5;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(2) .r_box {
    background: rgba(178, 178, 178, 0.8);
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(3) .r_box {
    background: rgba(91, 91, 91, 0.8);
}
.wp_wrap #introduce .intro_box .top .right .r_list>li .r_box .name {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 10px;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(3) .r_box .name {
    color: #fff;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li .r_box .img_box {
    margin-bottom: 10px;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li .r_box .img_box>img {}
.wp_wrap #introduce .intro_box .top .right .r_list>li .r_box .ex {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Pretendard-Regular';
    text-align: center;
}
.wp_wrap #introduce .intro_box .top .right .r_list>li:nth-child(3) .r_box .ex {
    color: #fff;
}




/* work */
.wp_wrap #work {
    background: #F6F6F6;
}
.wp_wrap #work .work_list {
    background: #fff;
    border-radius: 60px;
    padding: 120px 0 190px;
}
.wp_wrap #work .work_list .tit_box {
    text-align: center;
    margin-bottom: 100px;
}
.wp_wrap #work .work_list .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 45px;
}
.wp_wrap #work .work_list .tit_box .ex {
    font-size: 25px;
    font-family: 'Pretendard-Regular';
    color: #5E5E5E;
}
.wp_wrap #work .work_list .tit_box .ex .red {
    font-family: 'Pretendard-Bold';
    color: #8F0000;
}
.wp_wrap #work .work_list .work_inner {
    display: flex;
    flex-direction: column;
    gap: 160px;
}
.wp_wrap #work .work_list .work_inner #fir, .wp_wrap #work .work_list .work_inner #sec, .wp_wrap #work .work_list .work_inner #thi, .wp_wrap #work .work_list .work_inner #fou, .wp_wrap #work .work_list .work_inner #fif, .wp_wrap #work .work_list .work_inner #six {
    display: flex;
    justify-content: space-between;
}
.wp_wrap #work .work_list .work_inner>div .left {}
.wp_wrap #work .work_list .work_inner>div .left .img_box {
    overflow: hidden;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.wp_wrap #work .work_list .work_inner>div .left .img_box>img {}
.wp_wrap #work .work_list .work_inner>div .right {}
.wp_wrap #work .work_list .work_inner>div .right .txt_box {}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 20px;
}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #8F0000;
    line-height: 1.5;
    margin-bottom: 40px;
}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list>li {}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list>li .ex_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list>li .ex_box.two {
    align-items: flex-start;
}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list>li .ex_box>img {}
.wp_wrap #work .work_list .work_inner>div .right .txt_box .ex_list>li .ex_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #work .work_list .work_inner>div .right {}
.wp_wrap #work .work_list .work_inner>div .right .img_box {
    overflow: hidden;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.wp_wrap #work .work_list .work_inner>div .right .img_box>img {}
.wp_wrap #work .work_list .work_inner>div .left {}
.wp_wrap #work .work_list .work_inner>div .left .txt_box {}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 20px;
}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #8F0000;
    line-height: 1.5;
    margin-bottom: 40px;
}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list>li {}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list>li .ex_box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list>li .ex_box.two {
    align-items: flex-start;
}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list>li .ex_box>img {}
.wp_wrap #work .work_list .work_inner>div .left .txt_box .ex_list>li .ex_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #work .work_list .pro_inner {}
.wp_wrap #work .work_list .pro_inner .tit_box {
    margin-bottom: 50px;
}
.wp_wrap #work .work_list .pro_inner .tit_box .tit {
    font-size: 35px;
}
.wp_wrap #work .work_list .pro_inner .tit_box .ex {
    font-size: 25px;
}
.wp_wrap #work .work_list .pro_inner .pro_list {
    display: flex;
    justify-content: space-between;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li {}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .img_box {
    margin-bottom: 20px;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .img_box>img {}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .img_box>img:nth-child(2) {
    display: none;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .txt_box {
    text-align: center;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .txt_box .txt {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 15px;
}
.wp_wrap #work .work_list .pro_inner .pro_list>li .pro_box .txt_box .s_txt {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}





/* ex */
.wp_wrap #ex {
    background: #E9E9E9;
}


/* ex_inner */
.wp_wrap #ex_inner {
    background: #F3F3F3;
}

/* ex_inquiry */
.wp_wrap #ex_inquiry {
    background: #F3F3F3;
}

/* blog */
.wp_wrap #blog {}



.wp_wrap #sub02 .sub02_inner .contents{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px 30px;
}
.wp_wrap #sub02 .sub02_inner .contents .lawyer_itm{
    display: flex;
    flex-direction: column;
}
.wp_wrap #sub02 .sub02_inner .contents .img_box{
    height: 630px;
}
.wp_wrap #sub02 .sub02_inner .contents .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box{
    padding: 40px;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .mintit{
    font-size: 24px;
    font-family: var(--font-pre700);
    color: #AB8D47;
    margin-bottom: 20px;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .history{
    margin-bottom: 40px;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .history li{
    font-size: 18px;
    font-family: var(--font-pre500);
    margin-bottom: 5px;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .more{
    width: 100%;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .more a{
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 18px;
    font-family: var(--font-pre500);
    background: #000;
    color: #fff;
    transition: 0.3s;
}
.wp_wrap #sub02 .sub02_inner .contents .lawyer_itm:first-child .his_box .more a{
    background: #AB8D47;
}
.wp_wrap #sub02 .sub02_inner .contents .his_box .more a:hover{
    background: #AB8D47;
}






.wp_wrap #sub02_01{
    background: #D7D7D7;
    padding-top: 80px;
}
.wp_wrap #sub02_01 .sub02_01_inner{
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
.wp_wrap #sub02_01 .sub02_01_inner .lt{
    width: 480px;
}

.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .mintit{ 
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom: 5px;
    color: #AB8D47;
}
.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .tit{  
    font-size: 50px;
    font-family: var(--font-pre700);
    margin-bottom: 40px;
}
.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .cont{
    margin-bottom: 30px;
}
.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .cont:last-child{
    margin-bottom: 140px;
}
.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .cont .cont_tit{    
    font-size: 30px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #sub02_01 .sub02_01_inner .rt .txt_box .cont .peo_pf li{
    font-size: 18px;
    font-family: var(--font-pre500);

}


.wp_wrap #sub03 .sub03_inner .itms{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.wp_wrap #sub03 .sub03_inner .itms .itm{
    width: 100%;
    overflow: hidden;
}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner{
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 0 25px;
}
.wp_wrap #sub03 .sub03_inner .itms .itm:hover .itm_inner{
    background: #eee;
}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner .img_bg {
    margin-bottom: 10px;
}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner .img_bg .icon_box{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #sub03 .sub03_inner .itms .itm:hover .itm_inner .img_bg .icon_box{
    background: #fff;
}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner>p{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;

}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner .more{
    width: 100%;
    border: 1px solid #ddd;
}
.wp_wrap #sub03 .sub03_inner .itms .itm .itm_inner .more a{
    display: block;
    text-align: center;
    padding: 20px 0;
}
.wp_wrap #sub03 .sub03_inner .itms .itm:first-child .itm_inner .more a{
    color: #fff;
    background: #AB8D47;
}
.wp_wrap #sub03 .sub03_inner .itms .itm:hover .itm_inner .more a{
    color: #fff;
    background: #AB8D47;
}




.wp_wrap #sub03_01 .sub03_01_inner .tit_box,
.wp_wrap #sub03_02 .sub03_02_inner .tit_box{
    margin-bottom: 30px;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .top{
    margin-bottom: 60px;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .top .img_box{
    height: 450px;
    margin-bottom: 40px;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .top .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .top .txt_box{
    font-size: 18px;
    font-family: var(--font-pre500);
}


.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm{
    border: 1px solid #ddd;
}

.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm .itm_inner{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;

}
.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm:first-child .itm_inner{
    background: #ddd;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm:hover .itm_inner{
    background: #ddd;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm .itm_inner .name p{
    font-size: 24px;
}
.wp_wrap #sub03_01 .sub03_01_inner .contents .bot .cate_itms .cate_itm .itm_inner .icon i{
    font-size: 21px;
}

.wp_wrap #sub03_02 .sub03_02_inner .contents .top,
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid {
    margin-bottom: 120px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .line{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .line:last-child{
    margin-bottom: 0;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .img_box,
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .txt_box{
    width: 50%;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .img_box{
    height: 450px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .txt_box{
    padding: 0 30px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot>.tit,
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid>.tit,
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .txt_box .tit{
    font-size: 50px;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .top .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);
    line-height: 1.3;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .img_box{
    height: 450px;
    margin-bottom: 30px;
}

.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .img_box img{
    width: 100%;
    height:100%;
    object-fit: cover;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .txt_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .txt_box .lt .tit{
    font-size: 24px;
    font-family:var(--font-pre700);
    margin-bottom: 10px;
    color: #AB8D47;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .txt_box .lt .desc{
    font-size: 36px;
    font-family:var(--font-pre700)
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .txt_box .rt .rt_inner a{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDDDDD;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .mid .peo_list .list .txt_box .rt .rt_inner a i{
    font-size: 50px;
    color: #fff;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .tit{
    margin-bottom: 60px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm {
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner {
    position: relative;
    padding: 60px 40px 40px 40px;
    border: 1px solid #ddd;
}

.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .category{
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 40px;
    padding: 20px;
    background: #AB8D47;
    color: #fff;
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .mintit{
    font-size: 24px;
    font-family: var(--font-pre700);
    margin-bottom:20px;
    color:#AB8D47;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);      
    margin-bottom: 20px;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .desc{
    font-size: 18px;
    font-family: var(--font-pre500);    
    margin-bottom: 35px;
    height: 84px;
    overflow: hidden;
}  
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .date{
    color: #CCCCCC;
    font-size: 18px;
    font-family: var(--font-pre500);
    margin-bottom: 30px;
    text-align: right;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .more a{
    width: 100%;
    font-size: 18px;
    font-family: var(--font-pre500);
    color: #fff;
    padding: 20px 0;
    display: block;
    background: #000;
    text-align: center;
    transition: 0.3s;
}
.wp_wrap #sub03_02 .sub03_02_inner .contents .bot .news .news_itm .itm_inner .txt_box .more a:hover{
    background: #AB8D47;
}
/**********************************************************************************************************************/




/**********************************************************************************************************************/
/* test */
/**********************************************************************************************************************/




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