/*
Theme Name: arkhe-Child
Template: arkhe
Description: Arkheの子テーマです。
Version: 1.0
*/

/* フォーム全体 */
.estimate-form {
  max-width: 640px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 各入力ブロック */
.estimate-form .form-group {
  margin-bottom: 1.5rem;
}

/* ラベル */
.estimate-form label,
.estimate-form .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

/* インプット */
.estimate-form input[type="text"],
.estimate-form input[type="tel"],
.estimate-form input[type="email"],
.estimate-form input[type="date"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fdfdfd;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.estimate-form input:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
  outline: none;
}

/* チェックボックス */
.estimate-form .wpcf7-list-item {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.estimate-form .wpcf7-list-item label {
  font-weight: normal;
  cursor: pointer;
}

/* 同意文 */
.estimate-form .form-privacy {
  font-size: 0.85rem;
  color: #555;
}

/* 送信ボタン */
.estimate-form .form-submit input[type="submit"] {
  background: #0073aa;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}

.estimate-form .form-submit input[type="submit"]:hover {
  background: #005f8d;
}

.estimate-form .form-submit input[type="submit"]:active {
  transform: scale(0.98);
}
.form-submit {
	text-align: center;
}