/******* Do not edit this file *******
Code Snippets Manager
Saved: Dec 18 2025 | 08:05:31 */
@charset "UTF-8";
/* ------------------------------
   東北660 お問い合わせフォーム基本レイアウト
   ------------------------------ */
.t660-contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}
/* 行 */
.t660-contact-form .cf7-row {
  margin-bottom: 20px;
}
/* ラベル */
.t660-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #111827;
  /* ダークグレー系 */
  margin-bottom: 6px;
}
/* 必須ラベル */
.t660-contact-form .cf7-required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: #e11d48;
  /* アクセント（赤系） */
  color: #fff;
  vertical-align: middle;
}
/* ------------------------------
   入力フィールド
   ------------------------------ */
.t660-contact-form .cf7-input, .t660-contact-form .cf7-textarea, .t660-contact-form .wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
/* テキストエリアだけ少し高く */
.t660-contact-form .cf7-textarea {
  min-height: 160px;
  resize: vertical;
}
/* プレースホルダ色 */
.t660-contact-form .cf7-input::placeholder, .t660-contact-form .cf7-textarea::placeholder {
  color: #9ca3af;
}
/* フォーカス時 */
.t660-contact-form .cf7-input:focus, .t660-contact-form .cf7-textarea:focus, .t660-contact-form .wpcf7-form-control.wpcf7-select:focus {
  outline: none;
  border-color: #f97316;
  /* オレンジ系アクセント */
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.18);
  background: #ffffff;
}
/* ------------------------------
   送信ボタン
   ------------------------------ */
.t660-contact-form .cf7-row--submit {
  text-align: center;
  margin-top: 28px;
}
.t660-contact-form .cf7-submit {
  display: inline-block;
  min-width: 220px;
  padding: 11px 32px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #111827;
  /* デフォルトはダークグレー（サイトのボタン色に合わせてOK） */
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.t660-contact-form .cf7-submit:hover {
  background: #f97316;
  /* ホバーでオレンジに変化 */
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.t660-contact-form .cf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* ------------------------------
   エラーメッセージ＆完了メッセージ
   ------------------------------ */
.t660-contact-form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 12px;
  color: #e11d48;
  /* 赤 */
}
.t660-contact-form .wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
}
/* バリデーションエラー時 */
.t660-contact-form .wpcf7-validation-errors, .t660-contact-form .wpcf7-acceptance-missing {
  border-color: #e11d48;
  background: #fef2f2;
  color: #7f1d1d;
}
/* 送信成功時 */
.t660-contact-form .wpcf7-mail-sent-ok {
  border-color: #10b981;
  background: #ecfdf5;
  color: #064e3b;
}
/* ------------------------------
   スマホ対応
   ------------------------------ */
@media (max-width: 640px) {
  .t660-contact-form {
    padding: 24px 16px;
  }
  .t660-contact-form .cf7-row {
    margin-bottom: 16px;
  }
}
/* ラベルと入力欄の隙間 */
.t660-contact-form label {
  margin-bottom: 12px;
}
/* 各行の下の余白 */
.t660-contact-form .cf7-row {
  margin-bottom: 28px;
}
/* 項目名と入力欄の隙間を広げる */
.t660-contact-form .wpcf7-form-control-wrap {
  display: block;
  /* ブロック化して上下マージンを効かせる */
  margin-top: 15px;
  /* ← 好きな数値に調整（例：8〜14px） */
}
