.slrd-form {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.slrd-form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.slrd-form-label {
  width: 220px;
  flex-shrink: 0;
}

.slrd-form-label label,
.slrd-form-label span,
.date-label {
  font-weight: bold;
}

.date-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
    min-width: 120px;
}

.slrd-form-field {
  flex: 1;
}

.slrd-form-field input,
.slrd-form-field select,
.slrd-form-field textarea {
  width: 100%;
  box-sizing: border-box;
}

.slrd-form-field textarea {
  min-height: 180px;
}

.slrd-required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 1.2rem;
  background: #d00;
  color: #fff;
  border-radius: 4px;
}

/* チェックボックス */
.slrd-checkbox-group .wpcf7-list-item {
  display: inline-block;
  margin: 0 16px 8px 0;
}

.slrd-checkbox-group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.slrd-checkbox-group input[type="checkbox"] {
  display: none !important;
}

.slrd-checkbox-group .wpcf7-list-item-label {
  display: inline-flex !important;
  align-items: center;
  line-height: 1.5;
}

.slrd-checkbox-group input[type="checkbox"] + .wpcf7-list-item-label::before {
  font-family: "Material Symbols Outlined";
  content: "check_box_outline_blank";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 2.2rem;
  line-height: 1;
  color: #999;
}

.slrd-checkbox-group input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  content: "select_check_box";
  color: #F07A46;
}

/* 送信ボタン */

.slrd-form-submit {
  margin-top: 40px;
  text-align: center;
}

.slrd-form-submit input[type="submit"] {
  min-width: 240px;
}

/* SP */

@media (max-width: 768px) {

  .slrd-form-row {
    display: block;
  }

  .slrd-form-label {
    width: auto;
    margin-bottom: 8px;
  }

  .slrd-form-submit input[type="submit"] {
    width: 100%;
    min-width: 0;
  }

}