.sub-contact-wrap .call-txt-info {
    background-color: var(--point-bg-color);
    color: #fff;
    width: 280px;
    padding: 5px 0;
    border-radius: 30px;
    margin: 20px auto;
}

.sub-contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub-contact-inner form {
    width: 100%;
}

.sub-contact-box {
    width: 50%;
    padding-top: 20px;
    margin: 0 auto;
}

.sub-contact-box .sub-contact-content li {
    border-bottom: 1px solid #ffeddd;
    padding: 10px 10px;
}

.sub-contact-box label {
    display: inline-block;
    width: 110px;
    border: none;
    font-size: 1.125rem;
    padding: 10px 5px;
    color: #000;
}

.sub-contact-box .sub-contact-content li:last-child {
    width: 100%;
}

.sub-contact-content input {
    width: 100%;
    border: none;
    padding: 20px 5px;
    background-color: #fafafa;
    -webkit-appearance: none;
}

.sub-contact-content input::placeholder,
.sub-contact-content textarea::placeholder {
    color: #ccc;
    font-weight: 400;
    font-size: 14px;
    vertical-align: top;
}

/* Chrome, Safari, Edge, Opera //input number에 나오는 화살표 없애기 */
.sub-contact-box input::-webkit-outer-spin-button,
.sub-contact-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.sub-contact-box span {
    color: var(--point-color);
}

.sub-contact-box p {
    text-align: right;
    color: #999;
}

.sub-contact-box .txtarea-content label {
    vertical-align: top;
    min-height: 230px;
}

.sub-contact-box .txtarea-content textarea {
    width: 100%;
    border: none;
    padding: 10px 5px;
    background-color: #fafafa;
    min-height: 230px;
    resize: none;
}

.sub-contact-content {
    display: flex;
}

.contact-content li:last-of-type {
    width: 100%;
}

.contact-content2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.contact-content2 .privacy-content {
    margin-bottom: 20px;
    height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 30px;
    border: 1px solid #ccc;
}

.contact-btn-box {
    text-align: center;
}

.contact-btn-box button {
    background-color: var(--point-bg-color);
    width: 100px;
    height: 40px;
    color: #fff;
    border-radius: 50px;
    margin: 20px 10px;
    cursor: pointer;
}

.contact-btn-box button:hover {
    background-color: rgba(209, 126, 52, 0.6);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    outline: none !important;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fafafa;
}

input[type="checkbox"]::before {
    content: "\2713";
    position: absolute;
    top: 54%;
    left: 50%;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
    line-height: 1;
}

input[type="checkbox"]:hover {
    border-color: rgba(170, 170, 170, 0.5);
}

input[type="checkbox"]:checked {
    background-color: var(--point-bg-color);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

input[type="checkbox"]:checked::before {
    border-radius: 2px;
    transform: scale(1) translate(-50%, -50%);
}

/* 미디어 쿼리 */

@media (max-width: 1024px) {
    .sub-contact-box {
        width: 95%;
    }

    .contact-content2 {
        width: 95%;
    }
}

@media (max-width: 640px) {
    .service-br > br {
        display: none;
    }
}

@media (max-width: 440px) {
    .sub-contact-content {
        justify-content: center;
    }

    .sub-contact-content li:first-child {
        display: none;
    }

    .sub-contact-content input::placeholder,
    .sub-contact-content textarea::placeholder {
        color: #999;
    }

    .privacy-content p {
        font-size: 14px;
    }

    .privacy-check label {
        font-size: 14px;
    }

    .sub-contact-wrap > span {
        font-size: 14px;
    }
}
