/* Contact Form 7 x 点と線のデザイン工房 */
.wpcf7 form .dl-form,
.dl-form { max-width: 880px; margin: 0 auto; }

.dl-form__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 50px; }
.dl-form__row label { font-weight: 600; color: #333; }

.dl-input, .dl-textarea, .wpcf7 input[type="text"].dl-input, .wpcf7 input[type="email"].dl-input,
.wpcf7 input[type="tel"].dl-input, .wpcf7 select.dl-input, .wpcf7 textarea.dl-textarea {
  width: 100%;
  border: 1px solid #87A3A7;
  border-radius: 12px;
  padding: 18px 14px;
  font-size: 16px;
  line-height: 1.6;
  background: #f9fffe;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.dl-input:focus, .dl-textarea:focus {
  outline: none;
  border-color: var(--c-accent, #87A3A7);
  box-shadow: 0 0 0 3px rgba(135,163,167,.25);
}

.dl-textarea, .wpcf7 textarea.dl-textarea { min-height: 160px; resize: vertical; }

.dl-form__actions { display: flex; justify-content: center; margin-top: 10px; }
.dl-btn.wpcf7-submit { border: 1px solid var(--c-accent,#87A3A7); color: var(--c-accent,#87A3A7);width: 100%;
  padding: 10px 100px; height: 54px; border-radius: 50px; display: inline-flex; align-items:center; gap:10px;
  background: transparent; cursor: pointer; transition: .25s ease; font-weight: 600; }
.dl-btn.wpcf7-submit:hover { background: var(--c-accent,#87A3A7); color: #fff; }

.dl-form__agree { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #555; }
.dl-form__agree input[type="checkbox"] { width: 18px; height: 18px; }

.wpcf7 form .wpcf7-not-valid { border-color: #e57373; }
.wpcf7 form .wpcf7-not-valid-tip { color: #e57373; font-size: 13px; margin-top: 4px; }
.wpcf7 form .wpcf7-response-output { margin: 16px 0; padding: 12px 14px; border-radius: 12px; }
.wpcf7 form.sent .wpcf7-response-output { background: #e8f5e9; border: 1px solid #87A3A7; color: #87A3A7; }
.wpcf7 form.invalid .wpcf7-response-output { background: #fff3e0; border: 1px solid #ffcc80; color: #e65100; }
.wpcf7 form.failed .wpcf7-response-output { background: #ffebee; border: 1px solid #ef9a9a; color: #b71c1c; }

@media (max-width: 600px) {
  .dl-form__row { margin-bottom: 14px; }
  .dl-btn.wpcf7-submit { width: 100%; justify-content: center; }
}