@charset "utf-8";
/* CSS Document */

.top_bnr{
  display: flex;
  justify-content: center;
  margin: 50px 0 70px;
}
.top_bnr > div + div{
  margin-left: 20px;
}
@media only screen and (max-width:768px) {
  .top_bnr > div + div{
    margin-left: 0;
    margin-top: 20px;
  }
  .top_bnr{
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
}