/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 14 2025 | 07:20:17 */
.custom-form {
  margin: 0 auto;
  /* 中央に配置 */
  padding: 20px;
  /* 元のデザインの余白 */
　box-sizing: border-box;
  /* パディング込みで幅を計算 */
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  max-width: 1000px;
  width: 100%;
}

/* ラベル */
.custom-form label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

/* 必須マーク */
.custom-form .required {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  font-size: 12px;
  color: #fff;
  background-color: #0065B2;
  border-radius: 3px;
  font-weight: bold;
}

/* 入力フィールド */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #0065B2;
  border-radius: 5px;
  background: #f8f9fa;
  font-size: 16px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
  /* ←これで右にはみ出さない */
}

.custom-form input[type="text"]:focus,
.custom-form input[type="email"]:focus,
.custom-form input[type="tel"]:focus,
.custom-form textarea:focus {
  border-color: #0065B2;
  outline: none;
  background: #DFF2FC;
}

/* 見本の文字色 */
.custom-form input::placeholder,
.custom-form textarea::placeholder {
  color: #a3a3a3; /* 好きな色に変更 */
}

/* 送信ボタン */
.custom-form input[type="submit"] {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background: #0065B2;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-form input[type="submit"]:hover {
  background: #DFF2FC;
}

/* 送信完了メッセージのカスタマイズ */
.wpcf7 form.sent .wpcf7-response-output {
  max-width: 800px;
  /* フォーム全体の最大幅を指定し、中央寄せでバランスを整える */
  margin: 20px auto 0 auto;
  /* 上 右 下 左 */
  background-color: #DFF2FC;
  /* 背景 */
  color: #333;
  /* 文字色 (暗めの色) */
  border: 2px solid #0065B2;
  /* メインカラーのボーダー */
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

/* メッセージの間に余白を追加 */
.wpcf7 form.sent .wpcf7-response-output p {
  font-size: 16px;
  line-height: 1.5;
}

/* メッセージが表示された時にアニメーション */
.wpcf7 form.sent .wpcf7-response-output {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* アニメーションの定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}