<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page {
    padding-top: 160px;
}
.sec_name,
.sec_title,
.sec_text {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.6);
}
.sec_text strong {
    font-weight: var(--semi-bold);
}
/*-------------------------------------- contact_sec --------------------------------------*/
.contact_sec {
    padding: 0 calc((1520px / 4) + 20px);
    z-index: 1;
}
.sec_inner {
    position: relative;
}
.path {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

/*-- call_btn --*/
.call_btn {
    width: 100%;
    margin-top: 20px;
    border-bottom: 1px solid var(--gray-600);
}
.call_btn a {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.call_btn img {
    width: 16px;
    height: 16px;
}
.call_btn p {
    font-size: var(--ft18);
    font-weight: var(--medium);
}
.call_btn p strong {
    font-weight: var(--semi-bold);
    margin-left: 16px;
}

/*-- input_list --*/
.input_list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}
.input_list::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.06);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
}
.input_box {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}
.input_box::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--dark-line);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: background .3s ease;
}
.input_text {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    pointer-events: none;
}
.input_text.primary {
    display: flex;
    align-items: start;
    gap: 4px;
}
.input_text.primary::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #D03939;
}
.select_box {
    font-weight: var(--medium);
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease;
    background: url(/images/arrow_drop_down.svg) no-repeat 100% 50% / 16px auto;
}
.input_box input {
    font-weight: var(--medium);
    height: 100%;
}
.select_box.show {
    opacity: 1;
}

.input_box.input_on .input_text {
    font-size: var(--ft12);
    top: 0;
    transform: translateY(0);
}
.input_box.input_on::before {
    background-color: var(--gray-700);
}



/*-- input_area --*/
.input_area {
    width: 100%;
    margin-top: 40px;
}
.area_box {
    width: 100%;
    padding: 36px 40px;
    background-color: var(--gray-100);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.area_l {
    display: flex;
    align-items: center;
    gap: 36px;
}
.area_l img {
    width: 42px;
    height: 42px;
}
.area_text p {
    font-weight: var(--medium);
    color: var(--gray-600);
}
.area_text p:first-child {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--gray-700);
    margin-bottom: 10px;
}
.area_btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.area_btn {
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--dark-line);
    cursor: pointer;
}
.area_btn img {
    width: 16px;
    height: 16px;
    display: none;
}
.area_btn p {
    font-weight: var(--semi-bold);
    color: var(--gray-500);
}
.area_btn.chk {
    background-color: #EDEFF6;
    border-color: var(--primary);
    pointer-events: none;
}
.area_btn.chk img {
    display: block;
}
.area_btn.chk p {
    color: var(--primary);
}

.textarea {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--dark-line);
    border-top: none;
}
.textarea textarea {
    font-weight: var(--medium);
    padding: 30px 24px;
    height: 250px;
    min-height: 250px;
}

/*-- privacy_box --*/
.privacy_box {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.privacy_box label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.privacy_box label p {
    color: var(--gray-600);
}
.privacy_box label strong {
    font-weight: var(--medium);
    color: var(--primary);
}
.privacy_more a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.privacy_more p {
    font-weight: var(--medium);
}
.privacy_more .btn_hover {
    width: 16px;
    height: 16px;
}

/*-- send_btn --*/
.send_btn {
    width: 100%;
    height: 60px;
    margin: 40px auto 0;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.send_btn p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--white);
}


/*-------------------------------------- contact_popup --------------------------------------*/
.contact_popup .popup_box {
    width: 100%;
    max-width: 500px;
    padding: 60px 30px 30px;
}
.popup_chk {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transform: scale(.8);
    animation: drawBox .6s cubic-bezier(.63,2.27,.63,.56) forwards;
}
.popup_svg {
    width: 40px;
    height: 40px;
}
.popup_svg .draw {
    stroke: var(--white);
    stroke-width: 80;
    fill: none;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}
.contact_popup.on .popup_svg .draw{
    animation: draw 1.8s ease forwards;
}

@keyframes drawBox {
    to {
        transform: scale(1);
    }
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/*-- p_case --*/
.p_case {
    width: 100%;
    background-color: var(--gray-200);
    padding: 40px 20px 30px;
    margin-top: 30px;
}
.p_case_text {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 6px;
    animation: title 1s infinite alternate;
}
.p_case_title {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    text-align: center;
    animation: title 1s infinite alternate;
}
@keyframes title {
    to {
        transform: translateY(4px);
    }
}
.p_case_title strong {
    color: var(--primary);
    font-weight: var(--semi-bold);
}
.p_case_list {
    margin-top: 20px;
}
.p_case_list li {
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border .4s ease;
}
.p_case_list li:hover {
    border-color: var(--gray-400);
}
.p_case_list li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gray-600);
    flex-shrink: 0;
}
.p_case_list li a {
    padding: 10px 0;
    font-size: var(--ft16);
    color: var(--gray-600);
}
.p_case_more {
    margin-top: 24px;
    background-color: var(--primary);
}
.p_case_more a {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--white);
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 1800px) {
    .contact_sec {
        max-width: 1000px;
        padding: 0 ;
    }
}

@media all and (max-width: 1200px) {
    .contact_sec {
        max-width: 100%;
        padding: 0 60px;
    }
}

@media all and (max-width: 1400px) {
    /*-- contact_popup --*/
    .popup_chk {
        width: 50px;
        height: 50px;
    }
    .popup_svg {
        width: 32px;
        height: 32px;
    }
    .popup_title {
        font-size: var(--ft22);
    }
    .popup_text {
        font-size: var(--ft16);
        margin-top: 12px;
    }
    @keyframes title {
        to {
            transform: translateY(0);
        }
    }
    .p_case {
        padding: 30px 20px;
    }
}

@media all and (max-width: 900px) {
    .contact_sec {
        padding: 0 40px;
    }
}

@media all and (max-width: 768px) {
    .contact_sec {
        padding: 0 20px;
    }
    .area_box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    .textarea textarea {
        padding: 20px 16px;
    }
    
    .contact_popup .popup_box {
        padding: 50px 20px 20px;
    }
    .p_case {
        padding: 20px 0 0;
        background: none;
        border-top: 1px solid var(--dark-line);
    }
}

@media all and (max-width: 600px) {
    .page {
        padding-top: 120px;
    }
    
    .call_btn a {
        padding: 10px 0;
        gap: 6px;
    }
    .call_btn p strong {
        margin-left: 6px;
    }
    .call_btn img {
        width: 14px;
        height: 14px;
    }
    .call_btn p {
        font-size: var(--ft16);
    }
    .input_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-top: 28px;
    }
    .input_box {
        height: 50px;
    }
    .area_box {
        padding: 0;
    }
    .area_l {
        width: 100%;
        padding: 24px 24px 0;
        flex-direction: column;
        gap: 20px
    }
    .area_l img {
        width: 28px;
        height: 28px;
    }
    .area_text {
        text-align: center;
    }
    .area_btn_wrap {
        width: 100%;
        gap: 0;
        border-top: 1px solid var(--dark-line);
    }
    .area_btn {
        width: 100%;
        height: 46px;
        border: none;
        border-radius: 0;
        padding: 0;
        justify-content: center;
    }
    .area_btn:first-child {
        border-right: 1px solid var(--dark-line);
    }
}   </pre></body></html>