/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 20 2026 | 14:59:47 */
@charset "UTF-8";

/**************************************************
 * フォーム共通スタイル
 **************************************************/
table.CF7_table {
    width: 100%;
    margin: 50px auto 0;
    border: 1px solid #e5e5e5;
    border-collapse: collapse;
}

table.CF7_table tr {
    border-top: 1px solid #e5e5e5;
}

table.CF7_table td {
    padding: 10px;
}

/* 入力欄 */
input.input_text,
.CF7_table textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d8d8d8;
    background: #f9f9f9;
    font-size: 14px;
    box-sizing: border-box;
}

input.input_text:focus,
textarea:focus {
    background-color: #fff;
    border: 1px solid #d8d8d8 !important;
}

.CF7_table ::placeholder {
    color: #797979;
}

/* ラジオボタン設定 */
.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin-bottom: 5px;
    margin-left: 0;
}

.wpcf7-radio {
    display: block;
    width: 100%;
}

/* バッジ（必須・任意） */
.CF7_req,
.CF7_unreq {
    padding: 5px;
    font-size: 0.9em;
    font-weight: normal;
    color: #fff;
    margin-right: 1em;
}
.CF7_req { background: #f79034; }   /* オレンジ */
.CF7_unreq { background: #bdbdbd; } /* グレー */

/* ボタン共通 */
input.form_submit_button,
input.submit_Back {
    width: 100% !important;
    height: 60px;
    margin-top: 50px !important;
    padding: 0 !important;
    border: none !important;
    background: #000 !important;
    color: #fff !important;
    text-shadow: none !important;
    transition: 0.5s !important;
    font-size: 16px !important;
}

input.form_submit_button:hover,
input.submit_Back:hover {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}

/**************************************************
 * PC用レイアウト (768px以上)
 **************************************************/
@media screen and (min-width: 768px) {
    .CF7_table th {
        width: 30%;
        height: 70px;
        padding-left: 10px;
        background-color: #ebedf5;
        text-align: left;
    }
}

/**************************************************
 * スマホ用レイアウト (768px以下)
 **************************************************/
@media screen and (max-width: 768px) {
    table.CF7_table {
        width: 95%;
        display: block;
    }

    .CF7_table tr,
    .CF7_table th,
    .CF7_table td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }

    .CF7_table th {
        padding: 10px;
        background-color: #ebedf5;
        text-align: left;
    }

    .CF7_unreq,
    .CF7_req {
        margin-left: 10px;
    }
}

/**************************************************
 * その他設定
 **************************************************/
/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
    visibility: hidden;
}

/* コンテンツ内テーブルの表示調整 */
.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
    display: table;
}