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

@charset "utf-8";

/**********************************************************************************************************************/
/* 작성방법 */
/*
1. 모든 스타일은 클래스명 .wp_wrap 을 시작으로 작성한다.
2. 공통 스타일의 클래스명은 cm_ 접두어를 사용한다.
*/
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/

/*FONT*/
@font-face {
    font-family: 'Pretendard-Thin';
    src: url('/font/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('/font/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Light';
    src: url('/font/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('/font/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Medium';
    src: url('/font/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('/font/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Bold';
    src: url('/font/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-ExtraBold';
    src: url('/font/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard-Black';
    src: url('/font/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'JalnanGothic';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ONE-Mobile-Title';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Title.woff') format('woff');
    font-weight: normal;
    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-jalnan: 'JalnanGothic';
    --font-OMT: 'ONE-Mobile-Title';
}


html {
    scroll-behavior: smooth;
}

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


/* 이너 */
.wp_wrap .cm_inner {
    max-width: 1730px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}



/* 섹션패딩 */
.wp_wrap .cm_sec {
    padding: 120px 0;
}



/* 제목 위 별 아이콘 */
.wp_wrap .sec_icon_box {
    margin-bottom: 30px;
}

.wp_wrap .sec_icon_box img {
    margin: 0 auto;
}

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



/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.3s;
    z-index: 999;
}

.wp_wrap header .h_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.wp_wrap header .h_inner .h_lt .h_logo {
    min-width: 195px;
}

.wp_wrap header .h_inner .h_rt {
    display: flex;
    align-items: center;
    gap: 80px;
}

.wp_wrap header .h_inner .gnb {
    display: flex;
    align-items: center;
    gap: 80px;
}

.wp_wrap header .h_inner .gnb .m_list>a {
    font-size: 18px;
    font-family: var(--font-pre300);
    color: #fff;
}

.wp_wrap header .h_inner .tel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 22px;
    font-size: 20px;
    font-family: var(--font-jalnan);
    color: #fff;
}

.wp_wrap header .h_inner .mopen {
    display: flex;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    display: none;
}

.wp_wrap header .h_inner .mopen span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background: #fff;
}

/* fix_mnu */
.wp_wrap .fix_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
}

.wp_wrap .fix_area .fix_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.wp_wrap .fix_area .fix_inner .fix_lt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wp_wrap .fix_area .fix_inner .fix_lt .fix_logo {
    min-width: 195px;
}

.wp_wrap .fix_area .fix_inner .fix_lt .cont_num {
    font-size: 40px;
    font-family: var(--font-jalnan);
    color: #fff;
    line-height: 1;
}

.wp_wrap .fix_area .fix_inner .fix_lt .cont_num>a {
    color: #fff;
}

.wp_wrap .fix_area .fix_inner .fix_rt .form_in {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wp_wrap .fix_area .fix_inner .fix_rt .txt_ip_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wp_wrap .fix_area .fix_inner .fix_rt .txt_ip_box .ip_box:nth-child(1) input[type="text"] {
    width: 200px;
}

.wp_wrap .fix_area .fix_inner .fix_rt .txt_ip_box .ip_box:nth-child(2) input[type="text"] {
    width: 250px;
}

.wp_wrap .fix_area .fix_inner .fix_rt .txt_ip_box input[type="text"] {
    border: none;
    background: #fff;
    font-size: 20px;
    padding: 10px;
    color: #000;
    outline: none;
    font-family: var(--font-pre400);
}

.wp_wrap .fix_area .fix_inner .fix_rt .chk_box input[type="checkbox"] {
    display: none;
}

.wp_wrap .fix_area .fix_inner .fix_rt .chk_box input[type="checkbox"]+label {
    display: flex;
    font-size: 20px;
    font-family: var(--font-pre600);
    color: #fff;
}

.wp_wrap .fix_area .fix_inner .fix_rt .chk_box input[type="checkbox"]+label .idvs_open_btn {
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-block;
    margin-right: 5px;
}

.wp_wrap .fix_area .fix_inner .fix_rt .chk_box input[type="checkbox"]+label .cus_icon {
    width: 30px;
    height: 30px;
    background: url(../img/icon/fix_chk_before.png) no-repeat center center / cover;
    margin-right: 10px;
    display: inline-block;
}

.wp_wrap .fix_area .fix_inner .fix_rt .chk_box input[type="checkbox"]:checked+label .cus_icon {
    background: url(../img/icon/fix_chk_after.png) no-repeat center center / cover;
}

.wp_wrap .fix_area .fix_inner .fix_rt .sbm_btn {
    padding: 12px 70px;
    border-radius: 22px;
    border: 1px solid #fff;
    font-size: 20px;
    font-family: var(--font-jalnan);
    color: #fff;
    background: transparent;
}



/* mo_mnu */
.wp_wrap .mo_mnu {
    display: none;
}

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






/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer {
    padding: 80px 0 190px 0;
    background: #646464;
}

.wp_wrap footer .f_inner {
    display: flex;
    align-items: center;
    gap: 100px;
}

.wp_wrap footer .f_inner .f_logo {
    min-width: 195px;
}

.wp_wrap footer .f_inner .f_info .f_name {
    font-size: 22px;
    color: #fff;
    font-family: var(--font-pre700);
    margin-bottom: 20px;
}

.wp_wrap footer .f_inner .f_info ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wp_wrap footer .f_inner .f_info ul>li {
    position: relative;
    padding-right: 8px;
    margin-right: 8px;
}

.wp_wrap footer .f_inner .f_info ul>li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 13px;
    background: #fff;
}

.wp_wrap footer .f_inner .f_info ul>li:last-child::after {
    display: none;
}

.wp_wrap footer .f_inner .f_info ul>li,
.wp_wrap footer .f_inner .f_info ul>li a {
    font-size: 15px;
    color: #fff;
}

.wp_wrap footer .f_inner .f_info .copyright,
.wp_wrap footer .f_inner .f_info .copyright a{
    font-size: 15px;
    color: #fff;
    font-family: var(--font-pre600);
}
.wp_wrap footer .f_inner .f_info .copyright a{
    color: #898989;
    transition: 0.3s;
}
.wp_wrap footer .f_inner .f_info .copyright a:hover{
    color: #Fff;
}
/**********************************************************************************************************************/






/**********************************************************************************************************************/
/* 메인 */
/**********************************************************************************************************************/
.wp_wrap .m_visual {
    position: relative;
}

.wp_wrap .m_visual .m_slider {
    position: relative;
    overflow: hidden;
}

.wp_wrap .m_visual .m_slider .m_slide {
    position: relative;
    overflow: hidden;
}

.wp_wrap .m_visual .m_slider .m_slide .img_box {
    width: 100%;
    height: 100vh;
}

.wp_wrap .m_visual .m_slider .m_slide .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.13);
    transition: 4s;
}

.wp_wrap .m_visual .m_slider .m_slide.active .img_box img {
    transform: scale(1);
}

.wp_wrap .m_visual .m_slider .m_slide .etc_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wp_wrap .m_visual .m_slider .m_slide .etc_box .icon_box {
    margin-bottom: 30px;
    transform: translateY(20%);
    opacity: 0;
}

.wp_wrap .m_visual .m_slider .m_slide.active .etc_box .icon_box {
    opacity: 1;
    transform: translateY(0);
    transition: 1s;
}

.wp_wrap .m_visual .m_slider .m_slide .etc_box .mtxt {
    font-size: 70px;
    font-family: var(--font-jalnan);
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(20%);
}

.wp_wrap .m_visual .m_slider .m_slide .etc_box .mdesc {
    text-align: center;
    font-size: 24px;
    color: #fff;
    padding-top: 5px;
    display: block;
    opacity: 0;
    transform: translateY(30%);
}

.wp_wrap .m_visual .m_slider .m_slide.active .etc_box .mtxt {
    opacity: 1;
    transform: translateY(0);
    transition: 1s 1s;
}

.wp_wrap .m_visual .m_slider .m_slide.active .etc_box .mdesc {
    opacity: 1;
    transform: translateY(0);
    transition: 1s 1.5s;
}


.wp_wrap .m_visual .ms_arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    z-index: 9;
    color: #fff;
}

.wp_wrap .m_visual .ms_arr.ms_lt {
    left: calc(50% - 850px);
}

.wp_wrap .m_visual .ms_arr.ms_rt {
    right: calc(50% - 850px);
}

.wp_wrap .m_visual .ms_arr i {
    font-size: 65px;
    color: rgba(255, 255, 255, 0.5);
}

.wp_wrap .m_visual .ms_dots {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.wp_wrap .m_visual .ms_dots .slick-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50%;
}

.wp_wrap .m_visual .ms_dots .slick-dots li button {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    font-size: 0;
}

.wp_wrap .m_visual .ms_dots .slick-dots li.slick-active button {
    border: none;
    width: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.wp_wrap .m_visual .ms_dots .slick-dots li button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: 0 100%;
    background: #fff;
}

.wp_wrap .m_visual .ms_dots .slick-dots li.slick-active button::after {
    transform: scaleX(1);
    animation: prg_dot 4s;
}

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

    100% {
        width: 100%;
    }
}













/* 브랜드 */
/* sec01_01 */
.wp_wrap .sec01_01 {
    padding: 0 0 200px 0;
    background: url(../img/main/sec02_bg.jpg) no-repeat center center / cover;
}

.wp_wrap .sec01_01 .bg_acc {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .sec01_01 .txt_box {
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.wp_wrap .sec01_01 .txt_box .txt01 {
    font-size: 50px;
    font-family: var(--font-pre100);
    margin-bottom: 10px;
}

.wp_wrap .sec01_01 .txt_box .txt02 {
    font-size: 30px;
    font-family: var(--font-jalnan);
    margin-bottom: 20px;
}

.wp_wrap .sec01_01 .txt_box .txt03 {
    font-size: 70px;
    font-family: var(--font-jalnan);
    margin-bottom: 40px;
}

.wp_wrap .sec01_01 .txt_box .txt04 {
    font-size: 20px;
}

.wp_wrap .sec01_01 .video_box {
    max-width: 960px;
    width: 100%;
    height: 600px;
    background: #fff;
    margin: 0 auto;
}

.wp_wrap .sec01_01 .video_box iframe {
    width: 100%;
    height: 100%;
}


/* sec01_02 */
.wp_wrap .sec01_02 {
    padding: 200px 0;
    background: url(../img/main/sec03_bg.jpg) no-repeat fixed center / cover;
}

.wp_wrap .sec01_02 .txt_box {
    text-align: center;
    color: #fff;
}

.wp_wrap .sec01_02 .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
    margin-bottom: 40px;
}

.wp_wrap .sec01_02 .txt_box .txt02 {
    font-size: 20px;
}





/* 경쟁력 */
/* sec02_01 */
.wp_wrap .sec02_01 {
    padding: 200px 0;
    background: url(../img/main/sec04_bg.jpg) no-repeat center center / cover;
}


.wp_wrap .sec02_01 .cpt_itms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wp_wrap .sec02_01 .cpt_itms .noncard_li .txt_box {
    color: #fff;
    text-align: center;
}

.wp_wrap .sec02_01 .cpt_itms .noncard_li .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
    margin-bottom: 40px;

}

.wp_wrap .sec02_01 .cpt_itms .noncard_li .txt_box .txt02 {
    font-size: 22px;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card {
    width: 100%;
    height: 630px;
    transition: 0.5s;
    transform-style: preserve-3d;
}



.wp_wrap .sec02_01 .cpt_itms .card_li .card .front,
.wp_wrap .sec02_01 .cpt_itms .card_li .card .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .front .img_bg,
.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .img_bg {
    width: 100%;
    height: 100%;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .front .img_bg img,
.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .img_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .front .shadow {
    background: rgba(0, 0, 0, 0.5);
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow {
    background: rgba(0, 0, 0, 0.9);
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .front .shadow .txt_box {
    border: 1px solid #fff;
    /* width: 475px; */
    width: 90%;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;

}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .front .shadow .txt_box p {
    font-size: 40px;
    font-family: var(--font-OMT);
    color: #fff;
    text-align: center;
    line-height: 1.2;
}


.wp_wrap .sec02_01 .cpt_itms .card_li .card .back {
    transform: rotateY(180deg);
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow .txt_box {
    color: #fff;
    text-align: center;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow .txt_box .icon_box {
    margin-bottom: 40px;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow .txt_box .icon_box img {
    margin: 0 auto;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow .txt_box .tit {
    font-size: 40px;
    font-family: var(--font-OMT);
    margin-bottom: 40px;
    line-height: 1.2;
    padding: 0 10px;
}

.wp_wrap .sec02_01 .cpt_itms .card_li .card .back .shadow .txt_box .desc {
    font-size: 20px;
    padding: 0 10px;
}





.card_li:hover .card {
    transform: rotateY(180deg);
}










/* 매출전략 */
/* sec03_01 */
.wp_wrap .sec03_01 {
    padding: 200px 0;
    background: url(../img/main/sec05_bg.jpg) no-repeat fixed center / cover;
}

.wp_wrap .sec03_01 .txt_box {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.wp_wrap .sec03_01 .txt_box .txt01 {
    font-size: 30px;
    font-family: var(--font-jalnan);
    margin-bottom: 20px;
}

.wp_wrap .sec03_01 .txt_box .txt02 {
    font-size: 60px;
    font-family: var(--font-jalnan);
}

.wp_wrap .sec03_01 .cont_box {
    background: rgba(0, 0, 0, 0.5);
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul {
    display: flex;
    align-items: stretch;
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul li {
    width: 20%;
    padding: 80px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: #fff;
    transition: 0.3s;
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul li:hover {
    background: rgba(216, 0, 255, 0.4);
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul li .tit {
    font-size: 36px;
    font-family: var(--font-OMT);
    margin-bottom: 35px;
}

.wp_wrap .sec03_01 .cont_box .cont_inner ul li .desc {
    font-size: 20px;
    letter-spacing: -0.3px;
}


/* sec03_02 */
.wp_wrap .sec03_02 {
    padding: 200px 0;
    background: url(../img/main/sec06_bg.jpg) no-repeat center center / cover;
}

.wp_wrap .sec03_02 .txt_box {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.wp_wrap .sec03_02 .txt_box .txt01 {
    font-size: 30px;
    font-family: var(--font-OMT);
    margin-bottom: 20px;
}

.wp_wrap .sec03_02 .txt_box .txt02 {
    font-size: 60px;
    font-family: var(--font-jalnan);
}

.wp_wrap .sec03_02 .cont_box .sales_arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
}


.wp_wrap .sec03_02 .cont_box .slide_area {
    position: relative;
    margin-bottom: 60px;
}

.wp_wrap .sec03_02 .cont_box .sales_arr.sales_lt {
    left: calc(50% - 850px);
}

.wp_wrap .sec03_02 .cont_box .sales_arr.sales_rt {
    right: calc(50% - 850px);
}

.wp_wrap .sec03_02 .cont_box .sales_slider {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

.wp_wrap .sec03_02 .cont_box .sales_slider .slick-list {
    margin: 0 -30px;
}

.wp_wrap .sec03_02 .cont_box .sales_slider .slick-slide {
    margin: 0 30px;
}

.wp_wrap .sec03_02 .cont_box .sales_slider .sales_slide .slide_in {
    width: 100%;
    aspect-ratio: auto 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    border: 5px solid #D800FF;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.wp_wrap .sec03_02 .cont_box .sales_slider .sales_slide .slide_in .place {
    display: inline-block;
    padding: 10px 20px;
    font-size: 36px;
    font-family: var(--font-OMT);
    background: #D800FF;
    margin-bottom: 10px;
}

.wp_wrap .sec03_02 .cont_box .sales_slider .sales_slide .slide_in .amount {
    font-size: 70px;
    font-family: var(--font-OMT);
}

.wp_wrap .sec03_02 .cont_box>p {
    font-size: 15px;
    text-align: center;
    color: #fff;
}



/* sec03_03 */
.wp_wrap .sec03_03 {
    padding: 200px 0;
    background: url(../img/main/sec07_bg.jpg) no-repeat center center / cover;
}

.wp_wrap .sec03_03 .txt_box {
    text-align: center;
    color: #000;
    margin-bottom: 60px;
}

.wp_wrap .sec03_03 .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
    margin-bottom: 20px;
}

.wp_wrap .sec03_03 .txt_box .txt02 {
    font-size: 30px;
    font-family: var(--font-OMT);
}

.wp_wrap .sec03_03 .cont_box {
    display: flex;
    align-items: center;
}

.wp_wrap .sec03_03 .cont_box .lt,
.wp_wrap .sec03_03 .cont_box .rt {
    width: 50%;
}

.wp_wrap .sec03_03 .cont_box .lt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .sec03_03 .cont_box .lt>p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-family: var(--font-OMT);
    color: #DC000C;
    text-align: center;
}

.wp_wrap .sec03_03 .cont_box .rt {
    padding-left: 50px;
}

.wp_wrap .sec03_03 .cont_box .rt table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    font-family: var(--font-pre400);
    color: #000;
}

.wp_wrap .sec03_03 .cont_box .rt table tr {
    border-bottom: 1px solid #999999;
}

.wp_wrap .sec03_03 .cont_box .rt table tr:first-child {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.wp_wrap .sec03_03 .cont_box .rt table tr:last-child {
    background: #00E0D1;
    color: #fff;
    font-family: var(--font-pre700);
}

.wp_wrap .sec03_03 .cont_box .rt table tr td {
    font-size: 20px;
    padding: 20px 0;
    text-align: center;
}

.wp_wrap .sec03_03 .cont_box .rt .caution_box {
    font-size: 15px;
    text-indent: -12px;
    margin-left: 12px;
}


/* sec03_04 */
.wp_wrap .sec03_04 {
    padding: 200px 0;
    background: url(../img/main/sec08_bg.jpg) no-repeat center center / cover;
}

.wp_wrap .sec03_04 .inner_box {
    display: flex;
    align-items: stretch;
}

.wp_wrap .sec03_04 .inner_box .lt,
.wp_wrap .sec03_04 .inner_box .rt {
    width: 50%;
}

.wp_wrap .sec03_04 .inner_box .lt {
    background: rgba(41, 18, 82, 0.73);
    padding: 115px 30px;
}

.wp_wrap .sec03_04 .inner_box .rt {
    background: #fff;
    padding: 100px 60px;
}

.wp_wrap .sec03_04 .inner_box .lt .tit_box .txt_box {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.wp_wrap .sec03_04 .inner_box .lt .tit_box .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
    margin-bottom: 20px;
}

.wp_wrap .sec03_04 .inner_box .lt .tit_box .txt_box .txt02 {
    font-size: 20px;
}

.wp_wrap .sec03_04 .inner_box .lt .tab_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    place-items: center;
}

.wp_wrap .sec03_04 .inner_box .lt .tab_menu button {
    font-size: 24px;
    font-family: var(--font-OMT);
    color: #fff;
    text-align: center;
    width: 240px;
    height: 65px;
    background: transparent;
    border-radius: 50px;
    border: 1px solid #fff;
}

.wp_wrap .sec03_04 .inner_box .lt .tab_menu button.on {
    background: #fff;
    color: #5437A1;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont>li {
    display: none;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont>li.on {
    display: block;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area {
    position: relative;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .slide {
    width: 100%;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .slide .img_box {
    width: 100%;
    height: 485px;
    /* aspect-ratio: auto 1/0.66667; */
    margin-bottom: 40px;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .slide .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .slide .name {
    text-align: center;
    font-size: 30px;
    font-family: var(--font-OMT);
}


.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_arr {
    position: absolute;
    top: calc((100% - 74px) / 2);
    transform: translateY(-50%);
    background: transparent;
    width: 30px;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_arr.mnu_lt {
    left: 20px;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_arr.mnu_rt {
    right: 20px;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots .slick-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50%;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots .slick-dots li button {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fff;
    font-size: 0;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots .slick-dots li.slick-active button {
    width: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots .slick-dots li button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: 0 100%;
    background: #fff;
}

.wp_wrap .sec03_04 .inner_box .rt .tab_cont .slide_area .mnu_dots .slick-dots li.slick-active button::after {
    transform: scaleX(1);
    animation: sprg_dot 3s linear;
}

@keyframes sprg_dot {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}




/* 인테리어 */
/* sec04_01 */
.wp_wrap .sec04_01 {
    padding: 200px 0 0 0;
    background: url(../img/main/sec09_bg.jpg) no-repeat center center / cover;
}

.wp_wrap .sec04_01 .txt_box {
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.wp_wrap .sec04_01 .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
    margin-bottom: 20px;
}

.wp_wrap .sec04_01 .txt_box .txt02 {
    font-size: 24px;
}

/* 슬릭으로 */
/* .wp_wrap .sec04_01 .cont_box .interior_slider .slick-list{
    padding: 0 -90px;
}
.wp_wrap .sec04_01 .cont_box .interior_slider .slick-slide{
    padding: 0 90px;
}
.wp_wrap .sec04_01 .cont_box .interior_slider .interior_slide{
    transition: 0.5s;
}
.wp_wrap .sec04_01 .cont_box .interior_slider .interior_slide .img_box{
    background: 15px solid #fff;
    /* max-width: 850px; */
/* width: 100%; *
    height: 550px;
}
.wp_wrap .sec04_01 .cont_box .interior_slider .interior_slide .img_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
/* 스크립트로 */
.wp_wrap .sec04_01 .cont_box figure {
    position: relative;
}

.wp_wrap .sec04_01 .cont_box figure .interior_sld_btn {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    background: transparent;
    outline: none;
}

.wp_wrap .sec04_01 .cont_box figure .interior_sld_btn.btnPrev {
    left: calc(50% - 520px);
}

.wp_wrap .sec04_01 .cont_box figure .interior_sld_btn.btnNext {
    right: calc(50% - 520px);
}

.wp_wrap .sec04_01 figure {
    width: 100%;
    /* height: 100vh; */
    height: 700px;
    overflow: hidden;
    position: relative;
}

.wp_wrap .sec04_01 figure section {
    /* width: 42.5vw; */
    /* height: 62vh; */
    width: 800px;
    height: 565px;
    position: absolute;
    left: 50%;
    /* top: 550%; */
    top: 3830px;
    /* 회전할 때 사진 테두리 짤리는 거 예방하기위해 30px 더 줌 */
    margin-top: 0;
    /* margin-left: -21.2vw; */
    margin-left: -408px;
    transition: 0.5s;
}

.wp_wrap .sec04_01 figure section article {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wp_wrap .sec04_01 figure section article .inner {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-content: space-between;
    flex-wrap: wrap;
    transition: 0.3s;
    border: 15px solid transparent;
}

.wp_wrap .sec04_01 figure section article.on .inner {
    border: 15px solid #FFFFFF;
}

.wp_wrap .sec04_01 figure section article .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6);
    transition: 0.5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-use-select: none;
    user-select: none;
}

.wp_wrap .sec04_01 figure section article.on .inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0) brightness(1);
}

/* 창업안내 */
/* sec05_01 */
.wp_wrap .sec05_01 {
    padding: 200px 0;
    background: url(../img/main/sec10_bg.jpg) no-repeat center center / cover;
}


.wp_wrap .sec05_01 .txt_box {
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.wp_wrap .sec05_01 .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
}

.wp_wrap .sec05_01 .cont_box .step {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 90px 250px;
    gap: 90px 14.7%;
}

.wp_wrap .sec05_01 .cont_box .step .step_li {
    position: relative;
    width: 100%;
    max-width: 400px;
    border: 1px solid #D800FF;
    padding: 60px 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.wp_wrap .sec05_01 .cont_box .step .step_li .step_num {
    font-size: 20px;
    font-family: var(--font-OMT);
    margin-bottom: 10px;
    color: #D800FF;
}

.wp_wrap .sec05_01 .cont_box .step .step_li .step_name {
    font-size: 36px;
    font-family: var(--font-OMT);
    margin-bottom: 20px;
    color: #fff;
}

.wp_wrap .sec05_01 .cont_box .step .step_li .icon_box {
    margin-bottom: 20px;
}

.wp_wrap .sec05_01 .cont_box .step .step_li .icon_box img {
    margin: 0 auto;
}

.wp_wrap .sec05_01 .cont_box .step .step_li .step_desc {
    font-size: 20px;
    color: #fff;
}

.wp_wrap .sec05_01 .cont_box .step .step_li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/icon/step_arrs_rt.png) no-repeat center center / 100% 100%;
    width: 95px;
    height: 55px;
    right: -44%;
}

.wp_wrap .sec05_01 .cont_box .step .step_li:nth-child(3n)::after {
    display: none;
}

.wp_wrap .sec05_01 .cont_box .step .step_li:nth-child(3)::before,
.wp_wrap .sec05_01 .cont_box .step .step_li:nth-child(4)::before {
    content: "";
    position: absolute;
    bottom: -16%;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/icon/step_arr.png) no-repeat center center / 100% 100%;
    width: 54px;
    height: 32px;
}

.wp_wrap .sec05_01 .cont_box .step .step_li:nth-child(4)::after,
.wp_wrap .sec05_01 .cont_box .step .step_li:nth-child(5)::after {
    background: url(../img/icon/step_arrs_lt.png) no-repeat center center / 100% 100%;
}


/* sec05_02 */
.wp_wrap .sec05_02 {
    padding: 200px 0;
    background: url(../img/main/sec11_bg.jpg) no-repeat center center / cover;
}
.wp_wrap .sec05_02 .inner_box{
    position: relative;
}
.wp_wrap .sec05_02 .txt_box {
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.wp_wrap .sec05_02 .txt_box .txt01 {
    font-size: 60px;
    font-family: var(--font-jalnan);
}

.wp_wrap .sec05_02 .cont_box table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-pre400);
    margin-bottom: 20px;
}

.wp_wrap .sec05_02 .cont_box table tr {
    border-bottom: 1px solid #fff;
}
.wp_wrap .sec05_02 .blur_box table tr {
    filter: blur(5px);
}

.wp_wrap .sec05_02 .cont_box table tr:first-child {
    border-top: 1px solid #fff;
    background: rgba(0, 0, 0, 0.51);
    filter: unset;
}

.wp_wrap .sec05_02 .cont_box table tr td {
    color: #fff;
    padding: 20px 0;
    font-size: 20px;
    text-align: center;
}

.wp_wrap .sec05_02 .cont_box table tr:first-child td {
    font-size: 24px;
}

.wp_wrap .sec05_02 .cont_box table caption {
    caption-side: bottom;
    text-align: right;
    font-size: 15px;
    color: #fff;
    padding:5px 0;
    filter: blur(6px);
}

.wp_wrap .sec05_02 .cont_box .caution_box {
    display: flex;
    align-items: flex-start;
    filter: blur(6px);
}

.wp_wrap .sec05_02 .cont_box .caution_box ul {
    width: 50%;
}

.wp_wrap .sec05_02 .cont_box .caution_box ul li {
    font-size: 15px;
    color: #fff;
}



/* 가맹문의 모달창 추가 2025.03.13 */
.wp_wrap .sec05_02 #mdl_inquery{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 915px;
    width: 100%;
    padding:100px 20px;
    background-color: #7F1895;
}
.wp_wrap .sec05_02 #mdl_inquery.mdl_inquery02{
    top: 65%;
}
.wp_wrap .sec05_02 #mdl_inquery >.txt_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:45px;
    margin:0;
}
.wp_wrap .sec05_02 #mdl_inquery >.txt_box>.tit{}
.wp_wrap .sec05_02 #mdl_inquery >.txt_box>.tit >a{
    color:#fff;
    font-size: 40px;
    font-family: var(--font-jalnan);
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    text-align: center;
}
.wp_wrap .sec05_02 #mdl_inquery >.txt_box>.tit >a>img{}
.wp_wrap .sec05_02 #mdl_inquery >.txt_box>.des{
    color: #fff;
    font-size: 30px;
    font-family: var(--font-pre400);
    text-align: center;
}






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






/**********************************************************************************************************************/
/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .sub_top {
    position: relative;
}

.wp_wrap .sub_top .img_box {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.wp_wrap .sub_top .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 3s;
}

.wp_wrap .sub_top.on .img_box img {
    transform: scale(1);
}

.wp_wrap .sub_top .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .sub_top .shadow .txt_box {
    color: #fff;
    text-align: center;
}

.wp_wrap .sub_top .shadow .txt_box .sub_tit {
    font-size: 30px;
    font-family: var(--font-OMT);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20%);
    transition: 0.7s;
}

.wp_wrap .sub_top .shadow .txt_box .tit {
    font-size: 70px;
    font-family: var(--font-jalnan);
    opacity: 0;
    transform: translateY(20%);
    transition: 0.7s 0.7s;
}

.wp_wrap .sub_top.on .shadow .txt_box .sub_tit,
.wp_wrap .sub_top.on .shadow .txt_box .tit {
    opacity: 1;
    transform: translateY(0);
}

.wp_wrap .stit_box {
    margin-bottom: 60px;
    text-align: center;
}

.wp_wrap .stit_box .icon_box {
    margin-bottom: 30px;
}

.wp_wrap .stit_box .icon_box img {
    margin: 0 auto;
}

.wp_wrap .stit_box>p {
    font-size: 60px;
    font-family: var(--font-jalnan);
}





.wp_wrap .s_inquire .cont_box .form_in {
    background: #6B5E9E;
    border-radius: 30px;
    padding: 60px 100px;
}

.wp_wrap .s_inquire .cont_box .form_in .top {
    margin-bottom: 25px;
}

.wp_wrap .s_inquire .cont_box .form_in .top .line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.wp_wrap .s_inquire .cont_box .form_in .top .line .ip_itm {
    width: 50%;
}

.wp_wrap .s_inquire .cont_box .form_in .top .line .ip_itm .ip_box {
    display: flex;
    align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    background: #fff;
    gap: 15px;
}

.wp_wrap .s_inquire .cont_box .form_in .top .line .ip_itm .ip_box p {
    font-size: 20px;
}

.wp_wrap .s_inquire .cont_box .form_in .top .line .ip_itm .ip_box input[type="text"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #656565;
    font-family: var(--font-pre500);
}

.wp_wrap .s_inquire .cont_box .form_in .top .ta_box textarea {
    padding: 15px 40px;
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
    background: #fff;
    resize: none;
    border: none;
    outline: none;
    font-size: 18px;
    color: #656565;
    font-family: var(--font-pre500);
    overflow: hidden;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box .chk_ip_box {
    display: flex;
    align-items: center;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box .chk_ip_box input[type="checkbox"] {
    display: none;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box .chk_ip_box input[type="checkbox"]+label {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-family: var(--font-pre600);
    color: #fff;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box .chk_ip_box input[type="checkbox"]+label span {
    width: 30px;
    height: 30px;
    background: url(../img/icon/fix_chk_before.png) no-repeat center center / cover;
    margin-right: 10px;
    display: inline-block;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box .chk_ip_box input[type="checkbox"]:checked+label span {
    background: url(../img/icon/fix_chk_after.png) no-repeat center center / cover;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .agr_box button {
    font-size: 20px;
    font-family: var(--font-pre600);
    color: #fff;
    background: transparent;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .sbm_btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp_wrap .s_inquire .cont_box .form_in .bot .sbm_btn_box .sbm_btn {
    padding: 12px 70px;
    border-radius: 22px;
    border: 1px solid #fff;
    font-size: 20px;
    font-family: var(--font-jalnan);
    color: #fff;
    background: transparent;
}

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


/**********************************************************************************************************************/
/* 개인정보 모달 */
/**********************************************************************************************************************/
.wp_wrap .idvs_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 .idvs_md.on {
    display: block;
}

.wp_wrap .idvs_md .md_outer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.wp_wrap .idvs_md .md_outer .width_inner {
    position: relative;
    max-width: 650px;
    width: 100%;
    margin: 0 15px;
    height: 85vh;
    background: #fff;
    border-radius: 5px;
    padding: 30px 40px 60px 40px;
}

.wp_wrap .idvs_md .md_outer .width_inner .icon_box {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
}

.wp_wrap .idvs_md .md_outer .width_inner .icon_box i {
    border: 2px solid #999;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    color: #999;
    font-weight: 900;
}

.wp_wrap .idvs_md .md_outer .width_inner .md_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.wp_wrap .idvs_md .md_outer .width_inner .md_inner p {
    font-size: 30px;
    font-family: var(--font-pre600);

}

.wp_wrap .idvs_md .md_outer .width_inner .md_inner .txt_box {
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;
}

.wp_wrap .idvs_md .md_outer .width_inner .md_inner .txt_box .txt_body pre {
    font-family: var(--font-pre400);
    font-size: 16px;
    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 .idvs_md .md_outer .width_inner .md_inner .txt_box .txt_body pre .cicnum {
    position: relative;
    display: inline-block;
    top: -1px;
    font-size: 11px;
}

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