前提として、こちらの選択肢を変更すると他の設問の見た目にも影響します!
なのでまず変更したい選択肢の修正方法をお伝えした後に他の設問の修正方法もお伝えします!
【変更したい選択肢の修正方法】
CSSの「.question-reveal-scroll input+label .btn」の余計な記述を削除して、高さを指定する記述を追加します!
.question-reveal-scroll input+label .btn {
font-size: 14px;
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px 0 20px 50px;
font-weight: bold;
background-color: #EBEBEB;
line-height: 1.6;
position: relative;
/*display: block;これ不要*/
/*ここから追加*/
height: 60px!important;
display: flex;
align-items: center;
justify-content: flex-start;
}
【他の設問の修正方法】
CSSの「.question-reveal-scroll .linkbox.btn-two .btn」に記述を追加します。
.question-reveal-scroll .linkbox.btn-two .btn {
font-size: 14px;
color: #fff;
background: #8f8d8d;
padding: 10px;
text-align: center;
border: none;
border-radius: 8px;
box-shadow: 0 6px 0 #828080;
transition: all 0.2s;
cursor: pointer;
/*ここから追加*/
height: auto!important;
display: block;
}