@charset "utf-8";

/* address */
.address{
    width: 90%;
    margin: 0 auto 30px;
}

table {
    border-collapse: collapse;
    width: 100%;
}
  
th {
    background-color: #9ee1f1;
    text-align: left;
}

th,td {
    border: 1px solid #cccccc;
    padding: 20px;
}

@media screen and (min-width:960px){
    .address{
        max-width: 1000px;
        margin-bottom: 50px;
    }
}

/* contact form */


.contact_form{
    width: 90%;
    margin: 0 auto 60px;
  }
  
dl{
    margin-bottom: 15px;
}
  
dt{
    font-weight: bold;
    margin-bottom: 5px;
}
  
.required {
    color: #254a7e;
    font-size: 14px;
    margin-left: 5px;
}

input[type='text'],input[type='email'],input[type='tel'],textarea {
    padding: 8px;
    border: 1px solid #ccc;
    width: 100%;
}
  
.checkbox-grp{
    margin-bottom: 20px;
    a{
      color: #000;
      text-decoration: underline;
    }
  } 
  
  
button {
    display: block;
    margin: 0 auto;
    width: 50%;
    background-color: #0072B8;
    color: white;
    border: none;
    border-radius: 50px;
    height: 50px;
    cursor: pointer;
}

@media screen and (min-width:767px){
    button{
        width: 200px;
    }
}

@media screen and (min-width:960px){
    .contact_form{
        max-width: 1000px;
        margin-bottom: 50px;
    }
}