@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable.css");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

:root {
    --text-primary: #000;
    --text-secondary: #202124;
    --text-tertiary: #4e4e4e;
    --text-ccc: #ccc;
    --border-color: #E5E7EB;

}

html {
    height: 100%;
    margin: 0;
    background-color: #ffffff !important;
    color-scheme: light;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: "Pretendard Variable";
    color: var(--text-secondary);
    word-break: keep-all;
    letter-spacing: -0.2px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff !important;
    line-height: 1.6;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1,
p {
    margin: 0;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
    position: absolute !important;
}

main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-top: 56px;
}

@media (min-width: 575.98px) {
    main {
        padding-top: 64px;
    }
}

@media (min-width: 1200px) {
    main {
        padding-top: 70px;
    }
}

.container-fullscreen {
    max-width: unset
}

.container-1600px {
    max-width: 1600px;
    padding: 0px 40px;
    width: 100%;
    margin: auto;
}

.container {
    max-width: 1480px;
    padding: 0px 40px;
    width: 100%;
    margin: auto;
}

.container-1200px {
    max-width: 1240px;
    padding: 0px 40px;
    width: 100%;
    margin: auto;
}

@media (max-width: 767.98px) {
    .container-1600px,
    .container,
    .container-1200px {
        padding: 0px 20px;
    }
}

a {
    text-decoration:none;
    color:inherit;
}

button {
    border: none;
    padding: 0px;
    background: none;
}

/* ===== 헤더 ==== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff;
}

.header-height {
    position: relative;
    display: flex;
    align-items: center;
    height: 56px; 
}

header.scrolled {
    border-bottom: 1px solid #e9e9e9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 575.98px) {
    .header-height {
        height: 64px;
    }
}

@media (min-width: 1200px) {
    .header-height {
        height: 74px;
    }
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left a {
    display: flex;
    align-items: center;
}

.header-left img {
    width: 100%;
}

.header-left span {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0px;
}

@media (max-width: 575.98px) {
    .header-left span {
        font-size: 21px;
    }

    .header-left img {
        width: 180px;
    }
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 48px;
}

@media (max-width: 1199.98px) {
    .header-center {
        display: none;
    }
}

.header-center a {
    font-size: 16px;
    font-weight: 400;
    padding: 0px 4px;
    color: #000;
    height: 74px;
    display: flex;
    align-items: center;
}

.header-right .header-btns a,
.header-right .header-btns button {
    display: none;
    font-size: 16px;
    font-weight: 400;
    color: #000
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-btns button {
    border: none;
    background: #fff;
    padding: 0px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 1199.98px) {
    .header-right .header-btns a,
    .header-right .header-btns button {
        display: flex;
    }
}

.go-dashboard {
    padding: 4px 18px;
    border-radius: 999px;
    border: 1px solid #000;
    color: #fff !important;
    background-color: #000;
}

.mobile-open-btn {
    display: block
}

@media (min-width: 1200px) {
    .mobile-open-btn {
        display: none
    }
}

.mobile-open-icon {
    background-image: url("../images/icon/nav-close.svg");
    width: 26px;
    height: 26px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.mobile-open-btn:not(.active) .mobile-open-icon {
    background-image: url("../images/icon/nav-open.svg");
    width: 26px;
    height: 26px;
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    display: block;
    min-height: 100vh;
}

.mobile-menubar {
    margin-top: 30px;
    padding: 0px 20px;
}

@media (min-width:575.98px) {
    .mobile-menubar {
        padding: 0px 36px;
    }
}

.mobile-menu-link {
    margin: 18px 0px;
}

.mobile-menu-link a {
    font-size: 24px;
    font-weight: 500
}

.mobile-menu-btns {
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 24px;
    font-weight: 500
}

.pila-header-btn {
    background: #F1F4F7;
    color: #000000;
    padding: 8px 16px;
    border-radius: 999px;
}

.pila-header-btn:hover {
    box-shadow:
        0 10px 30px rgba(15,23,42,.08),
        0 20px 60px rgba(15,23,42,.06);
}

/* ===== 헤더 끝 ==== */


/*==== 히어로 시작 ===== */
.section-hero {
    padding: 100px 0px;
}

@media (max-width: 1024px) {
    .section-hero {
        padding: 70px 0px;
    }
}

@media (max-width: 576px) {
    .section-hero {
        padding: 60px 0px;
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    line-height: 1.25;
    color: var(--text-primary)
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
}

.hero-desc {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
    color:var(--text-secondary)
}

@media (max-width: 576px) {
    .hero-desc {
        font-size: 18px;
    }
}

.move-to-order{
    display: flex;
    align-items: center;
    justify-content: center;
    width:fit-content;
    margin:32px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(
        135deg,
        #4A5C6E,
        #55687B,
        #6C8196,
        #55687B,
        #4A5C6E
    );
    background-size: 300% 300%;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .3s ease;
    text-decoration: none;
    animation: gradient-shift 8s ease infinite;
}

.move-to-order:hover{
    background: #4A5C6E;
    animation: none;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 20px 60px rgba(0,0,0,.06);
}

@keyframes gradient-shift {
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

.hero-img-wrap {
    margin-top: 60px;
}

@media (max-width: 576px) {
    .hero-img-wrap {
        margin-top: 46px;
    }
}

@media (max-width:1024px){
    .hero-img-wrap{
        width:100vw;
        margin-left:calc(50% - 50vw);
    }
}

.hero-img-wrap img {
    width: 100%;
}


.hero-mobile{
    display:none;
}

.hero-pc{
    display:block;
}

@media (max-width:1024px){

    .hero-pc{
        display:none;
    }

    .hero-mobile{
        display:block;
    }

}
/*==== 히어로 끝 ===== */

/*==== 인포섹션 시작 ===== */

.section-service {
    padding: 100px 0
}

@media (max-width: 1024px) {
    .section-service {
        padding: 70px 0px;
    }
}

@media (max-width: 576px) {
    .section-service {
        padding: 60px 0px;
    }
}

.service-toparea {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .service-toparea {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.service-top-left img {
    width: 100%;
    max-width: 160px;
}

.service-label {
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    margin-top: 6px;
}

.service-value {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    max-width: 640px;
}

@media (min-width:1919.98px) {
    .service-value {
        margin-top: 40px;
    }
}

@media (max-width:1023.98px) {
    .service-value {
        font-size: 18px;
    }
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom:1px solid currentColor;
}

.service-link span {
    transition: transform .25s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

.service-top-right .img-wrapper {
    position: relative;
    aspect-ratio: 5/3;
    border-radius: 8px;
    overflow: hidden;
}

.service-top-right .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-infogrid{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px 60px;
    margin-top: 120px;
}

@media (min-width:1024px) {
    /* 위쪽 라인 */
    .service-infogrid::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -40px;
        height: 1px;
        background: #ddd;
    }

    /* 가운데 라인 */
    .service-infogrid::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: #ddd;
    }
}

@media (max-width:1023.98px) {
    .service-infogrid {
        grid-template-columns: repeat(2, 1fr);
        gap:60px 60px;
        margin-top: 80px;
    }
}

@media (max-width:767.98px) {
    .service-infogrid {
        grid-template-columns: 1fr;
        gap:40px 40px;
    }
}

.service-info-nm {
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-info-nm img {
    width: 24px;
    transform: translateY(-1px);
}

.service-info-nm h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary)
}

@media (max-width:768px) {
    .service-info-nm h3 {
        font-size: 19px;
    }
}

.service-info-desc {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.45;
    color: var(--text-tertiary)
}

@media (max-width:768px) {
    .service-info-desc {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.6;
    }
}

.gray-line {
    height: 1px;
    background: #ddd;
    margin: 60px 0;
}

/*==== 인포섹션 끝 ===== */

/*==== 가이트 링크 시작 ===== */
.section-guidelinks {
    padding: 100px 0px 150px 0px;
}

@media (max-width: 1024px) {
    .section-guidelinks {
        padding: 70px 0px 105px;
    }
}

@media (max-width: 576px) {
    .section-guidelinks {
        padding: 60px 0px 90px 0px;
    }
}

.section-guidelinks h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 34px;
    color: var(--text-primary)
}

@media (max-width: 768px) {
    .section-guidelinks h2  {
        font-size: 22px;
    }
}

.guide-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 576px) {
    .guide-link-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 46px;
    }
}

.guide-img-wrapper {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f4d1c7;
    margin-bottom: 18px;
}

.guide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-link-desc {
    font-size: 20px;
    line-height: 1.35;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .guide-link-desc {
        font-size: 18px;
    }
}

/*==== 가이트 링크 끝 ===== */

/*==== 자주묻는 질문 시작 ===== */

.faq-page {
    padding: 100px 0px 200px 0px;
}

@media (max-width: 1024px) {
    .faq-page {
        padding: 70px 0px 140px;
    }
}

@media (max-width: 576px) {
    .faq-page {
        padding: 60px 0px 80px 0px;
    }
}

.faq-page .container {
    max-width: 900px;
}

@media (max-width: 1024px) {
    .faq-page .container {
        max-width: 640px;
    }
}

.faq-title {
    text-align: start;
    font-size: 28px;
    font-weight: 600
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }
}

.faq-wrapper {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .faq-wrapper {
        margin-top: 40px;
    }
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d0d0d0
}

.faq-item:last-of-type {
    margin-bottom: 0px;
}

.faq-item .question {
    font-size: 22px;
    font-weight: 600
}

@media (max-width: 768px) {
    .faq-item .question {
        font-size: 20px;
    }
}

.faq-item .answer {
    font-size: 18px;
    font-weight: 400;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .faq-item .answer {
        font-size: 16px;
    }
}

/*==== 자주묻는 질문 끝 ===== */

/* ===== 서비스 소개 시작 ===== */

.about-page {
    padding: 100px 0px 200px 0px;
}

@media (max-width: 1024px) {
    .about-page {
        padding: 70px 0px 140px;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 60px 0px 120px 0px;
    }
}

.about-top-area {
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .about-top-area {
        margin-bottom: 60px;
    }
}

.about-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.about-top-area h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary)
}

@media (max-width: 768px) {
    .about-top-area h2 {
        font-size: 32px;
    }
}

.about-middle-area {
    margin-bottom: 140px;
    padding: 60px 0px;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

@media (max-width: 768px) {
    .about-middle-area {
        margin-bottom: 80px;
        padding: 40px 0px;
    }
}

.about-middle-area p {
    font-size: 20px;
    line-height: 2;
    color: var(--text-secondary)
}

@media (max-width: 768px) {
    .about-middle-area p {
        font-size: 18px;
    }
}

.about-middle-area p span {
    font-weight: 700
}

.about-bottom-area h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary)
}

@media (max-width: 768px) {
    .about-bottom-area h3 {
        font-size: 28px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 70px;
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        margin-top: 40px;
    }
}

.about-item .number {
    font-size: 34px;
    font-weight: 700;
    color: #b2b6c1;
}

.about-item h4 {
    margin-top: 4px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary)
}

@media (max-width: 768px) {
    .about-item h4 {
        font-size: 20px;
    }
}

.about-item p {
    margin-top: 12px;
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary)
}

@media (max-width: 768px) {
    .about-item p {
        font-size: 17px;
        margin-top: 8px;
    }
}

/* ===== 서비스 소개 끝 ===== */


/*==== 푸터 ===== */
footer {
    background: #202936;
    /* border-top: 1px solid #e2e2e2; */
    color: #fff;
    padding: 70px 0px;
}

.footer-top {
    margin-bottom: 22px;
}

.footer-top img {
    width: 160px;
}

.footer-logo {
    display: flex;
    align-items: start
}

.footer-logo img {
    width: 19px;
}

.footer-logo span {
    font-size: 23px;
    font-weight: 600;
    margin-left: 3px;
}

.footer-contact-label {
    font-size: 16px;
    font-weight: 600;
    color: #5f6368;
    color: #fff;
    margin-bottom: 6px;
}

.footer-contact-num {
    font-size: 22px;
    font-weight: 700;
    color: #202124;
    color: #fff;
    margin-bottom: 4px;
}

.footer-contact-hour {
    font-size: 16px;
    color: #5f6368;
    color: #fff;
}

.footer-biz-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-biz-info span {
    font-size: 14px;
    color: #5f6368;
    color: #fff;
    line-height: 1.2
}

@media (max-width: 575.98px) {
    .footer-biz-info span {
        font-size: 13px;
    }
}

.footer-biz-info .seperation {
    color: #d0d3d6;
    color: #fff;
    font-size: 12px;
}

.footer-terms {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.footer-terms a {
    font-size: 13px;
    color: #5f6368;
    color: #fff;
    text-decoration: none;
}

.footer-copy {
    font-size: 13px;
    color: #9aa0a6;
    color: #fff;
}

@media (max-width: 575.98px) {
    .footer-terms a {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* ====== 푸터 끝 ====== */




/* ===== 조인 시작 ===== */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-size: 17px;
    font-weight: 600;
    color: #202124;
}

.form-group span {
    color: #e53935;
    margin-left: 4px;
}

.join-wrapper {
    margin: auto;
    max-width: 600px;
    margin-top: -20px;
    padding: 0px 24px;
    margin-bottom: 120px;
}

@media (min-width:575.98px) {
    .join-wrapper {
        margin-top: -30px;
        padding: 10px 19px;
        margin-bottom: 180px;
    }
}

.join-back {
    margin-bottom: 8px;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    transform: translateX(-14px);
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.back-btn img {
    height: 18px;
    display: block;
}

.join-top {
    margin-bottom: 30px;
}

.join-top .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.join-top .desc {
    font-size: 16px;
    color: #202124
}

.join-top .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

@media (min-width:575.98px) {
    .join-top .title {
        font-size: 24px;
    }
}

@media (min-width:1199.98px) {
    .join-top .title {
        font-size: 26px;
    }
}

.join-card {
    background: #fff;
    margin-bottom: 20px;
}

.join-card:last-child {
    margin-bottom: 0;
}

.join-card input[type="text"],
.join-card input[type="email"],
.join-card input[type="tel"],
.join-card input[type="password"],
.join-card select {
    height: 58px;
    border: 1px solid #D0D0D0;
    border-radius: 16px;
    padding: 0 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

.join-card input:focus,
.join-card select:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.input-with-button {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-with-button:last-child {
    margin-bottom: 0;
}

.input-with-button label {
    font-size: 17px;
    font-weight: 600;
    color: #202124;
}

.input-with-button span {
    color: #e53935;
    margin-left: 4px;
}

.input-button-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-button-wrapper input[type="text"],
.input-button-wrapper input[type="email"],
.input-button-wrapper input[type="tel"],
.input-button-wrapper input[type="password"],
.input-button-wrapper select {
    flex: 1;
    height: 58px;
    border: 1px solid #D0D0D0;
    border-radius: 16px;
    padding: 0 14px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.input-button-wrapper input:focus {
    border-color: #1a73e8;
}

.check-btn {
    height: 58px;
    padding: 0 20px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}

.check-btn:active {
    box-shadow: 0 1px 2px rgba(26, 115, 232, 0.2);
}

/* 모바일 반응형 */
@media (max-width: 575.98px) {
    .input-button-wrapper {
        gap: 8px;
    }

    .check-btn {
        padding: 0 16px;
        font-size: 14px;
    }
}

.addr-info {
    font-size: 18px;
    display: flex;
    align-items: start;
    gap: 6px;
    color: #000;
    font-weight: 500
}

.addr-info span {
    color: #ff0000;
    user-select: none;
    -webkit-user-select: none;
    transform: translateY(3px)
}

.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    background-color: #3082F6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pay-btn:hover {
    background-color: #2070E0;
}

.pay-btn:active,
.pay-btn:focus {
    background-color: #2070E0;
}

/*리커버리*/

.recovery-links {
    gap: 14px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 24px;
}

.recovery-links a {
    font-size: 15px;
    color: #474747;
    text-decoration: none;
}

.recovery-links a:hover {
    color: #000;
}

.recovery-links span {
    width: 1px;
    height: 12px;
    background: #474747;
}

.recovery-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2px;
}

/* ===== 조인 끝 ===== */



/* 로그인 페이지 시작 */

.login-wrapper {
    margin: auto;
    padding: 0px 24px;
    max-width: 440px;
    margin-bottom: 120px;
}

@media (min-width:575.98px) {
    .login-wrapper {
        padding: 10px 19px;
        margin-bottom: 180px;
    }
}

.lp-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #fff
}

/* 헤딩 */
.lp-heading {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width:575.98px) {
    .lp-heading {
        text-align: center;
        margin-bottom: 26px;
    }
}

.lp-title {
    font-size: 30px;
    font-weight: 600;
    color: #202124;
}

@media (max-width:575.98px) {
    .lp-title {
        font-size: 26px;
    }
}

.lp-title img {
    width: 200px;
}

.lp-subtitle {
    font-size: 14px;
    color: #80868b;
}

.lp-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-label {
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
}

.lp-input {
    padding: 12px 16px;
    border: 1px solid #c5ccd2;
    border-radius: 4px !important;
    font-size: 16px;
    color: #202124;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-input::placeholder {
    color: #bdc1c6;
}

.lp-input:focus {
    border-color: #1a73e8;
}


.lp-btn {
    margin-top: 10px;
    padding: 13px;
    border: none;
    border-radius: 4px;
    background: #4A5C6E;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Google Sans', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.lp-btn:hover {
    background-color: #4A5C6E;
}

.lp-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    font-size: 15px;
    color: #333333;
}

.lp-footer a {
    color: #1a73e8;
    text-decoration: underline;
    font-weight: 500;
    margin-left: 6px;
}

.lp-find {
    font-size: 15px;
    text-decoration: none !important;
    color: #333333 !important;
}


.lp-agree {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #1a73e8;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: none;
}

.lp-checkbox:focus {
    outline: none;
    box-shadow: none;
}

.lp-checkbox:focus-visible {
    outline: none;
    box-shadow: none;
}

.lp-agree label {
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    line-height: 1.5;
}

.lp-agree-link {
    color: #5f6368;
    text-decoration: underline;
    font-weight: 500;
}

/* 로그인 페이지 끝 */

/* 오더카드 시작 */
.order-complate-hidden-height-1 {
    height: 80px;
}

@media (max-width: 575.98px) {
    .order-complate-hidden-height-1 {
        height: 60px;
    }
}

.order-complate-hidden-height-2 {
    height: 150px
}


.orderc-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 60px 48px;
    max-width: 440px;
    width: 100%;
    border: 1px solid rgba(26, 115, 232, 0.1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: auto;
}

@media (min-width: 1199.98px) {
    .orderc-card {
        max-width: 480px;
    }
}

@media (max-width: 575.98px) {
    .orderc-card {
        padding: 46px 24px;
    }
}

.orderc-icon-area {
    margin-bottom: 30px;
    text-align: center;
}

.orderc-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleCheck 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 575.98px) {
    .orderc-icon {
        width: 60px;
        height: 60px;
    }
}

.orderc-icon span {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

@media (max-width: 575.98px) {
    .orderc-icon span {
        font-size: 40px;
        color: #fff;
    }
}


@keyframes scaleCheck {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }

    50% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.orderc-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

@media (max-width: 575.98px) {
    .orderc-title {
        font-size: 24px;
    }
}

.orderc-subtext {
    font-size: 18px;
    margin: 0 0 46px 0;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 575.98px) {
    .orderc-subtext {
        font-size: 17px;
    }
}

.orderc-movetext {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.orderc-movetext span {
    font-weight: 600
}

.orderc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 16px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #1a73e8;
}

.orderc-btn:hover {
    border: 1px solid #1a73e8;
    background: #fff;
    color: #1a73e8;
}

.orderc-btn:focus,
.orderc-btn:active {
    border: 1px solid #1a73e8;
    background: #fff;
    color: #1a73e8;
}

/* 오더카드 끝 */

/* 마이서비스 페이지 시작 */

.myservice-hidden-height-1 {
    height: 90px;
}

.myservice-hidden-height-2 {
    height: 200px
}

@media (max-width: 575.98px) {
    .myservice-hidden-height-1 {
        height: 50px;
    }

    .myservice-hidden-height-2 {
        height: 110px
    }

    .order-hidden-height-2 {
        height: 110px
    }
}

.guide-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (min-width:575.98px) {
    .guide-title {
        font-size: 24px;
    }
}

@media (min-width:1199.98px) {
    .guide-title {
        font-size: 26px;
    }
}

.service-info {
    padding: 0px 0px 10px 0px;
    background: #fff;
    border-bottom: 1px solid #9c9c9c;
    margin-bottom: 16px;
    margin-top: 40px;
}

.service-info:first-of-type {
    margin-top: 0px;
    padding-top: 10px;
}

.service-info:last-of-type {
    margin-bottom: 0px;
}

.service-info .label {
    font-size: 16px;
    font-weight: 400;
    color: #444746
}

.service-info .value {
    font-size: 18px;
    font-weight: 500;
    margin-top: 4px;
    word-break: break-all;
}

.service-info-hp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.hp-link-btn {
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #1a73e8;
    background: #1a73e8;
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
}

.service-info-extra {
    margin-top: 36px;
    border-radius: 8px;
    padding: 20px;
    background: #F3F7FF;
}

.extra-top {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-weight: 500;
}

.extra-top span {
    color: #1a73e8;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}

.extra-ul {
    padding: 0px;
    margin-bottom: 0px;
    margin-left: 24px;
}

.extra-ul li {
    padding: 2px 0px 2px 0px;
    line-height: 1.65
}

.extra-ul li:last-child {
    padding: 2px 0px 0px 0px;
}

.main-page-card .first-paragraph {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}



