/* ラベル */
.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #4e342e; /* 深いグリーン系 */
  text-align: left;
  text-indent:20px;
}

/* テキスト・メール・電話・セレクト・テキストエリア共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #4e342e;
  border-radius: 30px;          /* 丸みを強調 */
  background: #f7f7f7;          /* 薄いグリーンの背景 */
  font-size: 15px;
  box-sizing: border-box;
  margin-bottom: 5px;
  margin-top:10px;
}

/* テキストエリアだけは角丸を少し緩める */
.wpcf7-form textarea {
  border-radius: 12px;
  min-height: 160px;
}

/* 送信ボタン */
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid #4e342e;
  border-radius: 12px;
  background: transparent;
  color: #4e342e;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background: #4e342e;
  color: #fff;
}