@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");
@import url('https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css');


* {
    font-family: "SUIT", sans-serif;
}

html,
body {
    margin: 0px;
    padding: 0px;
    position: relative;
    height: 100%;
    background-color: #fff;
}

img { width:100%; }

ul,
li,
dl,
dd,
dt {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

:focus {
    outline: none !important;
}
#wrap { width:100%; overflow:hidden; max-width:720px; min-width:320px; text-align:center; margin:0 auto;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

.container {
	width:100%; 
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.swiper-wrapper { height:auto; }
.swiper {
    width: 100%; 
}


.swiper-slide {
    background-position: center;
    background-size: cover; 
}

.swiper-slide img {
    display: block;
}
.bg2_num {
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap:wrap;
    gap:20px;
    margin:0px 0px 20px;
}
.bg2_num li {
    flex:1 1 40%;
}
.bg2_num p {
    font-weight:900;
    color:#285fff;
    font-size:40px;
    font-family: 'Paperlogy';
    margin-top:10px;
    margin-bottom:10px;
}
.bg2_num span {
    font-weight:400;
    color:#000033;
    font-size:20px;
    font-family: 'Paperlogy';
}
/* 폼 스타일 */
.form_custom {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px 80px 0px;
}

.form_custom dl {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.form_custom dt {
    width: 120px;
    text-align: left;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
    font-size:24px;
    font-weight:700;
    font-family: "SUIT", sans-serif;
}

.form_custom dd {
    flex: 1;
}

.form_custom input[type="text"],
.form_custom input[type="tel"],
.form_custom textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 20px;
    transition: border-color 0.3s ease;
}

.form_custom input[type="text"]:focus,
.form_custom input[type="tel"]:focus,
.form_custom textarea:focus {
    outline: none;
    border-color: #285fff;
    box-shadow: 0 0 0 3px rgba(40, 95, 255, 0.1);
}

.form_custom textarea {
    resize: vertical;
    min-height: 100px;
}

.agree {
    margin: 30px 0;
    text-align: center;
    font-size:20px;
}

.agree input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    width:20px;
    height:20px;
}

.agree b {
    font-weight: 500;
    color: #333;
}

.agree a {
    color: #285fff;
    text-decoration: none;
}

.agree a:hover {
    text-decoration: underline;
}

.btnArea {
    text-align: center;
    margin-top: 40px;
}
.btnArea input[type="image"] {
    width:310px;
}
/* 퀵 배너 스타일 */
.quick-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.quick-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

/* 바운스 애니메이션 키프레임 */
@keyframes quickBtnBounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -15px, 0);
    }
    70% {
        transform: translate3d(0, -8px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.quick-btn {
    background: linear-gradient(135deg, #285fff 0%, #5c7cfa 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 95, 255, 0.3);
    white-space: nowrap;
    font-family: 'Paperlogy';
    animation: quickBtnBounce 2s ease-in-out infinite;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 95, 255, 0.4);
}

.quick-btn:active {
    transform: translateY(0);
}