body {
    background-color: #111;
  }

  .contact-page .wpcf7-form {
    background-color: #111;
    color: #fff;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .contact-page .wpcf7-form p {
    text-align: center;
  }

  /* ラベル */
  .contact-page .wpcf7-form label {
    color: #ccc;
    font-weight: bold;
  }

  /* テキスト入力・メールアドレス・タイトル */
  .contact-page .wpcf7-form input[type="text"],
  .contact-page .wpcf7-form input[type="email"],
  .contact-page .wpcf7-form textarea {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
  }

  /* プレースホルダー */
  .contact-page .wpcf7-form input::placeholder,
  .contact-page .wpcf7-form textarea::placeholder {
    color: #888;
  }

  /* 送信ボタン */
  .contact-page .wpcf7-submit {
    background-color: #00ff99;
    border: none;
    color: #111;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .contact-page .wpcf7-submit:hover {
    background-color: #00cc88;
  }

  /* エラーメッセージ */
  .contact-page .wpcf7-not-valid-tip {
    color: #ff6666;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: center;
  }

  /* 成功メッセージ */
  .contact-page .wpcf7-response-output {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #222;
    color: #00ff99;
    text-align: center;
  }

  .turnstile-center {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }
