@charset "utf-8";
/* -------------------------------------
 * メインビジュアル
 * ------------------------------------- */
.mv{
  background: url(../img/contact/main_soumu.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .mv{
    background:url(../img/contact/main_soumu_sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
/* -------------------------------------
 * ボタンエリア(入力画面)
 * ------------------------------------- */
.form_area .form_wrap .btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e5ebef;
}
.form_area .form_wrap .btn-area input[type="submit"] {
    margin: 40px auto 0;
    /* type=submitのデフォルトスタイル解除 */
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    /* ボタンのスタイル適用 */
    max-width: 350px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 700;
}
/* -------------------------------------
 * ボタンエリア(確認画面)
 * ------------------------------------- */
.confirm-inner .form_area .form_wrap .btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e5ebef;
}
.confirm-inner .form_area .form_wrap .btn-area form {
    display: contents;
    margin-left: 0;
}
.confirm-inner .form_area .form_wrap .btn-area .submit-btn {
    margin: 40px auto 0;
    /* type=submitのデフォルトスタイル解除 */
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    /* ボタンのスタイル適用 */
    max-width: 350px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 700;
    margin-left: 0;
}
.confirm-inner .form_area .form_wrap .btn-area .return-btn {
    margin: 40px auto 0;
    /* type=submitのデフォルトスタイル解除 */
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    /* ボタンのスタイル適用 */
    max-width: 350px;
    width: 20%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 700;
    margin-right: 30px;
}
@media screen and (max-width: 600px) {
    .confirm-inner .form_area .form_wrap .btn-area .return-btn {
        margin: 40px auto 0;
        width: 100%;
    }
}
/* -------------------------------------
 * ボタンエリア(完了画面)
 * ------------------------------------- */
.thanks-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px 0;
}
.thanks-inner .btn {
    width: 100%;
    margin-top: 30px;
}
