.flow {
  margin-top: 100rem;
}
.flow ul {
  width: 487rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  display: flex;
}
.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;
}
.flow ul li .text {
  text-align: center;
  font-weight: bold;
  color: #9B9A93;
  margin-top: 10rem;
}
.flow ul li.active .num_wrap {
  background-color: #000A67;
}
.flow ul li.active .text {
  color: #000A67;
}
.flow ul li:nth-child(2) {
  position: relative;
}
.flow ul li:nth-child(2)::before, .flow ul li:nth-child(2)::after {
  content: "";
  display: block;
  position: absolute;
  width: 140rem;
  height: 2px;
  background-color: #9B9A93;
  top: 28rem;
}
.flow ul li:nth-child(2)::before {
  left: 65rem;
}
.flow ul li:nth-child(2)::after {
  right: 65rem;
}

.bf_text {
  text-align: center;
  margin-top: 80rem;
}

table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: unset;
  border-spacing: 0 35rem;
  margin-top: 60rem;
}
table td {
  width: 100%;
  vertical-align: top;
}
table td .ex {
  color: #9B9A93;
  font-size: 16rem;
}
table th {
  text-align: left;
  width: 250rem;
  font-weight: bold;
  display: flex;
  gap: 35rem;
  margin-right: 35rem;
  align-items: center;
}
table.confirm_table {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.privacy {
  text-align: center;
}
.privacy label {
  font-weight: bold;
}
.privacy .note {
  margin-bottom: 20rem;
}
.privacy .privacy_txt {
  text-align: left;
  padding: 20rem;
  height: 300rem;
  overflow: auto;
  resize: vertical;
  min-height: 300rem;
  margin: 0 0 10rem;
  border: 1px solid #ccc;
}
.privacy .privacy_txt h3 {
  text-align: center;
  font-size: 24rem;
  font-weight: 500;
  margin: 0 0 40rem;
}
.privacy .privacy_txt ol {
  margin: 20rem 0 30rem;
}

.completion {
  text-align: center;
  margin-top: 80rem;
  margin-bottom: 80rem;
}

.error {
  color: rgb(172, 1, 1);
}

input[type=text],
input[type=textarea],
textarea,
select {
  border: 2px solid #D9D9D9;
  width: 100%;
  height: 100%;
  padding-left: 20rem;
  padding-right: 20rem;
}

input[type=textarea],
textarea {
  padding-top: 20rem;
  padding-bottom: 20rem;
  max-height: 500rem;
  min-height: 160rem;
  overflow: auto;
  resize: vertical;
}

input[type=text],
select {
  height: 60rem;
}

.arrow_bottom {
  position: relative;
}
.arrow_bottom::after {
  background-image: none;
  content: "";
  width: 15rem;
  height: 15rem;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(135deg);
  position: absolute;
  border-color: inherit;
  bottom: 30rem;
  right: 40rem;
  pointer-events: none;
}

label,
input[type=checkbox],
select,
button {
  cursor: pointer;
}

input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 30rem;
  height: 30rem;
  border: 2px solid #D9D9D9;
  border-radius: 5rem;
  vertical-align: middle;
}
input[type=checkbox]:checked:before {
  position: absolute;
  top: 1rem;
  left: 8rem;
  transform: rotate(50deg);
  width: 7rem;
  height: 15rem;
  border-right: 4rem solid #000A67;
  border-bottom: 4rem solid #000A67;
  content: "";
}

form {
  margin-bottom: 80rem;
}

.any,
.required {
  font-weight: bold;
  width: 60rem;
  height: 31rem;
  line-height: 31rem;
  border-radius: 10rem;
  text-align: center;
  font-size: 18rem;
}

.any {
  background-color: #D9D9D9;
  color: #3A3A3A;
}

.required {
  background-color: #D95B5B;
  color: #fff;
}

.confirmation {
  display: flex;
  justify-content: center;
  gap: 50rem;
  margin-top: 80rem;
  flex-direction: row-reverse;
  text-align: center;
}
.confirmation .btn_more {
  /*span {
    width: 358rem;
  }

  &.disable {
    span {
      pointer-events: none;
      background-color: #9fa3a3;
    }
  }*/
}
.confirmation .btn_more.disable button {
  pointer-events: none;
  opacity: 0.3;
}
.confirmation .btn_more.prev button::after {
  margin-top: 1rem;
  right: auto;
  left: 1.5em;
  transform: translateY(-50%) scaleX(-1);
}

.confirm_button {
  /*margin-top: 80rem;*/
  margin-top: 40rem;
  text-align: center;
}
.confirm_button button {
  margin-left: auto;
  margin-right: auto;
}
.confirm_button button.disable {
  cursor: not-allowed;
  /*pointer-events: none;*/
  opacity: 0.3;
}
.confirm_button button.disable::before {
  transform: scaleX(0);
}
@media (hover: hover) and (pointer: fine) {
  .confirm_button button.disable:hover {
    color: #000A67;
    border: 1px solid #000A67;
    background-color: #fff;
  }
  .confirm_button button.disable:hover::after {
    background-image: url(/assets/img/ico_arrow.svg);
  }
}
.confirm_button button.disable span {
  /*cursor: not-allowed;*/
  /*background-color: #fff;*/
  /*color: #ccc;*/
}
.confirm_button button.disable span:hover {
  border: none;
}
.confirm_button button.disable span::after {
  content: unset;
}
.confirm_button button.checked {
  pointer-events: all;
  opacity: 1;
}

@media screen and (max-width: 680px) {
  .flow {
    margin-top: 50rem;
  }
  .flow ul {
    width: 245rem;
  }
  .flow ul li .num_wrap {
    width: 35rem;
    height: 35rem;
  }
  .flow ul li:nth-child(2)::before, .flow ul li:nth-child(2)::after {
    width: 45rem;
    height: 1px;
    top: 20rem;
  }
  .flow ul li:nth-child(2)::before {
    left: 50rem;
  }
  .flow ul li:nth-child(2)::after {
    right: 50rem;
  }
  .bf_text {
    margin-top: 35rem;
  }
  .arrow_bottom {
    position: relative;
  }
  .arrow_bottom::after {
    content: "";
    width: 10rem;
    height: 10rem;
    border-top: solid 1px;
    border-right: solid 1px;
    right: 15rem;
    bottom: 20rem;
  }
  table {
    width: 100%;
    border-collapse: unset;
    margin-top: 0;
  }
  table td {
    display: block;
    width: 100%;
    margin-top: 10rem;
  }
  table td .ex {
    font-size: 12rem;
  }
  table td label:nth-child(n+2) {
    margin-top: 15rem;
  }
  table th {
    gap: 5rem;
    margin-right: unset;
    width: auto;
  }
  table tr:nth-child(8) th {
    display: flex;
    padding-left: 0;
  }
  table.confirm_table {
    width: 100%;
  }
  .privacy {
    width: 100%;
  }
  .privacy .text_wrap {
    margin-left: 0;
    text-align: center;
  }
  .privacy .check {
    margin-top: 10rem;
    gap: 5rem;
    margin-left: 0;
    justify-content: center;
  }
  .privacy .privacy_txt h3 {
    font-size: 18rem;
  }
  .error {
    font-size: 12rem;
  }
  input[type=text],
  select {
    height: 40rem;
  }
  input[type=text],
  input[type=textarea],
  textarea {
    padding-left: 10rem;
    padding-right: 10rem;
    font-size: 16rem;
  }
  input[type=textarea],
  textarea {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 12rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 12rem;
  }
  input[type=checkbox] {
    width: 20rem;
    height: 20rem;
    border-radius: 2rem;
  }
  input[type=checkbox]:checked:before {
    left: 5rem;
    width: 5rem;
    height: 10rem;
  }
  .any,
  .required {
    width: 35rem;
    height: 25rem;
    line-height: 25rem;
    border-radius: 5rem;
    font-size: 10rem;
  }
  .btn span {
    width: 300rem;
    height: 40rem;
    line-height: 40rem;
  }
  .btn.btnBack {
    margin-top: 10rem;
  }
  .confirmation {
    margin-top: 30rem;
    /*display: block;*/
    gap: 10rem;
  }
  .confirmation .btn_more button {
    /*width: 80%;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
  }
  .confirmation .btn_more span {
    /*width: 212rem;*/
    width: -moz-max-content;
    width: max-content;
  }
  .confirmation .btn_more:nth-child(2) {
    /*margin-top: 10rem;*/
  }
  .confirm_button {
    margin-top: 30rem;
    text-align: center;
  }
  .confirm_button button {
    padding: 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=contact.css.map */