/* =========================================================
   MAIN VISUAL
========================================================= */

.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
    background: #07182d;
    font-family: "Pretendard", sans-serif;
    margin-top:-100px;
}


/* ---------------------------------------------------------
   BACKGROUND FADE
--------------------------------------------------------- */
.visual-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    opacity: 0;

    animation-name: visualFade;
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


/* 1번 이미지 */

.visual-bg01 {
    background-image: url("/theme/hch/img/visual01.jpg");
    animation-delay: 0s;
}


/* 2번 이미지 */

.visual-bg02 {
    background-image: url("../images/visual02.jpg");
    animation-delay: 5s;
}


/* 3번 이미지 */

.visual-bg03 {
    background-image: url("../images/visual03.jpg");
    animation-delay: 10s;
}


/* 페이드 슬라이드 */

@keyframes visualFade {

    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    36% {
        opacity: 0;
        transform: scale(1.04);
    }

    100% {
        opacity: 0;
        transform: scale(1.04);
    }

}

/* ---------------------------------------------------------
   DARK OVERLAY
--------------------------------------------------------- */

.visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 26, 48, 0.93) 0%,
            rgba(7, 26, 48, 0.84) 34%,
            rgba(7, 26, 48, 0.68) 63%,
            rgba(4, 20, 38, 0.72) 100%
        );
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.visual-inner {
    position: relative;
    z-index: 2;

    width: calc(100% - 80px);
    max-width: 1160px;
    height: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 440px;
    align-items: center;
    gap: 90px;

    padding-top: 50px;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.visual-content {
    position: relative;
}


.visual-label {
    margin: 0 0 30px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 4px;

    color: #cfaa67;
}


.visual-title {
    margin: 0;

    /*
       아리따부리체가 사이트에 연결돼 있다는 기준입니다.
    */
    font-family: "AritaBuri", "아리따부리", serif;

    font-size: clamp(40px, 2.7vw, 55px);
    font-weight: 400;

    line-height: 1.42;
    letter-spacing: -2px;

    color: #ffffff;
}


.visual-title strong {
    display: inline-block;

    font-weight: 500;
    color: #c8a464;
}


.visual-description {
    margin-top: 34px;

    font-size: 19px;
    font-weight: 300;
    line-height: 1.9;

    letter-spacing: 0px;

    color: rgba(255, 255, 255, 1);
}


.visual-description p {
    margin: 0;
}


/* ---------------------------------------------------------
   BUTTON
--------------------------------------------------------- */

.visual-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 38px;
}


.visual-btn {
    width: 185px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 17px;
    font-weight: 600;

    transition:
        background-color .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.visual-btn-primary {
    background: #c8a15f;
    border: 1px solid #c8a15f;

    color: #ffffff;
}


.visual-btn-primary:hover {
    background: #b78f50;
    border-color: #b78f50;

    transform: translateY(-3px);
}


.visual-btn-line {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.05);

    color: #ffffff;
}


.visual-btn-line:hover {
    background: #ffffff;
    border-color: #ffffff;

    color: #13263c;

    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   QUICK CONSULTATION
--------------------------------------------------------- */

.quick-consult {
    position: relative;

    padding: 51px 37px 34px;

    border: 1px solid rgba(255, 255, 255, 0.28);

    background: rgba(36, 52, 72, 0.48);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}


.quick-label {
    margin: 0 0 23px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #cca55f;
}


.quick-title {
    margin: 0 0 27px;

    font-family: "AritaBuri", "아리따부리", serif;

    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;

    letter-spacing: 0px;

    color: #ffffff;
}


/* ---------------------------------------------------------
   QUICK LIST
--------------------------------------------------------- */

.quick-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}


.quick-item {
    min-height: 56px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


.quick-num {
    width: 38px;
    flex-shrink: 0;

    font-size: 17px;
    font-weight: 700;

    color: #caa45f;
}


.quick-text {
    font-size: 17px;
    font-weight: 400;

    color: rgba(255, 255, 255, 0.72);
}


/* ---------------------------------------------------------
   QUICK LINK
--------------------------------------------------------- */

.quick-link {
    height: 60px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-top: 24px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    color: #ffffff;
}


.quick-arrow {
    font-size: 21px;

    transition: transform .3s ease;
}


.quick-link:hover .quick-arrow {
    transform: translateX(10px);
}


/* ---------------------------------------------------------
   SCROLL
--------------------------------------------------------- */

.visual-scroll {
    position: absolute;
    z-index: 3;

    left: 50%;
    bottom: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;

    transform: translateX(-50%);
}


.visual-scroll span {
    font-size: 8px;
    font-weight: 500;

    letter-spacing: 3px;

    writing-mode: vertical-rl;

    color: rgba(255, 255, 255, 0.66);
}


.visual-scroll i {
    display: block;

    width: 1px;
    height: 25px;

    margin-top: 7px;

    background: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-visual {
        min-height: 760px;
    }

    .visual-inner {
        width: calc(100% - 60px);

        grid-template-columns: 1.25fr 380px;

        gap: 50px;
    }

    .visual-title {
        font-size: 48px;
    }

    .quick-consult {
        padding: 45px 30px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .main-visual {
        height: auto;
        min-height: 100vh;
    }

    .visual-inner {
        width: calc(100% - 40px);

        display: block;

        padding:
            150px 0
            90px;
    }


    .visual-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7, 26, 48, 0.91) 0%,
                rgba(7, 26, 48, 0.85) 60%,
                rgba(7, 26, 48, 0.95) 100%
            );
    }


    .visual-label {
        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 2.5px;
    }


    .visual-title {
        font-size: 38px;

        line-height: 1.45;
        letter-spacing: -1.5px;
    }


    .visual-description {
        margin-top: 25px;

        font-size: 15px;

        line-height: 1.8;
    }


    .visual-description p {
        display: inline;
    }


    .visual-buttons {
        margin-top: 30px;

        gap: 8px;
    }


    .visual-btn {
        width: 50%;
        height: 56px;
        text-align: center;
        font-size: 14px;
    }


    .quick-consult {
        margin-top: 60px;

        padding: 35px 25px 25px;
    }


    .quick-title {
        font-size: 25px;
    }


    .visual-scroll {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .visual-bg {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .visual-bg01 {
        opacity: 1;
    }

}



/* ==============================
   FONT
================================ */

@font-face {
    font-family: "AritaBuri";
    src: local("Arita Buri");
    font-weight: 400;
    font-style: normal;
}

:root {
    --navy: #071d3a;
    --gold: #c99b57;
    --gold-light: #d7b37a;
    --text: #26364a;
    --gray: #6f7781;
    --border: #ded8cf;
    --beige: #f6f3ed;
}


/* ==============================
   PROMISE SECTION
================================ */

.promise-section {
    position: relative;
    width: 100%;
    padding: 100px 30px 100px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

/* 왼쪽 아래 장식 라인 */
.promise-section::before {
    content: "";
    position: absolute;
    left: -145px;
    bottom: -145px;

    width: 290px;
    height: 290px;

    border: 1px solid rgba(201, 155, 87, 0.24);
    border-radius: 50%;

    pointer-events: none;
}


.promise-inner {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 78px;
    align-items: stretch;
}


/* ==============================
   LEFT PROFILE
================================ */

.promise-profile {
    width: 100%;
    min-height: 740px;

    background: #f6f3ed;
    padding: 18px;

    box-sizing: border-box;

    box-shadow:
        0 18px 45px rgba(20, 28, 38, 0.01);
}


.profile-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 704px;

    border: 1px solid rgba(201, 155, 87, 0.32);

    overflow: hidden;
    box-sizing: border-box;
}


.profile-copy {
    position: relative;
    z-index: 3;

    padding: 31px 20px 0;

    text-align: center;
}


.profile-copy p {
    margin: 0;

    font-family: "AritaBuri", "Noto Serif KR", serif;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing:-2px;

    color: var(--navy);
}


.profile-copy strong {
    color: #a66d27;
    font-weight: 500;
}


/* 인물 사진 */
.profile-photo {
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;

    height: 565px;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    overflow: hidden;
}


.profile-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;
}


/* 이름 */
.profile-name {
    position: absolute;
    right: 14px;
    bottom: 17px;

    text-align: right;

    color: #fff;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.25);
}


.profile-name span {
    display: block;

    margin-bottom: 5px;

    font-family: "Pretendard", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;

    color: #f0cf93;
}


.profile-name strong {
    display: block;

    font-family: "AritaBuri", "Noto Serif KR", serif;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 500;

    letter-spacing: -0.03em;

    color: #fff;
}


/* ==============================
   RIGHT CONTENT
================================ */

.promise-content {
    padding-top: 2px;
}


.promise-heading {
    margin-bottom: 44px;
    text-align: center;
}


.promise-heading .eyebrow {
    display: block;

    margin-bottom: 29px;

    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 4px;

    color: #9b681e;
}


.promise-heading h2 {
    margin: 0;

    font-family: "AritaBuri", "Noto Serif KR", serif;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 400;

    letter-spacing: -0.055em;

    color: var(--navy);
}


.promise-heading h2 strong {
    font-weight: 400;
    color: var(--gold-light);
}


.promise-heading p {
    margin: 18px 0 0;

    font-family: "Pretendard", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;

    letter-spacing: -0.02em;

    color: #26364a;
}


/* ==============================
   CARD GRID
================================ */

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.promise-card {
    position: relative;

    min-height: 239px;

    padding: 42px 28px 28px;

    border: 1px solid var(--border);
    background: #fff;

    box-sizing: border-box;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.promise-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 155, 87, 0.55);

    box-shadow:
        0 14px 34px rgba(15, 28, 45, 0.07);
}


/* 01, 02... */
.card-number {
    position: absolute;
    top: 16px;
    left: 19px;

    font-family: "Pretendard", sans-serif;
    font-size: 11px;
    font-weight: 400;

    color: #b79a73;
}


/* 한자 원형 */
.card-icon {
    width: 51px;
    height: 51px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d6aa68;
    border-radius: 50%;

    font-family: "AritaBuri", "Noto Serif KR", serif;
    font-size: 19px;
    font-weight: 400;

    color: #a36d2c;
}


.promise-card h3 {
    margin: 0 0 12px;

    font-family: "AritaBuri", "Noto Serif KR", serif;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: #000;
}


.promise-card p {
    margin: 0;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;

    letter-spacing: -0.03em;

    color: #68717c;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 1200px) {

    .promise-inner {
        max-width: 1000px;

        grid-template-columns: 380px 1fr;
        gap: 50px;
    }

    .promise-profile {
        min-height: 690px;
    }

    .profile-frame {
        min-height: 654px;
    }

    .profile-photo {
        height: 530px;
    }

    .promise-heading h2 {
        font-size: 34px;
    }

    .promise-card {
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* ==============================
   MOBILE / TABLET
================================ */

@media (max-width: 900px) {

    .promise-section {
        padding: 70px 24px;
    }

    .promise-inner {
        display: block;
        max-width: 680px;
    }

    .promise-profile {
        width: 100%;
        max-width: 460px;

        min-height: 700px;

        margin: 0 auto 70px;
    }

    .profile-frame {
        min-height: 664px;
    }

    .profile-photo {
        height: 540px;
    }

    .promise-content {
        padding-top: 0;
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 640px) {

    .promise-section {
        padding:
            55px
            18px
            60px;
    }

    .promise-profile {
        padding: 12px;

        min-height: 590px;

        margin-bottom: 55px;
    }

    .profile-frame {
        min-height: 564px;
    }

    .profile-copy {
        padding-top: 24px;
    }

    .profile-copy p {
        font-size: 14px;
    }

    .profile-photo {
        height: 455px;
    }


    /* title */
    .promise-heading {
        margin-bottom: 34px;
    }

    .promise-heading .eyebrow {
        margin-bottom: 20px;

        font-size: 9px;
        letter-spacing: 3px;
    }

    .promise-heading h2 {
        font-size: 28px;
        line-height: 1.5;
    }

    .promise-heading p {
        margin-top: 17px;

        font-size: 13px;
    }


    /* cards */
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promise-card {
        min-height: auto;

        padding:
            43px
            24px
            28px;
    }

    .promise-card h3 {
        font-size: 19px;
    }

    .pc-only {
        display: none;
    }

    .profile-name {
        right: 12px;
        bottom: 12px;
    }

    .profile-name strong {
        font-size: 19px;
    }

}



/* =========================================
   개인회생 절차
========================================= */

.recovery-process {
    width: 100%;
    position: relative;
    overflow: hidden;

    padding: 108px 30px 100px;

    background: #071d39;

    box-sizing: border-box;
}


/* 1300px 컨텐츠 영역 */
.process-inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.process-heading {
    margin-bottom: 72px;
}


.process-label {
    display: block;

    margin-bottom: 28px;

    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 4px;

    color: #e4aa51;
}


.process-heading h2 {
    margin: 0;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 41px;
    line-height: 1.42;
    font-weight: 400;

    letter-spacing: -0.05em;

    color: #fff;
}


.process-heading h2 strong {
    font-weight: 400;
    color: #dfaa59;
}


.process-heading p {
    margin: 22px 0 0;

    font-family: "Pretendard", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;

    letter-spacing: -0.03em;

    color: #9aabbe;
}


/* =========================================
   PROCESS LIST
========================================= */

.process-list {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        32px
        minmax(0, 1fr)
        32px
        minmax(0, 1fr)
        32px
        minmax(0, 1fr)
        32px
        minmax(0, 1fr);

    align-items: center;

    margin-bottom: 45px;
}


/* 카드 */
.process-item {
    position: relative;

    height: 190px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 34px 22px;

    border: 1px solid rgba(255, 255, 255, 0.19);

    box-sizing: border-box;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}


.process-item:hover {
    transform: translateY(-5px);

    border-color: rgba(224, 171, 88, 0.65);

    background: rgba(255, 255, 255, 0.025);
}


/* 번호 */
.process-num {
    position: absolute;

    top: 47px;
    left: 22px;

    font-family: "Pretendard", sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 1px;

    color: #dfaa51;
}


.process-item h3 {
    margin: 26px 0 8px;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;

    letter-spacing: -0.04em;

    color: #fff;
}


.process-item p {
    margin: 0;

    font-family: "Pretendard", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;

    letter-spacing: -0.03em;

    color: #a6b5c6;
}


/* 화살표 */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Pretendard", sans-serif;

    font-size: 21px;
    font-weight: 300;

    color: #c99139;
}


/* =========================================
   하단 개인회생 설명
========================================= */

.process-info {
    width: 100%;

    min-height: 82px;

    display: grid;
    grid-template-columns: 190px 1fr auto;

    align-items: center;

    padding: 0 31px;

    background: #182e4a;

    border-left: 3px solid #e0a641;

    box-sizing: border-box;
}


.process-info-title {
    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: -0.04em;

    color: #fff;
}


.process-info p {
    margin: 0;

    padding-right: 30px;

    font-family: "Pretendard", sans-serif;

    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;

    letter-spacing: -0.03em;

    color: #aab7c8;
}


.process-info-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    white-space: nowrap;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    color: #e5ad52;

    transition: gap 0.3s ease;
}


.process-info-link:hover {
    gap: 12px;
}


/* =========================================
   1200
========================================= */

@media (max-width: 1200px) {

    .recovery-process {
        padding-left: 40px;
        padding-right: 40px;
    }

    .process-list {
        grid-template-columns:
            minmax(0, 1fr)
            24px
            minmax(0, 1fr)
            24px
            minmax(0, 1fr)
            24px
            minmax(0, 1fr)
            24px
            minmax(0, 1fr);
    }

    .process-item {
        padding-left: 18px;
        padding-right: 18px;
    }

    .process-num {
        left: 18px;
    }

    .process-item h3 {
        font-size: 19px;
    }

    .process-item p {
        font-size: 13px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .recovery-process {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .process-heading {
        margin-bottom: 55px;
    }

    .process-heading h2 {
        font-size: 37px;
    }


    /*
       태블릿부터 화살표를 제외하고
       카드만 배치
    */
    .process-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .process-arrow {
        display: none;
    }

    .process-item {
        height: 180px;
    }


    .process-info {
        grid-template-columns: 150px 1fr;
        gap: 10px;

        padding: 24px 28px;
    }

    .process-info-link {
        grid-column: 2;

        margin-top: 5px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .recovery-process {
        padding:
            70px
            20px
            70px;
    }

    .process-heading {
        margin-bottom: 45px;
    }

    .process-label {
        margin-bottom: 20px;

        font-size: 10px;
        letter-spacing: 3px;
    }

    .process-heading h2 {
        font-size: 32px;
        line-height: 1.45;
    }

    .process-heading p {
        margin-top: 17px;

        font-size: 13px;
    }


    /* 카드 1열 */
    .process-list {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 30px;
    }

    .process-item {
        width: 100%;
        height: auto;
        min-height: 145px;

        padding:
            38px
            25px
            25px;
    }

    .process-num {
        top: 22px;
        left: 25px;
    }

    .process-item h3 {
        margin-top: 22px;

        font-size: 20px;
    }

    .process-item p {
        font-size: 13px;
    }


    /* 하단 설명 */
    .process-info {
        display: block;

        padding: 25px 24px;
    }

    .process-info-title {
        display: block;

        margin-bottom: 12px;

        font-size: 15px;
    }

    .process-info p {
        padding-right: 0;

        margin-bottom: 18px;

        font-size: 13px;
    }

    .process-info-link {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .process-heading h2 {
        font-size: 28px;
    }

    .process-item {
        min-height: 135px;
    }

}


/* =========================================
   SUCCESS CASE
========================================= */

.success-case-section {
    width: 100%;
    position: relative;

    padding: 100px 30px 105px;

    background: #f7f4ee;

    box-sizing: border-box;
    overflow: hidden;
}


/* 1300px */
.success-case-inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
}


/* =========================================
   상단 타이틀
========================================= */

.success-case-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 65px;
}


.success-case-label {
    display: block;

    margin-bottom: 32px;

    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 4px;

    color: #9c681f;
}


.success-case-title h2 {
    margin: 0;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 43px;
    line-height: 1.4;
    font-weight: 400;

    letter-spacing: -0.055em;

    color: #071d39;
}


.success-case-title h2 strong {
    color: #d3ac70;
    font-weight: 400;
}


.success-case-guide {
    padding-bottom: 2px;

    text-align: right;
}


.success-case-guide p {
    margin: 0;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    line-height: 1.85;

    letter-spacing: -0.03em;

    color: #6a7380;
}


/* =========================================
   SLIDER
========================================= */

.case-slider-wrap {
    position: relative;

    width: 100%;

    padding: 0 60px;

    box-sizing: border-box;
}


.case-slider-viewport {
    width: 100%;

    overflow: hidden;
}


.case-slider-track {
    display: flex;

    gap: 24px;

    transition: transform 0.55s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}


/* =========================================
   CARD
========================================= */

.case-card {
    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;

    background: #fff;

    box-sizing: border-box;
}


/* =========================================
   이미지
========================================= */

.case-image-area {
    position: relative;

    height: 350px;

    padding: 22px 22px 0;

    box-sizing: border-box;

    overflow: hidden;
}


.case-image-button {
    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: zoom-in;

    overflow: hidden;
}


.case-image-button img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    transition: transform 0.4s ease;
}


.case-image-button:hover img {
    transform: scale(1.015);
}


/* =========================================
   탕감 도장
   이미지가 아닌 실제 텍스트
========================================= */

.case-rate {
    position: absolute;

    top: 24px;
    right: 18px;

    width: 92px;
    height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 2px solid #d92127;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    color: #d92127;

    transform: rotate(-8deg);

    box-shadow:
        inset 0 0 0 4px #fff,
        inset 0 0 0 5px #d92127,
        0 3px 7px rgba(0, 0, 0, 0.08);

    z-index: 5;

    box-sizing: border-box;
}


.case-rate span {
    display: block;

    margin-bottom: 1px;

    font-family: "Pretendard", sans-serif;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -0.05em;
}


.case-rate strong {
    display: block;

    font-family: "Pretendard", sans-serif;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -0.03em;
}


/* =========================================
   카드 하단 텍스트
========================================= */

.case-card-info {
    min-height: 150px;

    padding: 37px 26px 30px;

    border-top: 1px solid #eeeae4;

    box-sizing: border-box;
}


.case-number {
    display: block;

    margin-bottom: 16px;

    font-family: "Pretendard", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;

    letter-spacing: 2px;

    color: #a86c28;
}


.case-card-info h3 {
    margin: 0 0 8px;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 20px;
    line-height: 1.45;
    font-weight: 500;

    letter-spacing: -0.04em;

    color: #071d39;
}


.case-card-info p {
    margin: 0;

    font-family: "Pretendard", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    letter-spacing: -0.03em;

    color: #7c8490;
}


/* =========================================
   좌우 화살표
========================================= */

.case-arrow {
    position: absolute;

    top: 50%;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #c7bfb3;

    background: transparent;

    font-family: "Pretendard", sans-serif;
    font-size: 22px;
    font-weight: 300;

    color: #071d39;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.case-arrow:hover {
    background: #071d39;

    border-color: #071d39;

    color: #fff;
}


.case-prev {
    left: 0;
}


.case-next {
    right: 0;
}


.case-arrow:disabled {
    opacity: 0.3;

    cursor: default;
}


.case-arrow:disabled:hover {
    background: transparent;
    border-color: #c7bfb3;
    color: #071d39;
}


/* =========================================
   POPUP
========================================= */

.case-popup {
    position: fixed;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 99999;

    box-sizing: border-box;
}


.case-popup.active {
    opacity: 1;
    visibility: visible;
}


.case-popup-bg {
    position: absolute;

    inset: 0;

    background: rgba(2, 13, 28, 0.82);

    backdrop-filter: blur(3px);
}


.case-popup-content {
    position: relative;

    width: auto;
    max-width: 900px;
    max-height: calc(100vh - 80px);

    padding: 18px;

    background: #fff;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);

    z-index: 2;

    box-sizing: border-box;
}


.case-popup-content img {
    display: block;

    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 116px);

    margin: 0 auto;

    object-fit: contain;
}


.case-popup-close {
    position: absolute;

    top: -48px;
    right: 0;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    font-size: 38px;
    line-height: 1;

    color: #fff;

    cursor: pointer;
}


/* 팝업 열릴 때 스크롤 방지 */
body.case-popup-open {
    overflow: hidden;
}


/* =========================================
   1200
========================================= */

@media (max-width: 1200px) {

    .success-case-section {
        padding-left: 35px;
        padding-right: 35px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .success-case-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }


    .success-case-head {
        margin-bottom: 50px;
    }


    .success-case-title h2 {
        font-size: 38px;
    }


    /* 2개 노출 */
    .case-card {
        flex-basis: calc((100% - 20px) / 2);
    }


    .case-slider-track {
        gap: 20px;
    }


    .case-image-area {
        height: 350px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .success-case-section {
        padding:
            65px
            20px
            70px;
    }


    .success-case-head {
        display: block;

        margin-bottom: 40px;
    }


    .success-case-label {
        margin-bottom: 20px;

        font-size: 10px;
        letter-spacing: 3px;
    }


    .success-case-title h2 {
        font-size: 32px;
    }


    .success-case-guide {
        margin-top: 22px;

        text-align: left;
    }


    .success-case-guide p {
        font-size: 13px;
    }


    /* 양쪽 버튼 공간 */
    .case-slider-wrap {
        padding: 0 42px;
    }


    /* 모바일 한개 */
    .case-card {
        flex-basis: 100%;
    }


    .case-slider-track {
        gap: 15px;
    }


    .case-image-area {
        height: 390px;
    }


    .case-rate {
        width: 80px;
        height: 80px;

        top: 20px;
        right: 15px;
    }


    .case-rate span {
        font-size: 14px;
    }


    .case-rate strong {
        font-size: 19px;
    }


    .case-arrow {
        width: 34px;
        height: 40px;

        font-size: 18px;
    }


    .case-popup {
        padding: 55px 15px 20px;
    }


    .case-popup-content {
        padding: 10px;

        max-height: calc(100vh - 75px);
    }


    .case-popup-content img {
        max-height: calc(100vh - 95px);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .case-slider-wrap {
        padding: 0 35px;
    }


    .case-image-area {
        height: 330px;

        padding:
            17px
            15px
            0;
    }


    .case-card-info {
        padding:
            30px
            22px
            27px;
    }


    .case-card-info h3 {
        font-size: 19px;
    }

}



/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;

    padding: 115px 30px 120px;

    background: #fff;

    box-sizing: border-box;
}


/* 1300px 컨텐츠 */
.faq-inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 330px 1fr;

    gap: 110px;

    align-items: start;
}


/* =========================================
   LEFT
========================================= */

.faq-label {
    display: block;

    margin-bottom: 34px;

    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 4px;

    color: #a36c28;
}


.faq-heading h2 {
    margin: 0;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 42px;
    line-height: 1.4;
    font-weight: 400;

    letter-spacing: -0.055em;

    color: #071d39;
}


.faq-heading h2 strong {
    font-weight: 400;

    color: #d2ab6e;
}


.faq-heading > p {
    margin: 22px 0 30px;

    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;

    letter-spacing: -0.03em;

    color: #747c86;
}


/* 전체보기 버튼 */
.faq-more {
    width: 150px;
    height: 51px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #c59655;

    box-sizing: border-box;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    color: #8f6126;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.faq-more:hover {
    background: #b98542;

    color: #fff;
}


.faq-more span {
    transition: transform 0.3s ease;
}


.faq-more:hover span {
    transform: translateX(4px);
}


/* =========================================
   FAQ LIST
========================================= */

.faq-list {
    width: 100%;

    border-top: 1px solid #ddd7cc;
}


.faq-item {
    width: 100%;

    border-bottom: 1px solid #ddd7cc;
}


/* 질문 */
.faq-question {
    width: 100%;
    min-height: 75px;

    display: grid;

    grid-template-columns: 40px 1fr 30px;

    align-items: center;

    gap: 0;

    padding: 0 12px 0 4px;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;

    box-sizing: border-box;
}


/* Q */
.faq-q {
    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 19px;
    font-weight: 500;

    color: #b47c31;
}


/* 질문 글 */
.faq-question-text {
    font-family: "Pretendard", sans-serif;

    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;

    letter-spacing: -0.035em;

    color: #111820;
}


/* =========================================
   + / -
========================================= */

.faq-plus {
    position: relative;

    width: 18px;
    height: 18px;

    justify-self: end;
}


.faq-plus::before,
.faq-plus::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    background: #111;
}


/* 가로 */
.faq-plus::before {
    width: 11px;
    height: 1px;

    transform: translate(-50%, -50%);
}


/* 세로 */
.faq-plus::after {
    width: 1px;
    height: 11px;

    transform: translate(-50%, -50%);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* 열린 상태 */
.faq-item.active .faq-plus::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

    opacity: 0;
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    background: #faf8f4;

    transition:
        max-height 0.45s ease;
}


.faq-answer-inner {
    display: grid;

    grid-template-columns: 40px 1fr;

    padding:
        20px
        55px
        30px
        4px;

    box-sizing: border-box;
}


/* A */
.faq-a {
    padding-top: 2px;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 18px;

    color: #b47c31;
}


.faq-answer p {
    margin: 0;

    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    line-height: 1.8;

    letter-spacing: -0.03em;

    color: #333333;
}


/* 열린 질문 */
.faq-item.active .faq-question-text {
    color: #9b682b;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .faq-section {
        padding:
            90px
            35px;
    }


    .faq-inner {
        grid-template-columns: 260px 1fr;

        gap: 65px;
    }


    .faq-heading h2 {
        font-size: 37px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .faq-section {
        padding:
            70px
            20px;
    }


    .faq-inner {
        display: block;
    }


    .faq-heading {
        margin-bottom: 50px;
    }


    .faq-label {
        margin-bottom: 20px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .faq-heading h2 {
        font-size: 32px;
    }


    .faq-heading > p {
        margin-top: 17px;

        margin-bottom: 25px;

        font-size: 13px;
    }


    .faq-more {
        width: 140px;
        height: 47px;

        font-size: 12px;
    }


    .faq-question {
        min-height: 75px;

        grid-template-columns:
            32px
            1fr
            25px;

        padding-right: 4px;
    }


    .faq-q {
        font-size: 17px;
    }


    .faq-question-text {
        padding-right: 15px;

        font-size: 14px;
    }


    .faq-answer-inner {
        grid-template-columns:
            32px
            1fr;

        padding:
            0
            15px
            25px
            4px;
    }


    .faq-answer p {
        font-size: 13px;
    }

}


/* =========================================
   LOCATION & CONTACT
========================================= */

.location-contact-section {
    width: 100%;
    padding: 100px 30px;

    background: #071f3b;

    box-sizing: border-box;
}


/* 1300px */
.location-contact-inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 85px;

    align-items: center;
}


/* =========================================
   LEFT
========================================= */

.office-info {
    padding: 40px 0;
}


.office-label {
    display: block;

    margin-bottom: 33px;

    font-family: "Pretendard", sans-serif;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 4px;

    color: #d8a04d;
}


.office-info h2 {
    margin: 0 0 53px;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 42px;
    line-height: 1.45;
    font-weight: 400;

    letter-spacing: -0.055em;

    color: #fff;
}


.office-info h2 strong {
    font-weight: 400;

    color: #d5a052;
}


/* =========================================
   사무소 정보
========================================= */

.office-detail-list {
    width: 100%;
    max-width: 555px;
}


.office-detail-item {
    min-height: 52px;

    display: grid;
    grid-template-columns: 90px 1fr;

    align-items: center;

    border-bottom:
        1px solid rgba(255,255,255,0.16);

    box-sizing: border-box;
}


.office-detail-title {
    font-family: "Pretendard", sans-serif;

    font-size: 16px;
    font-weight: 500;

    color: #d7a44e;
}


.office-detail-content {
    display: flex;
    align-items: center;

    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;

    letter-spacing: -0.03em;

    color: #fff;
}


.office-detail-content a {
    color: inherit;

    text-decoration: none;
}


.office-detail-content a:hover {
    color: #e0ae5c;
}


.office-address {
    gap: 18px;
}


.office-address p {
    margin: 0;
}


.office-map-btn {
    height: 33px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,0.5);

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.office-map-btn:hover {
    background: #fff;

    color: #071f3b !important;
}


.phone-divider {
    margin: 0 5px;
}


/* =========================================
   RIGHT CONSULT FORM
========================================= */

.consult-form-box {
    width: 100%;

    padding:
        50px
        46px
        46px;

    background: #fff;

    box-sizing: border-box;
}


/* =========================================
   FORM HEADING
========================================= */

.consult-form-heading {
    margin-bottom: 29px;
}


.consult-form-heading > span {
    display: block;

    margin-bottom: 12px;

    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 2px;

    color: #ac762f;
}


.consult-form-heading h3 {
    margin: 0;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 28px;
    line-height: 1.4;
    font-weight: 400;

    letter-spacing: -0.05em;

    color: #071f3b;
}


/* =========================================
   FORM
========================================= */

.consult-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}


.consult-field {
    width: 100%;
}


.consult-field label {
    display: block;

    margin-bottom: 10px;

    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    font-weight: 700;

    color: #14243a;
}


.consult-field input {
    width: 100%;
    height: 41px;

    padding: 0;

    border: 0;
    border-bottom: 1px solid #ddd;

    outline: none;

    background: transparent;

    box-sizing: border-box;

    font-family: "Pretendard", sans-serif;

    font-size: 13px;

    color: #222;

    transition: border-color 0.3s ease;
}


.consult-field input::placeholder,
.consult-field textarea::placeholder {
    color: #777f88;

    opacity: 1;
}


.consult-field input:focus,
.consult-field textarea:focus {
    border-color: #bd9458;
}


/* =========================================
   상담내용
========================================= */

.consult-message-field {
    margin-top: 17px;
}


.consult-message-field textarea {
    width: 100%;
    height: 112px;

    padding: 7px 0;

    resize: none;

    border: 0;
    border-bottom: 1px solid #ddd;

    outline: none;

    box-sizing: border-box;

    font-family: "Pretendard", sans-serif;

    font-size: 13px;
    line-height: 1.7;

    color: #222;
}


/* =========================================
   개인정보 동의
========================================= */

.consult-agree {
    margin: 17px 0 18px;
}


.consult-agree label {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    cursor: pointer;
}


.consult-agree input {
    width: 13px;
    height: 13px;

    margin: 0;

    accent-color: #bd9458;
}


.consult-agree span {
    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    line-height: 1.5;

    color: #717780;
}


/* =========================================
   상담신청 버튼
========================================= */

.consult-submit {
    width: 100%;
    height: 62px;

    padding: 0;

    border: 0;

    background: #bf9b63;

    font-family: "Pretendard", sans-serif;

    font-size: 17px;
    font-weight: 700;

    color: #fff;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.consult-submit:hover {
    background: #a9824b;
}


/* =========================================
   1200
========================================= */

@media (max-width: 1200px) {

    .location-contact-section {
        padding-left: 40px;
        padding-right: 40px;
    }


    .location-contact-inner {
        gap: 55px;
    }


    .consult-form-box {
        padding-left: 38px;
        padding-right: 38px;
    }


    .office-address {
        flex-wrap: wrap;

        gap: 10px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .location-contact-section {
        padding:
            80px
            35px;
    }


    .location-contact-inner {
        grid-template-columns: 1fr;

        gap: 55px;

        max-width: 760px;
    }


    .office-info {
        padding: 0;
    }


    .office-detail-list {
        max-width: 100%;
    }


    .consult-form-box {
        padding:
            45px
            40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .location-contact-section {
        padding:
            65px
            20px;
    }


    .office-label {
        margin-bottom: 22px;

        font-size: 10px;
        letter-spacing: 3px;
    }


    .office-info h2 {
        margin-bottom: 35px;

        font-size: 33px;
    }


    .office-detail-item {
        grid-template-columns: 75px 1fr;

        min-height: 60px;
    }


    .office-detail-title {
        font-size: 11px;
    }


    .office-detail-content {
        font-size: 14px;
    }


    .office-address {
        display: block;

        padding: 12px 0;
    }


    .office-map-btn {
        margin-top: 10px;
    }


    .consult-form-box {
        padding:
            38px
            25px;
    }


    .consult-form-heading h3 {
        font-size: 25px;
    }


    .consult-form-row {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .consult-message-field {
        margin-top: 20px;
    }


    .consult-submit {
        height: 56px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .office-info h2 {
        font-size: 30px;
    }


    .office-detail-item {
        grid-template-columns: 68px 1fr;
    }


    .office-detail-content {
        font-size: 13px;
    }


    .consult-form-box {
        padding:
            32px
            20px;
    }

}




/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;

    padding: 47px 30px 52px;

    background: #061b33;

    box-sizing: border-box;
}


/* 1300px */
.footer-inner {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
}


/* =========================================
   상호
========================================= */

.footer-logo {
    margin-bottom: 20px;

    font-family:
        "AritaBuri",
        "Noto Serif KR",
        serif;

    font-size: 23px;
    line-height: 1.4;
    font-weight: 500;

    letter-spacing: -0.04em;

    color: #fff;
}


/* =========================================
   사업자 정보
========================================= */

.footer-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;

    letter-spacing: -0.02em;

    color: #8fa0b4;
}


.footer-info a {
    color: inherit;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-info a:hover {
    color: #d4a458;
}


/* 세로 구분선 */
.footer-info i {
    display: block;

    width: 1px;
    height: 12px;

    margin: 0 3px;

    background: #b38646;

    opacity: 0.9;
}


/* =========================================
   구분선
========================================= */

.footer-line {
    width: 100%;
    height: 1px;

    margin: 20px 0 16px;

    background: rgba(255,255,255,0.13);
}


/* =========================================
   하단 텍스트
========================================= */

.footer-bottom p {
    margin: 0;

    font-family: "Pretendard", sans-serif;

    font-size: 15px;
    line-height: 1.7;

    letter-spacing: -0.02em;

    color: #8d9aad;
}


.footer-notice {
    margin-bottom: 4px !important;
}


.footer-copy {
    color: #8997a8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .site-footer {
        padding:
            45px
            35px
            48px;
    }


    .footer-info {
        font-size: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .site-footer {
        padding:
            40px
            20px
            43px;
    }


    .footer-logo {
        margin-bottom: 18px;

        font-size: 21px;
    }


    .footer-info {
        display: block;

        font-size: 12px;
        line-height: 1.9;
    }


    .footer-info span {
        display: block;
    }


    /* 모바일에서는 세로 구분선 제거 */
    .footer-info i {
        display: none;
    }


    .footer-line {
        margin:
            18px
            0
            15px;
    }


    .footer-bottom p {
        font-size: 11px;
        line-height: 1.75;
    }

}


/* =========================================
   RIGHT BOTTOM QUICK MENU
========================================= */

.bottom-quick-menu {
    position: fixed;

    right: 34px;
    bottom: 38px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    z-index: 9999;
}


/* 공통 버튼 */
.bottom-quick-btn {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 0;

    border-radius: 50%;

    box-sizing: border-box;

    text-decoration: none;

    font-family: "Pretendard", sans-serif;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* hover */
.bottom-quick-btn:hover {
    transform: translateY(-3px);
}


/* =========================================
   무료 자가진단
========================================= */

.quick-self {
    border: 1px solid #d8b57c;

    background: #c79c5c;

    color: #fff;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12);
}


.quick-self span {
    display: block;

    font-size: 15px;
    line-height: 1.22;

    font-weight: 700;

    letter-spacing: -0.04em;

    text-align: center;
}


.quick-self:hover {
    background: #b88948;
}


/* =========================================
   BLOG
========================================= */

.quick-blog {
    border: 1px solid #5cc568;
    border-radius: 50%;
    background: #59c568;
    overflow: hidden;
    color: #fff;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.11);
}


.quick-blog-symbol {
    display: flex;
    align-items: center;

    font-family: Arial, sans-serif;

    font-size: 43px;
    line-height: 1;

    font-weight: 400;

    letter-spacing: -4px;

    color: #fff;
}


.quick-blog-line {
    display: block;

    width: 3px;
    height: 33px;

    margin-left: 5px;

    background: #fff;
}


.quick-blog:hover {
    background: #45b957;
}


/* =========================================
   TOP
========================================= */

.quick-top {
    border: 1px solid rgba(255,255,255,0.4);

    background: #071f3b;

    color: #fff;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;
}


.quick-top:hover {
    border-color: #c79c5c;

    background: #c79c5c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .bottom-quick-menu {
        right: 20px;
        bottom: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .bottom-quick-menu {
        right: 12px;
        bottom: 18px;

        gap: 7px;
    }


    .bottom-quick-btn {
        width: 58px;
        height: 58px;
    }


    .quick-self span {
        font-size: 10px;
    }


    .quick-blog-symbol {
        font-size: 32px;
    }


    .quick-blog-line {
        width: 2px;
        height: 25px;

        margin-left: 4px;
    }


    .quick-top {
        font-size: 10px;
    }

}


/* 작은 모바일 */
@media (max-width: 480px) {

    .bottom-quick-menu {
        right: 8px;
        bottom: 12px;
    }


    .bottom-quick-btn {
        width: 52px;
        height: 52px;
    }

}


.root_daum_roughmap .cont {display: none;}