/*----- =================================
=== レッスン表・申込みページ専用CSS
================================= -----*/
.flex-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-wrap a{
  width: 380px;
  min-width: 380px;
  max-width: 100%;
  transition: 0.2s linear;
}
.flex-wrap a:hover{
  opacity: 0.8;
}
@media screen and (max-width: 480px) {
 .flex-wrap{
   flex-direction: column;
  }
  .flex-wrap a{
    margin-bottom: 5%;
  }
  .flex-wrap a:last-child{
    margin-bottom: 0;
  }
}