@charset "utf-8";

.wrap {
    /* background: var(--color-navy-5); */
    background: #FCFCFF;
}
.contents_title_h2 {
    max-width: 620px;
    font-weight: 500;
}
.contents_para_xs {
    white-space: inherit !important;
}
.contents_para_xs>span {
    display: inline-block;
    padding: 8px 0;
}
.form_wrap {
    display: flex;
    gap: 48px;
}
.form_wrap>div {
    width: 100%;
    display: flex;
    gap: 48px;
    justify-content: space-between;
}
.form_wrap>div:nth-child(1)>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form_wrap>div:nth-child(2) {
    height: 100%;
    flex-direction: column;
    gap: 12px;
}
textarea {
    height: 286px;
    border: 1px solid var(--color-navy-4);
    border-radius: 12px;
    resize: none;
    padding: var(--pd-xxxs);
    font-size: var(--p-font-sm)
}
.input_wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.input_wrap>label {
    font-size: var(--p-font-xs);
    position: relative;
    width: fit-content;
}
.input_wrap>label::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-orange-1);
    position: absolute;
    right: -8px;
}
.input_wrap>input {
    width: 100%;
    height: 54px;
    border: 1px solid var(--color-navy-4);
    border-radius: 8px;
    padding: 0 var(--pd-xxxs);
    font-size: var(--p-font-sm)
}
.policy{
    position: relative;
}
.policy::after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color-orange-1);
    position: absolute;
    bottom: -4px;
}
.submit {
    display: flex;
    justify-content: end;
}
.submit_btn {
    width: 240px;
    height: 68px;
    border-radius: 16px;
    text-align: center;
    line-height: 68px;
    cursor: pointer;
}

/*--------------------------------------------------
	Responsive
---------------------------------------------------*/
@media screen and (max-width: 1023px){
    .contents_para_xs {
        margin-bottom: 48px;
    }
    .form_wrap {
        display: block;
        gap: 0;
    }
    .form_wrap>div:nth-child(2) {
        margin-top: 16px;
        gap: 16px;
    }
    .submit_btn {
        width: 100%;
    }
}
@media screen and (max-width: 767px){
    .input_wrap {
        gap: 8px;
    }
    .input_wrap>input {
        height: 48px;
    }
}