@charset "utf-8";
/* ========================================================
contact
======================================================== */
.form_table {
    width: 100%;
    table-layout: fixed;
}
.form_table th, .form_table td {
    padding: 2rem 0;
    vertical-align: top;
}
.form_table th {
    width: 30%;
}
.form_table td {
    width: 70%;
}
@media screen and (max-width: 680px) {
    .form_table th, .form_table td {
        display: block;
        padding: 0rem 0;
    }
    .form_table th {
        margin-top: 2.5rem;
        width: auto;
    }
    .form_table td {
        margin-top: 0.5rem;
        width: auto;
    }
}
.form_table input[type="text"], .form_table input[type="number"], .form_table input[type="email"], .form_table input[type="tel"], .form_table select {
    border: 1px solid #000 !important;
    padding: 0.8rem;
}
.form_table textarea {
    width: 100%;
    border: 1px solid #000 !important;
    min-height: 200px;
    padding: 0.8rem 5px;
}
.hissu {
    color: #FF0000;
}
.error {
    color: var(--col_main)!important;
    background: var(--col_main_l)!important;
    margin-top: 5px;
    padding: 3px;
    font-weight: bold;
    display: none;
}
/*input サイズ*/
.size_01 {
    width: 10%;
}
.size_02 {
    width: 20%;
}
.size_03 {
    width: 30%;
}
.size_04 {
    width: 40%;
}
.size_05 {
    width: 50%;
}
.size_06 {
    width: 60%;
}
.size_07 {
    width: 70%;
}
.size_08 {
    width: 80%;
}
.size_09 {
    width: 90%;
}
.size_10 {
    width: 100%;
}
@media screen and (max-width: 680px) {
    .size_sp_100 {
        width: 100%;
    }
    .size_sp_90 {
        width: 90%;
    }
}
/*form_btn_flex*/
.form_btn_flex > p {
    display: flex;
    justify-content: center;
}
.form_btn_flex > p * + * {
    margin-left: 5%;
}
.form_btn_flex * + * {
    margin-left: 5%;
}
@media screen and (max-width: 480px) {    
    .form_btn_flex > p {
        flex-flow: column;
    }
    .form_btn_flex > p   * + * {
        margin-left: auto;
        margin-top: 5%!important;
    }
    .form_btn_flex > p   *{
        margin: auto;
    }
    
}
/*.form_btn_pd */
.form_btn_pd {
    padding: 3rem 0 5rem 0;
}

/*check_box*/
.check_box input[type=checkbox] {
    display: none;
}
.check_box .check-box-label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0 5px 22px;
    position: relative;
    width: auto;
}
.check_box .check-box-label::before {
    background: #fff;
    border: 1px solid #CCCCCC;
    content: '';
    display: block;
    height: 16px;
    left: 0px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.check_box .check-box-label::after {
    border-right: 3px solid var(--col_check);
    border-bottom: 3px solid var(--col_check);
    content: '';
    display: block;
    height: 9px;
    left: 5px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
.check_box input[type=checkbox]:checked + .check-box-label::after {
    opacity: 1;
}

.mw_wp_form_confirm .confirm-hidden {
	display: none;
}

