@charset "UTF-8";


/* warp */
.con_wrap {
    width: 100%;
    height: 100%;
    margin: 0 auto 180px;
}

.conTitle {
    width: 100%;
    height: 392px;
    color: #000;
    font-family: Pretendard;
    font-size: 50px;
    font-weight: 600;
    line-height: 150%; /* 75px */
    text-align: center;
    line-height: 392px;
    background: url(../img/bg_visual.png) no-repeat right center;
}



/* form  */
.formDesign {
    width: 1438px;
    height: 100%;
    margin: 0 auto;
    border: 2px solid #000;
}

.form-group {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid #dadada;
}
.form-group:last-child {
    border-bottom: none;
}
.form-group label {
    width: 286px;
    height: 70px;
    display: inline-block;
    background-color: #000;
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
    text-align: center;
    line-height: 70px;
}
.form-group .form-control {
    border: none;
    background-color: #fff;
    width: 1152px;
    height: 70px;
    line-height: 70px;
    float: right;
    font-size: 20px;
    text-indent: 1em;
    font-family: Pretendard;
}
.form-group .form-control .Btn {
    float: right;
    width: 180px;
    height: 50px;
    line-height: 50px;
    margin-top: 10px;
    margin-right: 30px;
    padding-right: 5px;
    cursor: pointer;
}
.form-group .form-control .Btn:hover {
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}
.Message label{
    width: 286px;
    height: 420px;
    display: inline-block;
    background-color: #000;
    color: #FFF;
    font-family: Pretendard;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%; /* 30px */
    text-align: center;
    line-height: 420px;
}
.Message .form-control {
    width: 1152px;
    height: 420px;
    border: none;
    background-color: #fff;
    line-height: 420px;
    float: right;
    font-size: 20px;
    text-indent: 1em;
    font-family: Pretendard;
}


.Consent {
    text-align: center;
    margin: 44px 0;
}
/* input checkBox 변경 */
input[type="checkbox"].check {
    appearance: none;
    width: 16px;
    height: 16px;
    background: url(../img/check_box_before.png) no-repeat center center / 16px auto;
}
input[type="checkbox"].check:checked {
    background: url(../img/check_box_after.png) no-repeat center center / 16px auto;
}
.Consent label {
    color: #000;
    font-family: Pretendard;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 150%; /* 27px */
    margin-left: 10px;
}


.submitWrap {
    text-align: center;
}
.submitWrap .submitBtn{
    text-align: center;
    width: 130px;
    height: 42px;
    background-color: #000;
    margin: 0 29px;
    color: #FFF;
    font-family: Pretendard;
    font-size: 1rem;
    font-weight: 600;
    line-height: 150%; /* 27px */
    cursor: pointer;
    border: none;
}
.submitWrap .submitBtn:hover {
    color: #000;
    background-color: #FFF;
    border: 1px solid #000;
}




/* 반응형 */
@media (max-width:720px){
    .con_wrap {
        width: 90%;
        margin-bottom: 50px;
    }
    
    .conTitle {
        height: 200px;
        font-size: 30px;
        line-height: 200px;
        background: none;
    }

    .formDesign {
        width: 100%;
        height: 100%;
        border: none;
    }
    .form-group label {
        width: 95%;
        height: 50px;
        line-height: 50px;
        text-align: left;
        padding-left: 20px;
        float: none;
    }
    .form-group .form-control {
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size: 15px;
        display: block;
    }
    .form-group .form-control .Btn {
        width: 100px;
        height: 50px;
        line-height: 50px;
        margin-top: 10px;
        margin-right: 0;
        padding-right: 15px;
        cursor: pointer;
        float: none;
    }
    .Message label{
        float: none;
    }
    .Message .form-control {
        width: 100%;
        height: 200px;
        line-height: 200px;
        font-size: 15px;
        display: block;
    }

    .Consent {
        margin: 150px 0 20px;
    }
    .Consent label {
        font-size: 1rem;
        line-height: 150%; /* 27px */
        margin-left: 10px;
    }

    .submitWrap .submitBtn{
        width: 100px;
        height: 50px;
        margin: 0 10px;
        font-size: 1rem;
        line-height: 150%; /* 27px */
    }
}