@charset "utf-8";
.dl_form dt {
  background-color: var(--primary_bg01);
  padding: 5px;
}
.dl_form dd {
  margin-bottom: 1.5em;
}
.dl_form .form_text {
  border: 1px solid var(--line);
  padding: 10px;
  margin: 1em auto;
  width: 100%;
  background-color: #fff;
}
.dl_form .form_text.min {
  max-width: 120px;
}
.dl_form .radio_wrap {
  display: block;
  margin: 1em auto;
}
.dl_form .label {
  position: relative;
  padding: 0px 0 0 1.2em;
  margin-right: 1em;
}
.dl_form .label::after,
.dl_form .label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.dl_form .label::after {
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.dl_form .label::before {
  left: 3px;
  width: 11px;
  height: 11px;
  background-color: var(--primary_sub);
  border-radius: 50%;
  opacity: 0;
}
.dl_form input[type=radio]:checked + .label::before,.dl_form input[type=checkbox]:checked + .label::before{
  opacity: 1;
}
.dl_form .label:hover::after {
  border-color: var(--primary_sub);
}
.dl_form .checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.dl_form .checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}

.dl_form .checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 50px;
  cursor: pointer;
}

.checkbox:checked {
  background-color: var(--primary_sub);;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.ul_submit {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  margin: 30px auto;
  max-width: 500px;
}
.ul_submit li {
  width: 40%;
}
.ul_submit li .btn {
  width: 100%;
  max-width: 150px;
}
.ul_submit .btn_sub {
  background-color: var(--notes);
  border: 1px solid var(--notes);
}
.ul_submit .btn_sub:hover {
  color: #fff;
  opacity: .6;
}
@media (min-width: 1367px) {

}
@media (max-width:1024px) {

}
@media (min-width: 769px) {

}
@media (max-width: 768px) {
  .dl_form .label {
    display: block;
    margin-top: -20px;
  }
}
@media screen and (max-width: 480px) {

}
