/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 17 2026 | 01:42:08 */
/* 全体 */
.flower-form {
  max-width: 860px;
  margin: 0 auto;
}

/* 各項目 */
.flower-form .form-item {
  background: #fff;
  border: 1px solid #eadfe2;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 22px;
}

/* pの余白リセット */
.flower-form p {
  margin: 0;
}

/* タイトル行 */
.flower-form .form-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #333;
  font-size: 1.05rem;
}

/* 必須 */
.flower-form .must {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d94f70;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
}

/* 補足ラベル */
.flower-form .sub-label {
  display: inline-flex;
  align-items: center;
  background: #f7edf0;
  color: #b64a63;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.78rem;
  line-height: 1.3;
}

/* 説明文 */
.flower-form .form-note {
  margin: 0 0 12px;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.8;
}

/* 入力欄 */
.flower-form input[type="text"],
.flower-form input[type="email"],
.flower-form input[type="tel"],
.flower-form input[type="date"],
.flower-form textarea,
.flower-form select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  background: #fff;
}

.flower-form textarea {
  min-height: 150px;
}

/* フォーカス */
.flower-form input:focus,
.flower-form textarea:focus,
.flower-form select:focus {
  border-color: #d94f70;
  box-shadow: 0 0 0 4px rgba(217, 79, 112, 0.12);
  outline: none;
}

/* ラジオボタン */
.flower-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flower-form .wpcf7-list-item {
  margin: 0 !important;
}

.flower-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.flower-form .wpcf7-list-item label:hover {
  background: #fff5f8;
  border-color: #d94f70;
}

/* リンク */
.flower-form a {
  color: #d94f70;
  text-decoration: underline;
}

/* 送信 */
.flower-form .form-submit {
  text-align: center;
  margin-top: 32px;
}

.flower-form .form-submit input[type="image"] {
  max-width: 320px;
  width: 100%;
  transition: 0.25s;
   background-color: #f7f7f700;
   border:none
}

.flower-form .form-submit input[type="image"]:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* スマホ */
@media (max-width: 600px) {
  .flower-form .form-item {
    padding: 18px;
    border-radius: 14px;
  }

  .flower-form .form-title {
    font-size: 1rem;
  }

  .flower-form .wpcf7-radio {
    flex-direction: column;
  }

  .flower-form .wpcf7-list-item label {
    width: 100%;
    border-radius: 12px;
  }
}