@charset "utf-8";

/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/
/* 폰트*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/* font-family: 'SUIT Variable', sans-serif; SUIT_Variable */
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

@font-face {
    font-family: 'GongGothicMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-w100: 100; /* Thin */
    --font-w200: 200; /* Extra-Light */
    --font-w300: 300; /* Light */
    --font-w400: 400; /* Regular */
    --font-w500: 500; /* Medium */
    --font-w600: 600; /* Semi-Bold */
    --font-w700: 700; /* Bold */
    --font-w800: 800; /* Extra-Bold */
    --font-w900: 900; /* Black */
}


/*최상위 요소 */
html {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.wp_wrap {
    overflow: hidden;
}
.wp_wrap .wp_alert_red{
    font-size: 13px;
}


/* 텍스트 */
.wp_wrap h1 {
}

.wp_wrap h2 {
}

.wp_wrap h3 {
}

.wp_wrap h4 {
}

.wp_wrap h5 {
}

.wp_wrap h6 {
}


/* 아우터, 이너사이즈 */
.wp_wrap .cm_outter {
    width: 1677px;
    margin: 0 auto;
}

.wp_wrap .cm_inner {
    width: 1400px;
    margin: 0 auto;
}


/*버튼*/
.wp_wrap .btn_mv {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 8px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.4s;
}

.wp_wrap .btn_mv01 {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background-color: #1A1A1A;
}

.wp_wrap .btn_mv01:hover {
    background-color: #D60606;
    transition: 0.4s;
}

.wp_wrap .btn_mv02 {
    justify-content: center;
    align-items: center;
    min-width: 110px;
    width: 110px;
    height: 110px;
    font-size: 15px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    letter-spacing: -1px;
    text-align: center;
    border-radius: 25px;
    background-color: #D8D8D8;
}

.wp_wrap .btn_mv02 .txt {
    display: block;
}

.wp_wrap .btn_mv02 .txt > img {
    display: inline-block;
    margin-left: 2px;
}

.wp_wrap .btn_mv02:hover {
    color: #fff;
    background-color: #1A1A1A;
    transition: 0.4s;
}

.wp_wrap .btn_mv03 {
    min-width: 58px;
    width: 58px;
    height: 58px;
    background-color: #1A1A1A;
}

.wp_wrap .btn_mv01:hover {
    background-color: #D60606;
    transition: 0.4s;
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 헤더 스타일 */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 공통 */
.wp_wrap header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
}

.wp_wrap header .hd_wrap {
}

.wp_wrap header .hd_ir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 로고 */
.wp_wrap header .hd_ir .logo {
    max-width: 210px;
    min-width: 210px;
}

.wp_wrap header .hd_ir .logo > a {
    display: block;
    width: 100%;
}

.wp_wrap header .hd_ir .logo > a > img {
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 메뉴 */
.wp_wrap header .hd_ir .hmnu {
    max-width: 760px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_wrap header .hd_ir .hmnu > li {
    position: relative;
    display: flex;
    justify-content: center;
    width: 16%;
}

.wp_wrap header .hd_ir .hmnu > li > a {
    font-size: 20px;
    font-weight: var(--font-w700);
}

.wp_wrap header .hd_ir .hmnu > li > a > .txt_b {
    color: #C50202;
}

.wp_wrap header .hd_ir .hmnu > li .bln_bx {
    position: absolute;
    left: 50%;
    top: -150%;
    width: 150px;
    background-color: #0A0A0A;
    border-radius: 5px;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .hmnu > li:hover .bln_bx {
    opacity: 1;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .hmnu > li .bln_bx > .bln_txt {
    position: relative;
    padding: 5px;
    box-sizing: border-box;
}

.wp_wrap header .hd_ir .hmnu > li .bln_bx > .bln_txt > .txt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 14px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
}

.wp_wrap header .hd_ir .hmnu > li .bln_bx > .bln_txt > .txt svg {
}

.wp_wrap header .hd_ir .hmnu > li .bln_bx > .bln_txt .trg_bt {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #0A0A0A;
    transform: translateX(-50%);
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 정보 */
.wp_wrap header .hd_ir .hinfo {
    max-width: 540px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.wp_wrap header .hd_ir .hinfo > li {
}

.wp_wrap header .hd_ir .hinfo > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w500);
}

.wp_wrap header .hd_ir .hinfo > li > a::after {
    display: block;
    content: '';
    width: 2px;
    height: 15px;
    margin-inline: 10px;
    background-color: rgba(130, 130, 130, 0.5);
}

.wp_wrap header .hd_ir .hinfo > li:last-child > a::after {
    display: none;
}

.wp_wrap header .hd_ir .hinfo > li > a svg {
    margin-left: 5px;
}

.wp_wrap header .hd_ir .hinfo > li > a svg path {
    transition: 0.4s;
}

.wp_wrap header .hd_ir .hinfo > li:hover > a svg path {
    fill: #ECA808;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .hinfo > li.txt_tell > a {
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 풀메뉴 버튼 */
.wp_wrap header .hd_ir .btn_fm_opn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    min-width: 49px;
    width: 49px;
    height: 49px;
    padding: 15px;
    background-color: #C91C2D;
    border-radius: 10px;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .btn_fm_opn > .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .btn_fm_opn > .bar01 {
}

.wp_wrap header .hd_ir .btn_fm_opn > .bar02 {
}

.wp_wrap header .hd_ir .btn_fm_opn > .bar03 {
}


.wp_wrap header .hd_ir .btn_fm_opn:hover {
    background-color: #0A0A0A;
    transition: 0.4s;
}

.wp_wrap header .hd_ir .btn_fm_opn:hover > .bar02 {
    width: 50%;
    transition: 0.3s;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 풀메뉴 */
.wp_wrap #mdl_fm {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9999;
}

.wp_wrap #mdl_fm .mdl_wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.wp_wrap #mdl_fm .mdl_back {
    position: relative;
    width: 100%;
    height: 100%;
}

.wp_wrap #mdl_fm .mdl_back > .move_sq {
    width: 100%;
    height: 100%;
    background-color: rgba(201, 28, 45, .95);
    transition: 0.15s ease-out;
}
.wp_wrap #mdl_fm.on .mdl_back > .move_sq {
    height: 50%;
    transition: 0.3s ease-in;
}
.wp_wrap #mdl_fm .mdl_back > .txt_logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*background-color: white;*/
    opacity: 0;
    transition: 0.15s ease-out;
}
.wp_wrap #mdl_fm.on .mdl_back > .txt_logo {
    opacity: 1;
    transition: 0.3s linear;
    transition-delay: 0.3s;
}

.wp_wrap #mdl_fm .mdl_back > .txt_logo > .txt {
    font-size: 172px; /* 이전에 논의한 폰트 크기 적용 */
    font-weight: 900;
    color: transparent;
    -webkit-background-clip: text; /* Webkit 기반 브라우저 (Chrome, Safari) */
    background-clip: text;
    background-image: linear-gradient(
            to top, /* 위에서 아래로 그라데이션 적용 */ rgba(201, 28, 45, .95) 0%, /* 0%부터 50%까지 빨간색 */ rgba(201, 28, 45, .95) 50%,
            rgba(255, 255, 255, .95) 50%, /* 50%부터 100%까지 투명 */ rgba(255, 255, 255, .95) 100%
    );
}

.wp_wrap #mdl_fm .mdl_ir {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
    padding: 50px 0;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_hd {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_hd > .btn_fm_cls {
    color: #fff;
    font-size: 21px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
    background: none;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_hd > .btn_fm_cls svg {
    transform-origin: 50% 50%;
    transition: 0.3s;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_hd > .btn_fm_cls:hover svg {
    transform: rotate(300deg);
    transition: 0.3s;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd {
    width: 100%;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.35s ease-out;
}
.wp_wrap #mdl_fm.on .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu {
    opacity: 1;
    transform: translateY(0px);
    transition: 0.3s ease-in;
    transition-delay: 0.35s linear;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu > li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu > li > .tit {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    text-align: center;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu > li > .mdl_smnu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu > li > .mdl_smnu > li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap #mdl_fm .mdl_ir .mdl_cont .mdl_bd > .mdl_mnu > li > .mdl_smnu > li > a {
    color: #fff;
    font-size: 19px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    text-align: center;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 헤더 탑버튼 */
.wp_wrap #btn_top {
    position: fixed;
    right: 35px;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(33, 33, 33, .21);
    z-index: 500;
}

.wp_wrap #btn_top svg {
}


/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 푸터 스타일 */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 푸터 공통 */
.wp_wrap footer {
}

.wp_wrap footer .ft_wrap {
}

.wp_wrap footer .ft_ir {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 60px 30px;
    border-top: 1px solid #1A1A1A;
}

.wp_wrap footer .ft_ir .ft_lt {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 35px;
}

.wp_wrap footer .ft_ir .ft_rt {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 60px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 푸터 로고 */
.wp_wrap footer .ft_ir .ft_lt .ft_logo {
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .logo > .logo_txt {
    font-size: 15px;
    font-weight: var(--font-w600);
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .logo > img {
    margin-bottom: 8px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .logo > .logo_info {
    display: block;
    font-size: 14px;
    font-weight: var(--font-w300);
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .ico_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding-top: 20px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .ico_list > li {
}

.wp_wrap footer .ft_ir .ft_lt .ft_logo > .ico_list > li svg {
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 푸터 정보 */
.wp_wrap footer .ft_ir .ft_lt .ft_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list > li > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: var(--font-w300);
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list > li > a::after {
    display: block;
    content: "";
    width: 1px;
    height: 14px;
    margin-inline: 10px;
    background-color: #414141;
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list > li > a:last-child::after {
    display: none;
}

.wp_wrap footer .ft_ir .ft_lt .ft_info > .info_list > li > .txt {
    font-size: 14px;
    font-weight: var(--font-w300);
}

.wp_wrap footer .ft_ir .ft_lt .ft_info .copy {
    color: #959595;
    font-size: 14px;
    font-weight: var(--font-w300);
    letter-spacing: -0.5px;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 푸터 메뉴 */
.wp_wrap footer .ft_ir .ft_rt .ft_mnu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap footer .ft_ir .ft_rt .ft_mnu > li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.wp_wrap footer .ft_ir .ft_rt .ft_mnu > li > .tit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
}

.wp_wrap footer .ft_ir .ft_rt .ft_mnu > li > .ft_smnu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap footer .ft_ir .ft_rt .ft_mnu > li > .ft_smnu > li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap footer .ft_ir .ft_rt .ft_mnu > li > .ft_smnu > li > a {
    text-align: center;
    font-size: 15px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 푸터 SNS */
.wp_wrap footer .ft_ir .ft_rt .sns_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_wrap footer .ft_ir .ft_rt .sns_list > li {
}

.wp_wrap footer .ft_ir .ft_rt .sns_list > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap footer .ft_ir .ft_rt .sns_list > li > a svg {
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 메인 스타일 */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 공통 */
.wp_wrap main {
    padding-bottom: 60px;
}

/*섹션 공통*/
.wp_wrap .sec {
    max-width: 1707px;
    width: 100%;
    margin-top: 120px;
    margin-inline: auto;
    padding-inline: 15px;
}

.wp_wrap .sec_hd {
    margin-bottom: 60px;
}

/*섹션 타이틀*/
.wp_wrap .sec_tit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;


    transform: translateY(30px);
    filter: blur(4px);
    opacity: 0;
    transition: 1s ease-in-out;
}
.wp_wrap .sec_tit.mtit_eff {
    transform: translateY(0);
    filter: blur(0);
    opacity: 0.8;
}

.wp_wrap .sec_tit > strong {
    color: #C91C2D;
    font-size: 20px;
    font-family: "Play", sans-serif;
    font-weight: var(--font-w700);
}

.wp_wrap .sec_tit > h2 {
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w200);
}

.wp_wrap .sec_tit > h2 > b {
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
}

/*섹션 타이틀02*/
.wp_wrap .sec_tit02 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.wp_wrap .sec_tit02 > strong {
    color: #C91C2D;
    font-size: 20px;
    font-family: "Play", sans-serif;
    font-weight: var(--font-w700);
}

.wp_wrap .sec_tit02 > h2 {
    color: #3E3E3E;
    font-size: 30px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w200);
    line-height: 1.35;
}

.wp_wrap .sec_tit02 > h2 > b {
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
}



/*서브 타이틀*/
.wp_wrap .sub_tit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.wp_wrap .sub_tit > h2 {
    width: 100%;
    font-size: 60px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w300);
    text-align: center;
}
.wp_wrap .sub_tit > h2 >b{
    font-weight: var(--font-w700);
}

.wp_wrap .sub_tit > p {
    width: 100%;
    color:#141414;
    font-size: 30px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w300);
    line-height: 40px;
    text-align: center;
}




/*게시판 타이틀*/
.wp_wrap .ntc_tit01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.wp_wrap .ntc_tit01 > h2 {
    color: #3E3E3E;
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w900);
}

.wp_wrap .ntc_tit01 > p {
    color: #3E3E3E;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
}
.wp_wrap .ntc_tit01 > p >a{
    text-decoration: underline;
    transition: 0.4s ease-out;
}
.wp_wrap .ntc_tit01 > p >a:hover{
    color:#C91C2D;
    transition: 0.4s ease-in;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 비주얼 */
.wp_wrap #ms_vs {
}

.wp_wrap #ms_vs .ms_ir {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.wp_wrap #ms_vs .ms_ir > .lt {
    width: 76%;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_frm {
    width: 100%;
    height: 100%;
    background-color: #000;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_frm > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx > .mn_tit {
    text-align: center;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx > .mn_tit > .txt_b {
    color: #fff;
    font-size: 32px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w900);
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx > .mn_tit > .txt {
    display: block;
    color: #fff;
    font-size: 25px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w300);
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx > .mn_des {
    color: #fff;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w100);
    text-align: center;
}

.wp_wrap #ms_vs .ms_ir > .lt .vd_bx .vd_txt > .txt_bx > .mn_des > b {
    color: #fff;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
}

.wp_wrap #ms_vs .ms_ir > .rt {
    min-width: 400px;
    width: 24%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

/* Right_Block */
.wp_wrap #ms_vs .ms_ir > .rt .rt_blk {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    padding: 25px 15px 15px 30px;
    background-color: #F3F3F3;
    border-radius: 30px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_hd {
    width: 100%;
    padding-bottom: 15px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_hd > .flag {
    color: #C91C2D;
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_bd {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_bd > .tit {
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
    letter-spacing: -1px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_bd > .des {
    color: #C91C2D;
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    letter-spacing: -1px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_ft {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_ft > a {
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_ft > a > img {
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_ft .cont {
    flex-grow: 1;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk .blk_ft .cont .txt_link {
    font-size: 25px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    letter-spacing: -1px;
}

/* Right_Block_Search */
.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 15px 30px;
    background-color: #C50202;
    border-radius: 30px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd > .tit {
    color: #fff;
    font-size: 25px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx {
    width: 100%;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx > form {
    width: 100%;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx .sch_ir {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx .sch_ir input[type=text] {
    color: #fff;
    padding-inline-start: 10px;
    border: none;
    outline: none;
    background: none;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx .sch_ir input[type=text]::placeholder {
    color: rgba(255, 255, 255, .53);
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w300);
    letter-spacing: -1px;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx .sch_ir > .btn_sch {
    background: none;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_hd .sch_bx .sch_ir > .btn_sch > img {
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap:20px;*/
    /*row-gap: 10px;*/
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd .nul_bx {
    float: right;
    width: 120px;
    height: 120px;
}

/*.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd .nul_bx::after{*/
/*    display: block;*/
/*    content: '';*/
/*    clear: both;*/
/*}*/
.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd > .hash_txt {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, .53);
    font-size: 15px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    margin-right: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.2px;
    transition: 0.4s;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd > .hash_txt::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    content: "";
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: 0.4s;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd > .hash_txt::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .53);
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd > .hash_txt:hover {
    color: #fff;
    transition: 0.4s;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_bd > .hash_txt:hover::before {
    width: 100%;
    transition: 0.4s;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_ft {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 35px 0 0 35px;
    background-color: #fff;
    background-image: url(/img/img_new/back_coner.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.wp_wrap #ms_vs .ms_ir > .rt .rt_blk_sch .blk_ft .btn_mv {
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 포트폴리오 */
.wp_wrap .ms_prt {
}

/*상단*/
.wp_wrap .ms_prt .sec_hd {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}

.wp_wrap .ms_prt .sec_hd .tab_hd {
    margin-left: auto;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item {
    position: relative;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item::after {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 0%;
    height: 100%;
    border-radius: 20px;
    background-color: #0A0A0A;
    transition: 0.4s;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item > .txt {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0A0A0A;
    font-size: 15px;
    font-family: 'SUIT Variable', sans-serif;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item:hover::after,
.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item.on::after {
    width: 100%;
    transition: 0.4s;
}

.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item:hover > .txt,
.wp_wrap .ms_prt .sec_hd .tab_hd .tab_hd_items .tab_item.on > .txt {
    color: #fff;
}

/*하단_슬라이드*/
.wp_wrap .ms_prt .swiper {
    overflow: unset;
}

.wp_wrap .ms_prt .swiper .tab-swiper {
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-wrapper {
    display: none;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-wrapper.on {
    display: flex;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide {
    padding-left: 30px;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx {
    position: relative;
    width: 100%;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx > .img_frm {
    /*width: 470px;*/
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx > .img_frm > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide:hover > .tab_card > .img_bx > .img_frm > img {
    transform: scale(1.1);
    transition: 0.4s;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx > .btn_bx {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 0 0 10px;
    background-color: #fff;
    border-radius: 20px 0 0 0;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx > .btn_bx > .btn_mv {
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .img_bx > .btn_bx > .btn_mv > img {
}


.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .txt_bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 0 20px;
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .txt_bx > strong {
    width: 100%;
    font-size: 20px;
    font-weight: var(--font-w700);
}

.wp_wrap .ms_prt .swiper .tab-swiper .swiper-slide > .tab_card > .txt_bx > .des {
    height: 100px;
    font-size: 16px;
    font-weight: var(--font-w400);
    line-height: 25px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 상품소개 */
.wp_wrap .ms_pdt {
}

.wp_wrap .ms_pdt .tab_whl {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

/* 헤더 */
.wp_wrap .ms_pdt .tab_whl .tab_hd {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.wp_wrap .ms_pdt .tab_whl .tab_hd > li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 150px;
    font-size: 19px;
    font-weight: var(--font-w200);
    border: 1px dashed #989898;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
}

.wp_wrap .ms_pdt .tab_whl .tab_hd > li.on {
    color: #fff;
    font-size: 20px;
    font-family: "Play", sans-serif;
    font-weight: var(--font-w700);
    border: 1px dashed #C50202;
    background-color: #C50202;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.wp_wrap .ms_pdt .tab_whl .tab_hd > li:hover {
    color: #fff;
    font-size: 20px;
    border: 1px dashed #C50202;
    background-color: #C50202;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}

/* 바디 */
.wp_wrap .ms_pdt .tab_whl .tab_bd_items {
    width: 100%;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li {
    position: relative;
    display: none;
    height: 100%;
    padding: 65px;
    border-radius: 30px;
    background-color: #F5F5F5;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li.on {
    display: block;
}

/* 배경 영역 */
.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_bgk {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 70px 90px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_bgk > .bgk_cont {
    position: relative;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_bgk > .bgk_cont > .slog {
    position: absolute;
    left: -70%;
    top: 50%;
    min-width: 330px;
    display: inline-block;
    color: #989898;
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w100);
    text-align: right;
    letter-spacing: -1px;
    transform: translateY(-50%);
    display: none;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_bgk > .bgk_cont > img {
    max-width: 240px;
    width: 100%;
}

/* 프론트 영역 */
.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_tit {
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_tit > .tit {
    font-size: 40px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_tit > .tit > .clr01 {
    color: #C91C2D;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_side {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_side > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 300px;
    height: 50px;
    color: #1A1A1A;
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w500);
    border-radius: 25px;
    background-color: #fff;
    border: 1px solid #1A1A1A;
    transition: 0.4s;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_side > a:hover {
    color: #fff;
    background-color: #1A1A1A;
    transition: 0.4s;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_tp > .tp_side > a > img {
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid {
    width: 100%;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li {
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li > .txt {
    color: #1A1A1A;
    font-size: 23px;
    font-family: 'SUIT Variable', sans-serif;
    font-family: var(--font-w600);
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li > .desc {
    padding-top: 20px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li > .desc > .des {
    color: #1A1A1A;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-family: var(--font-w400);
    letter-spacing: -1px;
    line-height: 30px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li > .desc > .des > b {
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-family: var(--font-w800);
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .mid_list > li > .txt_bold {
    margin-top: 30px;
    font-size: 25px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
    letter-spacing: -1px;
}


/* 카드리스트*/
.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list > li {
    /* flex-grow: 1; */
    /* width: 100%; */
    width: calc((100% - 60px) / 4);
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border: 1px solid #CECECE;
    background-color: #fff;
    border-radius: 20px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list > li > .tp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list > li > .tp > .img_frm {
    width: 185px;
    min-height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w900);
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list > li > .tp > strong {
    min-height: 50px;
    display: block;
    font-size: 18px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
    text-align: center;
    line-height: 25px;
}

.wp_wrap .ms_pdt .tab_whl .tab_bd_items > li > .item_frt > .bd_mid > .cd_list > li > .des {
    font-size: 18px;
    font-weight: var(--font-w400);
    text-align: center;
    line-height: 28px;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 어바웃 */
.wp_wrap .ms_abt {
}

.wp_wrap .ms_abt .abt_list {
}

.wp_wrap .ms_abt .abt_list .abt_items {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.wp_wrap .ms_abt .abt_list .abt_items > li {
    /* width: 100%; */
    width: calc((100% - 30px) / 3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 35px;
    max-width: 510px;
    padding: 45px 40px;
    border: 1px solid #060606;
    border-radius: 30px;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_abt .abt_list .abt_items > li > .num {
    color: #3B3B3B;
    font-size: 100px;
    font-weight: var(--font-w900);
    letter-spacing: -1px;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_abt .abt_list .abt_items > li > .tit {
    display: block;
    font-size: 30px;
    font-weight: var(--font-200);
}

.wp_wrap .ms_abt .abt_list .abt_items > li > .des {
    font-size: 18px;
    font-weight: var(--font-300);
    line-height: 28px;
}

.wp_wrap .ms_abt .abt_list .abt_items > li:hover {
    color: #fff;
    background-color: #000000;
    transition: 0.4s ease-in;
}

.wp_wrap .ms_abt .abt_list .abt_items > li:hover > .num {
    color: #fff;
    transition: 0.4s ease-in;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 유지보수 */
.wp_wrap .ms_mtn {
}

.wp_wrap .ms_mtn .brd_list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/*좌측 정보*/
.wp_wrap .ms_mtn .brd_list > .sq_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 90px;
    max-width: 400px;
    /* min-width: 270px; */
    width: 100%;
    padding: 70px 40px;
    background-color: #C50202;
    border-radius: 30px;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_mtn .brd_list > .sq_info > .inf_txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    color: #fff;
}

.wp_wrap .ms_mtn .brd_list > .sq_info > .inf_txt > .tit {
    font-size: 49px;
    font-weight: var(--font-100);
}

.wp_wrap .ms_mtn .brd_list > .sq_info > .inf_txt > .des {
    font-size: 16px;
    font-weight: var(--font-100);
    line-height: 26px;
}

.wp_wrap .ms_mtn .brd_list > .sq_info > .inf_mv {
}

.wp_wrap .ms_mtn .brd_list > .sq_info > .inf_mv > .txt_mv {
    color: #fff;
    font-size: 18px;
    font-weight: var(--font-500);
    text-decoration: underline;
}

.wp_wrap .ms_mtn .brd_list > .sq_info:hover {
    background-color: #000000;
    transition: 0.4s ease-in;
}

/*우측 정보*/
.wp_wrap .ms_mtn .brd_list > .brd_items {
    /* flex-grow: 1; */
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .item_ir {
    /* flex-grow: 1; */
    /* width: 1000px; */
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 30px 45px;
    border: 1px solid #707070;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .item_ir > .col_num {
    min-width: 100px;
    color: #0A0A0A;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-300);
    letter-spacing: -1px;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .item_ir > .col_tit {
    flex-grow: 1;
    width: 80%;
    color: #0A0A0A;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-200);
    letter-spacing: -1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .item_ir > .col_nm {
    min-width: 100px;
    color: #9C9C9C;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-500);
    letter-spacing: -1px;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .state_bx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 165px;
    background-color: #F3F3F3;
    border-radius: 20px;
    border: 1px solid #707070;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li > .state_bx > .txt {
    font-size: 16px;
    font-weight: var(--font-600);
}

.wp_wrap .ms_mtn .brd_list > .brd_items > li:hover > .item_ir,
.wp_wrap .ms_mtn .brd_list > .brd_items > li:hover > .state_bx {
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 1);
    background-color:#fff;
    transition: 0.4s ease-in;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 메인 컨텍트 */
.wp_wrap .ms_ctt {
}

.wp_wrap .ms_ctt .ctt_list {
}

.wp_wrap .ms_ctt .ctt_list > form {
}

.wp_wrap .ms_ctt .ctt_list .list_cont {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-left: 30px;
}

/*왼쪽 영역*/
.wp_wrap .ms_ctt .ctt_list .list_cont > .lt {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dt {
    min-width: 180px;
    padding-left: 10px;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dt > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    height: 80px;
    color: #0A0A0A;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-300);
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dt > .txt_star {
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dt > .txt_star::after {
    display: block;
    content: '*';
    color: #D60606;
    font-size: 16px;
    font-weight: var(--font-600);
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dd {
    flex-grow: 1;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dd > .inp_bx {
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dd > .inp_bx > .inp_txt {
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dd > .inp_bx > .inp_txt > input[type=text] {
    width: 100%;
    height: 80px;
    padding: 0px 20px;
    border-radius: 20px;
    border: 1px solid #707070;
    background-color: #FCFCFC;
    outline: none;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .lt > .row > dd > .inp_bx > .inp_txt > input[type=text]:focus {
    box-shadow: 5px 5px 0px #000;
    transition: 0.4s ease-in;
}

/*오른쪽 영역*/
.wp_wrap .ms_ctt .ctt_list .list_cont > .rt {
    min-width: 655px;
    width: 655px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .ta_bx {
    width: 100%;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .ta_bx > .ta_frm {
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .ta_bx > .ta_frm > textarea {
    width: 100%;
    min-height: 365px;
    border: 1px solid #707070;
    padding: 30px 35px;
    outline: none;
    border-radius: 20px;
    background-color: #FCFCFC;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .ta_bx > .ta_frm > textarea:focus {
    box-shadow: 5px 5px 0px #000;
    transition: 0.4s ease-in;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .ta_bx > .ta_frm > textarea:placeholder {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-300);
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx > .col {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(50% - 7.5px);
    height: 80px;
    padding: 15px 10px;
    border: 1px solid #707070;
    border-radius: 20px;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx > .col > .file_frm {
    width: 100%;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx > .col > .file_frm > input[type=file] {
    width: 100%;
}

.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx > .col > .file_frm > input[type=file]::file-selector-button  {
    width: 130px;
    height: 50px;
    padding-left: 30px;
    color:#fff;
    font-size: 15px;
    font-weight: var(--font-w400);
    text-align: center;
    border-radius: 15px;
    background-color: #0A0A0A;
    border:none;
    background-image: url("/img/img_new/ico_file_dwn01.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 20px center;
    cursor: pointer;
    transition: 0.3s ease-out;
}
.wp_wrap .ms_ctt .ctt_list .list_cont > .rt > .file_bx > .col > .file_frm > input[type=file]::file-selector-button:hover  {
    background-color: #C50202;
    transition: 0.4s ease-in;
}



/* 하단 문의하기, 개인정보 동의*/
.wp_wrap .ms_ctt .ctt_list .list_cmp_cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 45px;
    padding-top: 25px;
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .agr_bx {
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .agr_bx .agr_frm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .agr_bx .agr_frm > input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .agr_bx .agr_frm > .agr_txt {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-600);
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .agr_bx .agr_frm > .agr_txt > .agr_opn {
    text-decoration: underline;
    cursor: pointer;
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .btn_inq {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 295px;
    width: 100%;
    height: 80px;
    color: #fff;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-600);
    background-color: #000;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.wp_wrap .ms_ctt .ctt_list .list_cmp_cont .btn_inq:hover {
    background-color: #C50202;
    transition: 0.4s ease-in-out;
}

/* 개인정보 처리방침 모달창 동의*/
.wp_wrap #mdl_agr {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.06);
    z-index: 9999;
}

.wp_wrap #mdl_agr .mdl_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.wp_wrap #mdl_agr .mdl_ir {
    max-width: 820px;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    border: 2px solid #C50202;
    border-radius: 20px;
    background-color: #fff;
}

.wp_wrap #mdl_agr .mdl_ir .agr_hd {
}

.wp_wrap #mdl_agr .mdl_ir .agr_hd > .tit {
    font-size: 22px;
    font-weight: var(--font-700);
}

.wp_wrap #mdl_agr .mdl_ir .agr_bd {
    height: 300px;
    padding: 20px 10px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.16);
}

.wp_wrap #mdl_agr .mdl_ir .agr_bd > .des {
    font-size: 14px;
    font-weight: var(--font-400);
    line-height: 26px;
}

.wp_wrap #mdl_agr .mdl_ir .agr_ft {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wp_wrap #mdl_agr .mdl_ir .agr_ft .btn_agr_cls,
.wp_wrap #mdl_agr .mdl_ir .agr_ft .btn_agr {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 125px;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: var(--font-500);
    border-radius: 10px;
    background-color: #ccc;
    transition: 0.4s ease-out;
}

.wp_wrap #mdl_agr .mdl_ir .agr_ft .btn_agr_cls:hover,
.wp_wrap #mdl_agr .mdl_ir .agr_ft .btn_agr:hover {
    background-color: #C50202;
    transition: 0.4s ease-in;
}

/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 서브 스타일 */
/**********************************************************************************************************************/
/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 공통 */
.wp_wrap .sec_sub {
    max-width: 1400px;
    width: 100%;
    margin-top: 120px;
    margin-inline: auto;
    padding-inline: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 80px;
}

.wp_wrap .sec_sub > .sec_ir {
    width: 100%;
    margin-inline: auto;
}

/*솔루션 컨테이너*/
.wp_wrap .sec_slt {
    max-width: 1677px;
    width: 100%;
    margin-top: 80px;
    margin-inline: auto;
    padding-inline: 15px;
}


/*Shape 타이틀*/
.wp_wrap .shp_tit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
}

.wp_wrap .shp_tit > .tit_bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.wp_wrap .shp_tit > .tit_bx > strong {
    color: #C50202;
    font-size: 20px;
    font-weight: var(--font-w700);
    font-family: "Play", sans-serif;
}

.wp_wrap .shp_tit > .tit_bx > h4 {
    font-size: 40px;
    font-weight: var(--font-w800);
    font-family: 'SUIT Variable', sans-serif;
}

.wp_wrap .shp_tit > .des_bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px
}

.wp_wrap .shp_tit > .des_bx > .des {
    color: #3E3E3E;
    font-size: 25px;
    font-weight: var(--font-w200);
    font-family: 'SUIT Variable', sans-serif;
}

.wp_wrap .shp_tit > .des_bx > .des_tel {
    width: fit-content;
    display: inline-block;
    color: #3E3E3E;
    font-size: 20px;
    font-weight: var(--font-w700);
    font-family: 'SUIT Variable', sans-serif;
}
.wp_wrap .shp_tit > .des_bx > .des_tel >b{
    color:#C50202;
}


/*Shape 상자*/
.wp_wrap .shp_sq01 {
    width: 100%;
    padding: 30px 50px;
    border-radius: 30px;
    background-color: #F5F5F5;
}

.wp_wrap .shp_sq01 .shp_ir {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wp_wrap .shp_sq01 .shp_ir01 {
    gap: 60px
}

.wp_wrap .shp_sq01 .shp_ir02 {
    gap: 80px
}

.wp_wrap .shp_sq01 .shp_ir03 {
    gap: 120px
}


/*Shape 컨텐츠*/
.wp_wrap .shp_cont01 {
    width: 100%;
}
.wp_wrap .shp_cont01>.shp_ir{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.wp_wrap .shp_cont01>.shp_ir01 {
    gap:60px;
}
.wp_wrap .shp_cont01>.shp_ir02 {
    gap:80px;
}
.wp_wrap .shp_cont01>.shp_ir03 {
    gap:120px;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 탑 */
.wp_wrap #sub_top {
    border-bottom: 1px solid rgba(112, 112, 112, 0.4);
}

/* 상단 */
.wp_wrap #sub_top .top {
    max-width: 1707px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
}

.wp_wrap #sub_top .top > .top_ir {
    padding: 120px 0 90px;
}

/* 하단 */
.wp_wrap #sub_top .bot {
    max-width: 1707px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
}

.wp_wrap #sub_top .bot .bot_ir {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wp_wrap #sub_top .bot .bot_ir .pg_items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.wp_wrap #sub_top .bot .bot_ir .pg_items > .pg_itm {
    position: relative;
    font-size: 17px;
    padding-bottom: 5px;
    font-weight: var(--font-w300);
}

.wp_wrap #sub_top .bot .bot_ir .pg_items > .pg_itm:after {
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
    content: "";
    width: 0%;
    height: 3px;
    background-color: #D30D0D;
    transition: 0.2s ease-out;
}

.wp_wrap #sub_top .bot .bot_ir .pg_items > .pg_itm:hover:after,
.wp_wrap #sub_top .bot .bot_ir .pg_items > .pg_itm.on:after {
    width: 100%;
    transition: 0.25s ease-in;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 5px;
    margin-left: auto;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #959595;
    font-size: 15px;
    font-weight: var(--font-300);
    transition: 0.25s ease-out;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm:hover {
    color: #000;
    transition: 0.25s ease-in;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm::after {
    display: block;
    content: ">";
    color: #EBE7E7;
    font-size: 16px;
    margin-inline: 10px;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm:last-child::after {
    display: none;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm svg {
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm svg path {
    transition: 0.2s ease-in;
}

.wp_wrap #sub_top .bot .bot_ir .pg_gd_items > .pg_itm:hover svg path {
    fill: #000;
    transition: 0.25s ease-in;
}

/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 프리미엄, 럭셔리 - 카드 컨텐츠01*/
.wp_wrap .card_cont01{
    width: 100%;
    padding:0 10px;
}
.wp_wrap .card_cont01>.card_items{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:30px;
    flex-wrap: wrap;
}
.wp_wrap .card_cont01>.card_items>.card_itm{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    /* width: 100%; */
    width: calc((100% - 90px) / 4);
    padding:50px 10px;
    background-color: #fff;
    border:1px solid #CECECE;
    border-radius: 20px;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.tp{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.tp>.img_frm{
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 130px;
    font-size: 100px;
    font-weight: var(--font-w900);
    font-family: 'SUIT Variable', sans-serif;
    letter-spacing: -1px;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.tp>.img_frm>img{
    width: 100%;
    height: 100px;
    object-fit: contain;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.tp>.slog{
    display: block;
    min-height: 55px;
    font-size: 18px;
    font-weight: var(--font-w700);
    letter-spacing: -1px;
    text-align: center;
    line-height: 28px;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.bt{}
.wp_wrap .card_cont01>.card_items>.card_itm>.bt>.des{
    color:#1A1A1A;
    font-size: 18px;
    font-weight: var(--font-w400);
    font-family: 'SUIT Variable', sans-serif;
    line-height: 28px;
    letter-spacing: -1px;
    text-align: center;
}
.wp_wrap .card_cont01>.card_items>.card_itm>.bt>.des>b{}





/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 프리미엄, 럭셔리 - 카드 컨텐츠02*/
.wp_wrap .card_cont02{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:30px;
}
.wp_wrap .card_cont02>.card_items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:30px;
    padding:0 10px;
}
.wp_wrap .card_cont02>.card_items>.card_itm{
    display: flex;
    flex-direction: column;
    gap:30px;
    /* width: 100%; */
    width: calc((100% - 90px) / 4);
    padding:30px 20px;
    background-color: #fff;
    border:1px solid #CECECE;
    border-radius: 20px;
}
.wp_wrap .card_cont02>.card_items>.card_itm>.tp{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:20px;
}
.wp_wrap .card_cont02>.card_items>.card_itm>.tp>strong{
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w700);
}
.wp_wrap .card_cont02>.card_items>.card_itm>.tp>.ico_frm{
    height: 55px;
}
.wp_wrap .card_cont02>.card_items>.card_itm>.tp>.ico_frm>img{}
.wp_wrap .card_cont02>.card_items>.card_itm>.bt{}
.wp_wrap .card_cont02>.card_items>.card_itm>.bt>.des{
    color:#3E3E3E;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    text-align: right;
    line-height: 23px;
}

/*하단 Step 텍스트*/
.wp_wrap .card_cont02>.txt_items{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:10px;
    padding-left: 30px;
}
.wp_wrap .card_cont02>.txt_items>li{}
.wp_wrap .card_cont02>.txt_items>li>.itm_cont{
    display: flex;
    justify-content: flex-start;
    gap:5px;
}
.wp_wrap .card_cont02>.txt_items>li>.itm_cont>dt{
    color:#3E3E3E;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w800);
}
.wp_wrap .card_cont02>.txt_items>li>.itm_cont>dd{
    color:#3E3E3E;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
}
.wp_wrap .card_cont02>.txt_items>li>.itm_cont>dd>b{
    font-weight: var(--font-w800);
}


/*하단 가이드 텍스트*/
.wp_wrap .card_cont02>.gd_txt{}
.wp_wrap .card_cont02>.gd_txt>.txt{
    color:#3E3E3E;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    line-height: 35px;
    padding-left: 30px;
}
.wp_wrap .card_cont02>.gd_txt>.txt>b{
    font-weight: var(--font-w800);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 프리미엄, 럭셔리 - 카드 컨텐츠03*/
.wp_wrap .card_cont03{
    width: 100%;
}
.wp_wrap .card_cont03>.card_items{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:5px;
}
.wp_wrap .card_cont03>.card_items>.card_itm{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:20px
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir{
    width: 100%;
    min-height: 395px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:40px;
    padding:15px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.ico_bx{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #3D3D3D;
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.ico_bx>img{}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.txt_bx{
    display: flex;
    flex-direction: column;
    gap:15px;
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.txt_bx>strong{
    font-size: 24px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    letter-spacing: -1px;
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.txt_bx>.txt_list{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.wp_wrap .card_cont03>.card_items>.card_itm>.itm_ir>.txt_bx>.txt_list>li{
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w400);
    letter-spacing: -1px;
    line-height: 22px;
}

.wp_wrap .card_cont03>.card_items>.card_itm>.itm_num{
    width: 100%;
    padding-bottom: 50px;
    font-size: 20px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w900);
    text-align: center;
}

.wp_wrap .card_cont03>.card_items>.ico_itm{
    min-width: 16px;
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp_wrap .card_cont03>.card_items>.ico_itm>.ico_frm{
    margin-bottom: 100px;
}
.wp_wrap .card_cont03>.card_items>.ico_itm>.ico_frm>img{}



/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 프리미엄, 럭셔리 - 설명글 영역*/
.wp_wrap .shp_desc {
    width: 100%;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap:50px;
    padding-left: 70px;
}
.wp_wrap .shp_desc01 {}
.wp_wrap .shp_desc01 >.des{}
.wp_wrap .shp_desc01 >.des01{
    color:#3E3E3E;
    font-size: 30px;
    font-weight: var(--font-w200);
    font-family: 'SUIT Variable', sans-serif;
    line-height: 51px;
}
.wp_wrap .shp_desc01 >.des01>b{
    font-weight: var(--font-w800);
}

.wp_wrap .shp_desc01 >.des02{
    color:#3E3E3E;
    font-size: 20px;
    font-weight: var(--font-w200);
    font-family: 'SUIT Variable', sans-serif;
    line-height: 45px;
}
.wp_wrap .shp_desc01 >.des02>b{
    font-weight: var(--font-w800);
}

.wp_wrap .shp_desc02 {}
.wp_wrap .shp_desc02 >.des{
    color:#3E3E3E;
    font-size: 20px;
    font-weight: var(--font-w200);
    font-family: 'SUIT Variable', sans-serif;
    line-height: 40px;
}
.wp_wrap .shp_desc02 >.des01{}
.wp_wrap .shp_desc02 >.des>b{
    font-weight: var(--font-w800);
}


/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 프리미엄, 럭셔리 - QA보드 영역*/
.wp_wrap #shp_qa_board {
    width: 100%;
}

.wp_wrap #shp_qa_board .shp_wrap {
}

.wp_wrap #shp_qa_board .shp_ir {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap #shp_qa_board .shp_ir .tit_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.wp_wrap #shp_qa_board .shp_ir .tit_box > .sub_txt {
    font-size: 38px;
    font-weight: var(--font-w300);
}

.wp_wrap #shp_qa_board .shp_ir .tit_box > .tit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: var(--font-w500);
}

.wp_wrap #shp_qa_board .shp_ir .tit_box > .tit > .tit_dot {
    display: block;
    position: relative;
}

.wp_wrap #shp_qa_board .shp_ir .tit_box > .tit > .tit_dot::before {
    position: absolute;
    top: -20px;
    left: 50%;
    display: block;
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #CF2121;
    transform: translateX(-50%);
}

.wp_wrap #shp_qa_board .shp_ir .dp_items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border: 1px solid #C2C2C2;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
    cursor: pointer;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_hd .dp_tit {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    color: #3E3E3E;
    font-size: 30px;
    font-weight: var(--font-w400);
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_hd .dp_tit::before {
    display: block;
    content: "Q";
    color: #DB1F1F;
    font-size: 80px;
    font-weight: var(--font-w100);
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_hd > i {
    color: #DB1F1F;
    font-size: 23px;
    transition: 0.4s;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item:hover .item_hd > i {
    /* transform: rotate(180deg) !important; */
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item:first-child .item_hd > i {
    transform: rotate(180deg);
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_bd {
    display: none;
    padding: 30px 40px;
    border: 1px solid #C2C2C2;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item.on .item_bd {
    display: block;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_bd > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 30px;
    font-size: 19px;
    font-weight: var(--font-w300);
    line-height: 28px;
}

.wp_wrap #shp_qa_board .shp_ir .dp_items .dp_item .item_bd > .txt::before {
    display: block;
    content: "A";
    font-size: 80px;
    font-weight: var(--font-w100);
    line-height: 80px;
}


/*--------------------------------------------------------------------------------------------------------------------*/
/*솔루션, 여행 - 슬라이드 베너 영역 */
.wp_wrap .sd_cont01 {
    width: 100%;
}

.wp_wrap .sd_cont01 > .cont_ir {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.wp_wrap .sd_cont01 > .cont_ir > .lt {
    width: calc(50% - 10px);
}

.wp_wrap .sd_cont01 > .cont_ir > .lt .sd_items  {
}

.wp_wrap .sd_cont01 > .cont_ir > .lt .sd_items .sd_itm {
}

.wp_wrap .sd_cont01 > .cont_ir > .lt .sd_items .sd_itm .img_frm {
    border-radius: 20px;
    overflow: hidden;
}

.wp_wrap .sd_cont01 > .cont_ir > .lt .sd_items .sd_itm .img_frm > img {
    margin: 0 auto;
}

.wp_wrap .sd_cont01 > .cont_ir > .rt {
    width: calc(50% - 10px);
    padding:10px 0 10px 40px;

}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:45px;
}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont > .txt_bx {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:30px;
}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont > .txt_bx > .slog {
    color: #141414;
    font-size: 30px;
    font-weight: var(--font-w200);
}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont > .txt_bx > .slog > b {
    font-weight: var(--font-w700);
}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont > .txt_bx > .des {
    color: #141414;
    font-size: 20px;
    font-weight: var(--font-w300);
    line-height: 30px;
}

.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont >.dot_list{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:10px;
}
.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont >.dot_list>li{
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border:1px solid #D1D1D1;
    background-color:#fff;
    transition: 0.4s ease-out;
    cursor:pointer;
}
.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont >.dot_list>li:hover{
    background-color:#C50202;
    border:1px solid #C50202;
    transition: 0.4s ease-in;
}
.wp_wrap .sd_cont01 > .cont_ir > .rt > .txt_cont >.dot_list>li.on{
    background-color:#C50202;
    border:1px solid #C50202;
}



/*--------------------------------------------------------------------------------------------------------------------*/
    /* 홈페이지 솔루션,여행 솔루션 - 슬라이드 베너 영역*/
    .wp_wrap .bn_cont01 {
    }

    .wp_wrap .bn_cont01 .bn_items {
    }

    .wp_wrap .bn_cont01 .bn_items > li {
    }

    .wp_wrap .bn_cont01 .bn_items > li > .img_bx {
        max-height: 750px;
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid #989898;
    }

    .wp_wrap .bn_cont01 .bn_items > li > .img_bx > img {
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        height: 100%;
        background-color: #FFCB37;
        padding: 45px 35px;
        border-radius: 30px;
        height: 100%;
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .tit {
        color: #3E3E3E;
        font-size: 28px;
        font-weight: var(--font-w700);
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .desc {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 35px;
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .desc > .des > br {
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .desc > .des {
        color: #3E3E3E;
        font-size: 17px;
        font-weight: var(--font-w500);
        line-height: 30px;
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont >.btn_bx{
        width: 100%;
        padding-top: 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont  >.btn_bx>.btn_view{
        display: flex;
        justify-content: center;
        align-items: center;
        gap:15px;
        max-width: 220px;
        width: 100%;
        height: 60px;
        font-size: 17px;
        font-family: 'SUIT Variable', sans-serif;
        font-weight: var(--font-w600);
        background-color: #fff;
        border-radius: 30px;
        transition: 0.4s ease-out;
    }
    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont  >.btn_bx>.btn_view>.ico_bx{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        min-width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #BE1E1E;
    }
    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont  >.btn_bx>.btn_view:hover{
        color:#fff;
        background-color: #BE1E1E;
        transition: 0.4s ease;
    }
    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont  >.btn_bx>.btn_view>.ico_bx>img{}

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .des_add {
        color:#3E3E3E;
        font-size: 16px;
        line-height: 30px;
        font-weight: var(--font-w400);
    }

    .wp_wrap .bn_cont01 .bn_items > li > .txt_cont > .txt_bx > .des_add > b {
        font-weight: var(--font-w700);
    }

















/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 솔루션안내*/


/* 스크롤 인트로 */
.wp_wrap #shp_sq_slide {
    width: 100%;
}

.wp_wrap #shp_sq_slide .shp_wrap {
}

.wp_wrap #shp_sq_slide .shp_ir {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 60px;
}

.wp_wrap #shp_sq_slide .shp_ir > .hd_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp_wrap #shp_sq_slide .shp_ir > .hd_box .tit {
    max-width: 585px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 25px;
    font-family: var(--font-prel);
    text-align: center;
    background-color: #373737;
    border-radius: 300px;
}

.wp_wrap #shp_sq_slide .shp_ir > .hd_box .tit > b {
    color: #FFCB37;
    font-family: var(--font-preeb);
}


.wp_wrap #shp_sq_slide .shp_ir .bd_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left {
    max-width: 865px;
    width: 100%;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #707070;
    cursor: pointer;
    overflow: hidden;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .sq_cic {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    transform: scale(0);
    border-radius: 50%;
    background-color: #373737;
    transition: 0.4s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .sq_cic::before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    transform: scale(0);
    border-radius: 50%;
    background-color: #37373779;
    transition: 0s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .sq_cic::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    transform: scale(0);
    border-radius: 50%;
    background-color: #3737374c;
    transition: 0s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .sq_cic::before {
    transform: scale(15);
    transition: 0.65s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .sq_cic::after {
    transform: scale(15);
    transition: 0.6s;
    transition-delay: 0.1s;
}


.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .sq_cic {
    transform: scale(15);
    transition: 0.6s;
    transition-delay: 0.15s;
}

/* .wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item.on{
      background-color: #373737;
} */
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 247px;
    padding: 25px 20px;
    z-index: 10;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .sq_tit {
    font-size: 20px;
    font-family: var(--font-preb);
    transition: 0.3s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .sq_tit {
    color: #fff;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .desc {
    text-align: left;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .fst_desc {
    text-align: right;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .fst_desc {
    color: #fff;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .desc .des {
    min-height: 75px;
    font-size: 15px;
    font-family: var(--font-prer);
    line-height: 24px;
    transition: 0.3s;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .desc .des {
    color: #fff;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box > svg {}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box circle,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box svg path ,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box svg rect,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box svg g g line,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box svg g line,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item .item_ir .ico_box svg line {
    transition: 0.3s;
}
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box circle,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box svg path ,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box svg rect,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box svg g g line,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box svg g line,
.wp_wrap #shp_sq_slide .shp_ir .bd_box .left .sq_items02 .sq_item:hover .item_ir .ico_box svg line {
    /* fill: #fff; */
    stroke: #fff;
}


.wp_wrap #shp_sq_slide .shp_ir .bd_box .right {
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items {
    position: relative;
    width: 100%;
    height: 100%;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item {
    position: relative;
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: 0%;
    top: 0; */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 1;
    padding: 40px 30px;
    background-color: #FFCB37;
    border-radius: 20px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item.on {
    opacity: 1;
    left: 0;
    transition: 0.6s;
    z-index: 9;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .tit{
    margin-bottom: 25px;
}
.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .tit p{
    font-size: 28px;
    font-weight: 700;
    color: #3E3E3E;
}
.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .desc{
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .desc p{
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: 400;
    color: #3E3E3E;
    line-height: 1.55;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .desc p.fweb{
    font-weight: 800;
}





/* 
.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .tit {
    color: #3E3E3E;
    font-size: 30px;
    font-family: var(--font-prebk);
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .des {
    font-size: 16px;
    font-family: var(--font-prer);
    line-height: 23px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box01 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box01 > .img_frame {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box01 > .img_frame > img {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box02 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 50px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box02 > .img_frame {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box02 > .img_frame > img {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .img_box02 > .img_frame > .frm_tit {
    color: #3E3E3E;
    font-size: 16px;
    font-family: var(--font-prer);
    text-align: center;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .flag_box01 {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .flag_box01 > .flag {
    padding: 0 30px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .flag_box01 > .flag > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    color: #3E3E3E;
    font-size: 16px;
    font-family: var(--font-preb);
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .top .top_cont .flag_box01 > .flag > .txt::before {
    display: block;
    content: "";
    min-width: 9px;
    width: 9px;
    height: 9px;
    margin-top: 5px;
    background-color: #fff;
    border-radius: 50%;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .mv_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 5px;
    min-height: 55px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .mv_box > .btn_mv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #3E3E3E;
    font-size: 20px;
    font-family: var(--font-prem);
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .mv_box > .btn_mv > img {
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .bot_cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
    background-color: #131313;
    border-radius: 20px;
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .bot_cont > .tit {
    color: #C1C1C1;
    font-size: 20px;
    font-family: var(--font-preb);
}

.wp_wrap #shp_sq_slide .shp_ir .bd_box .right .rt_items .rt_item .bot .bot_cont > .des {
    color: #C1C1C1;
    font-size: 14px;
    font-family: var(--font-prer);
    line-height: 30px;
    line-height: 1.7;
} */


/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 견적문의*/
.wp_wrap .form_cont02{}
.wp_wrap .form_cont02 .form_wrap {
}

.wp_wrap .form_cont02 .form_wrap > form {
}

.wp_wrap .form_cont02 .form_wrap .form_ir {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-left: 30px;
}

/*왼쪽 영역*/
.wp_wrap .form_cont02 .form_wrap .form_ir > .lt {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dt {
    min-width: 180px;
    padding-left: 10px;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dt > .txt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    height: 80px;
    color: #0A0A0A;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-300);
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dt > .txt_star {
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dt > .txt_star::after {
    display: block;
    content: '*';
    color: #D60606;
    font-size: 16px;
    font-weight: var(--font-600);
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dd {
    flex-grow: 1;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dd > .inp_bx {
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dd > .inp_bx > .inp_txt {
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dd > .inp_bx > .inp_txt > input[type=text] {
    width: 100%;
    height: 80px;
    padding: 0px 20px;
    border-radius: 20px;
    border: 1px solid #707070;
    background-color: #FCFCFC;
    outline: none;
    transition: 0.4s ease-out;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .lt > .row > dd > .inp_bx > .inp_txt > input[type=text]:focus {
    box-shadow: 5px 5px 0px #000;
    transition: 0.4s ease-in;
}

/*오른쪽 영역*/
.wp_wrap .form_cont02 .form_wrap .form_ir > .rt {
    min-width: 655px;
    width: 655px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .ta_bx {
    width: 100%;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .ta_bx > .ta_frm {
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .ta_bx > .ta_frm > textarea {
    width: 100%;
    min-height: 365px;
    border: 1px sodlie #707070;
    padding: 30px 35px;
    outline: none;
    border-radius: 20px;
    background-color: #FCFCFC;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .ta_bx > .ta_frm > textarea:focus {
    box-shadow: 5px 5px 0px #000;
    transition: 0.4s ease-in;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .ta_bx > .ta_frm > textarea::placeholder {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-300);
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color:#FCFCFC;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx > .col {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(50% - 7.5px);
    height: 80px;
    padding: 15px 10px;
    border: 1px solid #707070;
    border-radius: 20px;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx > .col > .file_frm {
    width: 100%;
}

.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx > .col > .file_frm > input[type=file] {
    width: 100%;
}
.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx > .col > .file_frm > input[type=file]::file-selector-button  {
    width: 130px;
    height: 50px;
    padding-left: 30px;
    color:#fff;
    font-size: 15px;
    font-weight: var(--font-400);
    text-align: center;
    border-radius: 15px;
    background-color: #0A0A0A;
    border:none;
    background-image: url("/img/img_new/ico_file_dwn01.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 20px center;
    cursor: pointer;
    transition: 0.3s ease-out;
}
.wp_wrap .form_cont02 .form_wrap .form_ir > .rt > .file_bx > .col > .file_frm > input[type=file]::file-selector-button:hover  {
    background-color: #C50202;
    transition: 0.4s ease-in;
}


/* 하단 문의하기, 개인정보 동의*/
.wp_wrap .form_cont02 .form_wrap .list_cmp_cont {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 45px;
    padding-top: 25px;
} 

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .agr_bx {
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .agr_bx .agr_frm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .agr_bx .agr_frm > input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .agr_bx .agr_frm > .agr_txt {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-600);
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .agr_bx .agr_frm > .agr_txt > .agr_opn {
    text-decoration: underline;
    cursor: pointer;
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .btn_inq {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 295px;
    width: 100%;
    height: 80px;
    color: #fff;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-600);
    background-color: #000;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.wp_wrap .form_cont02 .form_wrap .list_cmp_cont .btn_inq:hover {
    background-color: #C50202;
    transition: 0.4s ease-in-out;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 유지보수소개*/
.wp_wrap .brd_cont01{}
.wp_wrap .brd_cont01 .brd_items{}
.wp_wrap .brd_cont01 .brd_items .brd_itm{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:40px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_hd{
    width: 100%;
    min-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_hd>strong{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    font-size: 25px;
    font-weight: var(--font-w500);
    text-align: center;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm.on>.itm_hd>strong:before{
    display: block;
    content:"";
    width: 35px;
    height: 35px;
    background-color: #FFCB37;
    border-radius: 50%;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    min-height: 865px;
    padding:30px;
    border-radius: 20px;
    background-color: #F3F3F3;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm.on>.itm_bd{
    background-color: #FFCB37;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp{
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:25px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:25px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dt{
    color:#3E3E3E;
    font-size: 30px;
    font-weight: var(--font-w900);
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd{
    width: 100%;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.txt{
    font-size: 16px;
    font-weight: var(--font-w400);
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.txt>b{
    font-weight: var(--font-w800);
}


.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:15px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list>li{
    width: 100%;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list>li>.li_ir{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:10px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list>li>.li_ir>.txt_tit{
    min-width: 135px;
    color:#3E3E3E;
    font-size: 16px;
    font-weight: var(--font-w400);
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list>li>.li_ir>.line{
    flex-grow: 1;
    border-bottom: 1px dashed #CCCCCC;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm.on>.itm_bd>.tp>.txt_row>dd>.dd_list>li>.li_ir>.line{
    flex-grow: 1;
    border-bottom: 1px dashed #656060;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.txt_row>dd>.dd_list>li>.li_ir>.txt_num{
    color:#3E3E3E;
    font-size: 16px;
    font-weight: var(--font-w400);
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.tp>.des{
    color:#3E3E3E;
    font-size: 16px;
    font-weight: var(--font-w400);
    line-height: 25px;
}



.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.bt{
    width: 100%;
    min-height: 220px;
    padding:30px;
    background-color: #131313;
    border-radius: 20px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.bt .txt_list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:10px;
}
.wp_wrap .brd_cont01 .brd_items .brd_itm>.itm_bd>.bt .txt_list>li{
    color:#C1C1C1;
    font-size: 16px;
    font-weight: var(--font-w400);
}




/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 고객센터*/
.wp_wrap .form_cont01 {
    width: 100%;
}
.wp_wrap .form_cont01 >.cont_ir{}
.wp_wrap .form_cont01 >.cont_ir form{
    width: 100%;
}

.wp_wrap .form_cont01 >.cont_ir  .rows {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap:15px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row {
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dt {
    min-width: 160px;
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dt > .txt {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    letter-spacing: -1px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dt > .txt_star {}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd {
    flex-grow: 1;
    width: 100%;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx {}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_txt {}
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_txt >.inp_frm{}
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_txt >.inp_frm>input[type=text]{
    width: 100%;
    height: 80px;
    padding:0 20px;
    background-color: #fff;
    border-radius: 20px;
    border:1px solid #707070;
    outline:none;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo > .frm_rdo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 80px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo > .frm_rdo > input[type=radio] {
    display: none;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo > .frm_rdo > input[type=radio] + label {
    width: 20px;
    height: 20px;
    background-image: url(/img/img_new/ico_rdo_off.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo > .frm_rdo > input[type=radio]:checked + label {
    background-image: url(/img/img_new/ico_rdo_on.png);
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_rdo > .frm_rdo > label {
    font-size: 16px;
    font-weight: var(--font-w500);
    font-family: 'SUIT Variable', sans-serif;
    letter-spacing: -1px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_file{}
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_file>.inp_frm{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80px;
    padding:0 20px;
    background-color: #fff;
    border-radius: 20px;
    border:1px solid #707070;
    outline:none;
}
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_file>.inp_frm>input[type=file]{
    width: 100%;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_file>.inp_frm>input[type=file]::file-selector-button  {
    width: 130px;
    height: 50px;
    padding-left: 30px;
    color:#fff;
    font-size: 15px;
    font-weight: var(--font-w400);
    text-align: center;
    border-radius: 15px;
    background-color: #0A0A0A;
    border:none;
    background-image: url("/img/img_new/ico_file_dwn01.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 20px center;
    cursor: pointer;
    transition: 0.3s ease-out;
}
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col > dd > .inp_bx .inp_file>.inp_frm>input[type=file]::file-selector-button:hover  {
    background-color: #C50202;
    transition: 0.4s ease-in;
}



/* 하단 문의하기, 개인정보 동의*/
.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px 45px;
    padding-top: 25px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .agr_bx {
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .agr_bx .agr_frm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .agr_bx .agr_frm > input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .agr_bx .agr_frm > .agr_txt {
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w600);
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .agr_bx .agr_frm > .agr_txt > .agr_opn {
    text-decoration: underline;
    cursor: pointer;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .btn_inq {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 295px;
    width: 100%;
    height: 80px;
    color: #fff;
    font-size: 16px;
    font-family: 'SUIT Variable', sans-serif;
    font-weight: var(--font-w600);
    background-color: #000;
    border-radius: 20px;
    transition: 0.4s ease-out;
}

.wp_wrap .form_cont01 >.cont_ir  .rows > .row .col .cmp_cont .btn_inq:hover {
    background-color: #C50202;
    transition: 0.4s ease-in-out;
}



/*--------------------------------------------------------------------------------------------------------------------*/
/* 서브 개인정보처리방침*/
.wp_wrap .pcy_cont01{
    width: 100%;
}
.wp_wrap .pcy_cont01 .cont_ir{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:80px;
    padding-bottom: 120px;
}
.wp_wrap .pcy_cont01 .cont_ir >h3{
    width: 100%;
    font-size: 40px;
    font-weight: var(--font-w700);
    font-family: 'SUIT Variable', sans-serif;
    text-align: center;
}
.wp_wrap .pcy_cont01 .cont_ir >.pvc_txt{
    color:#3E3E3E;
    font-size: 18px;
    font-weight: var(--font-w400);
    line-height: 28px;
}
.wp_wrap .pcy_cont01 .cont_ir >.pvc_txt02{
    color:#3E3E3E;
    font-size: 18px;
    font-weight: var(--font-w400);
    line-height: 28px;
    text-align: center;
}

/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* why 웹플래닛페이지 (2025.09.02) */
/**********************************************************************************************************************/
.wp_wrap #shp_why_wrap{
    padding: 60px 0 120px;
}
.wp_wrap #shp_why_wrap .inner_box{}

/* animation_box ----------------------------------------------------------------------------------------------------------------*/
.wp_wrap #shp_why_wrap .inner_box .animation_box {
    margin-bottom: 150px;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_wrap{
    position: relative;
    height: 600px;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .bg_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background-color: #0C0C0C;
    border-radius: 65px;
    overflow: hidden;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .bg_box{
    position: relative;
    width: 100%;
    height: 100%;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .bg_box::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    background: url('/img/sub/why_ani_bg.jpg') no-repeat center center / cover;
    opacity: 0;
    transition: 1s;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .bg_box.active::after{
    opacity: 1;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 600px;
    border-radius: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .txt_box{
    position: relative;
    top: 130px;
    top: 20%;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .txt_box .txt1{
    color: #fff;
    font-size: 40px;
    font-family: 'GongGothicMedium';
    font-weight: 500;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .txt_box .txt2{
    padding-top: 30px;
    font-size: 50px;
    font-weight: var(--font-w700);
    color: #000;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .txt_box .txt3{
    padding-top: 20px;
    font-size: 30px;
    font-weight: var(--font-w400);
    color: #1D1D1D;
    text-align: center;
    line-height: 1.3;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box>a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box>a>p{
    font-family: var(--font-scorebk);
    color: #fff;
    font-size: 11px;
}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box>a>.icon_box{}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box>a>.icon_box svg{}
.wp_wrap #shp_why_wrap .inner_box .animation_box .in_box .scr_box>a>.icon_box svg .arr{
    animation: scrdwn 1s ease infinite;
}
@keyframes scrdwn{
    0%{
        transform: translate(982px, 879.778px) translateY(-2px);
    }
    50%{
        transform: translate(982px, 879.778px) translateY(0);
    }
    100%{
        transform: translate(982px, 879.778px) translateY(-2px);
    }
}


/* dir_box ----------------------------------------------------------------------------------------------------------------------*/
.wp_wrap #shp_why_wrap .inner_box .dir_box{
    margin-bottom: 165px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li{
    position: relative;
    padding: 18px 0 0 18px;
    transition: 0.4s ease;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li.on{
    padding: 0 18px 18px 0;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    background: #2A2929;
    border-radius: 40px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in{
    position: relative;
    background: #fff;
    border-radius: 40px;
    border: 1px solid #9B2929;
    padding: 60px 30px 40px;
    height: 100%;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li:nth-child(1) .li_in{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 85px 55px 40px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .ftop{}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .ftop p{
    font-size: 40px;
    font-weight: var(--font-w600);
    color: #000000;
    line-height: 1.3;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .ftop p span{
    color: #B71111;
    font-size: 40px;
    font-weight: var(--font-w900);
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .fbot{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .fbot .txt{
    position: relative;
    font-size: 23px;
    font-weight: var(--font-w600);
    color: #000000;
    left: 20px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .fbot .num{
    font-size: 141px;
    font-weight: var(--font-w900);
    color: #B21010;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .tit_box{
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .tit_box .ko{
    font-size: 50px;
    font-weight: var(--font-w500);
    color: #000000;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .tit_box .en{
    font-size: 30px;
    font-weight: var(--font-w900);
    color: #B21010;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box{
    margin-bottom: 10px;
    font-weight: var(--font-w600);
    color: #000000;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc1{
    font-size: 20px;
    font-weight: var(--font-w600);
    color: #000000;
    margin-bottom: 45px;
    line-height: 1.3;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: var(--font-w300);
    color: #000000;
    line-height: 1.4;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .fwbd{
    font-weight: var(--font-w800);
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .tdul{
    text-decoration: underline;
    text-underline-offset: 1px;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .psrl{
    position: relative;
    cursor: pointer;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .psrl span{
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    background: #000;
    border-radius: 15px;
    font-size: 16px;
    font-weight: var(--font-w300);
    line-height: 1.45;
    white-space: nowrap;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .psrl:hover span{
    opacity: 1;
    visibility: visible;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .desc_box .desc2 .psrl span::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .num{
    text-align: right;
}
.wp_wrap #shp_why_wrap .inner_box .dir_box .dir_itms>li .li_in .num span{
    font-size: 50px;
    font-weight: var(--font-w900);
    color: #8B8B8B;
}

/* story_box --------------------------------------------------------------------------------------------------------------------*/
.wp_wrap #shp_why_wrap .inner_box .story_box{
    display: flex;
    flex-direction: column;
    gap: 75px;
    margin-bottom: 80px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm{
    position: relative;
    padding: 15px 0 0 15px;
    transition: 0.4s ease;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm.on{
    padding: 0 15px 15px 0;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background: #484848;
    border-radius: 40px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in{
    position: relative;
    background: #fff;
    border-radius: 40px;
    border: 1px solid #BEBEBE;
    padding: 30px 40px 55px;
    height: 100%;
}

.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box{}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .rtit{
    font-size: 50px;
    font-weight: var(--font-w800);
    color: #B21010;
    margin-bottom: 20px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc1{
    margin-bottom: 10px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc1 > p{
    font-size: 30px;
    font-weight: var(--font-w700);
    color: #000000;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc2{
    margin-bottom: 35px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc2 > p{
    font-size: 44px;
    font-weight: var(--font-w700);
    color: #EB9F07;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p{
    font-size: 20px;
    font-weight: var(--font-w400);
    color: #000000;
    line-height: 1.45;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p.fwmd{
    font-weight: var(--font-w500);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p.pt15{
    padding-top: 15px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p span.fwbk{
    font-weight: var(--font-w900);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p.fwbd,
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p span.fwbd{
    font-weight: var(--font-w700);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p span.fwsb{
    font-weight: var(--font-w600);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc3 > p span.highlight{
    position: relative;
    box-shadow: inset 0 -16px 0 rgba(230, 230, 230, 0.72);
    line-height: 1.8;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc4{
    margin-top: 20px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .desc4 > p{
    font-size: 16px;
    font-weight: var(--font-w500);
    color: #000000;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .line_box{
    margin-bottom: 55px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .line_box>p{
    font-size: 20px;
    border-bottom: 1px solid #D9D9D9;
    color: #000000;
    padding: 3px 0;
    font-weight: var(--font-w400);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .txt_box .line_box>p span{
    font-weight: var(--font-w700);
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_adrs{
    position: absolute;
    bottom: 40px;
    right: 65px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_adrs .txt1{
    font-size: 16px;
    font-weight: var(--font-w700);
    color: #686868;
    padding-right: 5px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_adrs .txt2{
    font-size: 64px;
    font-weight: var(--font-w300);
    color: #373737;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_logo{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    top: 15px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_logo .txt1{
    font-size: 20px;
    font-weight: var(--font-w600);
    color: #000000;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .str_dm .dm_in .hp_logo img{
    max-width: 333px;
}

/* why_dm */
.wp_wrap #shp_why_wrap .inner_box .story_box .why_dm .dm_in{
    display: flex;
    align-items: center;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .why_dm .dm_in .lt_area{
    width: 50%;
    padding-right: 60px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 650px;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .why_dm .dm_in .lt_area > p{
    font-size: 20px;
    color: #000000;
    font-weight: var(--font-w400);
    text-align: center;
}
.wp_wrap #shp_why_wrap .inner_box .story_box .why_dm .dm_in .rt_area{
    width: 50%;
    padding-left: 30px;
}


/* goto_box ---------------------------------------------------------------------------------------------------------------------*/
.wp_wrap #shp_why_wrap .inner_box .goto_box{}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul{
    display: flex;
    align-items: stretch;
    gap: 50px;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li{
    position: relative;
    flex: 1;
    padding: 0 10px 10px 0;
    transition: 0.4s ease;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li:hover{
    padding: 10px 0 0 10px;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: #2A2929;
    border-radius: 30px;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li .li_in{
    position: relative;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #8B8B8B;
    padding: 45px 40px;
    height: 100%;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li .li_in .txt1{
    font-size: 30px;
    font-weight: var(--font-w500);
    color: #000000;
    margin-bottom: 5px;
}
.wp_wrap #shp_why_wrap .inner_box .goto_box>ul>li .li_in .txt2{
    font-size: 20px;
    font-weight: var(--font-w900);
    color: #B21010;
}
/**********************************************************************************************************************/