/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 25 2025 | 05:37:13 */
/* 全体スタイル */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  color: #fff;
}

/* ラベルと各フィールドのブロック */
.wpcf7-form p {
  margin-bottom: 1.5em;
}

/* 各入力欄（白背景） */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="file"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.6em 0.9em;
  font-size: 1rem;
  background-color: #ffffff;
  color: #333;
  border: none;
  border-radius: 6px;
  box-sizing: border-box;
  margin-top: 0.4em;
}

/* テキストエリア */
.wpcf7 textarea {
  height: 120px;
  resize: vertical;
}

/* プレースホルダー */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #999;
}

/* 通常状態の送信ボタン */
.wpcf7 input[type="submit"] {
  display: block;
  margin: 2em auto 0;
  background-color: #d1b875; /* 金色背景 */
  color: #0c2a43;            /* ネイビー文字 */
  font-size: 0.95rem;
  padding: 0.6em 2em;
  border: 1px solid #d1b875;
  border-radius: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ホバー時の送信ボタン */
.wpcf7 input[type="submit"]:hover {
  background-color: transparent;
  color: #d1b875;
  border: 1px solid #d1b875;
}

