/**
 * 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';
}




/* 공통 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: 1200px;
    width: 100%;
    margin: 0 auto;
}

.wp_wrap .cm_sec {
    padding: 120px 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 #wp_btn_top{
    display: none;
    position: fixed;
    right: 50px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.wp_wrap #wp_btn_top>i{
    font-size: 22px;
    font-weight: bold;
}

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



/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
/* 헤더 */
.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;
}

.wp_wrap header .h_inner .gnb {
    display: flex;
}

.wp_wrap header .h_inner .gnb .m_list {
    position: relative;
    text-align: center;
    font-size: 18px;
    font-family: var(--font-pre600);
    /* padding: 0 40px; */
    padding: 0 30px;
}

.wp_wrap header .h_inner .gnb .m_list>a {
    display: block;
    padding: 40px 0;
    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 {
    font-family: var(--font-pre400);
    font-size: 18px;
    display: block;
    padding: 10px 0;
    width: 100%;
    height: 100%;
}

.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;
    max-width: 400px;
    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 header .mo_menu_icon {
    display: none;
    font-size: 25px;
    padding: 20px;
    color: #fff;
}

.wp_wrap header .mo_menu {
    display: none;
}

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








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

.wp_wrap footer .f_inner {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap footer .f_inner .f_info>ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 5px;
}

.wp_wrap footer .f_inner .f_info>ul>li {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    gap: 5px;
}

.wp_wrap footer .f_inner .f_info>ul>li>.txt {
    display: block;
    color: #949494;
    font-size: 15px;
    font-family: var(--font-pre200);
}

.wp_wrap .f_info p {
    color: #949494;
    font-size: 15px;
    font-weight: 200;
}
.wp_wrap .f_info p>a{
    color: #aaa9a965;
    transition: 0.4s;
}
.wp_wrap .f_info p>a:hover{
    color: #db1f1fb9;
    transition: 0.4s;
}

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





/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
/* 픽스배너메뉴 */
.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;
    text-align: center;
}

.wp_wrap .fix_banner .fbanner_itms .itm01 {
    background: rgba(9, 49, 142, 0.85);
}

.wp_wrap .fix_banner .fbanner_itms .itm02 {
    background: rgba(251, 211, 13, 0.82);
}

.wp_wrap .fix_banner .fbanner_itms .itm03 {
    background: rgba(104, 104, 104, 0.64);
}



/* 메인 슬라이드*/
.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.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.item03 {
    background: url(../img/main/mainSlide03.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: 2s;
}

.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.3);
}

.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 .top_tit {
    font-size: 47px;
    font-family: var(--font-pre200);
    transform: translateY(100px);
    opacity: 0;
    /* transition: 0.7s 2s; */
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .mid_tit {
    font-size: 70px;
    font-family: var(--font-pre700);
    transform: translateY(100px);
    opacity: 0;
    margin-bottom: 10px;
    /* transition: 0.7s 2.7s; */
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.wp_wrap .main_visual .main_slider .slide .slide_inner .txt_box .bot_tit {
    font-size: 25px;
    font-family: var(--font-pre200);
    transform: translateY(100px);
    opacity: 0;
    /* transition: 0.7s 3.4s; */
}



.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .top_tit{
    opacity: 1;
    transform: translateY(0);
    transition: 0.7s 1s;
	padding-bottom: 10px;

}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .mid_tit{
    opacity: 1;
    transform: translateY(0);
    transition: 0.7s 1.7s;
}
.wp_wrap .main_visual .main_slider .slide.action .slide_inner .txt_box .bot_tit {
    opacity: 1;
    transform: translateY(0);
    transition: 0.7s 2.4s;
}


/*  메인 슬라이드 버튼  */
.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 #8BCF15;
    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: #8BCF15;
}


/* 메인 스크롤 아이콘 */
.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 {
    background-color: #F7F7F7;
}

.wp_wrap .s_ma_bsns .sec_tit02 {
    color: #616161;
    font-size: 30px;
    font-family: var(--font-pre200);
    text-align: center;
    margin-bottom: 55px;
}

.wp_wrap .s_ma_bsns .sec_tit02>span {
    font-size: 30px;
    font-family: var(--font-pre800);
}

.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;
    transition: 0.4s;
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li:hover .img_box {
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    transition: 0.4s;
}

.wp_wrap .s_ma_bsns .bsns_itms .itm_li .img_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.wp_wrap .s_ma_bsns .bsns_itms .itm_li:hover .img_box>img {
    transform: scale(1.1);
    transition: 0.4s;
}

.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 {}

.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 .left .tit_box .tit_frame {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap .s_announce .announce_inner .left .tit_box .tit_frame .des {
    font-size: 20px;
    font-family: var(--font-pre500);
}

.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 {}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide {
    width: 100%;
    overflow: hidden;
}

.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 {
    height: 205px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide:hover .slide_inner .news_itm .img_box>img {
    transform: scale(1.1);
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box .img_ovly {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide:hover .slide_inner .news_itm .img_box .img_ovly {
    background-color: rgba(9, 49, 142, 0.85);
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box .img_ovly>.num {
    position: relative;
    color: rgba(255, 255, 255, .71);
    font-size: 88px;
    font-family: var(--font-pre800);
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide:hover .slide_inner .news_itm .img_box .img_ovly>.num {
    color: #fff;
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide_inner .news_itm .img_box .img_ovly>.num .num_txt {
    position: absolute;
    right: -40px;
    bottom: -5px;
    width: 100%;
    opacity: 0;
    color: #fff;
    font-size: 24px;
    font-family: var(--font-prem);
    text-align: right;
    transition: 0.4s;
}

.wp_wrap .s_announce .announce_inner .left .press .press_slider .slide:hover .slide_inner .news_itm .img_box .img_ovly>.num .num_txt {
    opacity: 1;
    transition: 0.4s;
}

.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;
    text-align: center;
}

.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: 1px solid #C8C8C8;
    border-radius: 20px;
    padding: 45px 25px 35px 40px;

}

.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>ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap .s_announce .announce_inner .right .em_guide .guide_box .guide_li {
    position: relative;
}

.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 {
    margin-bottom: 100px;
}

.wp_wrap .s_shop .shop_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp_wrap .s_shop .shop_items .shop_itm {
    display: block;
    cursor: pointer;
}

.wp_wrap .s_shop .shop_items .shop_itm .img_box {
    width: 370px;
    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_txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:40px;
}
.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 {
    height: 60px;
    font-size: 24px;
    font-family: var(--font-pre600);
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.wp_wrap .s_notice .notice_inner .right .notice_slider .slide .notice_itm_click .slide_inner .no_des {
    min-height: 80px;
    font-size: 17px;
    margin-bottom: 35px;
    color: #5D5D5D;
}

.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: #E6A845;
}

.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;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.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 .gallery_inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap .s_gallery .sec_tit01 {
    font-size: 50px;
    margin-bottom: 5px;
}

.wp_wrap .s_gallery .gallery_desc {
    font-size: 17px;
    margin-bottom: 35px;
}

.wp_wrap .s_gallery .gallery_items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.wp_wrap .s_gallery .gallery_itm {
    display: block;
    cursor: pointer;
}


.wp_wrap .s_gallery .gallery_itm .img_box {
    width: 370px;
    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: 16px;
    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;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 회사로고 슬라이드 */
.wp_wrap .s_cmp_sd {
    background-color: #F7F7F7;
}

.wp_wrap .s_cmp_sd .cmp_sd_ir {
    padding: 35px 0;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .logo_sd {}

.wp_wrap .s_cmp_sd .cmp_sd_cont .logo_sd li {
    margin-right: 15px;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .logo_sd li a {
    width: 100%;
    height: 50px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .logo_sd li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont>button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .btn_cmp_lt {
    left: 0;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .btn_cmp_lt>img {}

.wp_wrap .s_cmp_sd .cmp_sd_cont .btn_cmp_rt {
    right: 0;
}

.wp_wrap .s_cmp_sd .cmp_sd_cont .btn_cmp_rt>img {}




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




/**********************************************************************************************************************/
/* 서브 공통*/
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브탑 */
.wp_wrap .sub_main {
    width: 100%;
    height: 350px;
    background: url('../img/sub/subMain.jpg') no-repeat center center / cover;
}

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

.wp_wrap .sub_main .sub_main_inner .txt_box {
    text-align: center;
}

.wp_wrap .sub_main .sub_main_inner .txt_box .sm_tit {
    font-size: 50px;
    color: #fff
}

.wp_wrap .sub_main .sub_main_inner .txt_box .sm_des {
    font-size: 20px;
    color: #fff
}

/* 서브탑 고정메뉴 */
/* .wp_wrap .sub_page .fix_menu {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #DFDFDF;
    background: #fff;
    z-index: 999;
}

.wp_wrap .sub_page .fix_menu .menu_inner {
    display: flex;
    /*  line-height: 80px; *
}
.wp_wrap .sub_page .fix_menu .menu_inner>div {
    padding: 30px 0;
}
.wp_wrap .sub_page .fix_menu .menu_inner .first i {
    font-size: 14px;
    border-right: 1px solid #DFDFDF;
    padding: 0 30px;
}
.wp_wrap .sub_page .fix_menu .menu_inner .second,
.wp_wrap .sub_page .fix_menu .menu_inner .third {
    position: relative;
    display: flex;
}
.wp_wrap .sub_page .fix_menu .menu_inner .second .m_top,
.wp_wrap .sub_page .fix_menu .menu_inner .third .m_top {
    padding: 0 30px;
    border-right: 1px solid #DFDFDF;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.wp_wrap .sub_page .fix_menu .menu_inner .second .second_menu,
.wp_wrap .sub_page .fix_menu .menu_inner .third .third_menu {
    position: absolute;
    top: 80px;
    left: 0;
    background: #fff;
    width: 100%;
    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 .sub_page .fix_menu .menu_inner .second .second_menu ul>li>a {
    display: inline-block;
    width: 100%;
}
.wp_wrap .sub_page .fix_menu .menu_inner .second .m_top p,
.wp_wrap .sub_page .fix_menu .menu_inner .third .m_top p {
    font-size: 16px;
    font-family: var(--font-pre500);
    margin-right: 80px;
}
.wp_wrap .sub_page .fix_menu .menu_inner .second .m_top i,
.wp_wrap .sub_page .fix_menu .menu_inner .third .m_top i {
    font-size: 18px;
} */



.wp_wrap .st_mnu{
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.wp_wrap .st_mnu .inner_box{
    display: flex;
    height: 65px;
}
.wp_wrap .st_mnu .inner_box>div{
    position: relative;
}
.wp_wrap .st_mnu .inner_box>div::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 25px;
    background: rgba(216, 216, 216, 0.5);
}
.wp_wrap .st_mnu .inner_box .first{
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp_wrap .st_mnu .inner_box .first a {
    display: block;
    text-align: center;
    min-width: 65px;
}
.wp_wrap .st_mnu .inner_box .first a i {
    font-size: 18px;
    color: #000;
}
.wp_wrap .st_mnu .inner_box .mnu_box .show {
    padding: 0 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: space-between;
    height:65px;
    gap: 3px;
}
.wp_wrap .st_mnu .inner_box .mnu_box .show >p{
    font-size: 16px;
    font-family: var(--font-pre500);
    color: #000;
}
.wp_wrap .st_mnu .inner_box .mnu_box .show >i{
    font-size: 12px;
    color: #000;
}
.wp_wrap .st_mnu .inner_box .second,
.wp_wrap .st_mnu .inner_box .third{
    min-width: 250px;
}
.wp_wrap .st_mnu .inner_box .mnu_box .hide {
    position: absolute;
    top: 65px;
    left: -1px;
    background: #fff;
    width: calc(100% + 1px);
    border: 1px solid #ddd;
    display: none;
    z-index: 99;
}
.wp_wrap .st_mnu .inner_box .mnu_box .hide>li>a {
    display: block;
    padding: 13px 20px;
    color: #000;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
.wp_wrap .st_mnu .inner_box .mnu_box .hide>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_cont {}

.wp_wrap .shp_contain {}

.wp_wrap .shp_contain .shp_wrap {}

.wp_wrap .shp_contain .shp_ir {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 85px;
    padding: 120px 0;
}

/* 타이틀 */
.wp_wrap .shp_contain .shp_tit_box {}

.wp_wrap .shp_contain .shp_tit_box>.tit {
    font-size: 40px;
    font-family: var(--font-pre600);
    text-align: center;
}



/* 서브 컨텐츠 공통 - BASIC VERSION */


/*--------------------------------------------------------------------------------------------------------------------*/
/* 인사말 */
.wp_wrap #shp_grt {}

.wp_wrap #shp_grt .shp_wrap {}

.wp_wrap #shp_grt .shp_ir {}

.wp_wrap #shp_grt .shp_ir .grt_cont {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 80px 60px;
    border-radius: 35px;
    background-color: #F7F7F7;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .txt_area {}

.wp_wrap #shp_grt .shp_ir .grt_cont .txt_area .txt_box {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .txt_area .txt_box .hd_txt {
    font-size: 40px;
    font-family: var(--font-pre400);
}

.wp_wrap #shp_grt .shp_ir .grt_cont .txt_area .txt_box .desc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 45px;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .txt_area .txt_box .desc>.des {
    font-size: 20px;
    font-family: var(--font-pre200);
    line-height: 36px;
    letter-spacing: -1px;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area {}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box .img_frm {
    max-width: 445px;
    width: 100%;
    height: 445px;
    border-radius: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .16);
    overflow: hidden;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box .img_frm>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box .txt_frm {}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box .txt_frm>.txt {
    color: #2E2E2E;
    font-size: 20px;
    font-family: var(--font-pre300);
    text-align: center;
}

.wp_wrap #shp_grt .shp_ir .grt_cont .img_area .img_box .txt_frm>.txt>b {
    font-family: var(--font-pre700);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 교실연혁 */
.wp_wrap #shp_hty {}

.wp_wrap #shp_hty .shp_wrap {}

.wp_wrap #shp_hty .shp_ir {}

.wp_wrap #shp_hty .shp_ir .hty_cont {}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 교육과정 */
.wp_wrap #shp_ccm {}

.wp_wrap #shp_ccm .shp_wrap {}

.wp_wrap #shp_ccm .shp_ir {}

.wp_wrap #shp_ccm .shp_ir .ccm_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 45px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 50px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .img_items {}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .img_items>li {
    height: 270px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .11);
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .img_items>li>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .txt_frm {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .txt_frm>.txt {
    font-size: 20px;
    font-family: var(--font-pre200);
    line-height: 36px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .top .txt_frm>.txt>b {
    font-family: var(--font-pre700);
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn {
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #C8C8C8;
    border-radius: 26px;
    transition: 0.4s;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn:hover {
    background-color: #F7F7F7;
    transition: 0.4s;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
    padding: 20px 35px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.img_area {
    max-width: 200px;
    width: 100%;
    height: 165px;
    border-radius: 19px;
    overflow: hidden;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.img_area .img_box {
    width: 100%;
    height: 100%;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.img_area .img_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.txt_area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.txt_area .tit {
    min-height: 50px;
    font-size: 20px;
    font-family: var(--font-pre700);
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.txt_area .des {
    font-size: 16px;
    font-family: var(--font-pre200);
    line-height: 24px;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.ico_area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.ico_area>svg {}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn>a>.ico_area>svg g {
    transition: 0.4s;
}

.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn:hover>a>.ico_area>svg g,
.wp_wrap #shp_ccm .shp_ir .ccm_cont .bot .flag_bn:hover>a>.ico_area>svg g path {
    stroke: #0C46B9;
    transition: 0.4s;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* 오시는길 */
.wp_wrap #shp_way {}

.wp_wrap #shp_way .shp_wrap {}

.wp_wrap #shp_way .shp_ir {}

.wp_wrap #shp_way .way_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
}

.wp_wrap #shp_way .way_cont .map_area {}

.wp_wrap #shp_way .way_cont .map_area .map_box {
    width: 100%;
    height: 370px;
}

.wp_wrap #shp_way .way_cont .map_area .map_box>iframe {
    width: 100%;
    height: 100%;
}

.wp_wrap #shp_way .way_cont .map_info_area {
    padding: 0 30px;
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt .tit {
    color: #646464;
    font-size: 25px;
    font-family: var(--font-pre500);
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt .adr {
    color: #646464;
    font-size: 20px;
    font-family: var(--font-pre200);
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #646464;
    font-size: 20px;
    font-family: var(--font-pre200);
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt>a>img {}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt>.sub_way {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #646464;
    font-size: 20px;
    font-family: var(--font-pre200);
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .lt>.sub_way>img {}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .rt {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .rt>a {
    min-width: 115px;
    ;
    width: 115px;
    height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50%;
    background-color: #1751AA;
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .rt>a>img {}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .rt>a>.txt {
    color: #fff;
    font-size: 13px;
    font-family: var(--font-pre200);
}

.wp_wrap #shp_way .way_cont .map_info_area .info_box .rt>a:hover {
    background-color: #c1c1c1;
    transition: 0.4s;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 연구분야 */
.wp_wrap #shp_rf {}

.wp_wrap #shp_rf .shp_wrap {}

.wp_wrap #shp_rf .shp_ir {}

.wp_wrap #shp_rf .rf_cont {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}

.wp_wrap #shp_rf .rf_cont .rf_item {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 25px;
}

.wp_wrap #shp_rf .rf_cont .rf_item .img_box {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.wp_wrap #shp_rf .rf_cont .rf_item .img_box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.wp_wrap #shp_rf .rf_cont .rf_item:hover .img_box>img {
    transform: scale(1.1);
    transition: 0.4s;
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    padding: 0 10px;
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box .tit {
    font-size: 20px;
    font-family: var(--font-pre700);
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box .des_list {
    min-height: 75px;
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box .des_list>li {
    font-size: 16px;
    font-family: var(--font-pre500);
    line-height: 25px;
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box .des_list>li>.txt {
    display: flex;
    justify-content: flex-start;
    align-content: stretch;
    gap: 5px;
    word-break: keep-all;
}

.wp_wrap #shp_rf .rf_cont .rf_item .txt_box .des_list>li>.txt::before {
    display: block;
    content: "";
    min-width: 12px;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    border-radius: 50%;
    background-color: #0C84B9;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 탭모양 - (교실원 및 동문명단) */
.wp_wrap #shp_tab {}

.wp_wrap #shp_tab .shp_wrap {}

.wp_wrap #shp_tab .shp_ir {}

.wp_wrap #shp_tab .tab_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
}

.wp_wrap #shp_tab .tab_cont .tab_hd {
    max-width: 1090px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background-color: #FCFCFC;
    border: 1px solid #C8C8C8;
    border-radius: 5px;
}

.wp_wrap #shp_tab .tab_cont .tab_hd .trg {
    position: absolute;
    left: 0;
    top: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 6px 0px 6px;
    border-color: #5D5D5D transparent transparent transparent;
    z-index: 5;
    transition: 0.4s;
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list>li {
    position: relative;
    color: #858585;
    font-size: 16px;
    font-family: var(--font-pre500);
    cursor: pointer;
    transition: 0.4s;
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list>li::after {
    position: absolute;
    right: -15px;
    top: 50%;
    display: block;
    content: "";
    width: 1px;
    height: 19px;
    background-color: #C8C8C8;
    transform: translateY(-50%);
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list>li:last-child::after {
    display: none;
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list>li.on {
    color: #191919;
    font-family: var(--font-pre500);
}

.wp_wrap #shp_tab .tab_cont .tab_hd .hd_list>li:hover {
    color: #191919;
    font-family: var(--font-pre500);
    transition: 0.4s;
}

.wp_wrap #shp_tab .tab_cont .tab_bd_items {
    /* max-width: 1090px; */
    width: 100%;
}

.wp_wrap #shp_tab .tab_cont .tab_bd_items .tab_bd_item {
    max-width: 1090px;
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 45px;
    margin:0 auto;
}
.wp_wrap #shp_tab .tab_cont .tab_bd_items .tab_bd_item.item_wd {
    max-width: unset;
}

.wp_wrap #shp_tab .tab_cont .tab_bd_items .tab_bd_item.on {
    display: flex;
}

.wp_wrap #shp_tab .tab_cont .tab_bd_items .tab_bd_item>.tit {
    padding-top: 25px;
    text-align: center;
    font-size: 30px;
    font-family: var(--font-pre600);
}

.wp_wrap #shp_tab .tab_cont .tab_bd_items .tab_bd_item>.tit>span {
    font-family: var(--font-pre400);
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 폴드스위치모양 - (주요활동사항) */
.wp_wrap #shp_fold_sw {}

.wp_wrap #shp_fold_sw .shp_wrap {}

.wp_wrap #shp_fold_sw .shp_ir {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap #shp_fold_sw .fold_sw_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_hd {}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_hd>.hd_tit {
    color: #2E2E2E;
    font-size: 30px;
    font-family: var(--font-pre500);
    text-align: center;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item {
    position: relative;
    border: 1px solid #DEDEDE;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 230px;
    gap: 80px;
    padding: 45px 65px 100px 60px;
    overflow: hidden;
}

/* .wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item.on .item_top {
    height: auto;
} */

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .num_area {}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .num_area>.num_box {
    min-width: 100px;
    width: 100px;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .num_area>.num_box>.num {
    color: #0C84B9;
    font-size: 40px;
    font-family: var(--font-pre900);
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .txt_area {
    flex-grow: 1;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .txt_area>.txt_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_top .txt_area>.txt_box .txt_frm {
    color: #191919;
    font-size: 16px;
    font-family: var(--font-pre200);
    line-height: 29px;
}


.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_bot {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 1) 100%);
}


.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_bot .btn_fold_swc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 5px;
    background: transparent;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_bot .btn_fold_swc>.txt {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: var(--font-pre200);
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_bot .btn_fold_swc>.txt.on {
    display: none;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item .item_bot .btn_fold_swc>.txt.off {
    display: flex;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item.on .item_bot .btn_fold_swc>.txt.on {
    display: flex;
}

.wp_wrap #shp_fold_sw .fold_sw_cont .fold_bd .fold_item.on .item_bot .btn_fold_swc>.txt.off {
    display: none;
}





/*--------------------------------------------------------------------------------------------------------------------*/
/* 리뷰 베너 - (편집후기) */
.wp_wrap #shp_bn_rv{}
.wp_wrap #shp_bn_rv .shp_wrap{}
.wp_wrap #shp_bn_rv .shp_ir{}
.wp_wrap #shp_bn_rv .bn_rv_cont{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap:20px;
    padding:80px 70px 70px;
    border-radius: 34px;
    background-color: #F7F7F7;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .txt_area{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:30px;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .txt_area .hd_txt{
    color:#393939;
    font-size: 20px;
    font-family: var(--font-pre600);
}
.wp_wrap #shp_bn_rv .bn_rv_cont .txt_area .des_box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:30px;
    color:#393939;
    font-size: 16px;
    font-family: var(--font-pre500);
    line-height: 24px;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .txt_area .des_box .des{
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area{}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:30px;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box .img_frm{
    width: 330px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .16);
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box .img_frm>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box .img_info_frm{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap:5px;
    padding:0 15px;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box .img_info_frm>.pst{
    font-size: 20px;
    font-family: var(--font-pre300);
    letter-spacing: -1px;
}
.wp_wrap #shp_bn_rv .bn_rv_cont .img_area .img_box .img_info_frm>.nm{
    font-size: 20px;
    font-family: var(--font-pre700);
}

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


/**********************************************************************************************************************/
/* Part */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* part - BASIC */
.wp_wrap #pt_basic{}

/*--------------------------------------------------------------------------------------------------------------------*/
/* part - person_table */
.wp_wrap #pt_prs_table01 {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}

.wp_wrap #pt_prs_table01 .tb_row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

.wp_wrap #pt_prs_table01 .tb_row:nth-child(1) {
    background-color: #FFF !important;
    border-bottom: 1px solid #BBBBBB;
}

.wp_wrap #pt_prs_table01 .tb_row:nth-child(2n-1) {
    background-color: #F8F8F8;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 7;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col:nth-child(4) {
    grid-column-start: 7;
    grid-column-end: 10;
}

.wp_wrap #pt_prs_table01 .tb_row .tb_col>.txt {
    font-size: 16px;
    font-family: var(--font-pre400);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* part - general_table01 */
.wp_wrap #pt_gnr_table01 {}

.wp_wrap #pt_gnr_table01 table {
    width: 100%;
    border-collapse: collapse;
    border:1px solid #C8C8C8;
}

.wp_wrap #pt_gnr_table01 table tr {
    background-color: #F7F7F7;
}

.wp_wrap #pt_gnr_table01 table tr:nth-child(2n-1) {
    background-color: #fff;
}

.wp_wrap #pt_gnr_table01 table tr:last-child {
    background-color: #E6E6E6;
}

.wp_wrap #pt_gnr_table01 table tr th {
    padding: 15px 0;
    font-size: 14px;
    font-weight: unset;
    font-family: var(--font-pre400);
    text-align: center;
    background-color: #E6E6E6;
    line-height: 22px;
    border-right: 1px solid #C8C8C8;
    border-bottom:1px solid #C8C8C8;
}

.wp_wrap #pt_gnr_table01 table tr td {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    border-right: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* part - general_table02 */
.wp_wrap #pt_gnr_table02 {}

.wp_wrap #pt_gnr_table02 table {
    width: 100%;
    border-collapse: collapse;
    border:1px solid #C8C8C8;
}

.wp_wrap #pt_gnr_table02 table tr {}


.wp_wrap #pt_gnr_table02 table tr th {
    padding: 15px 0;
    font-size: 16px;
    font-weight: unset;
    font-family: var(--font-pre400);
    text-align: center;
    background-color: #F5F5F5;
    line-height: 22px;
    border-right: 1px solid #C8C8C8;
    border-bottom:1px solid #C8C8C8;
}

.wp_wrap #pt_gnr_table02 table tr td {
    font-size: 16px;
    padding: 15px 0;
    text-align: center;
    border-right: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* part - book_table */
.wp_wrap #pt_bk_table01 {
    border:1px solid #C8C8C8;
}

.wp_wrap #pt_bk_table01 .tb_row {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    border-bottom: 1px solid #BBBBBB;
}

.wp_wrap #pt_bk_table01 .tb_row:nth-child(1) {
    background-color: #F7F7F7 !important;
}

.wp_wrap #pt_bk_table01 .tb_row:nth-child(2n-1) {
    background-color: #FFF;
}
.wp_wrap #pt_bk_table01 .tb_row:last-child {
    border-bottom: none !important;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
    border-right: 1px solid #C8C8C8;
}
.wp_wrap #pt_bk_table01 .tb_row .tb_col:last-child {
    border:none;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 2;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 5;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 10;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col:nth-child(4) {
    grid-column-start: 10;
    grid-column-end: 12;
}
.wp_wrap #pt_bk_table01 .tb_row .tb_col:nth-child(5) {
    grid-column-start: 12;
    grid-column-end: 14;
}

.wp_wrap #pt_bk_table01 .tb_row .tb_col>.txt {
    font-size: 16px;
    font-family: var(--font-pre400);
    text-align: center;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* part - patent_table */
.wp_wrap #pt_ptt_table01{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:50px;
}
.wp_wrap #pt_ptt_table01>.tit{
    color:#191919;
    font-size: 20px;
    font-family: var(--font-pre600);
    text-align: center;
}

.wp_wrap #pt_ptt_table01>.ptt_table{
    border-top: 1px solid #707070;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row{
    border-bottom:1px solid #D4D4D4;
    transition: 0.4s;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row:hover{
    background-color: #F2F2F2;
    transition: 0.4s;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row:first-child:hover{
    background-color: #fff;    
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir{
    display: grid;
    grid-template-columns: repeat(10,1fr);
    grid-gap:10px;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding:20px 0;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:first-child{
    justify-content: center;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 2;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 6;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(3){
    grid-column-start: 6;
    grid-column-end: 8;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(4){
    grid-column-start: 8;
    grid-column-end: 9;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(5){
    grid-column-start: 9;
    grid-column-end: 11;
}
.wp_wrap #pt_ptt_table01>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col>.txt{
    color:#3D3D3D;
    font-size: 16px;
    font-family: var(--font-pre500);
    letter-spacing: -0.5px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* part - patent_table */
.wp_wrap #pt_ptt_table02{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap:50px;
}
.wp_wrap #pt_ptt_table02>.tit{
    color:#191919;
    font-size: 20px;
    font-family: var(--font-pre600);
    text-align: center;
}

.wp_wrap #pt_ptt_table02>.ptt_table{
    border-top: 1px solid #707070;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row{
    border-bottom:1px solid #D4D4D4;
    transition: 0.4s;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row:hover{
    background-color: #F2F2F2;
    transition: 0.4s;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row:first-child:hover{
    background-color: #fff;    
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir{
    display: grid;
    grid-template-columns: repeat(10,1fr);
    grid-gap:10px;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding:20px 0;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:first-child{
    padding-left: 15px;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 3;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(2){
    grid-column-start: 3;
    grid-column-end: 4;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(3){
    grid-column-start: 4;
    grid-column-end: 7;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(4){
    grid-column-start: 7;
    grid-column-end: 8;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(5){
    grid-column-start: 8;
    grid-column-end: 9;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(6){
    grid-column-start: 9;
    grid-column-end: 10;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col:nth-child(7){
    grid-column-start: 10;
    grid-column-end: 11;
}
.wp_wrap #pt_ptt_table02>.ptt_table .wp_tb_row .tb_row_ir .wp_tb_col>.txt{
    color:#3D3D3D;
    font-size: 16px;
    font-family: var(--font-pre500);
    letter-spacing: -0.5px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* part - 이미지 컨테이너 */
.wp_wrap #pt_img_contain01{}
.wp_wrap #pt_img_contain01>.img_cont{}
.wp_wrap #pt_img_contain01>.img_cont>.img_box{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
/*    background-color: #FFE9E9;*/
}
.tablebox {
	display: flex;
	flex-direction: column;
}
.tablebox .tit {
	    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555555;
}
.wp_wrap #pt_img_contain01>.img_cont>.img_box>.txt{
    font-size: 44px;
    font-family: var(--font-pre600);
}

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