.question .wrap{
    max-width: 1000px !important;
}
.question h1{
    font-size: 26px;
    font-weight: 500;
}
.question h1::before{
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #111;
}
.question strong{
    color: #e57c66;
    font-size: 14px;
    font-weight: 400;
}
.question ul li{
    list-style: none;
    margin-bottom: 40px;
}
.question ul {
    padding: 0;
    margin-top: 40px;
}
.question ul li h3{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;

}
.question ul li h3::before{
    content: '*';
    color: #e57c66;
    margin-right: 5px;
}
.question ul li input[type='text']{
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    padding: 5px;
    font-size: 16px;
    font-family: 'Noto Sans KR';
}
.question ul li input[type='text']::placeholder{
    font-size: 14px;
}
.question ul li input[type='text']:focus{
    outline: 1px solid #e57c66 !important;
}
.question ul li input[type='radio']+label{
    font-size: 15px;
    cursor: pointer;
}
.question ul li textarea{
    width: 100%;
    height: 200px;
    border: 1px solid #ddd;
    padding: 5px;
    font-size: 16px;
    text-align: left;
    font-family: 'Noto Sans KR';
}
.question ul li textarea::placeholder{
    font-size: 14px;
}
.question ul li textarea:focus{
    outline: 1px solid #e57c66 !important;
}
.question button.answer-btn{
    width: 300px;
    padding: 20px 0;
    text-align: center;
    background-color: #5384ed;
    color: #fff;
    border: none;
    margin: 100px auto;
    display: block;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}
.question button.answer-btn:hover{
    background-color: #4071db;
}