@charset "euc-kr";

/*기본 CSS*/
/*페이퍼로지 폰트 설정*/
@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
/*폰트 설정 끝*/


/*기본값*/
html, body, p{
    font-family: 'Paperlogy', sans-serif;
    margin:0;
    padding:0;
    background: #FFFFFF;
    overflow-x: hidden; /*가로 스크롤 없애기*/
    -webkit-user-select: none;
    -webkit-text-size-adjust: none;
}

img {
    display:block;
    max-width:100%;
    height:auto;
    margin:0 auto;
}

/*사파리 회전시 폰트 크기 고정하기*/
form,
fieldset,
img {
    border: 0;
}

/*웹버전, 모바일 버전 이미지 변환*/
.mo-img{
    display: none;
}

@media(max-width:768px){
    .pc-img{
        display: none;
    }
    .mo-img{
        display: block;
        width: 100%;
        height: auto;
    }    
}

/* ========================= */
/* gnb */
/* ========================= */

/* gnb 때문에 body 상단 여백 */
body {
    padding-top: 88px;
}

/* gnb 내부만 부분 초기화 */
.gnb * {
    box-sizing: border-box;
}

.gnb ul,
.gnb li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gnb a {
    text-decoration: none;
    color: inherit;
}

.gnb img {
    display: block;
    margin: 0;
    max-width: none;
}

/* 기본 */
.gnb {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:88px;
    background:#fff;
    border-bottom:1px solid #eee;
    z-index:9999;
}

.gnb_inner {
    width:100%;
    max-width:1200px;
    margin:0 auto;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

/* 로고 */
.gnb_logo {
    margin:0;
    padding:0;
    flex-shrink:0;
}

.gnb_logo a {
    display:block;
}

.gnb_logo img {
    width:auto;
    height:34px;
}

/* 메뉴 */
.gnb_nav {
    margin-left:auto;
}

.gnb_menu {
    display:flex;
    align-items:center;
    gap:22px;
}

.gnb_menu li {
    position:relative;
}

.gnb_menu li + li::before {
    content:"|";
    position:absolute;
    left:-13px;
    top:50%;
    transform:translateY(-50%);
    color:#ddd;
    font-size:15px;
    line-height:1;
}

.gnb_menu a {
    display:block;
    font-size:22px;
    font-weight:600;
    color:#bdbdbd;
    line-height:1;
    white-space:nowrap;
}

.gnb_menu li.active a,
.gnb_menu a:hover {
    color:#f2c300;
}

/* 아이콘 */
.gnb_util {
    display:flex;
    align-items:center;
    gap:26px;
    margin-left:40px;
    flex-shrink:0;
}

.util_item {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.util_item img {
    width:25px;
    height:25px;
    object-fit:contain;
}

.util_item span {
    font-size:15px;
    color:#bdbdbd;
    line-height:1.2;
    white-space:nowrap;
}

/* 햄버거 */
.menu_btn {
    display:none;
    background:none;
    border:none;
    padding:0;
    cursor:pointer;
}

.menu_btn img {
    width:28px;
    height:auto;
    display:block;
}

/* dim */
.dim {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.dim.active {
    opacity:1;
    visibility:visible;
}

/* 모바일 메뉴 */
.m_menu {
    position:fixed;
    top:0;
    right:-100%;
    width:85%;
    max-width:420px;
    height:100%;
    background:#f7f7f7;
    transition:.3s;
    z-index:9999;
    overflow-y:auto;
}

.m_menu.active {
    right:0;
}

/* 상단 */
.m_top {
    background:#f2c300;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.m_top > img,
.m_top .gnb_logo img {
    width:auto;
    height:30px;
    margin:0;
}

.close_btn {
    background:none;
    border:none;
    padding:0;
    cursor:pointer;
}

.close_btn img {
    width:22px;
    height:auto;
    display:block;
    margin:0;
}

/* 리스트 */
.m_list {
    margin:0;
    padding:0;
}

.m_list li {
    border-bottom:1px solid #e5e5e5;
    list-style:none;
}

.m_list a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    text-decoration:none;
}

.m_list .txt {
    color:#bbb;
    font-size:18px;
    line-height:1.3;
    white-space:nowrap;
}

.m_list li.active .txt {
    color:#f2c300;
    font-weight:700;
}

.arrow img {
    width:18px;
    height:18px;
    opacity:.4;
    margin:0;
}

.icon img {
    width:22px;
    height:22px;
    margin:0;
}

/* 모바일 */
@media (max-width:768px){

    body {
        padding-top:72px;
    }

    .gnb {
        height:72px;
    }

    .gnb_logo img {
        height:30px;
    }

    .gnb_nav,
    .gnb_util {
        display:none;
    }

    .menu_btn {
        display:block;
    }
}

/*중앙 버튼*/
/* ===== 전체 섹션 ===== */
.middle_btn{
    margin-top: clamp(20px,5vw,50px);
    margin-bottom: clamp(20px,5vw,50px);
    text-align: center;
    background: #ffffff;
}

.middle_btn h1{
    font-size: 40px;
    font-family: 'paperozi';
    font-weight: 600;
    padding-bottom: clamp(10px,2vw,15px);
}

.foot_btn h1{
    font-size: 40px;
    font-family: 'paperozi';
    font-weight: 600;
    padding-bottom: clamp(10px,2vw,15px);
}

/* ===== 버튼 영역 ===== */
.consult-cta__buttons{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* ===== 버튼 공통 ===== */
.cta-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100px;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all .2s ease;
    box-sizing: border-box;
    box-shadow: none;
}

.cta-btn:hover{
    transform: translateY(-5px);
}

.cta-btn:active{
    transform: translateY(0);
}

/* ===== 아이콘 ===== */
.cta-btn__icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn__icon img{
    width: clamp(40px,2.5vw,60px);
    height: clamp(40px,2.5vw,60px);
    object-fit: contain;
}

/* ===== 텍스트 ===== */
.cta-btn__label{
    flex: 1;
    text-align: left;
    padding: 0 20px;
    font-family: 'paperozi';
    font-weight: 400;
    font-size: clamp(16pt,2.5vw,20pt);
}

/* ===== 화살표 ===== */
.cta-btn__arrow{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn__arrow img{
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: transform .2s ease;
}

.cta-btn:hover .cta-btn__arrow img{
    transform: translateX(4px);
}

/* ===== 색상 버전 ===== */

.cta-btn--kakao{
    background: #f7d44a;
    color: #1f1f1f;
}

.cta-btn--quick{
    background: #0b4a8b;
    color: #ffffff;
}

/* 화살표가 검정 SVG일 경우 흰색 보정 */
.cta-btn--quick .cta-btn__arrow img{
    filter: brightness(0) invert(1);
}

/* ===== 모바일 ===== */
@media (max-width:768px){
    .middle_btn > h1{
        font-size: 17px;
    }
    
    .foot_btn > h1{
        font-size: 17px;
    }

    .consult-cta__buttons{
        width:90%;
        grid-template-columns:1fr;
        gap:10px;
    }

    .consult-cta__buttons .cta-btn{
        width:80%;
        margin:0 auto;
        flex-direction:row;
        justify-content:flex-start;
        align-items:center;
        height:clamp(60px,2.5vw,80px);
        border-radius:clamp(5px,2.5vw,20px);
        gap:20px;
        padding:0 48px 0 24px;
        position:relative;
    }

    .consult-cta__buttons .cta-btn__icon img{
        width:40px;
        height:40px;
    }

    .consult-cta__buttons .cta-btn__label{
        font-size:16px;
        text-align:left;
        padding:0;
        flex:1;
    }

    .consult-cta__buttons .cta-btn__arrow{
        display:none;
    }

    .consult-cta__buttons .cta-btn::after{
        content:"";
        position:absolute;
        right:20px;
        top:50%;
        width:8px;
        height:8px;
        border-right:2px solid currentColor;
        border-top:2px solid currentColor;
        transform:translateY(-50%) rotate(45deg);
    }
}


/*영상*/
.video_gif{
    width:100%;
    display:block;
    margin:0 auto;
}


/*탭 css*/
.tab_sec{
    width:100%;
    box-sizing:border-box;
    margin-top: clamp(20px,4vw,80px);
    margin-bottom: clamp(20px,4vw,80px);
}

.tab{
    text-align:center;
}

/*탭 메뉴*/
.tab_menu{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:clamp(50px,5vw,70px);
}

.tab_btn{
    background:#ffffff;
    border:none;
    font-family:'paperozi';
    font-weight:400;
    font-size:clamp(16px,2vw,26px);
    color:#808080;
    padding:clamp(16px, 3vw, 32px) clamp(70px,7vw,130px);
    border-radius:25px;
    cursor:pointer;
    transition:.25s;
    white-space:nowrap;
}

.tab_btn:hover,
.tab_btn.active{
    background:#ffd320;
    color:#323232;
    font-weight:700;
}

/*탭 패널*/
.tab-panel{
    display:none;
    opacity:0;
    transform:translateY(6px);
    transition:.25s;
}

.tab-panel.active{
    display:block;
    opacity:1;
    transform:none;
}

/*탭 컨텐츠배경*/

.tab_con{
    width:100%;
}

/*탭 레이아웃*/
.item {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-bottom: clamp(15px,2vw,30px);
    display: grid;
    grid-template-columns: 45% 1fr;
    align-items: center;
    box-sizing: border-box;
}

.item > * {
    min-width: 0;
}

.tab_img {
    width: 100%;
}

.tab_img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.tab_txt{
    margin-left: 40px;
    text-align: left;
}

.tab_tag{
    display: flex;
    flex-direction: row;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom: clamp(15px,2.5vw, 25px);
}

.tag{
    display:inline-block;
    padding:6px 14px;
    background:#3a1212;
    color:#fff;
    font-family:'paperozi';
    font-weight:300;
    font-size:clamp(18px,2.5vw,20px);
    border-radius:999px;
    white-space:nowrap;    
}

.tab_tit{
    position:relative;
    display:inline-block;
    color:#323232;
    font-family:'paperozi';
    font-weight:700;
    font-size:clamp(20px,2.5vw,35px);
    padding-bottom:7px;
}

.tab_tit::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:#ffd320;
}

.tab_t{
    margin-top:clamp(12px,2vw,23px);
    font-size:clamp(13px,2vw,23px);
    line-height:1.5;
    word-break:keep-all;
    font-family:'paperozi';
    font-weight:400;
    color:#888888;
}


/*탭 모바일*/

@media (max-width:768px){
    .tab_menu{
        margin-bottom: 15px;
    }

    .item{
        grid-template-columns:45% 1fr;
        gap:clamp(20px,4vw,40px);
    }

    .tab_txt{
        margin-left:0;
        text-align:left;
    }
    
    .tab_tag{
        gap:5px;
        margin-bottom: 10px;
    }
    
    .tag{
        display:inline-block;
        padding:4px 10px;
        background:#3a1212;
        color:#fff;
        font-family:'paperozi';
        font-weight:300;
        font-size:9px;
        border-radius:999px;
        white-space:nowrap;    
    }

    .tab_menu{
        flex-wrap:wrap;
        gap:10px;
    }
    
    .tab_tit{
        font-size: 17px;
        padding-bottom: 5px;
    }

    .tab_tit::after{
        height:2px;
    }

    .tab_t{
        margin-top: 5px;
        font-size: 10px;
        line-height:1.3;
    }

    .tab_btn{
        padding:13px 13px;
        font-size:clamp(12px,4vw,15px);
        border-radius:12px;
    }
}


/*유튜브 영상*/
.movie{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.movie iframe{
    width: 100%;
    aspect-ratio:16/9;
    border:0;
}

.mov{
    background: #fffbe8;
}


/*최하단 버튼*/

.foot_btn{
    padding-top: clamp(40px,2.5vw,70px);
    padding-bottom: clamp(40px,2.5vw,70px);
    background:#fffde3;
    text-align:center;
}


/* ============================= */
/* BUTTON WRAP */
/* ============================= */

.f_btn_con{
    width:clamp(1000px,2.5vw,1400px);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    justify-items:center;
    margin-bottom: 70px;
}

/* 🔥 아이콘+텍스트 그룹을 중앙 정렬 */
.con_align{
    display:flex;
    justify-content:center;
}

/* ============================= */
/* BUTTON COMMON */
/* ============================= */

.f_btn_con a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:24px;
    width: clamp(300px,2.5vw,400px);
    height:260px;
    padding:clamp(20px,2.5vw,40px) clamp(20px,2.5vw,40px);
    border-radius:36px;
    text-decoration:none;
    transition:.25s ease;
    box-sizing:border-box;
}

.f_btn_con a:hover{
    transform:translateY(-6px);
}

/* ============================= */
/* ICON */
/* ============================= */

.cta-btn__icon{
    display:flex;
    align-items:center;
    justify-content:center;
}

.cta-btn__icon img{
    width:80px;
    height:80px;
    object-fit:contain;
}

/* ============================= */
/* TEXT */
/* ============================= */

.cta-btn__l{
    font-family:'paperozi';
    font-weight:600;
    font-size:clamp(22px,2vw,30px);
    text-align:center;
    line-height:1.3;
}

.cta-btn__l strong{
    display:block;
    font-size:clamp(28px,2.2vw,40px);
    font-weight:700;
    margin-top:8px;
}

/* ============================= */
/* COLOR */
/* ============================= */

.btn--call{
    background:#8a6300;
    color:#ffffff;
}

.btn--kakao{
    background:#f5cf24;
    color:#1f1f1f;
}

.btn--quick{
    background:#15589e;
    color:#ffffff;
}

.btn--call img,
.btn--quick img{
    filter:brightness(0) invert(1);
}

.time>img{
    display: inline-block;
    text-align: center;
    width: clamp(1000px,2.5vw,1400px);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width:1024px){

    .f_btn_con{
        width: 70%;
    }

    .f_btn_con a{
        gap:clamp(5px,2.5vw,10px);
        border-radius:28px;
        width: clamp(220px,2.5vw,600px);
        height:clamp(220px,2.5vw,260px);
        padding:clamp(10px,2.5vw,30px) clamp(10px,2.5vw,30px);
    }

    .cta-btn__icon img{
        width:60px;
        height:60px;
    }
    
    .time>img{
        display: inline-block;
        text-align: center;
        width: 80%;
    }
}

/* 🔽 모바일 */
@media (max-width:768px){

    .foot_btn{
        padding-top:20px;
        padding-bottom:20px;
    }

    .f_btn_con{
        width:90%;
        grid-template-columns:1fr;
        gap:10px;
        justify-items:center;
        margin-bottom:clamp(20px,2.5vw,50px);
    }

    .con_align{
        display:flex;
        justify-content:center;
        width:100%;
    }

    .f_btn_con a{
        width:80%;
        flex-direction:row;
        justify-content:flex-start;
        align-items:center;
        height:clamp(60px,2.5vw,80px);
        border-radius:clamp(5px,2.5vw,20px);
        gap:20px;
        padding:0 48px 0 24px;
        position:relative;
    }

    .f_btn_con a::after{
        content:"";
        position:absolute;
        right:20px;
        top:50%;
        width:8px;
        height:8px;
        border-right:2px solid currentColor;
        border-top:2px solid currentColor;
        transform:translateY(-50%) rotate(45deg);
    }

    .cta-btn__icon img{
        width:40px;
        height:40px;
    }

    .cta-btn__l{
        font-size:16px;
        text-align:left;
    }

    .cta-btn__l strong{
        font-size:17px;
    }
}