/**
 * 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://fastly.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-ExtraLight';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

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

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.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://fastly.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://fastly.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://fastly.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://fastly.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://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}


@font-face {
    font-family: 'Katuri';
    src: url('https://gcore.jsdelivr.net/gh/projectnoonnu/noonfonts_13@1.0/Katuri.woff') format('woff');
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_13@1.0/Katuri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Paperlogy-6SemiBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}


@font-face {
    font-family: 'Paperlogy-7Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

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




/* 공통 width */
html{
    scroll-behavior: smooth;
}

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

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

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

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

.wp_wrap .cm_sec{
    padding: 120px 0;
}
.wp_wrap .cm_sec02{
    padding: 170px 0;
}
.sec_tit01{
    font-size: 60px;
    font-family: var(--font-pre700);
    text-align: left;
}
.sec_tit01 span{
    font-size: 60px;
    font-family: var(--font-pre200);
}

.sec_tit02{
    font-size: 60px;
    font-family: var(--font-pre600);
    text-align: left;
}
.sec_tit02 span{
    font-size: 60px;
    font-family: var(--font-pre200);
}

.sec_tit03{    
    font-size: 40px;
    font-family: var(--font-pre700);
    text-align: left;
}

#p_main{
    overflow: hidden;
}




.wp_wrap .stit_box{}
.wp_wrap .stit_box .tit{
    font-size: 40px;
    font-family: var(--font-pre500);
    color: #000000;
}
.wp_wrap .sstit_box{}
.wp_wrap .sstit_box .tit{
    position: relative;
    font-size: 30px;
    font-family: var(--font-pre700);
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;    
}
.wp_wrap .sstit_box .tit::before{
    content: "";
    width: 27px;
    min-width: 27px;
    height: 26px;
    background: url("../img/icon/sstit_acc.png") no-repeat center center / cover;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/* 헤더 */
.wp_wrap header {
    position: fixed;
    top: 0;
    left: 0;
    right: 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;
    gap: 10px;
}
.wp_wrap header .h_inner .h_lt{}
.wp_wrap header .h_inner .h_lt .h_logo{
    min-width: 250px;
}





.wp_wrap header .h_inner .h_rt{
    display: flex;
    align-items: center;
    gap: 30px;
}
.wp_wrap header .h_inner .h_rt .gnb{
    display: flex;
    align-items: center;
}
.wp_wrap header .h_inner .h_rt .gnb .m_list{
    position: relative;
    height: 100px;
    min-width: 150px;
}
.wp_wrap header .h_inner .h_rt .gnb .m_list>a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wp_wrap header .h_inner .h_rt .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 .h_rt .gnb .m_list .sub_mnu .sub_m_list>a{    
    font-family: var(--font-pre400);
    font-size: 18px;
    display: block;
    padding: 10px 0;
    width: 100%;
    height: 100%;
}
.wp_wrap header .h_inner .h_rt .h_login{
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp_wrap header .h_inner .h_rt .h_login li{}
.wp_wrap header .h_inner .h_rt .h_login li a{
    font-size: 14px;
    color: #fff;
}

/* 모바일 메뉴 */
.wp_wrap header .h_inner .h_rt .mopen{
    display: none;
}
.wp_wrap .mo_mnu{
    display: none;
}



.wp_wrap header .h_bg{
    display: none;
    background: rgba(242, 242, 242, 0.9);
    height: 290px;    
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}
.wp_wrap header .h_bg .banner_box{    
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap header .h_bg .banner_box .notice_banner{
    position: relative;
    background: #fff;
    display: flex;
    padding: 30px 0;
    width: 40%;
    border-radius: 10px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.wp_wrap header .h_bg .banner_box .notice_banner .left{
    padding: 20px 15px 20px 20px;
    border-right: 1px solid #ddd;
}
.wp_wrap header .h_bg .banner_box .notice_banner .left p{
    font-size: 18px;
}
.wp_wrap header .h_bg .banner_box .notice_banner .right{
    padding: 20px 15px;
}
.wp_wrap header .h_bg .banner_box .notice_banner .right .r_tit{ 
    font-size: 17px;
    font-family: var(--font-pre600);
    margin-bottom: 10px;
}
.wp_wrap header .h_bg .banner_box .notice_banner .right .r_date{
    font-size: 15px;
    color: #BBBBBB;
    font-family: var(--font-pre200);
    margin-left: 10px;
}
.wp_wrap header .h_bg .banner_box .notice_banner .right .r_des{ 
    font-size: 15px;
}



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








/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
/* 푸터 */
.wp_wrap footer {
    background: #333333;
    padding: 60px 0;
}
.wp_wrap footer .f_inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
/* .priv {
	display: flex;
	position: relative;
}
.priv a {
	font-size: 16px;
    color: #ccc;
    display: flex;
	padding-right: 10px;	  
    margin-bottom: 15px;
} */


.wp_wrap footer .f_inner .f_info .priv{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.wp_wrap footer .f_inner .f_info .priv .priv_li{}
.wp_wrap footer .f_inner .f_info .priv .priv_li button{
    background: transparent;
    font-family: var(--font-pre400);
	font-size: 16px;
    color: #ccc;
}
.wp_wrap footer .f_inner .f_info>ul{
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;

}
.wp_wrap footer .f_inner .f_info>ul>li{
    margin-right: 5px;
    font-family: var(--font-pre200);
}

.wp_wrap .f_info ul li,
.wp_wrap .f_info p {
    font-size: 15px;
    font-weight: 200;
    color: #DDDDDD;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* 픽스배너메뉴 */
.wp_wrap .fix_banner{
    position: fixed;
    top: 60%;
    left: 75px;
    transform: translateY(-60%);
    z-index: 999;
}

.wp_wrap .fix_banner .fbanner_itms .fbanner_itm{
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 135px;
}
.wp_wrap .fix_banner .fbanner_itms .fbanner_itm p{
    font-size: 15px;
    color: #fff;
    margin-bottom: 18px;
}
.wp_wrap .fix_banner .fbanner_itms .itm01{
    background: rgba(243, 187, 14, 0.84);
}
.wp_wrap .fix_banner .fbanner_itms .itm02{
    background: rgba(79, 180, 166, 0.77);
}
.wp_wrap .fix_banner .fbanner_itms .itm03{
    background: rgba(226, 72, 109, 0.83);
}







/* 메인 슬라이드*/
.wp_wrap .main_visual {
    position: relative;
}
.wp_wrap .main_visual .main_slider .slide{
    position: relative;
    width: 100%;
    height: 100vh;
}
.wp_wrap .main_visual .main_slider .slide .img_bg.item01{
    background: url("../img/main/mainSlide01_01.jpg") no-repeat center center / cover;
}
.wp_wrap .main_visual .main_slider .slide .img_bg.item02{
    background: url(../img/main/mainSlide02_1.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.08);    
    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: rgba(0, 0, 0, 0.08);
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box{
    text-align: right;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .top_tit{
    font-size: 40px;
	font-weight:bold;
    font-family: var(--font-pre300);     
    transform:translateY(20%);
    opacity: 0;
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .mid_tit{
    font-size: 70px;
    font-family: var(--font-pre700);
        transform:translateY(20%);
    opacity: 0;
    margin-bottom: 10px;
}
.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .bot_tit{
    font-size: 25px;
    font-family: var(--font-pre200);    
    transform:translateY(20%);
    opacity: 0;
}



.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .top_tit{
    opacity: 1; 
    transform:translateY(0);
    transition: 0.8s;
}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .mid_tit{
    opacity: 1; 
    transform:translateY(0);
    transition: 0.8s 0.8s;
}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .bot_tit{   
    opacity: 1; 
    transform:translateY(0);
    transition: 0.8s 1.6s;
}


/*  메인 슬라이드 버튼  */
.wp_wrap .main_visual .main_slider .slick-dots{
    position: absolute;
    top: 50%;
    right: 5%;
    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 #fff;
    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: #fff;
}


/* 메인 스크롤 아이콘 */
.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 - s_ma_bsns */
.wp_wrap .s_ma_bsns .sec_tit02{
    text-align: center;
    margin-bottom: 55px;
}

.wp_wrap .s_ma_bsns .bsns_itms{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.wp_wrap .s_ma_bsns .bsns_itms .itm_li{
    display: block;
    width: 32%;
    cursor: pointer;
}

.wp_wrap .s_ma_bsns .bsns_itms .itm_li .img_box{
    border-radius: 20px;
    height: 280px;
    overflow: hidden;
}

.wp_wrap .s_ma_bsns .bsns_itms .itm_li .img_box>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    transform: scale(1);
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li:hover .img_box>img{
    transform: scale(1.04);
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li .txt_box{
    padding: 20px 15px;
    text-align: center;
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li .txt_box .itm_name{
    font-size: 20px;
    color: #1D1D1D;
    margin-bottom: 20px;
    font-family: var(--font-pre500);
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li .txt_box .itm_desc{
    font-size: 16px;
    color: #5D5D5D;
}


/* sec02 - announce */

.wp_wrap .s_announce{
    background: #F7F7F7;
}
.wp_wrap .s_announce .announce_inner{
    display: flex;
    justify-content: space-between;
}
.wp_wrap .s_announce .announce_inner .left,
.wp_wrap .s_announce .announce_inner .right{
    width: 48%;
}
.wp_wrap .s_announce .announce_inner .right .tit_box{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}
.wp_wrap .s_announce .announce_inner .left .tit_box{
    position: relative;
    margin-bottom: 25px;
}
.wp_wrap .s_announce .announce_inner .tit_box .press_arrow{
    position: absolute;
    background: transparent;
}


.wp_wrap .s_announce .announce_inner .tit_box .press_lt{
    right: 40px;
    top: 5px;
}
.wp_wrap .s_announce .announce_inner .tit_box .press_rt{
    right: 0;
    top: 5px;
}

.wp_wrap .s_announce .more>a{
    font-size: 18px;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slick-slide {
    margin: 0 10px;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slick-list {
    margin: 0 -10px;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box{
    border-radius: 20px;
    overflow: hidden;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box>img{
    width: 100%;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .txt_box{
    padding: 15px 10px;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm  .txt_box .news_tit{
    font-size: 20px;
    font-family: var(--font-pre600);
    margin-bottom: 20px;
    height: 47px;
}
.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm  .txt_box .news_desc{
    font-size: 18px;
    color: #5d5d5d;
}



.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box{
    background: #fff;
    border-radius: 20px;
    padding: 50px 25px 50px 35px;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li::before{
    position: absolute;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);    
    content: "";
    width: 5px;
    height: 5px;
    background: #dedede;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li {
    position: relative;
    margin-bottom: 15px;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li:last-child{
    margin-bottom: 0;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li a{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li>a>p {  
    font-size: 20px;
    font-family: var(--font-pre200);
    color: #616161;
    position: relative;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li>a span {
    display: block;
    font-size: 16px;
    font-family: var(--font-pre200);
    color: #949494;
}





/* sec03 - shop */
.wp_wrap .s_shop .sec_tit01{
    margin-bottom: 5px;
}
.wp_wrap .s_shop .shop_desc{
    font-size: 17px;
    margin-bottom: 35px;
}
.wp_wrap .s_shop .shop_items{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.wp_wrap .s_shop .shop_items .shop_itm {
    display: block;
    width: 100%;
    overflow: hidden;
}

.wp_wrap .s_shop .shop_items .shop_itm .img_box{
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
}
.wp_wrap .s_shop .shop_items .shop_itm .img_box>img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.wp_wrap .s_shop .shop_items .shop_itm .txt_box{
    width: 95%;
    margin: 0 auto;
}
.wp_wrap .s_shop .shop_items .shop_itm .shop_itm_name{
    font-size:26px;
    font-family: var(--font-pre600);
    margin-bottom: 10px;
}
.wp_wrap .s_shop .shop_items .shop_itm .shop_itm_desc{
    font-size: 18px;
    color: #8f8f8f;
}
.wp_wrap .s_shop .more{
    position: relative;
    text-align: center;
}
.wp_wrap .s_shop .more::after{
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: 40px;
    background: #707070;
}
.wp_wrap .s_shop .more a{
    font-size: 18px;
    
}



/* sec04 - notice */
.wp_wrap .s_notice {
    background: #F7F7F7;
}
.wp_wrap .s_notice .notice_inner {
    display: flex;
    gap: 60px;
}
.wp_wrap .notice_inner .left {
    width: 20%
}
.wp_wrap .notice_inner .right {
    width: 75%;
}
.wp_wrap .s_notice .notice_inner .left .notice_desc {
    font-size: 17px;
    margin-bottom: 20px;
}
.wp_wrap .s_notice .notice_inner .left .more>a {
    display: block;
    color: #000;
    text-align: left;
    font-size: 18px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider {
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 1900px;
    overflow-x: hidden;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slick-slide {
    margin: 0 10px;
}
.wp_wrap .notice_inner .right .notice_slider .slick-list {
    margin: 0 -10px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slide .notice_itm_click {
    /* width: 300px; */
    height: 254px;
    display: block;
    padding: 50px 30px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slide {
    background: #fff;
    border-radius: 30px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slide .notice_itm_click .slide_inner .no_tit {
    font-size: 24px;
    font-family: var(--font-pre600);
    margin-bottom: 30px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slide .notice_itm_click .slide_inner .no_des {
    font-size: 17px;
    margin-bottom: 35px;
    color: #5D5D5D;
    min-height: 111px;
}
.wp_wrap .s_notice .notice_inner .right .notice_slider .slide .notice_itm_click .slide_inner .no_date {
    font-size: 17px;
    text-align: right;
    color: #BBBBBB;
}


.wp_wrap .s_notice .notice_inner .right .notice_slider .slide.on{
    background: #4FB4A6;
}

.wp_wrap .s_notice .notice_inner .right .notice_slider .slide.on .notice_itm_click .slide_inner .no_tit{
    color: #fff;
}

.wp_wrap .s_notice .notice_inner .right .notice_slider .slide.on .notice_itm_click .slide_inner .no_des{
    color: #fcfcfc;
} 

.wp_wrap .s_notice .notice_inner .right .notice_slider .slide.on .notice_itm_click .slide_inner .no_date{
    color: #eee;
}


/* sec05 - gallery */
.wp_wrap .s_gallery .sec_tit01{
    margin-bottom: 35px;
}

.wp_wrap .s_gallery .gallery_desc{
    font-size: 17px;
    margin-bottom: 35px;
}
.wp_wrap .s_gallery .gallery_items{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.wp_wrap .s_gallery .gallery_itm{
    display: block;
}

.wp_wrap .s_gallery .gallery_itm .img_box{
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.wp_wrap .s_gallery .gallery_itm .img_box>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.wp_wrap .s_gallery .gallery_itm .txt_box{
    width: 95%;
    margin: 0 auto;
}
.wp_wrap .s_gallery .gallery_itm .txt_box .gallery_itm_name{
    font-size: 26px;
    margin-bottom: 10px;
    font-family: var(--font-pre600);
}
.wp_wrap .s_gallery .gallery_itm .txt_box .gallery_itm_desc{
    font-size: 18px;
    color: #8f8f8f;
}

.wp_wrap .s_gallery .more{
    position: relative;
    text-align: center;
}
.wp_wrap .s_gallery .more::after{
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: 40px;
    background: #707070;
}
.wp_wrap .s_gallery .more a{
    font-size: 18px;    
}


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




/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
/* sub 01 - 01 */
.wp_wrap .sub_main{
    position: relative;
    width: 100%;
    height: 350px;
}
.wp_wrap .sub_main01{
    background: url('../img/sub/sub_topBg1_1.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main02{
    background: url('../img/sub/sub_topBg2.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main03{
    background: url('../img/sub/sub_topBg3.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main04{
    background: url('../img/sub/sub_topBg4.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main05{
    background: url('../img/sub/sub_topBg5.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main06{
    background: url('../img/sub/sub_topBg6.jpg') no-repeat center center / cover;
}
.wp_wrap .sub_main07{
    background: url('../img/sub/sub_topBg7.jpg') no-repeat center center / cover;
}

.wp_wrap .sub_main .shadow{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);

}
.wp_wrap .sub_main .sub_main_inner{
    position: absolute;
    top: 0;
    left: calc(50% - 600px);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.wp_wrap .sub_main .sub_main_inner .txt_box{
    width: 100%;
}
.wp_wrap .sub_main .sub_main_inner .txt_box .sm_tit{
    font-size: 30px;
    color: #fff;
    margin-bottom: 5px;
    opacity: 0;
    transform:translateY(40%);
}
.wp_wrap .sub_main .sub_main_inner .txt_box .sm_des{
    font-size: 50px;
    font-family: var(--font-pre600);
    color: #fff;
    opacity: 0;
    transform:translateY(40%);
}
.wp_wrap .sub_main.on .sub_main_inner .txt_box .sm_tit{
    opacity: 1;
    transform:translateY(0);
    transition: 0.7s;
}
.wp_wrap .sub_main.on .sub_main_inner .txt_box .sm_des{
    opacity: 1;
    transform:translateY(0);
    transition: 0.7s 0.7s;
}
















/* mid_mnu */
.wp_wrap #mid_mnu{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    border-bottom: 1px solid #DFDFDF;
    background: #fff;
    z-index: 999;
}
.wp_wrap #mid_mnu .menu_inner{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    height: 80px;
}
.wp_wrap #mid_mnu .menu_inner>div{
    position: relative;
}
.wp_wrap #mid_mnu .menu_inner>div::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 20px;
    background: #ddd;
}
.wp_wrap #mid_mnu .menu_inner .first{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap #mid_mnu .menu_inner .first a{
    display: block;
    text-align: center;
    /* padding: 31px 0; */
    min-width: 80px;
}
.wp_wrap #mid_mnu .menu_inner .first a i{
    font-size: 18px;
    color: #000;
}
.wp_wrap #mid_mnu .menu_inner .second{
    min-width: 200px;
    max-width: 200px;
}
.wp_wrap #mid_mnu .menu_inner .third{
    min-width: 310px;
    max-width: 310px;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box{
    position: relative;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .m_top{
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    height: 80px;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .m_top p{
    font-size: 18px;
    font-weight: 500;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .m_top i{    
    font-size: 16px;
    transform: rotate(0deg);
    transition: 0.3s;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box.on .m_top i{ 
    transform: rotate(180deg);
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .sub_mmnu{
    position: absolute;
    top: 80px;
    left: -1px;
    background: #fff;
    width: calc(100% + 1px);
    border:1px solid #ddd;
    display: none;
    z-index: 99;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .sub_mmnu>li>a {
    display: block;
    padding: 13px 20px;
    color: #888;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
.wp_wrap #mid_mnu .menu_inner .mnu_box .sub_mmnu>li:last-child>a{
    border-bottom: none;
}








/* 서브공통 */
.wp_wrap .sub_page section{
    overflow: hidden;
}
/* sub 01 -01 */
.wp_wrap .sub_page .sub_sec_tit{
    font-size: 60px;
    font-family: var(--font-pre600);
    text-align: center;
    margin-bottom: 110px;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner{
    display: flex;
    align-items: center;
    gap: 100px;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left{
    width: 55%;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .main_tit {
    font-size: 40px;
    margin-bottom: 35px;
    font-family: var(--font-pre200);
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .main_tit span{
    font-family: var(--font-pre700);
}
.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .desc {
    font-size: 20px;
    margin-bottom: 30px;
    font-family: var(--font-pre200);
    line-height: 1.4;
    color: #2E2E2E;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .desc.mb9 {
    margin-bottom: 40px;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .ceo_name {
    font-size: 20px;
    font-family: var(--font-pre200);
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .left .txt_box .ceo_name span {
    font-family: var(--font-pre500);
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .right .img_box {
    position: relative;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    width: 155%;
    height: 684px;
}

.wp_wrap .sub_page .sub_greeting .greeting_inner .right .img_box::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.wp_wrap .sub_page .sub_greeting .greeting_inner .right .img_box:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}


.wp_wrap .sub_page .sub_greeting .greeting_inner .right .img_box img {
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    object-fit: cover;
}



/* sub 01 - 02 */
.wp_wrap .sub_page .sub_value .sub_sec_tit {
    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 .sub_page .sub_value .sub_sec_tit::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #ddd;
}

.wp_wrap .sub_page .sub_value .value_inner {
    /* 
    display: grid;
    place-items: center;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; 
    */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;     
}
.wp_wrap .sub_page .sub_value .value_inner .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wp_wrap .sub_page .sub_value .value_inner .item .size {
    width: 285px;
    height: 280px;
    margin-bottom: 15px;
}
.wp_wrap .sub_page .sub_value .value_inner .item .size .w100 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
}
.wp_wrap .sub_page .sub_value .value_inner .item:nth-child(odd) {
    padding-top: 40px;
}

.wp_wrap .sub_page .sub_value .value_inner .item:nth-child(even) {
    padding-bottom: 40px;
}
.wp_wrap .sub_page .sub_value .value_inner .item .txt .ko_tit {
    font-size: 17px;
    color: #171717;
}

.wp_wrap .sub_page .sub_value .value_inner .item .txt .eng_tit {
    font-size: 15px;
    color: #949494;
}



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


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

.wp_wrap .sub_top {
    position: relative;
}
.wp_wrap .sub_top .img_bg {
    height: 360px;
    overflow: hidden;
}
.wp_wrap .sub_top .img_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap .sub_top.on .img_bg img {
    transform: scale(1);
}
.wp_wrap .sub_top .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 107, 77, 0.17);
    transform: scaleX(0);
    transition: 1.5s;
}
.wp_wrap .sub_top.on .shadow {
    transform: scaleX(1);
}
.wp_wrap .sub_top .sub_top_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: 4s;
}


.wp_wrap .sub_top .st_mnu{
    position: sticky;
    top: 0;
    border-bottom: 1px solid #DDDDDD;
    background: #fff;
    z-index: 999;
}
.wp_wrap .sub_top .st_mnu .inner_box{
    display: flex;
    height: 60px;
}
.wp_wrap .sub_top .st_mnu .inner_box>div{
    position: relative;
}
.wp_wrap .sub_top .st_mnu .inner_box>div::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 20px;
    background: rgba(216, 216, 216, 0.5);
}
.wp_wrap .sub_top .st_mnu .inner_box .first{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .sub_top .st_mnu .inner_box .first a {
    display: block;
    text-align: center;
    min-width: 60px;
}
.wp_wrap .sub_top .st_mnu .inner_box .first a i {
    font-size: 18px;
    color: #000;
}

.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .show {
    padding: 0 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    height: 60px;
}
.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .show >p{
    font-size: 16px;
    font-family: var(--font-pre500);
    color: #000;
}
.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .show >i{
    font-size: 15px;
    color: #000;
}
.wp_wrap .sub_top .st_mnu .inner_box .second{
    min-width: 220px;
}
.wp_wrap .sub_top .st_mnu .inner_box .third{
    min-width: 300px;
}

.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .hide {
    position: absolute;
    top: 80px;
    left: -1px;
    background: #fff;
    width: calc(100% + 1px);
    border: 1px solid #ddd;
    display: none;
    z-index: 99;
}
.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .hide>li>a {
    display: block;
    padding: 13px 20px;
    color: #888;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
.wp_wrap .sub_top .st_mnu .inner_box .mnu_box .hide>li:last-child>a {
    border-bottom: none;
}









/* 01 - 01.운영법인 */
.wp_wrap .s_operating1 .stit_box,
.wp_wrap .s_organ1 .stit_box,
.wp_wrap .s_location1 .stit_box,
.wp_wrap .s_faciliy1 .stit_box,
.wp_wrap .s_faciliy2 .stit_box,
.wp_wrap .s_faciliy3 .stit_box,
.wp_wrap .s_revenue1 .stit_box,
.wp_wrap .s_use_info1 .stit_box,
.wp_wrap .s_boost1 .stit_box,
.wp_wrap .s_volunteer1 .stit_box,
.wp_wrap .s_notice1 .stit_box,
.wp_wrap .s_recruit1 .stit_box,
.wp_wrap .s_activity1 .stit_box,
.wp_wrap .s_homemade1 .stit_box,
.wp_wrap .s_salvation1 .stit_box,
.wp_wrap .s_group1 .stit_box,
.wp_wrap .s_member .stit_box,
.wp_wrap .s_shop .stit_box{
    margin-bottom: 40px;
}
.wp_wrap .s_job_rhbt1 .stit_box{
    margin-bottom: 60px;
}
.wp_wrap .s_operating1 .sstit_box,
.wp_wrap .s_faciliy1 .sstit_box,
.wp_wrap .s_faciliy2 .sstit_box,
.wp_wrap .s_faciliy3 .sstit_box,
.wp_wrap .s_revenue1 .sstit_box,
.wp_wrap .s_use_info1 .sstit_box,
.wp_wrap .s_boost1 .sstit_box,
.wp_wrap .s_volunteer1 .sstit_box{
    margin-bottom: 30px;
}

.wp_wrap .s_operating1 .cont_box,
.wp_wrap .s_revenue1 .cont_box,
.wp_wrap .s_use_info1 .cont_box,
.wp_wrap .s_volunteer1 .cont_box{
    display: flex;
    flex-direction: column;
    gap: 85px;
}
.wp_wrap .s_operating1 .cont_box .contents,
.wp_wrap .s_faciliy1 .cont_box .contents,
.wp_wrap .s_revenue1 .cont_box .contents,
.wp_wrap .s_use_info1 .cont_box .contents{
    padding: 0 35px;
}
.wp_wrap .s_boost1 .cont_box .contents{
    padding: 0  0 0 35px;
}
.wp_wrap .s_operating1 .cont_box .contents ul,
.wp_wrap .s_faciliy1 .cont_box .contents ul,
.wp_wrap .s_use_info1 .cont_box .contents>ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}
.wp_wrap .s_operating1 .cont_box .contents ul li,
.wp_wrap .s_faciliy1 .cont_box .contents ul li,
.wp_wrap .s_use_info1 .cont_box .contents>ul li,
.wp_wrap .s_boost1 .cont_box .contents ul li,
.wp_wrap .s_volunteer1 .cont_box .contents ul li{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.wp_wrap .s_operating1 .cont_box .contents ul li .ques,
.wp_wrap .s_faciliy1 .cont_box .contents ul li .ques,
.wp_wrap .s_use_info1 .cont_box .contents>ul li .ques,
.wp_wrap .s_boost1 .cont_box .contents ul li .ques,
.wp_wrap .s_volunteer1 .cont_box .contents ul li .ques{
    font-size: 20px;
    font-family: var(--font-pre500);
    color: #fff;
    background: #AAAAAA;
    width: 130px;
    min-width: 130px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .s_operating1 .cont_box .contents ul li .answ,
.wp_wrap .s_faciliy1 .cont_box .contents ul li .answ,
.wp_wrap .s_use_info1 .cont_box .contents>ul li .answ,
.wp_wrap .s_boost1 .cont_box .contents ul li .answ,
.wp_wrap .s_volunteer1 .cont_box .contents ul li .answ{
    padding-top: 9px;
}
.wp_wrap .s_operating1 .cont_box .contents ul li .answ,
.wp_wrap .s_operating1 .cont_box .contents ul li .answ a,
.wp_wrap .s_faciliy1 .cont_box .contents ul li .answ,
.wp_wrap .s_faciliy1 .cont_box .contents ul li .answ a,
.wp_wrap .s_use_info1 .cont_box .contents>ul li .answ,
.wp_wrap .s_boost1 .cont_box .contents ul li .answ,
.wp_wrap .s_volunteer1 .cont_box .contents ul li .answ{
    font-size: 20px;
    color: #000000;
}
.wp_wrap .s_operating1 .cont_box .destination{
    background: #F1F1F1;
    border-radius: 10px;
    padding: 30px;
}
.wp_wrap .s_operating1 .cont_box .destination p{
    font-size: 20px;
    line-height: 1.3;
}



/* 01 - 02.인사말 */
.wp_wrap .s_greeting1{}
.wp_wrap .s_greeting1 .inner_box{
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.wp_wrap .s_greeting1 .txt_area {
    min-width: 50%;
    width: 50%;
}
.wp_wrap .s_greeting1 .txt_area .txt_box{}
.wp_wrap .s_greeting1 .txt_area .txt_box .tit{
    font-size: 36px;
    font-family: var(--font-pre700);
    margin-bottom: 30px;
    line-height: 1.25;
}
.wp_wrap .s_greeting1 .txt_area .txt_box .tit span{
    color: #00937F;
}
.wp_wrap .s_greeting1 .txt_area .txt_box .desc_box{
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.wp_wrap .s_greeting1 .txt_area .txt_box .desc_box>p{
    color: #707070;
    font-size: 20px;
    line-height: 1.4;
}
.wp_wrap .s_greeting1 .txt_area .txt_box .txt{
    font-size: 26px;
    font-family: var(--font-pre800);
    color: #000;
}
.wp_wrap .s_greeting1 .img_area{
    position: relative;
}
.wp_wrap .s_greeting1 .img_area .img_box{
    width: 905px;
    height: 480px;
}
.wp_wrap .s_greeting1 .img_area .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* 01 - 03.조직도 */
.wp_wrap .s_organ1 .cont_box{}
.wp_wrap .s_organ1 .cont_box .img_box{
    width: 100%;
}
.wp_wrap .s_organ1 .cont_box .img_box img{
    margin: 0 auto;
}




/* 01 - 04.시설현황 */
.wp_wrap .s_faciliy1 {}
.wp_wrap .s_faciliy1 .cont_box .contents>ul{
    margin-bottom: 40px;
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms .work_place_li{
    position: relative;
    width: 100%;
    height: 240px;
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms .work_place_li .img_box{
    width: 100%;
    height: 100%;
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms .work_place_li .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms .work_place_li .txt_box{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.48);
}
.wp_wrap .s_faciliy1 .cont_box .contents .work_place_itms .work_place_li .txt_box p{
    font-size: 20px;
    color: #fff;
    padding: 0 20px;
}



.wp_wrap .s_faciliy2 {
    background: #F5F5F5;
}
.wp_wrap .s_faciliy2 .cont_box{}
.wp_wrap .s_faciliy2 .cont_box .contents{}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box{}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm::before{
    content: "";
    position: absolute;
    top: 23%;
    left: 16px;
    width: 1px;
    height: 68%;
    border-left: 2px dotted #BBBBBB;

}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li{
    display: flex;
    /* align-items: flex-start; */
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .year{}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .year p{
    position: relative;
    font-size: 50px;
    font-family: var(--font-paper700);
    color: #BBBBBB;
    padding-left: 60px;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .year p::before{
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border: 3px solid #B2CFCB;
    border-radius: 50%;   
    background: #F5F5F5;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .year p::after{
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    background: #00937F;
    border-radius: 50%;
    
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms{
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms .his_li{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms .his_li .month{}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms .his_li .month p{
    font-size: 24px;
    font-family: var(--font-paper700);
    color: #00937F;
    min-width: 250px;
    text-align: right;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms .his_li .txt {
    flex: 1;
}
.wp_wrap .s_faciliy2 .cont_box .contents .history_box .his_itm .his_li .li_itms .his_li .txt p{
    font-size: 20px;
    line-height: 1.3;
}


.wp_wrap .s_faciliy3{}
.wp_wrap .s_faciliy3 .cont_box{}
.wp_wrap .s_faciliy3 .cont_box .cont_li{}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents{
    display: flex;
    align-items: center;
    gap: 70px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .img_box{
    min-width: 270px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .img_box img{}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box{
    display: flex;
    flex-direction: column;
    gap: 115px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li{}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .tit{
    font-size: 30px;
    font-family: var(--font-pre600);
    color: #00937F;
    margin-bottom: 10px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .tit span{
    display: inline-block;
    font-size: 20px;
    font-family: var(--font-paper600);
    margin-left: 10px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .desc_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .desc_box h3{
    font-size: 18px;
    line-height: 1.3;
    text-indent: -13px;
    margin-left: 13px;
/*	font-weight: bold;*/
	color: #0da18e;
}
.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .desc_box p{
    font-size: 16px;
    line-height: 1.3;
/*    text-indent: -13px;*/
    margin-left: 13px;
	position: relative;
	padding-left: 10px;
}

.wp_wrap .s_faciliy3 .cont_box .cont_li .contents .txt_box li .desc_box p::before {
	content: '-';
	position: absolute;
	left: 2px;
	
}



/* 01 - 05.오시는길 */
.wp_wrap .s_location1 .cont_box{}
.wp_wrap .s_location1 .cont_box .adrs{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}
.wp_wrap .s_location1 .cont_box .adrs i{
    color: #C7C7C7;
    font-size: 25px;
}
.wp_wrap .s_location1 .cont_box .map_box {
    width: 100%;
    height: 470px;
    border: 1px solid #ddd;
}
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap .wrap_map{
    width: 100%;
    height: 100%;
}
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap .wrap_controllers,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap .wrap_btn_zoom,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap_landing .border1,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap_landing .border2,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap_landing .border3,
.wp_wrap .s_location1 .cont_box .map_box .root_daum_roughmap_landing .border4  {
    display: none;
}





/* 02 - 01.직업재활서비스 */
.wp_wrap .s_job_rhbt1 .cont_box{}
.wp_wrap .s_job_rhbt1 .cont_box ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 10px;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li .cic_box{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
}

.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(1) .cic_box{
    background: #8CD3C9;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(2) .cic_box{
    background: #4FB4A6;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(3) .cic_box{
    background: #2B8A7D;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(4) .cic_box{
    background: #4FB4A6;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(5) .cic_box{
    background: #2B8A7D;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li:nth-child(6) .cic_box{
    background: #8CD3C9;
}





.wp_wrap .s_job_rhbt1 .cont_box ul li .cic_box img{}
.wp_wrap .s_job_rhbt1 .cont_box ul li .txt_box{}
.wp_wrap .s_job_rhbt1 .cont_box ul li .txt_box .tit{
    font-size: 24px;
    font-family: var(--font-pre600);
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}
.wp_wrap .s_job_rhbt1 .cont_box ul li .txt_box .desc{
    font-size: 20px;
    color: #000;
    line-height: 1.3;
    text-align: center;
}




/* 02 - 02.수익사업 */
.wp_wrap .s_revenue1 .cont_box .contents .desc_box{
    margin-bottom: 40px;
}
.wp_wrap .s_revenue1 .cont_box .contents .desc_box>p{
    font-size: 20px;
    line-height: 1.3;
    color: #000;
}
.wp_wrap .s_revenue1 .cont_box .contents .detail_box{
    background: #F1F1F1;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}
.wp_wrap .s_revenue1 .cont_box .contents .detail_box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .s_revenue1 .cont_box .contents .detail_box p{
    font-size: 20px;
    color: #000;
}
.wp_wrap .s_revenue1 .cont_box .contents .detail_box p i{
    font-size: 20px;
    margin-right: 5px;
}
.wp_wrap .s_revenue1 .cont_box .contents .detail_box p span{
    font-family: var(--font-pre600);
}
.wp_wrap .s_revenue1 .cont_box .contents .img_itms{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
.wp_wrap .s_revenue1 .cont_box .contents .img_itms .img_box{
    width: 100%;
    height: 240px;
}
.wp_wrap .s_revenue1 .cont_box .contents .img_itms .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #4FB4A6;
}






/* 02 - 03.이용안내 */
.wp_wrap .s_use_info1{}
.wp_wrap .s_use_info1 .sstit_box{}
.wp_wrap .s_use_info1 .contents .desc_box{
    width: 100%;
    background: #F1F1F1;
    border-radius: 10px;
    padding: 30px;
}
.wp_wrap .s_use_info1 .contents .desc_box ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .s_use_info1 .contents .desc_box ul li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    line-height: 1.3;
    color: #000;
}
.wp_wrap .s_use_info1 .contents .desc_box ul li .num{
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #00937F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-paper700);
    font-size: 16px;
    color: #fff;
}
.wp_wrap .s_use_info1 .contents .step_box,
.wp_wrap .s_volunteer1 .contents .step_box {
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px !important;
}
.wp_wrap .s_use_info1 .contents .step_box li,
.wp_wrap .s_volunteer1 .contents .step_box li{
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 20px;
}
.wp_wrap .s_use_info1 .contents .step_box li .cic_box,
.wp_wrap .s_volunteer1 .contents .step_box li .cic_box{
    width: 195px;
    height: 195px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.wp_wrap .s_use_info1 .contents .step_box li:nth-child(1) .cic_box{
    background: #00937F;
}
.wp_wrap .s_use_info1 .contents .step_box li:nth-child(3) .cic_box,
.wp_wrap .s_volunteer1 .contents .step_box li:nth-child(3) .cic_box,
.wp_wrap .s_volunteer1 .contents .step_box li:nth-child(7) .cic_box{
    background: #4FB4A6;
}
.wp_wrap .s_use_info1 .contents .step_box li:nth-child(5) .cic_box,
.wp_wrap .s_volunteer1 .contents .step_box li:nth-child(1) .cic_box,
.wp_wrap .s_volunteer1 .contents .step_box li:nth-child(5) .cic_box{
    background: #00937F;
}
.wp_wrap .s_use_info1 .contents .step_box li .cic_box .time{
    color: #fff;
    font-size: 20px;
    font-family: var(--font-pre600);
}
.wp_wrap .s_use_info1 .contents .step_box li>p,
.wp_wrap .s_volunteer1 .contents .step_box li>p{
    text-align: center;
    font-size: 20px;
    font-family: var(--font-pre600);
    line-height: 1.3;
}
.wp_wrap .s_use_info1 .contents .step_box li.step_arr,
.wp_wrap .s_volunteer1 .contents .step_box li.step_arr {
    top: 80px;
    position: relative;
}
.wp_wrap .s_use_info1 .contents .course_box {
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap:35px !important;
}
.wp_wrap .s_use_info1 .contents .course_box li{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap .s_use_info1 .contents .course_box li .cic_box{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E47F7C;
}
.wp_wrap .s_use_info1 .contents .course_box li.gr .cic_box{
    background: #54BEB0;
}
.wp_wrap .s_use_info1 .contents .course_box li .cic_box img{}
.wp_wrap .s_use_info1 .contents .course_box li .txt_box{
    width: 100%;
}
.wp_wrap .s_use_info1 .contents .course_box li .txt_box p{
    text-align: center;
    font-size: 20px;
    font-family: var(--font-pre600);
    line-height: 1.3;
    word-break: break-all;
}
.wp_wrap .s_use_info1 .contents .course_box li.step_arr{
    top: 55px;
    position: relative;
}
.wp_wrap .s_use_info1 .contents .course_box li.step_arr img{}











/* 03 - 01.후원 */
.wp_wrap .s_boost1{}
.wp_wrap .s_boost1 .contents,
.wp_wrap .s_volunteer1 .contents{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap .s_boost1 .contents .lt,
.wp_wrap .s_volunteer1 .contents .lt{
    width: 50%;
}
.wp_wrap .s_boost1 .contents .lt .txt,
.wp_wrap .s_volunteer1 .contents .lt .txt{
    font-size: 20px;
    color: #000000;
    line-height: 1.33;
    margin-bottom: 30px;
}
.wp_wrap .s_boost1 .cont_box .contents ul,
.wp_wrap .s_volunteer1 .cont_box .contents .lt ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.wp_wrap .s_boost1 .cont_box .contents ul li,
.wp_wrap .s_volunteer1 .cont_box .contents ul li{
    line-height: 1.33;
}
.wp_wrap .s_boost1 .contents .lt .tel,
.wp_wrap .s_volunteer1 .contents .lt .tel{}


.wp_wrap .s_boost1 .contents .lt .tel a,
.wp_wrap .s_volunteer1 .contents .lt .tel a{
    font-size: 20px;
    font-family: var(--font-pre700);
    border: 1px solid #4FB4A6;
    border-radius: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    max-width: 310px;
    padding: 10px 15px;
    gap: 10px;
}
.wp_wrap .s_boost1 .contents .lt .tel a span,
.wp_wrap .s_volunteer1 .contents .lt .tel a span{
    font-size: 16px;
    font-family: var(--font-pre400);
}
.wp_wrap .s_boost1 .contents .lt .tel a .img_box,
.wp_wrap .s_volunteer1 .contents .lt .tel a .img_box{
    margin-right: 10px;
}
.wp_wrap .s_boost1 .contents .lt .tel a .img_box img{}


.wp_wrap .s_boost1 .contents .rt,
.wp_wrap .s_volunteer1 .contents .rt{
    width: 50%;
}

.wp_wrap .s_boost1 .contents .rt .img_box,
.wp_wrap .s_volunteer1 .contents .rt .img_box{
    max-width: 550px;
    margin-left: auto;
    height: 343px;
}

.wp_wrap .s_boost1 .contents .rt .img_box img,
.wp_wrap .s_volunteer1 .contents .rt .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 03 - 02.자원봉사 */
.wp_wrap .s_volunteer1{}
.wp_wrap .s_volunteer1 .contents .step_box {
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px !important;
}




/* 05 - 01.단체주문의뢰서 */
.wp_wrap .s_group1{}
.wp_wrap .s_group1 .cont_box{}
.wp_wrap .s_group1 .cont_box .form_in{
    background: #f7f7f7;
    padding: 30px;
    display: flex;
    gap: 50px;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area,
.wp_wrap .s_group1 .cont_box .form_in .img_area{
    width: 50%;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box .ques{
    font-size: 16px;
    font-family: var(--font-pre500);
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box .answ{
    width: 100%;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box .answ input,
.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box .answ textarea{
    width: 100%;
    font-family: var(--font-pre400);
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    padding: 10px 15px;
}

.wp_wrap .s_group1 .cont_box .form_in .ip_area .ip_box .answ textarea{
    min-height: 200px;
    resize: none;
}

.wp_wrap .s_group1 .cont_box .form_in .ip_area .agr_box{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .agr_box input[type="checkbox"]{}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .agr_box input[type="checkbox"] + label{
    font-size: 16px;
    font-family: var(--font-pre300);
    color: #1D1D1D;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .agr_box input[type="checkbox"] + label span{
    font-family: var(--font-pre700);
}





.wp_wrap .s_group1 .cont_box .form_in .ip_area .sbm_btn{
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .s_group1 .cont_box .form_in .ip_area .sbm_btn button{
    width: 160px;
    height: 45px;
    background: #00937F;
    font-size: 22px;
    font-family: var(--font-pre500);
    color: #fff;
    border-radius: 22px;
}


.wp_wrap .s_group1 .cont_box .form_in .img_area{
    position: relative;
}
.wp_wrap .s_group1 .cont_box .form_in .img_area .img_box{}
.wp_wrap .s_group1 .cont_box .form_in .img_area .img_box img{}
.wp_wrap .s_group1 .cont_box .form_in .img_area .txt_box{
    position: absolute;
    top: 70px;
    left: 30px;
}
.wp_wrap .s_group1 .cont_box .form_in .img_area .txt_box p{
    font-size: 28px;
    /*font-family: var(--font-Katuri);*/
	font-family: var(--font-pre300);
}
.wp_wrap .s_group1 .cont_box .form_in .img_area .txt_box p span  {
    position: relative;
    box-shadow: inset 0 -20px 0 rgba(255, 226, 72, 1);
}
/**********************************************************************************************************************/




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









