@charset "utf-8";

/*--------------------
   　 タイムテーブル
--------------------*/

#timetable {
  padding: 3rem 0;
}

#timetable table {
  width: 100%;
  color: #000;
  line-height: 1.8;
}
#timetable table a {
  display: inline-block;
  font-weight: 700;
  color: #369;
}

#timetable table a:hover {
  opacity: .7;
  transition: .3s;
}

#timetable th,
#timetable td {
  border: 1px solid #ccc;
  vertical-align: top;
  word-break: break-all;
}

#timetable th {
  padding: 10px;
  background-color: #ebebeb;
  text-align: center;
}

#timetable td {
  padding: 15px 20px 20px;
  background-color: #fff;
  font-size: 16px;
}

#timetable td.max {
  background-color: #fdf6db;
  text-align: center;
}

#timetable td.closed {
  background-color: #f3f3f3;
  color: #999;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}

#timetable .badge {
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

#timetable .badge.badge-warning,
#timetable .badge.badge-danger {
  margin-right: 0!important;
  padding: 1px 5px;
  border: 1px solid #f33;
  border-radius: 0;
  background-color: #fff!important;
  color: #f33;
  font-size: 14px;
  font-weight: 700;
}

#timetable .tm_session_name {
  padding: 2px 5px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
}

#timetable .author {
  margin-top: 10px;
  color: #000;
  font-size: 13px;
}

@media (max-width: 768px) {
  #timetable td,
  #timetable th {
    padding: 10px;
    font-size: 14px;
  }
  #timetable .badge {
    font-size: 10px;
  }
  #timetable .badge.badge-warning,
  #timetable .badge.badge-danger {
    font-size: 12px;
  }
  #timetable .tm_session_name {
    font-size: 12px;
  }
  #timetable .author {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  #timetable td,
  #timetable th {
    font-size: 12px;
  }
  #timetable .badge {
    font-size: 9px;
  }
  #timetable .badge.badge-warning,
  #timetable .badge.badge-danger {
    font-size: 10px;
  }
  #timetable .tm_session_name {
    font-size: 10px;
  }
}