@media all and (min-width: 768px) {
  form a {
    text-decoration: none;
    color: #007bc2;
  }
  form .new_form {
    margin-bottom: 40px;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }
  form .new_form.type1 > dl > dt {
    border-bottom: 1px solid #e7e7e7;
  }
  form .new_form.type1 > dl > dd {
    padding: 10px 25px;
  }
  form .new_form.type2 > dl {
    display: flex;
  }
  form .new_form.type2 > dl > dt {
    width: 280px;
  }
  form .new_form.type2 > dl > dd {
    width: calc(100% - 280px);
    padding: 10px;
    border-left: 1px solid #e7e7e7;
  }
  form .new_form > dl {
    border-top: 1px solid #e7e7e7;
    overflow: hidden;
  }
  form .new_form > dl > dt, form .new_form > dl > dd {
    box-sizing: border-box;
    overflow: hidden;
  }
  form .new_form > dl > dt {
    padding: 10px 25px;
    line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    background: #f5f7f9;
  }
  form .new_form > dl > dt small {
    display: block;
    font-size: 14px;
    font-weight: normal;
  }
  form .new_form > dl > dd {
    line-height: 30px;
    font-size: 16px;
  }
  form .new_form > dl > dd input[type=text], form .new_form > dl > dd textarea {
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    font-size: 16px;
    line-height: 30px;
  }
  form .new_form > dl > dd input[type=text] {
    padding: 0 12px;
    height: 30px;
    box-sizing: border-box;
  }
  form .new_form > dl > dd input[type=text].w100 {
    margin-right: 10px;
    width: 100px;
  }
  form .new_form > dl > dd input[type=text].w250 {
    margin-right: 10px;
    width: 250px;
  }
  form .new_form > dl > dd input[type=text].w655 {
    width: 655px;
  }
  form .new_form > dl > dd input[type=text].w_full {
    width: 100%;
  }
  form .new_form > dl > dd textarea {
    padding: 12px;
    width: 100%;
  }
  form .new_form > dl > dd dl {
    margin: 10px 0;
  }
  form .new_form > dl > dd dl dt, form .new_form > dl > dd dl dd {
    vertical-align: top;
  }
  form .new_form > dl > dd dl dt {
    padding-right: 10px;
    display: inline-block;
  }
  form .new_form > dl > dd dl dd {
    display: inline-block;
  }
  form .new_form > dl > dd dl dd span {
    padding-right: 10px;
    display: inline-block;
  }
  form .new_form > dl > dd small {
    padding-top: 5px;
    display: block;
  }
  form .new_form > dl > dd span.require {
    color: #ff0000;
  }
  form .new_form > dl > dd ul {
    overflow: hidden;
  }
  form .new_form > dl > dd ul.abreast li {
    padding-right: 22px;
    float: left;
  }
  form .new_form > dl > dd ul.tandem li {
    margin-bottom: 5px;
  }
  form .new_form > dl > dd ul li {
    position: relative;
    background: #ffffff;
    line-height: 22px;
  }
  form .new_form > dl > dd ul li input[type=radio],
  form .new_form > dl > dd ul li input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  form .new_form > dl > dd ul li input[type=radio] + label,
  form .new_form > dl > dd ul li input[type=checkbox] + label {
    padding-left: 20px;
    display: block;
    position: relative;
    cursor: pointer;
  }
  form .new_form > dl > dd ul li input[type=radio] + label:before,
  form .new_form > dl > dd ul li input[type=checkbox] + label:before {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    border: 1px solid #007bc2;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 5px;
  }
  form .new_form > dl > dd ul li input[type=radio]:checked + label:before,
  form .new_form > dl > dd ul li input[type=checkbox]:checked + label:before {
    background: #007bc2;
  }
  form .new_form > dl > dd ul li input[type=radio] + label:before {
    border-radius: 50%;
  }
  form .new_form > dl > dd ul li input[type=checkbox] + label:before {
    border-radius: 3px;
  }
  form .new_form > dl > dd ul li textarea {
    margin-top: 5px;
    width: calc(100% - 22px);
    margin-left: 22px;
  }
  form .new_contact_btn {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  form .new_contact_btn li {
    padding: 0 16px;
  }
  form .new_contact_btn input {
    width: 210px;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.25;
    padding: 7px 33px;
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  form .new_contact_btn input:hover {
    opacity: 0.7;
  }
  form .new_contact_btn input.next {
    background: #007bc2;
    color: #ffffff;
  }
  form .new_contact_btn input.prev {
    background: #ececec;
    color: #333333;
  }
  form .form-contact .btn-primary {
    background: #ececec;
  }
}
@media all and (max-width: 767px) {
  form a {
    text-decoration: none;
    color: #007bc2;
  }
  form .new_form {
    margin-bottom: 30px;
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }
  form .new_form > dl {
    border-top: 1px solid #e7e7e7;
    overflow: hidden;
  }
  form .new_form > dl > dt, form .new_form > dl > dd {
    box-sizing: border-box;
    overflow: hidden;
    line-height: 21px;
    font-size: 15px;
  }
  form .new_form > dl > dt {
    padding: 6px 18px;
    border-bottom: 1px solid #e7e7e7;
    font-weight: bold;
    background: #f5f7f9;
  }
  form .new_form > dl > dt small {
    display: block;
    font-size: 11px;
    font-weight: normal;
  }
  form .new_form > dl > dd {
    padding: 18px;
  }
  form .new_form > dl > dd input[type=text], form .new_form > dl > dd textarea {
    border: 1px solid #b9b9b9;
    border-radius: 4px;
    line-height: 40px;
    font-size: 15px;
  }
  form .new_form > dl > dd input[type=text] {
    padding: 0 10px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
  }
  form .new_form > dl > dd input[type=text].w100 {
    width: 135px;
  }
  form .new_form > dl > dd input[type=text].sei {
    margin-right: 10px;
    width: calc(50% - 5px);
    float: left;
  }
  form .new_form > dl > dd input[type=text].mei {
    width: calc(50% - 5px);
  }
  form .new_form > dl > dd textarea {
    padding: 12px;
    width: 100%;
  }
  form .new_form > dl > dd dl {
    margin-bottom: 10px;
  }
  form .new_form > dl > dd dl:last-child {
    margin-bottom: 0;
  }
  form .new_form > dl > dd dl dt {
    margin-bottom: 10px;
  }
  form .new_form > dl > dd dl dd span {
    padding-right: 10px;
    display: inline-block;
  }
  form .new_form > dl > dd small {
    padding-top: 5px;
    display: block;
  }
  form .new_form > dl > dd span.require {
    color: #ff0000;
  }
  form .new_form > dl > dd ul {
    overflow: hidden;
  }
  form .new_form > dl > dd ul.abreast li {
    padding-right: 22px;
    float: left;
  }
  form .new_form > dl > dd ul.tandem li {
    margin-bottom: 5px;
  }
  form .new_form > dl > dd ul li {
    position: relative;
    background: #ffffff;
    line-height: 22px;
  }
  form .new_form > dl > dd ul li:last-child {
    margin-bottom: 0;
  }
  form .new_form > dl > dd ul li input[type=radio],
  form .new_form > dl > dd ul li input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  form .new_form > dl > dd ul li input[type=radio] + label,
  form .new_form > dl > dd ul li input[type=checkbox] + label {
    padding-left: 20px;
    display: block;
    position: relative;
    cursor: pointer;
  }
  form .new_form > dl > dd ul li input[type=radio] + label:before,
  form .new_form > dl > dd ul li input[type=checkbox] + label:before {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    border: 1px solid #007bc2;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 5px;
  }
  form .new_form > dl > dd ul li input[type=radio]:checked + label:before,
  form .new_form > dl > dd ul li input[type=checkbox]:checked + label:before {
    background: #007bc2;
  }
  form .new_form > dl > dd ul li input[type=radio] + label:before {
    border-radius: 50%;
  }
  form .new_form > dl > dd ul li input[type=checkbox] + label:before {
    border-radius: 3px;
  }
  form .new_form > dl > dd ul li textarea {
    margin-top: 5px;
    width: 100%;
  }
  form .new_contact_btn {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  form .new_contact_btn li {
    width: 50%;
  }
  form .new_contact_btn input {
    width: 100%;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.25;
    padding: 7px 33px;
    outline: none;
    border: none;
    font-weight: 500;
  }
  form .new_contact_btn input.next {
    background: #007bc2;
    color: #ffffff;
  }
  form .new_contact_btn input.prev {
    background: #ececec;
    color: #333333;
  }
  form .form-contact .btn-primary {
    background: #ececec;
  }
}/*# sourceMappingURL=new_form.css.map */