/* ============================================================
   cf7.css — Contact Form 7 カスタムスタイル
   JGCテーマ専用デザイン
   ============================================================ */

/* ---------- フォームラッパー ---------- */
.wpcf7 {
  margin: 0;
}

.wpcf7 form {
  margin: 0;
}

/* ---------- フォームグループ ---------- */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ---------- テキスト入力・テキストエリア・セレクト ---------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1.5px solid rgba(0,0,0,0.12) !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif !important;
  color: #2D2D2D !important;
  background: #FFFFFF !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  margin-bottom: 0 !important;
}

.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9E9E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: #F96D00 !important;
  box-shadow: 0 0 0 3px rgba(249,109,0,0.12) !important;
}

.wpcf7 textarea {
  resize: vertical !important;
  min-height: 140px !important;
  line-height: 1.7 !important;
}

/* ---------- ラベル ---------- */
.wpcf7 label,
.wpcf7 .cf7-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 0.4rem;
}

/* ---------- フォーム行 ---------- */
.cf7-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cf7-group {
  margin-bottom: 1.2rem;
}

/* ---------- 送信ボタン ---------- */
.wpcf7 input[type="submit"] {
  display: block !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
  background-color: #F96D00 !important;
  color: #FFFFFF !important;
  border: 2px solid #F96D00 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.05em !important;
  margin-top: 1rem !important;
  -webkit-appearance: none !important;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #D95C00 !important;
  border-color: #D95C00 !important;
  box-shadow: 0 4px 16px rgba(249,109,0,0.35) !important;
  transform: translateY(-2px) !important;
}

.wpcf7 input[type="submit"]:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* ---------- バリデーションエラー ---------- */
.wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.3rem;
}

/* ---------- 送信結果メッセージ ---------- */
.wpcf7-response-output {
  margin: 1rem 0 0 !important;
  padding: 1rem 1.2rem !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  border: none !important;
}

/* 送信成功 */
.wpcf7-mail-sent-ok {
  background: rgba(249,109,0,0.07) !important;
  border: 1.5px solid #F96D00 !important;
  color: #D95C00 !important;
}

/* 送信失敗 */
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: rgba(231,76,60,0.07) !important;
  border: 1.5px solid #e74c3c !important;
  color: #c0392b !important;
}

/* バリデーションエラー */
.wpcf7-validation-errors {
  background: rgba(231,76,60,0.07) !important;
  border: 1.5px solid #e74c3c !important;
  color: #c0392b !important;
}

/* スパム */
.wpcf7-spam-blocked {
  background: rgba(231,76,60,0.07) !important;
  border: 1.5px solid #e74c3c !important;
  color: #c0392b !important;
}

/* ---------- スピナー ---------- */
.wpcf7 .ajax-loader {
  display: none !important;
}

/* ---------- チェックボックス・ラジオ ---------- */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto !important;
  accent-color: #F96D00;
  margin-right: 0.5rem;
}

.wpcf7 .wpcf7-list-item {
  margin: 0.3rem 0;
}

.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
}

/* ---------- required マーク ---------- */
.required-mark {
  display: inline-block;
  background: #F96D00;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 600px) {
  .cf7-row {
    grid-template-columns: 1fr;
  }
}