/**
 * 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_ 접두어를 사용한다.
*/
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/* font */
@font-face {
    font-family: 'Pretendard-Thin';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

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

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

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

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

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

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

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

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

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


html{
    scroll-behavior: smooth;
}

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

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

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

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

.wp_wrap .s_sec{
    overflow-x: clip;
}




.wp_wrap .fw_bold{
    font-family: var(--font-pre700);
}
.wp_wrap .white{
    color: #fff;
}



.wp_wrap .mtit{
    font-size: 60px;
    font-family: var(--font-pre600);
}
.wp_wrap .mtit>span{
    font-family: var(--font-pre200);
}
.wp_wrap .mdesc{
    font-size: 17px;
    color: #5D5D5D;
}
.wp_wrap .stit{
    font-size: 60px;
    font-family: var(--font-pre600);
}

.wp_wrap .tit_box{
    text-align: center;
    margin-bottom: 100px;
}

/* .wp_wrap #m_notice .tit_box{
    margin-bottom: 0;
} */
.wp_wrap #m_ntc .tit_box{
    margin-bottom: 0;
}




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



/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/* 헤더 */
.wp_wrap header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    background: transparent;
    transition: 0.5s;
}
.wp_wrap header .h_inner{    
    position: relative; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wp_wrap header .h_inner .h_logo{
    min-width: 220px;
}   
.wp_wrap header .h_inner .gnb{
    display: flex;
}
.wp_wrap header .h_inner .gnb .m_list{
    position: relative;
    text-align: center;
    width: 140px;
}
.wp_wrap header .h_inner .gnb .m_list>a{
    display: block;
    padding: 39.5px 0;
    font-size: 18px;
    font-family: var(--font-pre600);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wp_wrap header .h_inner .gnb .m_list .sub_mnu{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 1003;
}
.wp_wrap header .h_inner .gnb .m_list .sub_mnu .sub_m_list>a{    
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-family: var(--font-pre400);
}
.wp_wrap header .sub_mnu_bg {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 220px;
    background: rgba(242, 242, 242, 0.94);
    display: none;
}
/* .wp_wrap header .h_bg01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: 0.5s;
} */
.wp_wrap header .h_inner .lg_micon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.wp_wrap header .mo_menu {
    display: none;
}
.wp_wrap header .mo_menu_icon{
    display: none;
    padding: 32.5px 0;        
    font-size: 30px;
    color: #fff;
}
.loginbox {
    display: flex;
    font-size: 13px;
    gap:10px;
}
.loginbox a {
    color:#fff!important;
}
.lang a {display: flex;
    padding-left: 5px;
font-size: 15px;}
/**********************************************************************************************************************/








/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
/* 푸터 */
.wp_wrap footer {
    background: #949284;
    padding: 60px 0;
}
.wp_wrap footer .f_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap footer .f_inner .lt{
    display: flex;
    gap: 15px;
    align-items: center;
}
.wp_wrap footer .f_inner .lt .f_logo{
    min-width: 115px;
}
.wp_wrap footer .f_inner .f_info>ul{
    display: flex;
    gap: 0 10px;

}
.wp_wrap footer .f_inner .f_info>ul.bot{
    margin-bottom: 20px;
}
.wp_wrap footer .f_inner .f_info>ul>li,
.wp_wrap footer .f_inner .f_info .f_copy{
    font-family: var(--font-pre200);
    font-size: 15px;
    color: #CCCCCC;
}
.wp_wrap footer .f_inner .f_info .f_copy a{
    color: #fffffc;
}
.wp_wrap .f_info ul li,
.wp_wrap .f_info p {
    font-size: 15px;
    font-weight: 200;
    color: #DDDDDD;
}

.wp_wrap footer .f_inner .qrbox{
    display: flex;
    gap: 10px;
}

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








/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* 메인 슬라이드*/
.wp_wrap .main_visual {
    position: relative;
}
.wp_wrap .main_visual .main_slider {
    position: relative;
}
.wp_wrap .main_visual .main_slider .slide{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.wp_wrap .main_visual .main_slider .slide .img_bg.item01{
    background: url(../img/main/mainSlide03.jpg) no-repeat center center / cover;
}
.wp_wrap .main_visual .main_slider .slide .img_bg.item02{
    background: url(../img/main/mainSlide04.jpg) no-repeat center center / cover;
}
.wp_wrap .main_visual .main_slider .slide .img_bg.item03{
    background: url(../img/main/mainSlide05.jpg) no-repeat center center / cover;
}
.wp_wrap .main_visual .main_slider .slide .img_bg{
    display: block; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border:0;
    transform: scale(1.1);    
    transition: 4s;
}
.wp_wrap .main_visual .main_slider .slide.action .img_bg {
    transform: scale(1); 
}
.wp_wrap .main_visual .main_slider .slide .slide_inner{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    background: rgb(0 0 0 / 20%);
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box{
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out01{
    height: 70px;
    overflow: hidden;
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out02{
    height: 80px;
    overflow: hidden;
    margin-bottom: 15px;
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out03{
    height: 30px;
    overflow: hidden;
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out01 .top_tit{
    font-size: 40px;
    font-family: var(--font-pre300); 
    transition: 0.8s;
    opacity: 0;
    transform:translateY(100px);
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out02 .mid_tit{
    font-size: 70px;
    font-family: var(--font-pre700);
    transition: 0.8s 0.8s;
    opacity: 0;
    transform:translateY(100px);
    
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .txt_out03 .bot_tit{
    font-size: 25px;
    font-family: var(--font-pre200);
    transition: 0.8s 1.6s;
    opacity: 0;
    transform:translateY(100px);
}

.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .txt_out01 .top_tit{
    opacity: 1;  
    transform:translateY(0);
}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .txt_out02 .mid_tit{
    opacity: 1;  
    transform:translateY(0);
}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .txt_out03 .bot_tit{
    opacity: 1; 
    transform:translateY(0);
}


/*  메인 슬라이드 버튼  */
.wp_wrap .main_visual .main_slider .slick-dots{
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}
.wp_wrap .main_visual .main_slider .slick-dots li {
    position: relative;
}
.wp_wrap .main_visual .main_slider .slick-dots li button::before {
    content: '';
    width: 29px;
    height: 29px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #C9BF7A;
    background: transparent;
    display: none;
    animation: spread 3.3s linear;
}
.wp_wrap .main_visual .main_slider  .slick-dots li button{
    position: relative;
    outline: none;
    border:  none;
    font-size: 0;
    width: 13px;
    height: 13px;
    background: #fff;
    margin-bottom: 20px; 
    border-radius: 50%;
}
.wp_wrap .main_visual .main_slider  .slick-dots li.slick-active button::before{
    display: block;
}
.wp_wrap .main_visual .main_slider  .slick-dots li.slick-active button{    
    background: #C9BF7A;
}


/* 메인 스크롤 아이콘 */
.wp_wrap .main_visual .scr{
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, -50%);
}
.wp_wrap .main_visual .scr a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wp_wrap .main_visual .scr .scr_icon{
    display: flex;
    justify-content: center;
    width: 17px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 8px;
    background: transparent;
    margin-bottom: 3px;
    padding: 4px 0;
}
.wp_wrap .main_visual .scr .scr_icon .dot{
    position: relative;
    width: 9px;
    height: 9px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}
.wp_wrap .main_visual .scr .scr_icon .dot1,
.wp_wrap .main_visual .scr .scr_icon .dot2{
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    content: '';
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}
.wp_wrap .main_visual .scr .scr_icon .dot2{
    background: #fff;

}

.wp_wrap .main_visual .scr .scr_txt{
    font-size: 12px;
    font-family: var(--font-pre200);
    color: #fff;
}



/* sec01 - introduce */
.wp_wrap #m_introduce .mtit{
    text-align: center;
    margin-bottom: 50px;
}
.wp_wrap #m_introduce .intro_items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    
}
.wp_wrap #m_introduce .intro_items .intro_itm{
    height: 365px;
    overflow: hidden;
    border-radius: 20px;
}
.wp_wrap #m_introduce .intro_items .intro_itm.itm01{
    background: url(../img/main/introduce01.jpg) no-repeat center center / cover;
}
.wp_wrap #m_introduce .intro_items .intro_itm.itm02{
    background: url(../img/main/introduce02.jpg) no-repeat center center / cover;
}
.wp_wrap #m_introduce .intro_items .intro_itm.itm03{
    background: url(../img/main/introduce03.jpg) no-repeat center center / cover;
}
.wp_wrap #m_introduce .intro_items .intro_itm.itm04{
    background: url(../img/main/introduce04.jpg) no-repeat center center / cover;
}
.wp_wrap #m_introduce .intro_items .intro_itm a{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.wp_wrap #m_introduce .intro_items .intro_itm .txt_box{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: #aba15de8;
    color: #fff;
}
.wp_wrap #m_introduce .intro_items .intro_itm .txt_box .intro_name{
    text-align: center;
    font-size: 20px;
    padding: 23px 20px;
}

/* sec02 -mission & vision */
.wp_wrap #m_mission{
    background: #BCB48D;
}
.wp_wrap #m_mission .mission_inner{
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}
.wp_wrap #m_mission .mission_inner .mission_txt{
    width: 35%;
}
.wp_wrap #m_mission .mission_inner .mission_txt .mtit{
    margin-bottom: 20px;
	color: #fff;
}
.wp_wrap #m_mission .mission_inner .mission_txt .mdesc{
    font-size: 17px;
    margin-bottom: 60px;
	color: #fff;
    line-height: 1.4;
}
.wp_wrap #m_mission .mission_inner .mission_img .img_box{
    width: 775px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap #m_mission .mission_inner .mission_img .img_box:hover>img{
    transform: scale(1.1);
}
.wp_wrap #m_mission .mission_inner .mission_img .img_box>img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.wp_wrap #m_mission .mission_inner .more{
    font-size: 18px;
}
.wp_wrap #m_mission .mission_inner .more a {
	color: #fff!important
}


/* sec03 - shop */
.wp_wrap #m_shop .mtit{
    margin-bottom: 5px;
}
.wp_wrap #m_shop .mdesc{
    font-size: 17px;
    margin-bottom: 35px;
}
.wp_wrap #m_shop .shop_items{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wp_wrap #m_shop .shop_items .shop_itm {
    display: block;
    cursor: pointer;
}
.wp_wrap #m_shop .shop_items .shop_itm .img_box{
    width: 370px;
    height: 280px;
    margin-bottom: 20px;
}
.wp_wrap #m_shop .shop_items .shop_itm .img_box>img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
	object-fit: cover;
}
.wp_wrap #m_shop .shop_items .shop_itm .txt_box{
    width: 95%;
    margin: 0 auto;
}
.wp_wrap #m_shop .shop_items .shop_itm .shop_itm_name{
    font-size:26px;
    font-family: var(--font-pre600);
    margin-bottom: 10px;
}
.wp_wrap #m_shop .shop_items .shop_itm .shop_itm_desc{
    font-size: 18px;
    color: #8f8f8f;
}
.wp_wrap #m_shop .more{
    display: none;
    position: relative;
    text-align: center;
}
.wp_wrap #m_shop .more::after{
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: 40px;
    background: #707070;
}
.wp_wrap #m_shop .more a{
    font-size: 18px;    
}



/* sec04 - notice */
/* .wp_wrap #m_notice {
    background: #F7F7F7;
}

.wp_wrap #m_notice .mnotice_inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.wp_wrap #m_notice .mnotice_inner {
    display: flex;
    gap: 60px;
}
.wp_wrap #m_notice .mnotice_inner .tit_box {
    width: 20%;
    text-align:left;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone {
    width: 75%;
}

.wp_wrap #m_notice .mnotice_inner .tit_box .mdesc {
    font-size: 17px;
    margin-bottom: 20px;
}
.wp_wrap #m_notice .mnotice_inner .tit_box .more>a {
    display: block;
    color: #000;
    text-align: left;
    font-size: 18px;
}

.wp_wrap #m_notice .mnotice_inner .slide_zone{
    position: relative;
    width: 1650px;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper {
    width: 100%;
    margin-bottom: 5px;
    overflow: hidden;
    position: relative;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    margin: 5px 0;
    transition: 0.3s;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide-active {
    background: #BEB693;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide a .slide_inner {
    width: 100%;
    height: 100%;
    padding: 60px 30px;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide a .slide_inner .no_tit {
    font-size: 26px;
    font-family: var(--font-pre600);
    margin-bottom: 25px;
    height: 30px;
    overflow: hidden;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide a .slide_inner .no_des {
    font-size: 18px;
    font-family: var(--font-pre300);
    margin-bottom: 50px;
    height: 85px;
    overflow: hidden;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide a .slide_inner .no_date {
    font-size: 18px;
    text-align: right;
}
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide-active a .slide_inner .no_tit,
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide-active a .slide_inner .no_des,
.wp_wrap #m_notice .mnotice_inner .slide_zone .notice_swiper .swiper-slide-active a .slide_inner .no_date {
    color: #fff;
} */


.wp_wrap #m_ntc {
    background: #F7F7F7;
}
.wp_wrap #m_ntc .mntc_inner {
    gap: 60px;    
    width: 100%;
    height: 100%;
    display:flex;
    align-items:flex-start;
}
.wp_wrap #m_ntc .mntc_inner .lt {
    width: 20%;
}
.wp_wrap #m_ntc .mntc_inner .lt .tit_box{
    text-align: left;
}
.wp_wrap #m_ntc .mntc_inner .lt .tit_box .mdesc {
    font-size: 17px;
    margin-bottom: 20px;
}
.wp_wrap #m_ntc .mntc_inner .lt .tit_box .more>a {
    display: block;
    color: #000;
    text-align: left;
    font-size: 18px;
}
.wp_wrap #m_ntc .mntc_inner .rt {
    width: 80%;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone{
    position:relative;
    width: 1650px;
    height: 100%; 
    overflow: hidden;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container {
    width: 100%;
    height: 100%;
    margin-bottom: 5px;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide {    
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
    margin: 5px 0;
    transition: 0.3s;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide-active {
    background: #BEB693;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}


.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide a .slide_inner {
    width: 100%;
    height: 100%;
    padding: 60px 30px;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide a .slide_inner .no_tit {
    font-size: 26px;
    font-family: var(--font-pre600);
    margin-bottom: 25px;
    height: 30px;
    overflow: hidden;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide a .slide_inner .no_des {
    font-size: 18px;
    font-family: var(--font-pre300);
    margin-bottom: 50px;
    height: 85px;
    overflow: hidden;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide a .slide_inner .no_date {
    font-size: 18px;
    text-align: right;
}
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide-active a .slide_inner .no_tit,
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide-active a .slide_inner .no_des,
.wp_wrap #m_ntc .mntc_inner .rt .slider_zone .swiper-container .swiper-slide-active a .slide_inner .no_date {
    color: #fff;
}
/**********************************************************************************************************************/




/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
/* sub sub_main */
.wp_wrap .sub_main{
    position: relative;
    width: 100%;
    height: 500px;
    overflow-x: clip;
}

.wp_wrap .sub_main .sub_main_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    scale: 1;
    transition: 2s;
}
.wp_wrap .sub_main.on .sub_main_bg{
    scale: 1.03;
}
.wp_wrap .sub_main .sub_main_bg.sub_main_bg01{
    background: url('../img/sub/sub_main_bg01.jpg') no-repeat center center / cover;
} 
.wp_wrap .sub_main .sub_main_bg.sub_main_bg02{
    background: url('../img/sub/sub_main_bg02.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main .sub_main_bg.sub_main_bg03{
    background: url('../img/sub/sub_main_bg03.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main .sub_main_bg.sub_main_bg04{
    background: url('../img/sub/sub_main_bg04.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main .sub_main_bg.sub_main_bg05{
    background: url('../img/sub/sub_main_bg05.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main .sub_main_bg.sub_main_bg06{
    background: url('../img/sub/sub_main_bg06.jpg') no-repeat center center / cover;
}
/* 로그인, 회원가입 */
.wp_wrap .sub_main .sub_main_bg.sub_main_bg07{
    background: url('../img/sub/subMain_member.jpg') no-repeat center center / cover;
}

.wp_wrap .sub_main .sub_main_inner{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap .sub_main .sub_main_inner .txt_box{
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.wp_wrap .sub_main .sub_main_inner .txt_box .sm_tit{
    font-size:50px;
    font-family: var(--font-pre300);
    color: #fff;
    margin-bottom: 10px;
/*     opacity: 0;
    transform:translateY(50px);
    transition: 1s; */
}

.wp_wrap .sub_main .sub_main_inner .txt_box .sm_des{
    font-size: 20px;
    font-family: var(--font-pre300);
    color: #fff;
/*     opacity: 0;
    transform:translateY(50px);
    transition: 1s 0.5s; */
}


/* .wp_wrap .sub_main.on .sub_main_inner .txt_box .sm_tit,
.wp_wrap .sub_main.on .sub_main_inner .txt_box .sm_des{
    transform: translateY(0);
    opacity:1;
}
 */


/* 서브 - 스티키메뉴 */
.wp_wrap #fix_menu{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #DFDFDF;
    background: #fff;
    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: 15px 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;
}





/* sub01 - 협회소개 */
/* sub01 - 01 - 협회소개 */
.wp_wrap #s_intro .intro_inner .top{
    position: relative;
    width: 1565px;
    margin-bottom: 45px;
}
.wp_wrap #s_intro .intro_inner .top .img_box{
    width: 100%;
    height: 480px;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}
.wp_wrap #s_intro .intro_inner .top .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: opacity(0.77);
}
.wp_wrap #s_intro .intro_inner .bot{
    margin-left: 15px;
}
.wp_wrap #s_intro .intro_inner .bot .txt_box .itr_txt{
    font-size: 30px;
    margin-bottom: 40px;
    color: #2E2E2E;
    line-height: 1.4;
}
.wp_wrap #s_intro .intro_inner .bot .txt_box .itr_txt:last-child{
    margin-bottom: 0;
}
.wp_wrap #s_activity .tit_box .stit{
    max-width: calc((100% - 1200px) / 2 + 1200px);
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
    margin-left: auto;
}
.wp_wrap #s_activity .tit_box .stit::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #ddd;
}
.wp_wrap #s_activity .atvt_inner .itms{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;}
.wp_wrap #s_activity .atvt_inner .itms .itm{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.wp_wrap #s_activity .atvt_inner .itms .itm:nth-child(odd){
    margin-top:  30px;
}
.wp_wrap #s_activity .atvt_inner .itms .itm {
    width: 100%;
}
.wp_wrap #s_activity .atvt_inner .itms .itm .img_box{
    width: 100%;
    border-radius: 35px;
    overflow: hidden;
    height: 225px;
}
.wp_wrap #s_activity .atvt_inner .itms .itm .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #s_activity .atvt_inner .itms .itm .atvt_name{
    font-size: 15px;
    text-align: center;
    width: 100%;
}



/* sub01 - 02 - 인사말 */
.wp_wrap #s_greerting .grt_inner .inner_box{
    display: flex;
    align-items: center;
    gap: 50px;
}
.wp_wrap #s_greerting .grt_inner .inner_box .left{
    min-width: 55%;
}
.wp_wrap #s_greerting .grt_inner .inner_box .left .txt_box .grt_txt{
    font-size: 25px;
    margin-bottom: 40px;
    line-height: 1.3;
}
.wp_wrap #s_greerting .grt_inner .inner_box .left .txt_box .grt_txt:last-child{
    margin-bottom: 0;
}
.wp_wrap #s_greerting .grt_inner .inner_box .right{
    position: relative;
}
.wp_wrap #s_greerting .grt_inner .inner_box .right .img_box{
    width: 1000px;;
    height: 595px;
    border-radius: 30px 0 0 30px;
/*    overflow: hidden;*/
}
.wp_wrap #s_greerting .grt_inner .inner_box .right .img_box img{
/*
    width: 100%;
    height: 100%;
*/
    filter: opacity(1);
    object-fit: cover;
	border: 1px solid #ddd;
}




/* sub01 - 03 - 찾아오시는 길 */
.wp_wrap #s_location .loct_inner .top{
    position: relative;
    margin-bottom: 200px;
}
.wp_wrap #s_location .loct_inner .top .map_box{
    border-radius: 35px;
    overflow: hidden;
    border:1px solid #ddd;
    width: 715px;
    height: 460px;
}
.wp_wrap #s_location .loct_inner .top .map_box .root_daum_roughmap .map_border {
    display: none;
}
.wp_wrap #s_location .loct_inner .top .map_box .root_daum_roughmap .wrap_map {
    height: 100%;
}
.wp_wrap #s_location .loct_inner .top .map_box .wrap_btn_zoom,
.wp_wrap #s_location .loct_inner .top .map_box .root_daum_roughmap .wrap_controllers{
    display: none;
}
.wp_wrap #s_location .loct_inner .top .info_box{
    position: absolute;
    top: 75px;
    right: 0;
    padding: 60px;
    border-radius: 55px;
    overflow: hidden;
    background: #AFA777;
    width: 580px;
    z-index: 9;
}
.wp_wrap #s_location .loct_inner .top .info_box .up p{
    font-size: 62px;
    font-family: var(--font-pre500);
    color: #fff;
    margin-bottom: 35px;
}
.wp_wrap #s_location .loct_inner .top .info_box .down{
    display: flex;
    align-items: center;
    gap: 35px;
}
.wp_wrap #s_location .loct_inner .top .info_box .down .lt>p{
    font-size: 20px;
    font-family: var(--font-pre500);
    margin-bottom: 10px;
    color: #fff;
}
.wp_wrap #s_location .loct_inner .top .info_box .down .lt>p:last-child{
    margin-bottom: 0
}
.wp_wrap #s_location .loct_inner .top .info_box .down .lt>p.another{
    margin-bottom: 35px;
}
.wp_wrap #s_location .loct_inner .bot .img_box{
    width: 100%;
    height: 395px;
    border-radius: 42px;
    overflow: hidden;
}
.wp_wrap #s_location .loct_inner .bot .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* sub01 - 04 - 회원가입안내 */
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info{
    margin-bottom: 30px;
    border: 1px dashed #B4B4B4;
    border-radius: 40px;
    overflow: hidden;
    padding: 40px 70px;
    display: flex;
    align-items: center;
    gap: 55px;
    min-height: 260px;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info>.lt .icon_box{
    width: 160px;
    height: 160px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info01 .lt .icon_box{
    background: #C9BF7A;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info02 .lt .icon_box{
    background: #B5B192;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info03 .lt .icon_box{
    background: #887D70;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info .rt .tit{
    font-size:20px;
    font-family: var(--font-pre500);
    margin-bottom: 15px;
    color: #212121;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .top .info .rt .desc{
    font-size:16px;
    color: #212121;
    line-height: 1.4;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot{
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-radius: 60px 60px 0 0;
    padding: 100px 150px;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .inqir{
    margin-bottom: 40px;
    display: flex; 
    align-items: center;
    gap:25px;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .inqir .lt .icon_box{
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C8C8C8;
    border-radius: 50%;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .inqir .rt .tit{
    font-size: 30px;
    font-family: var(--font-pre600);
    margin-bottom: 15px;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .inqir .rt .desc{
    font-size: 20px;
    font-family: var(--font-pre200);
    line-height: 1.3;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .account{
    padding: 25px;
    border-radius: 35px;
    background: #2C3885;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .account p{
    color: #fff;
    font-size: 20px;
    font-family: var(--font-pre200);
    text-align: center;
}
.wp_wrap #s_jinfo .jinfo_inner .inner_box .bot .account p br{
    display: none;
}
/* sub02 -회원사소개 */
/* sub02 - 01 - 회원사소개 */




/* sub03 - 교육프로그램 */
/* sub03 - 01 - 프로그램소개 */
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro{
    margin-bottom: 120px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .tit p{
    font-size: 25px;
    font-family: var(--font-pre700);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .tit p span{
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #DBD190;
    border-radius: 50%;
    margin-right: 10px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .summary{
    margin-bottom: 100px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .summary .conents{
    margin-left: 30px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .summary .conents p{
    line-height: 1.3;
    font-size: 20px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms .itm .img_box{
    margin-bottom: 15px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms .itm .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms .itm .txt_box{
    text-align: center;
    width: 90%;
    margin: 0 auto;
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms .itm .txt_box .name{
    font-size: 18px;
    font-family: var(--font-pre500);
}
.wp_wrap #s_program .prgr_inner .inner_box .prog_intro .detail .itms .itm .txt_box .kind{
    font-size: 16px;
    margin-top: 15px;
}
.wp_wrap #s_program .prgr_inner .inner_box .reference {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #s_program .prgr_inner .inner_box .reference a{
    position: relative;
    text-align: center;
    padding: 20px 90px;
    color: #fff;
    background: #ACA364;
    border-radius: 35px;
    font-size: 20px;
    font-family: var(--font-pre500);
}
.wp_wrap #s_program .prgr_inner .inner_box .reference a i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}


/* sub04 -법률서비스 */
/* sub04 - 01 - 서비스안내 */
.wp_wrap #s_service .service_inner .inner_box .main_txt{
    font-size: 25px;
    font-family: var(--font-pre600);
    margin-bottom: 95px;
    text-align: center;
    line-height: 1.4;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service{
    display: flex;
    gap: 60px;
    margin-bottom: 140px;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service:last-child{
    margin-bottom: 0;

}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .img_box{
    min-width: 510px;
    height: 355px;
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box{
    padding-top: 25px;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service:nth-child(even) .txt_box{
    text-align: right;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .svc_name{
    position: relative;
    font-size: 30px;
    font-family: var(--font-pre700);
    margin-bottom: 50px;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .svc_name::after{
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 65px;
    height: 5px;
    background: #C9BF7A;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service:nth-child(even) .txt_box .svc_name::after{
    left: auto;
    right: 0;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .line {
    margin-bottom: 35px;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .line:last-child {
    margin-bottom: 0;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .line .tit{
    font-size: 19px;
    font-family: var(--font-pre700);
    margin-bottom: 10px;
}
.wp_wrap #s_service .service_inner .inner_box .service_box .service .txt_box .line .desc{
    font-size: 19px;
    line-height: 1.4;
}



/* sub05 - 구인구직 */
/* sub05 - 01 - 구인게시판 */
/* sub05 - 02 - 구직게시판 */




/* sub06 - 커뮤니티 */
/* sub06 - 01 - 공지사항 */
/* sub06 - 02 - Q&A */



/* sub07 - 로그인 */
/* sub08 - 회원가입 */

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