#contact {
    overflow: hidden;
}

#contact .top-wrapper {
    position: relative;
    height: 485px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#contact .top-wrapper .banner-scale {
    width: 100%;
    min-width: 2200px;
    animation: banner-scale 2s ease-in-out;
}

#contact .top-wrapper .txt-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 80px;
}

#contact .top-wrapper .txt-wrapper .tit1 {
    font-size: 78px;
    font-weight: 500;
    color: white;
}

#contact .top-wrapper .txt-wrapper .tit2 {
    font-size: 18px;
    font-weight: 500;
    color: white;
}



#contact .consulting-wrapper {
    position: relative;
    height: 792px;
    background-color: #F7F7F7;
}


#contact .consulting-wrapper .center-2200 {}

#contact .inner {
    width: 1278px;
    margin: 0 auto;
    margin-top: 105px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* 왼쪽 텍스트 */
#contact .inner .txt-wrapper {
    height: 406px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact .inner .txt-wrapper .tit1 {
    font-size: 78px;
    font-weight: 400;
    color: #333333;
}

#contact .inner .txt-wrapper .tit2 {
    font-size: 18px;
    font-weight: 500;
    color: #666666;
}


/* 입력창 */
#contact .inner .input-container {
    margin-left: auto;
    width: 818px;
    padding: 0 47px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

#contact .inner .input-container .input-item:hover,
#contact .inner .input-container .input-item.focused {
    border-color: #CEA37C;
}

#contact .inner .input-container .input-item:hover input,
#contact .inner .input-container .input-item.focused input {
    color: #C48E64;
}

#contact .inner .input-container .input-item {
    position: relative;

    padding: 0 21px;
    padding-right: 95px;
    margin: 6.5px 0;

    width: 100%;
    height: 92px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

    border-bottom: 1px solid transparent;
    background-color: white;
}

#contact .inner .input-container .input-item .lab {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

#contact .inner .input-container .input-item .lab span {
    color: red;
}

#contact .inner .input-container .input-item input:disabled {
    background-color: transparent;
    color: #333333;
}

#contact .inner .input-container .input-item input {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    width: 100%;
    margin-top: 4px;

    transition: color 0.2s;
}

#contact .inner .input-container .input-item input::placeholder {
    font-size: 18px;
    font-weight: 300;
    color: #999999;
}
#contact .inner .input-container .input-item.input-memo-wrapper {
    height: 122px;
}
#contact .inner .input-container .input-item textarea {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    width: 100%;
    margin-top: 4px;

    transition: color 0.2s;
}

#contact .inner .input-container .input-item textarea::placeholder {
    font-size: 18px;
    font-weight: 300;
    color: #999999;
}

#contact .inner .input-container .input-item .cal {
    position: absolute;
    top: 0;
    right: 0;
    width: 92px;
    height: 92px;
    border-left: 1px solid #E6E2DF;

    display: flex;
    align-items: center;
    justify-content: center;


    cursor: pointer;
    transition: background 0.2s;
    background-color: transparent;
}

#contact .inner .input-container .input-item .cal img {}

/* #contact .inner .input-container .input-item .cal:hover {
    background-color: rgb(247, 247, 247);
} */

#contact .inner .input-container .input-item .remove-date:hover {
    background-color: #ebebeb;
}

#contact .inner .input-container .input-item .remove-date:hover img {
    opacity: 1;
}

#contact .inner .input-container .input-item .remove-date.active {
    opacity: 1;
}

#contact .inner .input-container .input-item .remove-date {
    width: 22px;
    height: 22px;
    position: absolute;
    bottom: 21px;
    left: 130px;
    border-radius: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    border: 1px solid #e4e4e4;
    transition: background 0.2s ease;
    cursor: pointer;
}

#contact .inner .input-container .input-item .remove-date img {
    width: 10px;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

#contact .inner .input-container .input-item .no-data {
    display: none;
    /* position: absolute;
    bottom: 5px;
    left: 22px; */
    float: right;
    margin-left: 5px;
    font-size: 11px;
    color: red;
}

#contact .inner .input-container .input-item.input-date-wrapper {
    cursor: pointer !important;
}

#contact .inner .input-container .input-item.input-date-wrapper input {
    cursor: pointer !important;
}

#contact .inner .input-container .input-item.input-name-wrapper,
#contact .inner .input-container .input-item.input-hp-wrapper,
#contact .inner .input-container .input-item.input-memo-wrapper,
#contact .inner .input-container .input-item.input-planner-wrapper {
    cursor: text
}




/* 똥의 */
#contact .inner .agree-wrapper.checked .check-box {
    background-color: #333333 !important;
}

#contact .inner .agree-wrapper.checked .check-box i {
    opacity: 1;
}

#contact .inner .agree-wrapper:hover .check-box {
    background-color: #ebebeb;
}

#contact .inner .agree-wrapper {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#contact .inner .agree-wrapper .check-box {
    width: 20px;
    height: 20px;

    background-color: white;
    border: 1px solid #E6E3DF;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.1s;
    cursor: pointer;
}

#contact .inner .agree-wrapper .check-box i {
    font-size: 11px;
    color: white;
    margin-top: 2px;
    transition: opacity 0.2s;
}

#contact .inner .agree-wrapper .txt {
    margin-left: 10px;

    font-size: 15px;
    color: #666666;

}

#contact .inner .agree-wrapper .txt strong {
    text-decoration: underline;
    cursor: pointer;
}



#contact .inner .submit {
    margin-top: 37px;
}



#contact .map-container {
    position: relative;
    height: 575px;
}

#contact .map-container #map {
    width: 1580px;
    width: 2200px;
    height: 575px;
    margin: 0 auto;
}


#contact .m-infowindow {
    /*padding: 10px;*/
    position: relative;
    padding: 5px 16px;
    background: #333333;
    color: white;
    white-space: nowrap;
}

#contact .m-infowindow::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent; /* 화살표 색상 설정 */
}

#contact .m-infowindow h5 {
    padding: 0;
    margin: 0;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    box-sizing: inherit !important;
}


#contact .contact-wrapper .common-btn{
    position: absolute;
    bottom: -68px;
    left: 0;
    right: 0;
    width: 160px;
    height: 48px;
    margin: 0 auto;
    /* margin-top: 20px; */

    border: 1px solid #CEA37C;
    background-color: transparent;
}
#contact .contact-wrapper .common-btn .txt {
    color: #CEA37C;
    margin-right: 0px;
    font-size: 17px;
}



#contact .contact-wrapper {
    position: relative;
    height: 525px;
    background-color: white;
}

#contact .contact-wrapper .center-2200 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 115px;
}

#contact .contact-wrapper .contact-item {
    position: relative;
    width: 490px;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    border-right: 1px solid #E6E3DF;
}

#contact .contact-wrapper .contact-item>img {
    width: 70px;
}

#contact .contact-wrapper .contact-item>.txt {
    margin-top: 20px;
    margin-bottom: 10px;

    font-size: 15px;
    font-weight: bold;
    color: #CEA37C;
    /* text-decoration: underline; */
    border-bottom: 1px solid #CEA37C;
}

#contact .contact-wrapper .contact-item .tel {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    padding-right: 8px;
    padding-left: 4px;
}

#contact .contact-wrapper .contact-item .fax {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

#contact .contact-wrapper .contact-item>div>strong {}

#contact .contact-wrapper .contact-item .sub-txt {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #666666;
    /*line-height: 1.6;*/
    text-align: center;
    display: inline-block;
}

#contact .contact-wrapper .contact-item .common-item-box {
    display: flex;
    align-items: center;
    font-size: 17px;
}
#contact .contact-wrapper .contact-item .item2 {
    padding-top: 12px;
}

#contact .center-2200>div:last-child {
    border-right: 0;
}

#contact .contact-wrapper .location-box {
    display: inline-flex;
    align-items: flex-end;
}

#contact .contact-wrapper .location-box:last-child {
    padding-top: 12px;
}

#contact .contact-wrapper .location-box .copy {
    display: inline-flex;
    margin-bottom: 6px;
    align-items: flex-end;
    position: absolute;
    right: 95px;
}

#contact .contact-wrapper .location-box:last-child .copy {
    right: 148px;
}

#contact .contact-wrapper .location-box .copy .txt {
    color: #CEA37C;
    font-size: 14px;
    font-weight: 400;
    /*line-height: 1.8;*/
    cursor: pointer;
    display: inline-flex;
}