/* CSS Document */

@media screen and (max-width:768px){
  /* ----------------------------------------------------------

  TABLET & SP

  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .schedule_table
  ---------------------------------------------------------- */
  .schedule_table .list-wrap.close{
    display: none;
  }
  .schedule_table .table-wrap{
    width:100%;
  }
  .schedule_table .list-file-wrap{
    width: 100%;
    border-top: 3px solid #fff;
    border-left: 0;
  }
  .schedule_table .list-file{
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-wrap: wrap;
  }
  .schedule_table .list-file li {
    width: 49%;
  }
  .schedule_table .list-file li:nth-child(even){
    margin-left: 2%;
  }
  .schedule_table .list-file li:nth-child(3),
  .schedule_table .list-file li:nth-child(4){
    margin-top: 2%;
  }
  .schedule_table .list-file li + li{
    margin: 0;
  }
  .schedule_table .list-file li img{
    width: 100%;
  }
  
  /* toggle-open */
  .schedule_table .toggle-open{
    display: block;
    position: relative;
    padding: 8px 5px;
    margin: 10px 10px 0;
    background: url(../common/img/btn_bg_01.jpg) center center repeat-x;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    color: #fff;
    text-align: center;
  }
  .schedule_table .toggle-open:after{
    content: "";
    margin: auto;
    position: absolute;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    width: 10px;
    right: 15px;
    top: 0;
    bottom: 0;
    height: 10px;
    transform: rotate(45deg);
  }
  .schedule_table .toggle-open.active:after{
    content: "";
    margin: auto;
    position: absolute;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    border-right: 0;
    border-bottom: 0;
    width: 10px;
    right: 15px;
    top: 0;
    bottom: 0;
    height: 10px;
    transform: rotate(45deg);
  }
}

@media screen and (max-width:480px){
  /* ----------------------------------------------------------

  SP

  ---------------------------------------------------------- */
  #contents {
    padding: 0;
  }
  /* ----------------------------------------------------------
  .schedule_table
  ---------------------------------------------------------- */
  .schedule_table table tr td.td01{
    width: 100px;
    font-size: 13px;
  }
  .schedule_table table tr th:nth-child(1) {
    font-size: 13px;
  }
  .schedule_table table tr td:nth-child(2) {
    font-size: 14px;
  }
  .schedule_table table tr td .venue-pc{
    display: none;
  }
  .schedule_table table tr td .venue-sp{
    display: block;
  }
}