/* お問い合わせフォーム - プライバシーポリシー同意 */
.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}

/* チェックボックスを強制表示 - reset.scssを上書き */
.contact-form__privacy input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"],
input[type="checkbox"][name="acceptance-policy"] {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 5px 0 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  background: white !important;
  border: 2px solid #333 !important;
  border-radius: 3px !important;
  vertical-align: middle !important;
}

.contact-form__privacy-label {
  font-size: 14px;
  cursor: pointer;
  line-height: 1.6;
}

.contact-form__privacy-label a {
  color: #1F6494;
  text-decoration: underline;
  font-weight: 600;
}

.contact-form__privacy-label a:hover {
  color: #164a73;
}

/* Contact Form 7のacceptanceフィールド調整 */
.wpcf7-form-control.wpcf7-acceptance {
  display: inline-block;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  display: inline;
  margin-left: 5px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .contact-form__privacy {
    gap: 8px;
  }
  
  .contact-form__privacy-label {
    font-size: 13px;
  }
}
