
/* common */
@font-face {
    font-family: 'MaruBuri-Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/MaruBuri-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NationalPension';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontRegular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NationalPension';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontBold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'NationalPension';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/NPSfontExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Paperozi';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2404@1.0/WavvePADO-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@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;
}



:root {
    --main-bg-color: #162b66;
    --main-bg-color2: #162b66;
}

body {
    font-family: 'Pretendard' ;
}


.Wrap{max-width:480px; height:100vh; margin:0 auto;box-shadow: 0 0 5px #00000015;background:#fff;position: relative;}









.flex {display: flex;}

.grid {display: grid;gap:6px;}

.pd15 {padding-left:15px;padding-right:15px;}

.hr {width:100%;height:1px;background:#999;}

img {width:100%;height:100%;display: block;}



/* 탑버튼 */

.top_btn {position:fixed;bottom:15px;right:15px;z-index: 999;display: none;}
.top_btn i {font-size:24px;color:#fff;padding:10px;}
.top_btn div {background:#3459a4;border-radius: 5px;overflow: hidden;}








.hd-wrap {
    height:55px;
    box-shadow:0px 5px 5px -2px #00000015;
    display: flex;
    align-items: center;
    position:fixed;
    max-width:480px;
    width:100%;
    background:#fff;
}

.hd-wrap i {
    font-size:20px;
    color:#ccc;
    padding:10px 20px 10px 0;
}

.hd-wrap .page-title-wrap {
    font-size:15px; 
    color:#333;
    display: flex;
    gap:20px;
    align-items: center;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


.hd-wrap .page-title-wrap p {
    padding-right:20px;
    border-right:1px solid #999;
}





.btm-nav {
    position:fixed;
    bottom:0;
    background:#6d9cea;
    /* 전체 높이 = 버튼 영역(55) + 하단 띠(30). 띠는 padding으로 채워 뷰포트 하단이 비지 않게 함 */
    height:85px;
    padding-bottom:30px;
    box-sizing:border-box;
    width:100%;
    max-width:480px;
    display:flex;
    align-items: center;
    justify-content: center;
}


.btm-nav button {
    color:#fff;
    font-size: 16px;
    width:100%;
    height:100%;
}

@media (min-width:768px) {
    body {
        font-size: 17px;
    }

    .hd-wrap i {
        font-size: 24px;
    }

    .hd-wrap .page-title-wrap {
        font-size: 18px;
    }

    .hd-wrap .page-title-wrap h4 {
        font-size: 24px;
        font-weight: 700;
    }

    .hd-wrap .page-title-wrap p {
        font-size: 17px;
    }

    .btm-nav button {
        font-size: 18px;
    }

    /* Paper_no 타입의 상세 폰트는 sub.css의 마지막 블록에서 통합 관리 */

}











