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

@charset "utf-8";

/**********************************************************************************************************************/
/* 작성방법 */
/*
1. 모든 스타일은 클래스명 .wp_wrap 을 시작으로 작성한다.
2. 공통 스타일의 클래스명은 cm_ 접두어를 사용한다.
*/
/**********************************************************************************************************************/
@media (max-width: 1720px) {
    
/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .ms_visual .slide_area .slide-counter {
    right: 40px;
    bottom: 40px;
}
/**********************************************************************************************************************/




/**********************************************************************************************************************/
/* totop */
/**********************************************************************************************************************/
.wp_wrap .totop {
    right: 10px;
}
.wp_wrap .totop button {
    width: 50px;
    height: 50px;
}
.wp_wrap .totop button i {
    font-size: 20px;
}
/**********************************************************************************************************************/
}


@media (max-width: 1500px) {
/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .img_area .img_box {
    margin-right: 180px;
}
/**********************************************************************************************************************/
}



@media (max-width: 1320px) {
/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .txt_box {
    left: 10px;
}
/**********************************************************************************************************************/
}


@media (max-width: 1200px) {
/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .img_area .img_box {
    margin-right: 80px;
}
/**********************************************************************************************************************/
}


@media (max-width: 992px) {
/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header {
    padding: 0;
    background: #000 !important;
}
.wp_wrap header .h_inner{
    height: 90px;
}
.wp_wrap header .h_inner nav {
    display: none;
}
.wp_wrap header .h_inner .mopen{
    display: block;
}
.wp_wrap header .h_inner .h_logo {
    min-width: unset;
}
.wp_wrap header .h_inner .h_logo img {
    height: 70px;
}
.wp_wrap header .h_inner .mopen .icon_box{
    position: relative;
    width: 24px;
    height: 20px;
}
.wp_wrap header .h_inner .mopen .icon_box span {
    position: absolute;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all .5s ease;
}
.wp_wrap header .h_inner .mopen .icon_box span:nth-child(1){
    top: 0;
}
.wp_wrap header .h_inner .mopen .icon_box span:nth-child(2){
    opacity: 1;
    top: 50%;
    transform: translate(-50%, -50%);
}
.wp_wrap header .h_inner .mopen .icon_box span:nth-child(3){
    bottom: 0;
}

/* on 붙었을때 */
.wp_wrap header .h_inner .mopen.on .icon_box span:nth-child(1) {
    transform: translate(-50%, 9px) rotate(45deg);
    animation: mopen1-open .7s ;
}
.wp_wrap header .h_inner .mopen.on .icon_box span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0);
    opacity: 0;
    animation: mopen2-open .7s ;
}
.wp_wrap header .h_inner .mopen.on .icon_box span:nth-child(3) {
    transform: translate(-50%, -9px) rotate(-45deg);
    animation: mopen3-open .7s ;
} 
@keyframes mopen1-open {
    0% {
        top: 0;
        transform: translate(-50%, 0) rotate(0);
    }

    50% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        top: 0;
        transform: translate(-50%, 9px) rotate(45deg);
    }
}
@keyframes mopen2-open {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
} 
@keyframes mopen3-open {
    0% {
        bottom: 0;
        transform: translate(-50%, 0) rotate(0);
    }

    50% {
        bottom: 50%;
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        bottom: 0;
        transform: translate(-50%, -9px) rotate(-45deg);
    }
} 


/* close 붙었을때 */
.wp_wrap header .h_inner .mopen.close .icon_box span:nth-child(1){
    transform: rotate(0); 
    top: 0;
    animation: mopen1-close .7s forwards;
}
.wp_wrap header .h_inner .mopen.close .icon_box span:nth-child(2){
    opacity: 1;
    animation: mopen2-close .7s forwards;
}
.wp_wrap header .h_inner .mopen.close .icon_box span:nth-child(3){
    transform: rotate(0); 
    bottom: 0;
    animation: mopen3-close .7s forwards;
}
@keyframes mopen1-close {
    0% {
        top: 0;
        transform: translate(-50%, 9px) rotate(45deg);
    }

    50% {
        top: 50%;
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        top: 0;
        transform: translate(-50%, 0) rotate(0);
    }
}
@keyframes mopen2-close {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes mopen3-close {
    0%{
        bottom: 0;
        transform: translate(-50%, -9px) rotate(-45deg);
    }
    50% {
        bottom: 50%;
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        bottom: 0;
        transform: translate(-50%, 0) rotate(0);
    }
} 


.wp_wrap .mo_mnu{
    display: block;
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    height: calc(100dvh - 60px);
    background: #000;
    z-index: 1001;
    transition: 0.5s;
}
.wp_wrap .mo_mnu.on{
    right: 0;
}
.wp_wrap .mo_mnu .momnu_inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb{
    width: 100%;
    padding: 20px 10px;
    flex: 1;
}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul>li{}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul>li>a{
    display: block;
    font-size: 35px;
    color: #fff;
}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul>li .mo_dep2_mnu{
    padding: 10px 10px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul>li .mo_dep2_mnu>li{

}
.wp_wrap .mo_mnu .momnu_inner .mo_gnb>ul>li .mo_dep2_mnu>li>a{
    display: block;
    font-size: 20px;
    color: #a5a5a5;
}

.wp_wrap header .language {
    right: 50px;
}
.wp_wrap header .language>ul>li {
    margin-right: 8px;
    padding-right: 8px;
}
.wp_wrap header .language>ul>li>a {
    font-size: 14px;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer .f_inner {
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
}
.wp_wrap footer .f_inner .f_lt {
    order: 2;
}
.wp_wrap footer .f_inner .f_rt {
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}
.wp_wrap .totop {
    bottom: 140px;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .mtit_box .tit {
    font-size: 40px;
}
.wp_wrap .ms_work .mtit_box,
.wp_wrap .s_news1 .mtit_box,
.wp_wrap .s_contact1 .mtit_box {
    margin-bottom: 80px;
}

.wp_wrap .ms_work .inner_box .work_itms .work_li .li_in .txt_box{
    padding: 5px 20px;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap #s_page {
    margin-top: 90px;
}

.wp_wrap .s_about1 .cont_box .txt_box {
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
    margin-bottom: 60px;
    gap: 20px;
}
.wp_wrap .s_about1 .cont_box .img_area .img_box {
    margin-right: unset;
    margin: 0 auto;
    width: 55%;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt1 br{
    display: none;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 br.rsnone{
    display: none;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt1 {
    font-size: 55px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 {
    font-size: 20px;
}
/**********************************************************************************************************************/

}


@media (max-width: 768px) {
/**********************************************************************************************************************/
/* 공통 */
/**********************************************************************************************************************/
.wp_wrap .cm_sec {
    padding: 60px 0;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .ms_work .mtit_box {
    margin-bottom: 50px;
}
.wp_wrap .s_work1 .mtit_box {
    margin-bottom: 40px;
}
.wp_wrap .s_news1 .mtit_box {
    margin-bottom: 40px;
}
.wp_wrap .s_contact1 .mtit_box {
    margin-bottom: 40px;
}





.wp_wrap .ms_visual .slide_area .slide-counter {
    right: 15px;
    bottom: 20px;
}



.wp_wrap .ms_work .inner_box .more button {
    width: 200px;
    height: 55px;
    font-size: 16px;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .txt_box {
    margin-bottom: 40px;
    gap: 15px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt1 {
    font-size: 45px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 {
    font-size: 19px;
}

.wp_wrap .s_contact1 .lct_box {
    margin-bottom: 40px;
}
.wp_wrap .s_contact1 .form_box .tit {
    font-size: 25px;
}
.wp_wrap .s_contact1 .lct_box .map_box {
    height: 350px;
}
.wp_wrap .s_contact1 .form_box .form_in .ip_wrap .bot_box .ta_box label textarea {
    min-height: 100px;
}
.wp_wrap .s_contact1 .form_box .form_in .bot_box .sbm_btn button {
    width: 100px;
    height: 100px;
}
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 개인정보모달 */
/**********************************************************************************************************************/
.wp_wrap .pv_md .md_outer .width_inner .md_inner p {
    font-size: 28px;
}
/**********************************************************************************************************************/
}


@media (max-width: 576px) {

/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .mtit_box .tit {
    font-size: 35px;
}

.wp_wrap .ms_work .inner_box .work_itms .work_li .li_in .txt_box .txt2{
    font-size: 16px;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer .f_inner .f_info>ul>li,
.wp_wrap footer .f_inner .f_info>ul>li>a {
    font-size: 14px;
}
.wp_wrap footer .f_inner .f_rt {
    flex-direction: column;
}
.wp_wrap footer .f_inner .f_info {
    width: 100%;
}
.wp_wrap footer .f_inner .f_rt {
    align-items: flex-start;
}


.wp_wrap .totop {
    bottom: 70px;
}
/**********************************************************************************************************************/





/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .txt_box .txt1 {
    font-size: 40px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 {
    font-size: 18px;
}

.wp_wrap .s_contact1 .lct_box .map_box {
    height: 300px;
}
.wp_wrap .s_contact1 .form_box .form_in .ip_wrap .top_box {
    margin-bottom: 15px;
}
.wp_wrap .s_contact1 .form_box .form_in .ip_wrap .ip_box label .ques {
    min-width: 70px;
}
/**********************************************************************************************************************/




/**********************************************************************************************************************/
/* 개인정보모달 */
/**********************************************************************************************************************/
.wp_wrap .pv_md .md_outer .width_inner {
    padding: 25px 15px 35px 15px;
}
.wp_wrap .pv_md .md_outer .width_inner .icon_box {
    top: 13px;
    right: 13px;
}
.wp_wrap .pv_md .md_outer .width_inner .icon_box i {
    padding: 5px;
    font-size: 17px;
}
.wp_wrap .pv_md .md_outer .width_inner .md_inner {
    gap: 10px;
}
.wp_wrap .pv_md .md_outer .width_inner .md_inner p {
    font-size: 23px;
}
.wp_wrap .pv_md .md_outer .width_inner .md_inner .txt_box {
    padding: 10px;
}
.wp_wrap .pv_md .md_outer .width_inner .md_inner .txt_box .txt_body pre {
    font-size: 15px;
}
.wp_wrap .pv_md .md_outer .width_inner .md_inner .txt_box .txt_body pre .cicnum {
    top: -2px;
    font-size: 12px;
}
/**********************************************************************************************************************/


}


@media (max-width: 430px) {
/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .mtit_box .tit {
    font-size: 30px;
}


.wp_wrap .ms_visual .slide_area .slide-counter span {
    font-size: 20px;
}



.wp_wrap .ms_work .inner_box .work_itms{
    grid-template-columns: repeat(1, 1fr);
}
.wp_wrap .ms_work .inner_box .more{
    padding-top: 40px;
}
.wp_wrap .ms_work .inner_box .more button {
    width: 180px;
    height: 50px;
    font-size: 15px;
}
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .s_about1 .cont_box .txt_box {
    /* margin-bottom: 30px; */
    gap: 15px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt1 {
    font-size: 35px;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 {
    font-size: 16px;
    line-height: 1.4;
}
.wp_wrap .s_about1 .cont_box .txt_box .txt2 br.rsblock{
    display: block;
}



.wp_wrap .s_contact1 .lct_box .map_box {
    height: 250px;
}
.wp_wrap .s_contact1 .form_box .form_in .idv_agr input[type='checkbox'] + label {
    font-size: 14px;
}
.wp_wrap .s_contact1 .form_box .form_in .ip_wrap .bot_box .in{
    gap: 5px;
}
.wp_wrap .s_contact1 .form_box .form_in .bot_box .sbm_btn button {
    width: 70px;
}
.wp_wrap .s_contact1 .form_box .form_in .idv_agr input[type='checkbox'] + label .chk_cus {
    width: 15px;
    height: 15px;
}
/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 작품 모달 */
/**********************************************************************************************************************/
.md_inner .cont_wrap .bot_info .info li .answ {
    font-size: 14px;
}
.md_inner .cont_wrap .bot_info .more a .txt_box .name, .wp_wrap .cm_md .md_inner .cont_wrap .bot_info .more a .txt_box .view {
    font-size: 13px;
}
.wp_wrap .cm_md .md_inner .cont_wrap .bot_info .more a .icon_box i {
    font-size: 15px;
}
.wp_wrap .cm_md .md_inner .cont_wrap .bot_info .info {
    width: calc(100% - 85px);
}
.wp_wrap .cm_md .md_inner .cont_wrap .bot_info .more {
    min-width: 80px;
}
/**********************************************************************************************************************/
}


@media (max-width: 375px) {

}


@media (max-width: 320px) {

}





















































































