/* img{
    width: 100%;
} */
.campaign-body {
    width: 900px;
    margin: 20px auto;
    padding-bottom: 40px;
    border: 1px solid #999999;
    background: #FFFFFF;
}

/* リード文 */
/* .lead{
    margin: 50px 0;
}
.lead-content{
    margin: 30px;
    padding: 30px;
    border: 3px dotted #795548;
}
.lead-content .title{
    text-align: center;
    font-weight: bold;
    color: #795548;
    font-size: 1.1em;
} */

/* フォーム */
.form{
    /* width: 80%; */
    margin: 0 auto;
    /* text-align: left; */
}
.box{
border: none;
background-color: #F2F2F2;
}
.form__bg {
padding-top: 4rem;
padding-bottom: 3rem;
}
.form__application {
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; 
}
.form__application_wrapper{
    font-size: 14px;
}
.input-text{
    margin: 30px 0;
}
form input{
    display: inline-block;
    margin-top: 5px;
}
/* .input-text-label-wrapper{
    display: inline-block;
    width: 200px;
    vertical-align: top;
} */
.input-text input{
    width: 350px;
    height: 50px;
}
#post_code{
    width: 700px;
}
#address1{
    width: 700px;
}
#address2{
    width: 700px;
}
#email{
    width: 700px;
}
.input-text input.radio{
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #F2F2F2;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.input-text input.radio:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .input-sex{
    display: flex;
    align-items: center;
  }
select{
    width: 350px;
    height: 50px;
    border: none;
    background-color: #F2F2F2;
    margin-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
}
.input-question-wrapper, .input-radio-wrapper{
    width: 100%;
}
.input-question-group-wrapper{
    width: 100%;
    margin-bottom: 20px;
}
.input-radio-group-wrapper{
    display: inline-block;
    margin-top: 5px;
}
.question1_other_textarea textarea{
    width: 700px;
    height: 120px;
    background-color: #F2F2F2;
    border: none;
    padding: 20px;
}
.input-question1{
    display: flex;
    align-items: center;
}
.submit-wrapper{
    text-align: center;
    margin-top: 60px;
}

.submit {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    padding: 15px 50px;
    border: 1px solid #000000;
    border-radius: 10rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    background-color: #FFFFFF;
    cursor: pointer;
  }
  .submit:hover {
    color: #FFFFFF;
    background-color: #1B1464;
    transition: .5s;
  }

.require{
    color: red;
    margin: 0 5px;
}

.error{
    color: red;
    margin-top: 5px;
}

/* SP */
@media (max-width: 768px) {
    .input-text input{
        width: 100%;
    }
    #post_code{
        width: 100%;
    }
    #address1{
        width: 100%;
    }
    #address2{
        width: 100%;
    }
    #email{
        width: 100%;
    }
    select{
        width: 100%;
    }
    .form__application {
        padding: 2rem 0;
        
    }
    .question1_other_textarea textarea{
        width: 100%;
    }
}

/* 完了画面 */
.complete_text{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
}
.link{
    text-align: center;
    margin: 50px 0 0;
}