.input_field{
    padding: 19px 20px;
    display: flex;
    align-items: center;
}
/* ------------------------------------------*/
/*----- メディアクエリ: 800px -----*/
@media screen and (max-width: 800px){
    .input_field{
        padding: 20px 12px;
    }
}

/*-- 送信ボタン --*/
.contact_btn_box{
    background-color: var(--deep-red);
}
.contact_btn_box:hover{
    background-color: var(--link-black);
}

/*-- 戻るボタン --*/
.contact_backbtn_box{
    position: relative;
    margin: 50px auto 100px;
    display: block;
    max-width: 300px;
    width: 94%;
    height: 70px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    background-color: var(--link-black);
    transition: all .3s;
    cursor: pointer;
}
.contact_backbtn_box::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 54px;
    background-image: url(../img/arrow_white_left.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    transform: translateY(-50%) translateX(0%);
    -webkit-transform: translateY(-50%) translateX(0%);
}
.contact_backbtn_box:hover {
    background-color: var(--deep-red);
}
.contact_backbtn{
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

/*-- お問い合わせ完了メッセージ --*/
.completion{
    margin: 70px 0 0;
    padding: 0 20px;
    font-size: 35px;
    color: var(--deep-red);
    text-align: center;
}
.completion_p{
    margin: 25px 0 70px;
    padding: 0 20px;
    line-height: 1.75;
    text-align: center;
}
.underlayer_link300_contact{
    margin: 0 auto 90px;
}
/* ------------------------------------------*/
/*----- メディアクエリ: 800px -----*/
@media screen and (max-width: 800px){
    /*-- お問い合わせ完了メッセージ --*/
    .completion{
        margin: 70px 0 0;
        font-size: 30px;
    }
    .completion_p{
        margin: 25px 0 70px;
    }
    .underlayer_link300_contact{
        margin: 0 auto 90px;
    }
}
/* ------------------------------------------*/
/*----- メディアクエリ: 500px -----*/
@media screen and (max-width: 500px){
    /*-- 戻るボタン --*/
    .underlayer_link300_contact{
        margin: 50px auto 65px;
    }

    /*-- お問い合わせ完了メッセージ --*/
    .completion{
        margin: 50px 0 0;
        font-size: 25px;
    }
}