.contact .form_box {
    max-width: 1000px;
    margin: 0 auto;
}
.contact .form_box .txt {
    margin-bottom: 30px;
}
.contact .form_box .form {
    gap: 20px;
}
.contact .form_box .form .grid {
    gap: 10px;
}
.contact .form_box .form > div {
    width: 100%;
}
.contact .form_box .form .grid > div {
    flex: 1;
}
.contact .form_box .form input[type=text],
.contact .form_box .form input[type=password] {
    width: 100%;
    height: 68px;
    border-radius: 100px;
    background: var(--gray-bg);
    padding: 0 30px;
    font-size: 16px;
    letter-spacing: 0.4px;
    box-sizing: border-box;
}
.contact .form_box .form textarea {
    width: 100%;
    height: 250px;
    resize: none;
    border-radius: 30px;
    background: var(--gray-bg);
    padding: 30px;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.2;
    border: 0;
    box-sizing: border-box;
}
.contact .form_box .file_box {
    position: relative;
    border-radius: 100px;
    border: 1px dashed var(--text);
    overflow: hidden;
}
.contact .form_box .file_box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.contact .form_box .file_box label {
    width: 100%;
    height: 56px;
    line-height: 56px;
    text-align: center;
    color: var(--key-color);
}
.contact .form_box .file_box label img {
    vertical-align: middle;
    margin-left: 10px;
}
.contact .form_box .file_box .box {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    text-align: center;
    font-family: inherit;
    font-size: inherit;
    justify-content: center;
    gap: 10px;
}
.contact .form_box .file_box .box.on {
    display: flex;
}
.contact .form_box .file_box .upload_name {
    max-width: calc(100% - 110px);
    height: 68px;
    line-height: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.contact .form_box .file_box .del_btn {
	width: 25px;
	height: 25px;
	background: var(--black) url("../images/ic_close_white.svg")no-repeat 50% 50% / 11px;
    border-radius: 50%;
}
.contact .form_box .agree {
    gap: 50px;
    padding: 10px 0;
}
.contact .form_box .agree > div {
    position: relative;
}
.contact .form_box .agree > div input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.contact .form_box .agree > div input + label {
    position: relative;
    display: inline-block;
    color: #000;
    padding: 4px 0 4px 35px;
    box-sizing: border-box;
}
.contact .form_box .agree > div input + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid #000;
    background: var(--white);
    box-sizing: border-box;
}
.contact .form_box .agree > div input:checked + label:before {
    background: var(--black) url("../images/ic_check_white.svg")no-repeat 50% 50% / 14px;
}
.contact .form_box .agree button {
    color: var(--point);
}
.contact .form_box .btn_area button {
    padding: 16px 60px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
}




@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1024px) {
    .contact .form_box .form .grid > div {
        flex: none;
        width: calc(50% - 5px);
    }
}
@media screen and (max-width: 768px) {
    .contact .form_box .txt {
        font-size: 14px;
    }
    .contact .form_box .form {
        gap: 10px;
    }
    .contact .form_box .form .grid > div {
        width: 100%;
    }
    .contact .form_box .form input[type=text], 
    .contact .form_box .form input[type=password] {
        height: 48px;
        font-size: 14px;
        padding: 0 20px;
    }
    .contact .form_box .form textarea {
        height: 220px;
        padding: 20px;
        font-size: 14px;
    }
    .contact .form_box .file_box label {
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }
    .contact .form_box .file_box label img {
        width: 18px;
    }
    .contact .form_box .file_box .upload_name {
        height: 48px;
        line-height: 48px;
        font-size: 14px;
    }
    .contact .form_box .file_box .del_btn {
        width: 20px;
        height: 20px;
        background-size: 8px;
    }
    .contact .form_box .agree {
        font-size: 14px;
        gap: 20px;
    }
    .contact .form_box .agree > div input + label {
        padding: 3px 0 3px 28px;
    }
    .contact .form_box .agree > div input + label:before {
        width: 20px;
        height: 20px;
    }
    .contact .form_box .btn_area button {
        padding: 12px 40px;
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}