h1 {
  font-size: 40rem;
  margin-top: 50rem;
}

main {
  margin-top: 250rem;
}

.form_area .error {
  color: rgb(172, 1, 1);
}
.form_area input[type=text],
.form_area input[type=textarea],
.form_area textarea,
.form_area select {
  border: 2px solid #D9D9D9;
  width: 100%;
  height: 100%;
  padding-left: 20rem;
  padding-right: 20rem;
  color: inherit;
}
.form_area input[type=textarea],
.form_area textarea {
  padding-top: 20rem;
  padding-bottom: 20rem;
  max-height: 500rem;
  min-height: 160rem;
  overflow: auto;
  resize: vertical;
}
.form_area input[type=text],
.form_area select {
  height: 60rem;
}
.form_area .arrow {
  position: relative;
}
.form_area .arrow::after {
  content: "";
  width: 15rem;
  height: 15rem;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  border-color: inherit;
  top: 50%;
  transform: translateY(-75%) rotate(135deg);
  right: 40rem;
  pointer-events: none;
}
.form_area label,
.form_area input[type=checkbox],
.form_area select,
.form_area button {
  cursor: pointer;
}
.form_area .check input[type=checkbox] {
  display: none;
}
.form_area .check label {
  display: inline-block;
  padding-left: 40rem;
  font-weight: bold;
  position: relative;
}
.form_area .check label::before, .form_area .check label::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}
.form_area .check label::before {
  display: block;
  width: 30rem;
  height: 30rem;
  border: 2px solid #D9D9D9;
  border-radius: 5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.form_area .check label::after {
  display: none;
  top: -1rem;
  left: 9rem;
  transform: rotate(50deg);
  width: 12rem;
  height: 22rem;
  border-right: 4rem solid #E40012;
  border-bottom: 4rem solid #E40012;
}
.form_area .check input[type=checkbox]:checked + label::after {
  display: block;
}
.form_area .any,
.form_area .required {
  font-weight: bold;
  width: 60rem;
  height: 30rem;
  border-radius: 10rem;
  text-align: center;
  font-size: 18rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_area .any {
  background-color: #D9D9D9;
  color: #3A3A3A;
}
.form_area .required {
  background-color: #D95B5B;
  color: #fff;
}
.form_area .flow {
  margin-top: 100rem;
}
.form_area .flow ul {
  width: 487rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  display: flex;
}
.form_area .flow ul li .num_wrap {
  width: 56rem;
  height: 56rem;
  border-radius: 50px;
  background-color: #8c8c8c;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: bold;
}
.form_area .flow ul li .text {
  text-align: center;
  font-weight: bold;
  color: #9B9A93;
  margin-top: 10rem;
}
.form_area .flow ul li.active .num_wrap {
  background-color: #E40012;
}
.form_area .flow ul li.active .text {
  color: #E40012;
}
.form_area .flow ul li:nth-child(2) {
  position: relative;
}
.form_area .flow ul li:nth-child(2)::before, .form_area .flow ul li:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  width: 140rem;
  height: 2px;
  background-color: #9B9A93;
  top: 28rem;
}
.form_area .flow ul li:nth-child(2)::before {
  left: 65rem;
}
.form_area .flow ul li:nth-child(2)::after {
  right: 65rem;
}
.form_area .bf_text {
  text-align: center;
  margin-top: 80rem;
}
.form_area table {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-collapse: unset;
  border-spacing: 0 35rem;
  margin-top: 60rem;
  table-layout: fixed;
}
.form_area table th {
  padding-right: 1em;
  position: relative;
  width: 30%;
  text-align: left;
  font-weight: bold;
}
.form_area table th .th_content {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.form_area table td {
  width: 70%;
  vertical-align: top;
}
.form_area table td .ex {
  color: #9B9A93;
  font-size: 16rem;
}
.form_area table.confirm_table {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.form_area .privacy {
  text-align: center;
}
.form_area .privacy .note {
  margin-bottom: 20rem;
}
.form_area .submit_area {
  margin-top: 40rem;
  display: flex;
  justify-content: center;
  gap: 30rem;
}
.form_area .submit_area .btn_wrap {
  width: 260rem;
}
.form_area .submit_area .btn_wrap button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70rem;
  color: #fff;
  font-weight: bold;
  background-color: #E40012;
  border-radius: 5rem;
  position: relative;
}
.form_area .submit_area .btn_wrap button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16rem;
  width: 12rem;
  height: 12rem;
  border-top: 2rem solid #fff;
  border-right: 2rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.form_area .submit_area .btn_wrap .back_button {
  background-color: #fff;
  color: #E40012;
  border: 2px solid #E40012;
}
.form_area .submit_area .btn_wrap .back_button::after {
  right: auto;
  left: 16rem;
  border-top: 2rem solid #E40012;
  border-right: 2rem solid #E40012;
  transform: translateY(-50%) rotate(-135deg);
}
.form_area .submit_area .btn_wrap.btn_prev button {
  background-color: #fff;
  color: #E40012;
  border: 1px solid #E40012;
}
.form_area .submit_area .btn_wrap.btn_prev button::after {
  border-top-color: #E40012;
  border-right-color: #E40012;
  right: auto;
  left: 16rem;
  transform: translateY(-50%) rotate(225deg);
}
.form_area .completion {
  margin-top: 80rem;
  text-align: center;
}

.time {
  font-size: 20px;
}
.time label {
  display: block;
}
.time label + label {
  margin-top: 5px;
}

@media screen and (max-width: 680px) {
  h1 {
    font-size: 20rem;
    margin-top: 0;
  }
  main {
    margin-top: 100rem;
  }
  .form_area .error {
    font-size: 12rem;
  }
  .form_area input[type=text],
  .form_area select {
    height: 40rem;
  }
  .form_area input[type=text],
  .form_area input[type=textarea],
  .form_area textarea {
    padding-left: 10rem;
    padding-right: 10rem;
    font-size: 16rem;
  }
  .form_area select {
    font-size: 16rem;
  }
  .form_area input[type=textarea],
  .form_area textarea {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .form_area input::-moz-placeholder, .form_area textarea::-moz-placeholder {
    font-size: 12rem;
  }
  .form_area input::placeholder,
  .form_area textarea::placeholder {
    font-size: 12rem;
  }
  .form_area .check label {
    padding-left: 30rem;
  }
  .form_area .check label::before {
    width: 26rem;
    height: 26rem;
    border-radius: 4rem;
  }
  .form_area .check label::after {
    top: -1rem;
    left: 8rem;
    width: 10rem;
    height: 20rem;
  }
  .form_area .any,
  .form_area .required {
    width: 40rem;
    height: 26rem;
    border-radius: 5rem;
    font-size: 12rem;
  }
  .form_area .flow {
    margin-top: 50rem;
  }
  .form_area .flow ul {
    width: 245rem;
  }
  .form_area .flow ul li .num_wrap {
    width: 35rem;
    height: 35rem;
  }
  .form_area .flow ul li:nth-child(2)::before, .form_area .flow ul li:nth-child(2)::after {
    width: 45rem;
    height: 1px;
    top: 20rem;
  }
  .form_area .flow ul li:nth-child(2)::before {
    left: 50rem;
  }
  .form_area .flow ul li:nth-child(2)::after {
    right: 50rem;
  }
  .form_area .bf_text {
    margin-top: 35rem;
  }
  .form_area .arrow {
    position: relative;
  }
  .form_area .arrow::after {
    content: "";
    width: 10rem;
    height: 10rem;
    border-top-width: 1px;
    border-right-width: 1px;
    right: 15rem;
  }
  .form_area table {
    width: 100%;
    border-collapse: unset;
    margin-top: 0;
  }
  .form_area table th {
    width: auto;
    display: block;
  }
  .form_area table td {
    display: block;
    width: 100%;
    margin-top: 10rem;
  }
  .form_area table td .ex {
    font-size: 12rem;
  }
  .form_area table td label:nth-child(n+2) {
    margin-top: 15rem;
  }
  .form_area table.confirm_table {
    width: 100%;
  }
  .form_area .privacy {
    width: 100%;
  }
  .form_area .privacy .text_wrap {
    margin-left: 0;
    text-align: center;
  }
  .form_area .privacy .check {
    margin-top: 10rem;
    gap: 5rem;
    margin-left: 0;
    justify-content: center;
  }
  .form_area .submit_area {
    margin-top: 0;
    gap: 2%;
  }
  .form_area .submit_area .btn_wrap {
    width: 49%;
  }
  .form_area .submit_area .btn_wrap button {
    height: 45rem;
  }
  .form_area .submit_area .btn_wrap button::after {
    right: 12rem;
    width: 8rem;
    height: 8rem;
    border-top-width: 1px;
    border-right-width: 1px;
  }
  .form_area .completion {
    margin-top: 60rem;
    text-align: left;
  }
  .form_area table td.time {
    font-size: 16px;
  }
  .form_area table td.time label:nth-child(n+2) {
    margin-top: 5px;
  }
}/*# sourceMappingURL=contact.css.map */