.contact-form-styled {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}
.contact-form-styled .cf-field {
  margin-bottom: 28px;
}
.contact-form-styled .cf-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.contact-form-styled .cf-req {
  color: #c0392b;
  margin-right: 2px;
}
.contact-form-styled input[type='text'],
.contact-form-styled input[type='email'],
.contact-form-styled input[type='tel'],
.contact-form-styled select,
.contact-form-styled textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  background: #fdf6ee;
  color: #333;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form-styled input[type='text']:focus,
.contact-form-styled input[type='email']:focus,
.contact-form-styled input[type='tel']:focus,
.contact-form-styled select:focus,
.contact-form-styled textarea:focus {
  box-shadow: 0 0 0 2px rgba(180, 140, 80, 0.3);
}
.contact-form-styled input::placeholder,
.contact-form-styled textarea::placeholder {
  color: #bbb;
}
.contact-form-styled select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=8%3E%3Cpath d=M1 1l5 5 5-5 stroke=%23999 stroke-width=1.5 fill=none/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form-styled textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-styled .cf-tel-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form-styled .cf-tel-group .wpcf7-form-control-wrap {
  flex: 1;
}
.contact-form-styled .cf-tel-group input[type='tel'] {
  width: 100%;
  text-align: center;
}
.contact-form-styled .cf-tel-sep {
  font-size: 18px;
  color: #999;
  flex-shrink: 0;
}
.contact-form-styled .wpcf7-acceptance label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form-styled .wpcf7-acceptance input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #8b7355;
}
.contact-form-styled .cf-submit {
  text-align: center;
  margin-top: 36px;
}
.contact-form-styled .cf-submit input[type='submit'] {
  background: #8b7355;
  color: #fff;
  border: none;
  padding: 16px 64px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.1em;
}
.contact-form-styled .cf-submit input[type='submit']:hover {
  background: #6e5a42;
}
.contact-form-styled .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}
.contact-form-styled .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
}
