#contact {
  max-width: 830px;
  padding: 180px 15px 0 15px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  #contact {
    padding: 105px 15px 0 15px;
  }
}

.title_1 {
  color: #ef8e03;
}
@media screen and (max-width: 700px) {
  .title_1 {
    font-size: 13px;
  }
}

.title_2 {
  text-align: center;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 700px) {
  .title_2 {
    margin: 0 0 30px 0;
  }
}

.red {
  font-family: "Noto-Medium";
  font-size: 14px;
  color: #fff;
  padding: 2px 5px;
  border-radius: 5px;
  background-color: #c30d23;
}

#tip_breadcrumbs {
  margin: 0 0 60px 0;
}

#breadcrumbs {
  display: block;
  margin: 0 0 60px 0;
}
@media screen and (max-width: 700px) {
  #breadcrumbs {
    margin: 0 0 30px 0;
  }
}

#form {
  margin: 0 0 100px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: "Noto-Medium";
}

.item p {
  margin: 0 0 20px 0;
}
.item button, .item input, .item select, .item textarea {
  font-family: inherit;
  font-size: 100%;
}
.item input {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f8f8f8;
  font-size: 100%;
}
.item input::-moz-placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item input:-ms-input-placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item input::placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item select {
  width: 100%;
  padding: 20px 30px 20px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 16px;
  background-image: url(../../images/tip_pulldown.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px 12px;
  background-color: #f8f8f8;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.item select:invalid {
  color: #898989;
}
.item select option {
  color: #000;
}
.item select option:first-child {
  color: #898989;
}
.item textarea {
  width: 100%;
  height: 200px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  background-color: #f8f8f8;
}
.item textarea::-moz-placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item textarea:-ms-input-placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item textarea::placeholder {
  font-family: "Noto-Regular";
  font-size: 16px;
  color: #898989;
}
.item small {
  font-size: 60%;
}

#privacy {
  text-align: center;
}
#privacy a {
  color: #ea5514;
  text-decoration: underline;
}
#privacy a:hover {
  text-decoration: none;
}

#privacy_check {
  text-align: center;
}

.checkbox_custom {
  display: none;
}

.checkbox_parts {
  padding: 5px 0 0 40px;
  position: relative;
}
.checkbox_parts::before {
  width: 24px;
  height: 24px;
  content: "";
  display: block;
  border: 2px solid #595757;
  position: absolute;
  top: 0;
  left: 0;
}

.checkbox_custom:checked + .checkbox_parts::after {
  width: 18px;
  height: 18px;
  border: 1px solid #f39800;
  background-color: #f39800;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
}

#check {
  width: 380px;
  height: 90px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 700px) {
  #check {
    width: 70%;
    height: 70px;
  }
}

#check_button {
  width: 360px;
  height: 100px;
  font-family: "Noto-Medium";
  font-size: 24px;
  line-height: 1;
  color: #fff !important;
  text-align: center;
  display: block;
  background-color: #f39800;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  #check_button {
    width: 100%;
    height: 70px;
    font-size: 16px;
  }
}
#check_button:hover {
  cursor: pointer;
  opacity: 0.7;
}
#check_button:disabled {
  color: #898989 !important;
  background-color: #dcdedd;
}
#check_button:disabled:hover {
  opacity: 1;
  cursor: auto;
}

.l_cel {
  width: 100%;
  display: block;
  margin: 0 0 40px 0;
  font-family: "Noto-Medium";
}

.r_cel {
  width: 100%;
  display: block;
  padding: 0 0 0 1.5em;
  margin: 0 0 60px 0;
  font-family: "Noto-Medium";
}

#submit {
  width: 800px;
  margin: 0 0 100px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  #submit {
    width: 100%;
    margin: 0 0 70px 0;
  }
}

@media screen and (max-width: 700px) {
  #back_button, #submit_button {
    width: 45%;
  }
}

input[type=button],
input[type=submit] {
  width: 360px;
  height: 100px;
  font-family: "Noto-Medium";
  font-size: 24px;
  text-align: center;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  input[type=button],
input[type=submit] {
    width: 100%;
    height: 70px;
    font-size: 16px;
  }
}

input[type=button] {
  color: #898989;
  background-color: #dcdddd;
}

input[type=submit] {
  color: #fff !important;
  background-color: #f39800;
}

input[type=button]:hover,
input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}

#finish {
  margin: 0 auto 100px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#finish h2 {
  font-size: 28px;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 700px) {
  #finish h2 {
    font-size: 18px;
    margin: 0 0 20px 0;
  }
}
#finish p {
  margin: 0 0 40px 0;
}
#finish #return_top a {
  width: 360px;
  height: 100px;
  padding: 28px 0 0 0;
  margin: 0 auto;
  font-family: "Noto-Medium";
  font-size: 24px;
  color: #fff !important;
  text-align: center;
  display: block;
  background-color: #f39800;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  #finish #return_top a {
    width: 250px;
    height: 70px;
    padding: 20px 0 0 0;
    font-size: 16px;
  }
}
#finish #return_top a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=contact.css.map */