.abs{
    color: #FF0000;
}
.form{
    width:100%;
    margin-top: 4rem;
}
.form p{
    text-align: center;
    margin-bottom: 3rem;
}
.form table{
    max-width:1200px;
    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;
}
input,
textarea{
    line-height:1em;
    margin:0.2em auto 0.2em 0;
    padding:0.2em 1em;
    font-size: 100%;
    border:none;
    background: #F7F7F7;
}
.form table th {
    width: 30%;
    font-weight: bold;
    vertical-align:baseline;
    
}
.form table td {
    width: 70%;
    margin:2% 2.5%;
}
.form .submit {
    border: 0;
    text-align: center;
}
.form .submit input,
.btn_blue input[type="submit"]{
    display: inline-block;
    font-size: 1.5rem;
    color: #fff;
    background: #1C4381;
    border: 1px solid #1C4381;
    border-radius: 0;
    padding: 1.5rem;
    transition: .5s;
}
.form .submit input:hover{
    background: #fff;
    color: #1C4381;
}


@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%;
}
}
@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_ttl{
  margin: 10rem 0 4rem;
  text-align: center;
}
.policy{
    margin-bottom: 10rem;
}
.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;
}
