/* ============================================================
   カスタムCSS
   読み込み順: テーマmain.css → プラグインCSS → このファイル → 追加CSS(カスタマイザー)
   プラグイン(Form Nest)のCSSを上書きしつつ、管理画面の追加CSSで
   さらに上書きできる位置に読み込まれる。
   Figma: F01-1-PC 派遣登録者向けフォーム (node 285:2583)
   ============================================================ */

/* ─── FormNest コンテナ ─────────────────────────────────── */
.formnest-form-container {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ─── タイトル・説明 ────────────────────────────────────── */
.formnest-form-title h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.24px;
    color: #282425;
    margin-bottom: 12px;
}

.formnest-form-description p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #564e4e;
    margin-bottom: 32px;
}

/* ─── 縦積みレイアウト（ラベル上・入力下） ──────────────── */
.formnest-form-fields {
    margin-bottom: 0;
}

.formnest-form-table {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.formnest-form-table tbody {
    display: block;
}

.formnest-form-row {
    display: block;
    border: none;
    padding: 0;
}

.formnest-form-row + .formnest-form-row {
    margin-top: 32px;
}

.formnest-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #282425;
}

.formnest-form-field {
    display: block;
    width: 100%;
    padding: 0;
    overflow: visible;
}

/* 都道府県セクションの見出し行（空のチェックボックスグループ） */
.formnest-checkbox-group:empty {
    display: none;
}

.formnest-form-row:has(.formnest-checkbox-group:empty) .formnest-form-label {
    /* font-weight: 700; */
    margin-bottom: -20px;
}

/* 「年」「ヶ月」を横並びに。
   HTMLを変更できないため、他の項目が増減しても対象がずれないよう
   nth-childではなく各入力欄の固有idで行を特定する。 */
.formnest-form-row:has(#number_field_1784263920653),
.formnest-form-row:has(#number_field_1784263921901) {
    display: inline-flex;
    flex-direction: column;
    /* inline-flex 間のHTML空白文字ぶんを見込んで余裕を持たせ、SPでの意図しない折り返しを防ぐ */
    width: calc(50% - 16px);
    vertical-align: top;
}

.formnest-form-row:has(#number_field_1784263920653) {
    margin-right: 16px;
}

/* ─── 必須ラベル ────────────────────────────────────────── */
.formnest-form-label .formnest-required {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 4px;
    background: #7d171a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border-radius: 2px;
    white-space: nowrap;
}

/* ─── 入力フィールド ────────────────────────────────────── */
.formnest-input,
.formnest-textarea,
.formnest-select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd5d5;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #282425;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.formnest-input::placeholder,
.formnest-textarea::placeholder {
    color: #837777;
}

.formnest-input:focus,
.formnest-textarea:focus,
.formnest-select:focus {
    outline: none;
    border-color: #564e4e;
    box-shadow: 0 0 0 2px rgba(86, 78, 78, 0.15);
}

/* 数値入力はデザインに合わせて短め（348px） */
input[type='number'].formnest-input {
    max-width: 348px;
    appearance: auto;
}

.formnest-textarea {
    height: auto;
    min-height: 160px;
    padding: 12px;
    resize: vertical;
}

.formnest-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23564e4e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ─── ラジオボタン ──────────────────────────────────────── */
.formnest-radio-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.formnest-radio-label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-bottom: 0;
}

input[type='radio'].formnest-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border: 2px solid #837777;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

input[type='radio'].formnest-radio:checked {
    border-color: #a81f23;
    background: radial-gradient(circle, #a81f23 5px, transparent 6px);
}

input[type='radio'].formnest-radio:focus-visible {
    outline: 2px solid #a81f23;
    outline-offset: 2px;
}

.formnest-radio-text {
    font-size: 16px;
    line-height: 1.4;
    color: #282425;
}

/* ─── チェックボックス ──────────────────────────────────── */
.formnest-checkbox-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.formnest-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
}

input[type='checkbox'].formnest-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border: 2px solid #837777;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

input[type='checkbox'].formnest-checkbox:checked {
    border-color: #a81f23;
    background: #a81f23 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

input[type='checkbox'].formnest-checkbox:focus-visible {
    outline: 2px solid #a81f23;
    outline-offset: 2px;
}

.formnest-checkbox-text {
    font-size: 16px;
    line-height: 1.4;
    color: #282425;
}

/* ─── エラー状態 ────────────────────────────────────────── */
.formnest-field-has-error .formnest-input,
.formnest-field-has-error .formnest-textarea,
.formnest-field-has-error .formnest-select,
.formnest-field-error {
    border-color: #a81f23 !important;
    box-shadow: 0 0 0 1px #a81f23 !important;
}

.formnest-field-error-message,
.formnest-field__error {
    margin-top: 6px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #a81f23;
}

/* ─── エラーボックス ────────────────────────────────────── */
.formnest-error-box {
    padding: 16px 20px;
    background: #fff0f0;
    border: 1px solid #a81f23;
    border-radius: 4px;
    color: #a81f23;
    margin-bottom: 24px;
}

.formnest-error-box strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.formnest-error-box ul {
    margin: 0;
    padding-left: 20px;
}

.formnest-error-box li {
    font-size: 13px;
    line-height: 1.6;
    margin: 4px 0;
}

/* ─── 送信ボタン ────────────────────────────────────────── */
.formnest-form-submit {
    margin-bottom: 0;
}

.form_submit_btn_area {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 0;
}

.formnest-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 320px;
    max-width: 100%;
    min-width: 200px;
    height: 52px;
    padding: 0 24px;
    background: #a81f23;
    background-image: none;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: none;
    transition: opacity 0.2s ease;
}

.formnest-submit-button:hover:not(:disabled) {
    opacity: 0.85;
    transform: none;
    box-shadow: none;
}

.formnest-submit-button:active:not(:disabled) {
    transform: none;
}

.formnest-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ─── フッター（必須項目注記） ──────────────────────────── */
.formnest-form-footer {
    border-top: none;
    padding-top: 0;
    margin-top: 16px;
    text-align: center;
}

.formnest-form-footer .formnest-required-note {
    font-size: 12px;
    color: #837777;
    display: none;
}

/* ─── 確認ページ ────────────────────────────────────────── */
.formnest-form-confirm {
    max-width: 720px;
    margin: 0 auto;
}

.formnest-form-confirm .formnest-form-fields {
    margin-top: 16px;
}

.formnest-confirm-table,
.formnest-confirm-table tbody {
    display: block;
    width: 100%;
}

.formnest-confirm-row {
    display: block;
    width: 100%;
    padding: 0 0 12px;
    border-bottom: 1px solid #ddd5d5;
}

.formnest-confirm-row + .formnest-confirm-row {
    margin-top: 16px;
}

.formnest-confirm-row .formnest-form-label,
.formnest-confirm-row .formnest-form-field {
    display: block;
    width: 100%;
    padding: 0;
    background: none;
}

.formnest-confirm-row .formnest-form-label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #282425;
}

.formnest-confirm-row .formnest-confirm-value {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #282425;
    word-break: break-word;
}

.formnest-confirm-row .formnest-confirm-value a {
    color: inherit;
    text-decoration: none;
}

.formnest-confirm-row .formnest-confirm-value font {
    vertical-align: baseline !important;
}

.formnest-confirm-row .formnest-confirm-value > :first-child {
    margin-top: 0;
}

.formnest-confirm-buttons {
    margin-top: 28px;
}

.formnest-confirm-buttons .form_submit_btn_area {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    margin-top: 0;
}

.formnest-button-back,
.formnest-complete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    max-width: 100%;
    min-width: 200px;
    height: 52px;
    padding: 0 24px;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.formnest-button-back {
    background: #ffffff;
    color: #282425;
    border: 1px solid #564e4e;
}

.formnest-button-back:hover,
.formnest-complete-button:hover {
    opacity: 0.85;
}

/* ─── 完了・エラーメッセージ ────────────────────────────── */
.formnest-success-message {
    padding: 16px 20px;
    background: #f0faf4;
    border: 1px solid #4caf50;
    border-radius: 4px;
    color: #1b5e20;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.formnest-error-message {
    padding: 16px 20px;
    background: #fff0f0;
    border: 1px solid #a81f23;
    border-radius: 4px;
    color: #a81f23;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ─── 完了モーダル ──────────────────────────────────────── */
.formnest-modal-overlay {
    background: rgba(40, 36, 37, 0.6);
}

.formnest-modal-content {
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(40, 36, 37, 0.2);
    max-width: 480px;
}

.formnest-modal-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid #ddd5d5;
}

.formnest-modal-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #282425;
    margin: 0;
}

.formnest-modal-close {
    top: 20px;
    right: 20px;
    color: #ada4a4;
    font-size: 20px;
    transition: color 0.2s ease;
}

.formnest-modal-close:hover {
    color: #282425;
}

.formnest-modal-body {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: #564e4e;
}

.formnest-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #ddd5d5;
    text-align: right;
}

.formnest-modal-ok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 24px;
    background: #a81f23;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.formnest-modal-ok:hover {
    opacity: 0.85;
}

/* ─── スマートフォン対応 ────────────────────────────────── */
@media (max-width: 768px) {
    .formnest-form-row + .formnest-form-row {
        margin-top: 24px;
    }

    input[type='number'].formnest-input {
        max-width: 100%;
    }

    .form_submit_btn_area {
        margin-top: 32px;
    }

    .formnest-submit-button {
        width: 100%;
        font-size: 16px;
    }

    .formnest-form-confirm {
        max-width: 100%;
    }

    .formnest-confirm-buttons .form_submit_btn_area {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .formnest-button-back,
    .formnest-complete-button {
        width: 100%;
        font-size: 16px;
    }
}

/* ============================================================
   Contact Form 7 スタイル上書き
   /contact/ ページのフォームプラグインをFormNestから
   Contact Form 7 + Contact Form 7 Multi-Step Forms に切り替えたため、
   上記FormNestのデザインを新しいマークアップに移植したもの
   Figma: F01-1-PC 派遣登録者向けフォーム (node 285:2583)
   ============================================================ */

/* ─── コンテナ ─────────────────────────────────────────────── */
.contact-form {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.page-template-default .entry-content .contact-form {
    margin-top: 40px;
}

/* ─── 各項目（行） ─────────────────────────────────────────── */
.contact-form > p {
    margin: 0;
}

.contact-form > p + p {
    margin-top: 32px;
}

.contact-form label {
    display: block;
    width: 100%;
}

.contact-form label strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #282425;
}

/* 必須バッジ（FormNestの .formnest-required 相当） */
.contact-form p:has(.wpcf7-validates-as-required) label strong::after {
    content: '必須';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #7d171a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border-radius: 2px;
    white-space: nowrap;
}

.contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* ─── 入力フィールド ───────────────────────────────────────── */
.contact-form .wpcf7-form-control {
    width: 100%;
    height: 52px;
    padding: 0 12px;
    border: 1px solid #ddd5d5;
    border-radius: 4px;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #282425;
    appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .wpcf7-form-control::placeholder {
    color: #837777;
}

.contact-form .wpcf7-form-control:focus {
    outline: none;
    border-color: #564e4e;
    box-shadow: 0 0 0 2px rgba(86, 78, 78, 0.15);
}

.contact-form textarea.wpcf7-form-control {
    height: auto;
    min-height: 160px;
    padding: 12px;
    resize: vertical;
}

.contact-form select.wpcf7-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23564e4e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ─── エラー状態 ───────────────────────────────────────────── */
.contact-form .wpcf7-form-control.wpcf7-not-valid {
    border-color: #a81f23 !important;
    box-shadow: 0 0 0 1px #a81f23 !important;
}

.contact-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    padding: 0;
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #a81f23;
}

/* ─── プライバシーポリシー同意チェックボックス ─────────────── */
/* wpcf7-form-control クラスを共有しているため、テキスト入力用のborder等を解除する */
.contact-form .wpcf7-form-control.wpcf7-acceptance {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}

.privacy-check {
    margin-top: 30px;
}

.privacy-check .wpcf7-list-item {
    display: block;
    margin: 0;
}

.privacy-check label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.privacy-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    border: 2px solid #837777;
    border-radius: 2px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.privacy-check input[type="checkbox"]:checked {
    border-color: #a81f23;
    background: #a81f23 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.privacy-check input[type="checkbox"]:focus-visible {
    outline: 2px solid #a81f23;
    outline-offset: 2px;
}

.privacy-check .wpcf7-list-item-label {
    font-size: 16px;
    line-height: 1.4;
    color: #282425;
}

.privacy-check .wpcf7-list-item-label a {
    color: #a81f23;
    text-decoration: underline;
}

.privacy-check .wpcf7-list-item-label a:hover {
    opacity: 0.75;
}

/* ─── フォーム全体の応答メッセージ ─────────────────────────── */
.wpcf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-mail-sent-ng .wpcf7-response-output,
.wpcf7-spam-blocked .wpcf7-response-output,
.wpcf7-aborted .wpcf7-response-output {
    background: #fff0f0;
    border: 1px solid #a81f23;
    color: #a81f23;
}

.wpcf7-mail-sent-ok .wpcf7-response-output {
    background: #f0faf4;
    border: 1px solid #4caf50;
    color: #1b5e20;
}

/* ─── 送信ボタン ───────────────────────────────────────────── */
.contact-form > p:has(input.wpcf7-submit) {
    margin-top: 48px;
    text-align: center;
}

.contact-form input.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 320px;
    max-width: 100%;
    min-width: 200px;
    height: 52px;
    padding: 0 24px;
    background: #a81f23;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.contact-form input.wpcf7-submit:hover:not(:disabled) {
    opacity: 0.85;
}

.contact-form input.wpcf7-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ─── 確認画面: 戻る・送信ボタン ───────────────────────────── */
/* .confirm-buttons で囲われている場合／囲われていない場合の両方に対応するため、
   外側のラッパーではなく「戻るボタンを含む行(p)」自体を基準に判定する */
.wpcf7-form p:has(.wpcf7-previous) {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 0;
}

/* 縦積みだった名残の<br>を横並びレイアウトでは非表示にする */
.wpcf7-form p:has(.wpcf7-previous) br {
    display: none;
}

.wpcf7-previous,
.wpcf7-form p:has(.wpcf7-previous) input.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 320px;
    max-width: 100%;
    min-width: 200px;
    height: 52px;
    padding: 0 24px;
    border-radius: 4px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.wpcf7-previous {
    background: #ffffff;
    color: #282425;
    border: 1px solid #564e4e;
}

.wpcf7-form p:has(.wpcf7-previous) input.wpcf7-submit {
    background: #a81f23;
    color: #ffffff;
    border: none;
}

.wpcf7-previous:hover:not(:disabled),
.wpcf7-form p:has(.wpcf7-previous) input.wpcf7-submit:hover:not(:disabled) {
    opacity: 0.85;
}

.wpcf7-previous:disabled,
.wpcf7-form p:has(.wpcf7-previous) input.wpcf7-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ─── スマートフォン対応 ───────────────────────────────────── */
@media (max-width: 768px) {
    .page-template-default .entry-content .contact-form {
        margin-top: 32px;
    }

    .contact-form > p + p {
        margin-top: 24px;
    }

    .contact-form > p:has(input.wpcf7-submit) {
        margin-top: 32px;
    }

    .contact-form input.wpcf7-submit {
        width: 100%;
        font-size: 16px;
    }

    /* 送信ボタンを上・戻るボタンを下に（HTML順は戻る→送信のためcolumn-reverse） */
    .wpcf7-form p:has(.wpcf7-previous) {
        /* flex-direction: column-reverse; */
        gap: 12px;
    }

    .wpcf7-previous,
    .wpcf7-form p:has(.wpcf7-previous) input.wpcf7-submit {
        width: 100%;
        font-size: 16px;
    }
}

.confirm-buttons .wpcf7-form-control {
    width: 50% !important;
}
.wpcf7-spinner {
    width: 0;
    margin: 0;
}

.contact-form br {
    display: none;
}

.entry-content a:not(.btn-outline) {
    color: #0000FF;
    text-decoration: underline;
}