/* Contact Form 7 - ATOMica CROSS Theme */

/* --- フォームレイアウト --- */
.cf7-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf7-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf7-field-group p {
  display: grid;
  gap: 4px;
}

.cf7-textarea-group {
  margin-top: 16px;
}

.cf7-submit-wrapper {
  margin-top: 10px;
}

/* --- ラベル --- */
.cf7-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #0a0a0a;
  line-height: 1.25rem;
  display: block;
}

.cf7-required {
  color: #fb2c36;
}

/* --- CF7 span ラッパー --- */
#contact .wpcf7-form-control-wrap {
  display: block;
}

/* --- テキスト系インプット --- */
#contact .wpcf7-form input[type="text"],
#contact .wpcf7-form input[type="email"],
#contact .wpcf7-form input[type="tel"] {
  width: 100%;
  background-color: #f8f8fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  height: 46px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #0a0a0a;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s;
}

#contact .wpcf7-form input[type="text"]:focus,
#contact .wpcf7-form input[type="email"]:focus,
#contact .wpcf7-form input[type="tel"]:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

/* --- テキストエリア --- */
#contact .wpcf7-form textarea {
  width: 100%;
  background-color: #f8f8fa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  height: 106px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #0a0a0a;
  line-height: 1.25rem;
  resize: none;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s;
}

#contact .wpcf7-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.3);
}

/* --- 送信ボタン --- */
#contact .wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  background-color: #168398;
  border: none;
  border-radius: 9999px;
  height: 54.5px;
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s;
}

#contact .wpcf7-form input[type="submit"]:hover {
  background-color: #1a96ae;
}

/* --- プライバシー文 --- */
.cf7-privacy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #717182;
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
}

/* --- バリデーションエラー --- */
#contact .wpcf7-not-valid-tip {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #fb2c36;
  margin-top: 4px;
  display: block;
}

#contact .wpcf7-form input.wpcf7-not-valid,
#contact .wpcf7-form textarea.wpcf7-not-valid {
  border-color: #fb2c36 !important;
}

/* --- 送信結果メッセージ --- */
#contact .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  border: none;
}

#contact .wpcf7-mail-sent-ok {
  background-color: #e8f8fa;
  color: #168398;
}

#contact .wpcf7-validation-errors,
#contact .wpcf7-spam-blocked,
#contact .wpcf7-mail-sent-ng {
  background-color: #fef2f2;
  color: #fb2c36;
}

#contact .wpcf7-spinner {
  position: absolute;
}