@charset "UTF-8";
/*----------------------------------------
お問い合わせページ
----------------------------------------*/
.bl_formTxt {
    font-weight: 500;
    text-align: center;
    padding-bottom: 30px;
    line-height: 2.2;
}
.el_btn__wrap {
    margin-top: 50px;
    text-align: center;
}
.el_btn {
    background-color: #DE9292;
}
.el_btn:hover {
    background-color: #978069;
}
@media screen and (max-width: 640px) {
    .bl_formTxt {
        text-align: left;
    }
    .el_btn__wrap {
        margin-top: 25px;
    }
}
/*-----------------------------------
確認画面
-----------------------------------*/
.pg_confirm .el_btn:first-child {
    margin-right: 3em;
}
@media screen and (max-width: 640px) {
    .pg_confirm .el_btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .pg_confirm .el_btn:first-child {
        margin-right: auto;
        margin-bottom: 15px;
    }
}
/*-----------------------------------
完了画面
-----------------------------------*/
.pg_complete_txt {
    line-height: 2;
}
/*----------------------------------------
フォームテーブル
----------------------------------------*/
.bl_formTable {
    font-size: 16px;
    width: 100%;
}
.bl_formTable tbody>*+* {
    border-top: 1px solid #eeeeee;
}
.bl_formTable th {
    width: 30%;
    padding: 20px 40px 20px 0;
    vertical-align: middle;
}
.bl_formTable th .row_box {
    -webkit-box-align: baseline;
    align-items: baseline;
}
.bl_formTable th .row_box p:first-child {
    font-weight: normal;
}
.bl_formTable td {
    padding: 20px 0;
    vertical-align: middle;
}
.bl_formTable .hp_top {
    vertical-align: top;
}
/*必須・任意ラベル
--------------------------*/
.el_required,
.el_optional {
    font-size: 14px;
    display: inline-block;
    width: 50px;
    text-align: center;
    padding: 5px 0;
    border-radius: 3px;
    line-height: 1;
    font-weight: normal;
}
.el_required {
    color: #fff;
    background-color: #4F4F4F;
}
.bl_formTxt .el_required {
    display: inline-block;
    margin-right: 10px;
}
.el_optional {
    color: #000;
    background-color: #f2f2f2;
}
/*input,textarea
--------------------------*/
.el_normalTxt {
    /*▼入力の都合上、文字サイズ変更しない*/
    font-size: 16px;
    padding: 0.5em;
    border-radius: 5px;
    background-color: #f7f7f7;
    width: 100%;
}
.el_normalTxt:focus {
    outline: none;
    box-shadow: 0 0 0 2px gray;
}
.el_normalTxt::placeholder {
    color: #b4b4b4;
    font-weight: normal;
}
/*textarea*/
textarea.el_normalTxt {
    resize: none;
    height: 20em;
}
@media screen and (max-width: 940px) {
    .bl_formTable {
        font-size: 14px;
    }
    .bl_formTable th {
        width: 35%;
    }
}
@media screen and (max-width: 640px) {
    .bl_formTable th,
    .bl_formTable td {
        display: block;
    }
    .bl_formTable th {
        width: 100%;
        padding: 20px 0 0 0;
    }
    .bl_formTable td {
        padding: 10px 0 20px 0;
    }
    textarea.el_normalTxt {
        height: 12em;
    }
    .el_required,
    .el_optional {
        font-size: 11px;
        width: 40px;
    }
}
/*-----------------------------------
bl_checkboxYoko
-----------------------------------*/
.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
}
.bl_checkboxYoko label {
    width: 100%;
    cursor: pointer;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    align-items: baseline;
}
.bl_checkboxYoko label input {
    width: 13px;
    accent-color: gray;
}
.bl_checkboxYoko label span {
    line-height: 1.5;
    width: calc(100% - 22px);
}
@media screen and (max-width: 1300px) {
    .bl_checkboxYoko>* {
        width: 48%;
    }
    .bl_checkboxYoko>*:nth-child(n+3) {
        margin-top: 15px;
    }
}
@media screen and (max-width: 640px) {
    .bl_checkboxYoko>* {
        width: 100%;
    }
    .bl_checkboxYoko>*:nth-child(n+2) {
        margin-top: 5px;
    }
}
