@charset "UTF-8";

.top_cf_conItem {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px;
  border-bottom: solid 2px #f08300;
  font-weight: 600;
  font-size: 12px;
}

.top_cf_conItem .req, .top_cf_conItem .free {
  width: 100%;
  max-width: 100px;
  padding-left: 35px;
  position: relative;
}

.top_cf_conItem .req::before {
  content: "必須";
  font-size: 10px;
  color: #fff;
  background: #ff0000;
  font-weight: 600;
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top_cf_conItem label.free::before {
  content: "任意";
  font-size: 10px;
  color: #fff;
  background: #b6b6b6;
  font-weight: 600;
  padding: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.wpcf7-list-item {
  width: 100%;
}

.top_cf_txtBox,.top_cf_txtAreaBox {
  width: 230px;
  border: solid 2px #b6b6b6;
  padding: 5px;
  border-radius: 5px;
  background: #fffde0;
}

.top_cf_txtAreaBox {
  height: 75px;
}

.top_cf_txtBox::placeholder,.top_cf_txtAreaBox::placeholder {
  font-size: 10px;
}

.top_cf_submitBtn {
  background: linear-gradient(180deg, rgb(255, 150, 0) 50%, rgb(255, 98, 0) 100%);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: block;
  margin: 10px auto -20px;
  width: 220px;
  font-size: 18px;
  font-weight: 600;
}