/* フォーム全体 */
.cf7-custom-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f9f9fb;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* 各項目のブロック（余白を減らす） */
.cf7-custom-wrapper .cf7-field {
  margin-bottom: 16px;
}

.cf7-custom-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: 0;
  color: #333;
  font-size: 15px;
}

/* 入力欄 */
.cf7-custom-wrapper input[type="text"],
.cf7-custom-wrapper input[type="email"],
.cf7-custom-wrapper textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.cf7-custom-wrapper input:focus,
.cf7-custom-wrapper textarea:focus {
  border-color: #0073aa;
  outline: none;
}

/* 同意チェック欄 */
.cf7-custom-wrapper .cf7-consent {
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 12px;
}

/* 送信ボタン（横いっぱい） */
.cf7-custom-wrapper input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%; /* 横いっぱいに */
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.cf7-custom-wrapper input[type="submit"]:hover {
  background-color: #005f8d;
}
