
.wpcf7 .btn_box .input {
    display: flex;
}
.wpcf7.custom-wpcf7c-confirmed .btn_box .input {
    display: none;
}

.wpcf7 .btn_box .confirm {
    display: none;
}
.wpcf7.custom-wpcf7c-confirmed .btn_box .confirm {
    display: flex;
    flex-wrap: wrap;

}

.wpcf7.custom-wpcf7c-confirmed .input_area {
    pointer-events: none;   
}

@media (max-width: 767px) {
    .wpcf7.custom-wpcf7c-confirmed .btn_box .confirm {
         display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
}


/* 以下、送信ボタン・フォーム確認画面などのcss */

/* 承認チェックボックスのチェックボックスを消す */
input[name="confirm_btn"] {
    display: none;
}
input[name="confirm_btn"] + span {
	/*確認ボタン*/
}

.wpcf7.custom-wpcf7c-confirmed .wpcf7-list-item-label {
    color: #ccc;
}

.wpcf7.custom-wpcf7c-confirmed input:checked + span {
    color: #000;
}

.wpcf7.custom-wpcf7c-confirmed select[disabled],
.wpcf7.custom-wpcf7c-confirmed input[disabled],
.wpcf7.custom-wpcf7c-confirmed textarea[disabled]  {
    color: #000;
    opacity: 1;
}

.wpcf7.custom-wpcf7c-confirmed input::placeholder,
.wpcf7.custom-wpcf7c-confirmed textarea::placeholder {
    color: #aaaaaa;
}

