@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;
}

body {list-style: none; padding: 0;  margin: 0 auto;}
a { color: inherit; text-decoration: none; font-family: 'Paperozi';}
img { max-width: 100%; vertical-align: middle;}
.inner { margin: 0 auto; width: 1100px;}
.section {margin: 0 auto; text-align: center;}
.toggle-menu button { background: transparent; border: none;}

.toggle-menu {
    display: flex;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.toggle-menu .bar {
    display: block;
    background: #ffffff;
    width: 23px;
    height: 2px;
    transition: margin 0.25s 0.25s, transform 0.25s;
}

.toggle-menu .bar1 { margin-bottom: 4px;}
.toggle-menu .bar2 {}
.toggle-menu .bar3 { margin-top: 4px;}

.toggle-menu.active .bar {
    transition: margin 0.25s, transform 0.25s 0.25s;
    background-color: #ffffff;
}

.toggle-menu.active .bar1 {
    margin-top: 4px;
    margin-bottom: -2px;
    transform: rotate(45deg);
}

.toggle-menu.active .bar2 {
    transform: rotate(45deg);
}

.toggle-menu.active .bar3 {
    margin-top: -2px;
    transform: rotate(135deg);
}

.hd {
    position: fixed;
    background-color: rgba(4, 50, 167, 0.7);
    left: 0;
    right: 0;
    z-index: 10;
    transition: background 0.5s ease-in-out;
    min-height: 70px;
    margin: 0 auto;
    width: 100%;
}

.hd .logo {
    margin-top: 13px;
    position: absolute;
    align-items: center;
    width: 246px;
    height: 28px;
    background-position: -10px -59px;
    background-repeat: no-repeat;
}

.hd .logo img {
    width: 80%;
}

.hd .gnb {
    display: flex;
    justify-content: right;
    color: #333;
}

.hd .pc-gnb {
    text-align: right;
}

.hd .mob-gnb {
    display: none;
}

.hd .gnb .dep1 {
    display: inline-block;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
}

.hd .gnb .dep1>a {
    display: block;
    color: #fff;
    line-height: 50px;
    padding: 0 10px;
    font-size: 1.5rem;
    font-weight: 400;
}

/* .hd .gnb .dep1 > a::after { content: ""; display: block; width: 0; height: 1px; background-color: #fff; position: absolute; left: 0; right: 0; bottom: 0; transition: width 0.3s;} */
.hd .gnb .dep1:hover>a::after {
    width: 100%;
}

.hd .gnb .btn {
    border: solid 1px #333;
    margin-left: 30px;
    padding: 0;
}

.hd .gnb .btn>a {
    color: #333;
    padding: 6px 0px 8px 14px;
}

.hd .gnb .btn img {
    margin-left: 10px;
}


.hd .mob-gnb {
    position: fixed;
    height: 100%;
    right: 0;
    visibility: hidden;
    transition: visibility 0.3s ease;
}

.hd .mob-gnb .gnb-box {
    width: 110vw;
    margin-top: -50px;
    margin-bottom: -50px;
    background-color: #333;
    padding-top: 100px;
    transform: translateX(50%);
    transition: transform 0.4s ease;
}

.hd .mob-gnb::before {
    content: "";
    width: 110vw;
    top: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.hd .mob-gnb .gnb-box .dep1 {
    display: block;
}

.hd .mob-gnb .dep1 {
    margin-left: 0;
    margin-bottom: 15px;
}

.hd .mob-gnb .dep1>a {
    line-height: 60px;
    padding: 0 20px;
    font-size: 22px;
    color: #fff;
}

.hd .mob-gnb.active {
    visibility: visible;
}

.hd .mob-gnb.active::before {
    opacity: 1;
}

.hd .mob-gnb .gnb-box .dep1:hover {
    background-color: #fff;
    font-weight: bold;
}

.hd .mob-gnb .gnb-box .dep1:hover>a {
    color: #333;
}

.img-wrap {
    padding: 50px 0px;
}


#sec0 {
    display: flex;
    justify-content: center;
    background-color: #03d1c4;
}
#sec0 .pc {display: block;}
#sec0 .mob {display: none;}

#sec2 {
    background-color: #3062f2;
}

#sec2-1 {
    background-color: #0d40d1;
    padding-bottom: 30px;
}

#sec3 {
    background-color: #bbff11;
}

#sec4 {
    background-image: url(../img/sec4-bg.png);
    background-size: cover;
}

#sec5 {
    background-color: #eff4ff;
    padding: 30px;
}

#sec6 {
    background-image: url(../img/sec6-bg.png);
    background-size: cover;
    height: 85vh;
}

.ft {
    background-color: #0b1a44;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 150px;
}

.bottom-banner .box {
    margin-bottom: 15px;
}

.signup-content {
    width: 40%;
    max-height: 80%;
    background: #ffffff;
    padding: 25px;
    margin: 15px auto;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.signup-content h2 {
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.signup-content label {
    display: block;
    margin-top: 15px;
    margin-bottom: 6px;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
    font-family: 'Paperozi';

}

.signup-content p {
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin: 5px;
    font-family: 'Paperozi';
    font-weight: 300;
}

.signup-content input[type="name"],
.signup-content input[type="phone"],
.signup-content input[type="site_name"],
.signup-content input[type="amount"] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
    font-family: 'Paperozi';
    font-weight: 300;

}

.signup-content select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.signup-content input[type="button"] {
    width: 100%;
    position: relative;
    padding: 14px;
    background-color: #2069f8;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    z-index: 11;
    pointer-events: auto;
    font-family: 'Paperozi';
    font-weight: 500;
}

.id-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

#checkIdBtn {
    border-radius: 7px;
    background-color: #155fcc;
    padding: 10px 10px;
    color: #fff;
    border: none;
}

.top-nav .logo {
    font-size: 1.4rem;
    font-weight: bold;
}

.top-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
}

.top-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: .3s;
}

.top-nav ul li a:hover {
    opacity: 0.6;
}

.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #171717;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 999;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hidden {
    display: none !important;
}

.popup-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 260px;
    text-align: center;
}
.popup-box p { font-family: 'Paperozi';}
.popup-box button {
    font-family: 'Paperozi';
    border-radius: 7px;
    background-color: #155fcc;
    padding: 10px 10px;
    width: 80%;
    color: #fff;
    border: none;}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px;
}

.check-img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.text {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    user-select: none;
    font-family: 'Paperozi';
    font-weight: 300;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    place-items: center;
    z-index: 1000;
}

.overlay.open {
    display: grid;
}

.modal {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 360px;
    text-align: left;
    font-family: 'Paperozi';
}

.modal button {
    margin-top: 15px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #2069f8;
    cursor: pointer;
    width: 100%;
    color: #ffffff;
}
.box-pc {display: block;}
.box-mob {display: none;}


@media screen and (max-width: 630px) {
    .toggle-menu { display: flex;}
    .inner { margin: 0 auto; width: 600px;}

    .hd { z-index: 10;}
    .hd .pc-gnb { display: none;}
    .hd .mob-gnb { display: flex;}
    .hd .logo { margin-top: 13px; width: 120px; margin-left: 15px;}
    #sec0 .pc {display: none;}
    #sec0 .mob {display: block;}
    .img-wrap  {padding: 15px 0px;}
    #sec2-1 {padding-bottom: 10px;}
    #sec6 {height: 77vh;}
    .signup-content {width: 75%;}
    .bottom-banner {padding: 0px; padding-bottom: 20px;padding-top: 10px;}
    .bottom-banner img {width: 30%;}
    .box-pc {display: none;}
    .box-mob {display: block;}
    .ft {padding-bottom: 110px;}
}
@media screen and (max-width: 500px) {
    #sec6 {height: 85vh;}
    .ft {padding-bottom: 130px;}
}