#contact {
  padding: 160px 20px 60px 20px;
  background-color: var(--bg-color_01);
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 60px 20px;
  }
}

#notice {
  width: min(1200px, 100%);
  margin: 60px auto 20px auto;
}

#form {
  width: min(1200px, 100%);
  padding: 40px 20px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fff;
}
#form #table {
  display: grid;
  gap: 40px;
}
#form #table section h4 {
  margin: 0 0 5px 0;
}
#form #table section h4 span {
  font-size: 11px;
  color: #FF573D;
  padding: 0 0 0 10px;
}
#form #table section input {
  width: 100%;
  padding: 10px;
  border: 1px solid #cacaca;
  font-size: 16px;
  font-weight: 400;
}
#form #table section input.checkbox {
  width: auto;
}
#form #table section textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border: 1px solid #cacaca;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
#form #table section .notes {
  font-size: 11px;
  margin: 5px 0 0 0;
}
#form #table section#split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #form #table section#split {
    grid-template-columns: 1fr;
  }
}
#form #table section a {
  font-size: 13px;
  color: #2d2d2d;
  text-decoration: underline;
}
#form #submit {
  width: 200px;
  margin: 40px auto 0 auto;
}
#form #submit #button {
  width: 100%;
  padding: 20px 0;
  border-radius: 2px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  background-color: #2d2d2d;
  transition: 0.3s;
}
#form #submit #button:hover {
  background-color: #83DCBF;
}

#check {
  width: min(1240px, 100%);
  padding: 0 20px 100px 20px;
  margin: auto;
}
#check .error_message {
  color: #FF573D;
}
#check #list {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 768px) {
  #check #list {
    margin: 0 0 40px 0;
  }
}
#check #list th {
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  padding: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  #check #list th {
    display: block;
    padding: 0 0 10px 0;
  }
}
#check #list td {
  text-align: justify;
  vertical-align: top;
  padding: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  #check #list td {
    display: block;
  }
}
#check #button {
  width: 440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #check #button {
    width: 200px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#check #button input {
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
#check #button input#submit {
  background-color: #2d2d2d;
}
#check #button input#submit:hover {
  background-color: #83DCBF;
}
#check #button input#back {
  background-color: #bdbdbd;
}
#check #button input#back:hover {
  background-color: #83DCBF;
}
#check #return {
  width: 200px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 40px auto 0 auto;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #bdbdbd;
}
#check #return:hover {
  background-color: #83DCBF;
}

#thanks {
  width: min(1240px, 100%);
  padding: 0 20px 100px 20px;
  margin: auto;
}
#thanks p {
  margin: 0 0 40px 0;
}
#thanks small {
  font-size: 13px;
}/*# sourceMappingURL=contact.css.map */