@charset "utf-8";
.agency{
  display: flex;
  font-size: 15px;
  flex-wrap: wrap;
  line-height: 1.5;
  justify-content: space-between;
  margin: 30px auto 10px;
  max-width: 980px;
  width: 100%;
}
.rep_area{
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 10px;
  color: #333;
  margin: 23px 0 15px;
  padding: 25px 15px;
  text-align: center;
  width: 44%;
}
.agency .contact{
  margin-top: 0;
  width: 54%;
}
@media only screen and (min-width: 768px) {
  .rep_name{
    font-size: 18px;
    font-weight: 700;
  }
  .rep_address{
    font-size: 13px;
    line-height: 1.6;
  }
  .rep_tel{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  .agency{
    max-width: 500px;
  }
  .rep_area{
    border: 1px solid #3e3a39;
    border-radius: 5px;
    margin: 0 auto 20px;
    padding: 5px 15px;
    text-align: left;
    width: 100%;
  }
  .rep_name{
    font-size: 18px;
  }
  .agency .contact{
    width: 100%;
  }
}

