.form_wrap{
    padding: 10rem 0 5rem;
}
.contact_num{
    font-size: 3rem;
    margin-top: 5rem;
}
.details_list_bg_blue{
    margin-top:-2.5rem;
}
.details_list li h4{
    font-size: 2rem;
}
.details_list_bg_blue .num{
    font-size: 2.6rem;
    font-weight: bold;
}
.abs{
    color: #FF0000;
}
.form{
    width:100%;
    padding:4rem 0;
    margin-top: 4rem;
}
.form p{
    text-align: center;
    margin-bottom: 3rem;
}
.form table{
    max-width:1100px;
    width: 90%;
    text-align: left;
    margin-top: 2%;
    margin-right: 5%;
    margin-left: 5%;
}
.form table .abs {
    margin-left: 3px;
    color: #f00;
}
.form table th, .form table td{
    margin-bottom:0.5em;
    padding: 1em;
    text-align: left;
    border-bottom:1px solid #707070;
}
input[type="text"], input[type="password"], textarea, select{
    line-height:1em;
    margin:0.2em auto 0.2em 0;
    padding:0.2em 1em;
    font-size: 100%;
    border:1px solid #707070;
    background: #fff;
}
.form table th {
    width: 30%;
    font-weight: bold;
    vertical-align:baseline;
    
}
.form table td {
    width: 70%;
    margin:2% 2.5%;
}
.radio_label label{
    display: inline-flex;
    align-items: center;
    margin-right: 2rem;
}
.bb-no{
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.form .submit {
    border: 0;
    text-align: center;
}
.form .submit input{
    display: inline-block;
    border: 1px solid #000;
    padding: 1.5rem;
    transition: .5s;
}
.form .submit input:hover{
    background: #000;
    color: #fff;
}
@media only screen and (max-width: 959px){
.form {
    width: 100%;
    display:block;
    margin:0 auto;
}
.form table {
    width: 94%;
    margin-right: 3%;
    margin-left: 3%;
}
.form table th {
    width: 40%;
}
.form table td {
    width: 60%;
}
}
@media only screen and (max-width: 620px){
.form {
    width: 100%;
    display:block;
    margin:0 auto;
}
.form table {
    width: 98%;
    margin-left: 1%;
}
.form table tr {
  display: flex;
  flex-wrap: wrap;
}
.form table th, .form table td{
    padding: 0 1em;
}
.form table th {
    width: 100%;
}
.form table td {
    width: 100%;
    padding-bottom: 1.5rem;
}
}
.policy{
    margin: 0 auto 10rem;
}
.policy h3{
    margin-bottom: 3rem;
}
.policy dt{
    margin-top: 3rem;
    font-weight: bold;
}

.input-replace {
  height: 20px;
  width: 20px;
  background: white;
  border: 2px solid #efefef;
  cursor: pointer;
  float: left;
  margin-right: 1rem;
  border-radius: 50%;
  position: relative;
}
.input-replace:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  height: 18px;
  width: 18px;
  background: #4BAFB4;
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.1s;
  visible: hidden;
}
.input-replace.checked:after {
  transform: scale(1);
  visible: visible;
}