@charset "utf-8";

/*--------------------
   　 タイムテーブル
--------------------*/

#timetable {
  padding-bottom: 2rem;
}

#day01 {
  margin-bottom: 50px;
}

#timetable table {
  color: #000;
  line-height: 1.8;
  width: 100%;
}
#timetable table a {
  display: inline-block;
  font-weight: 700;
}

#timetable table a:hover {
  opacity: .7;
  transition: .3s;
}

#timetable th,
#timetable td {
  border: 1px solid #ccc;
  vertical-align: top;
}

#timetable th {
  width: 7%;
  padding: 10px 15px;
  background-color: #ebebeb;
  text-align: center;
  font-size: 16px;
}
#timetable th span {
  font-weight: 200;
}

#timetable td {
  width: 31%;
  padding: 15px 20px 20px;
  background-color: #fff;
  font-size: 16px;
}

#timetable th.max {
  padding: 15px;
  background-color: #fdf6db;
}

#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: 991px) {
  .container-fluid {
    overflow-x: scroll!important;
    padding-right: 15px;
    padding-left: 15px;
  }
  #timetable table {
    width: 880px;
  }
  #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: 577px) {
  #day01 {
    margin-bottom: 30px;
  }
}

/*ボタン*/

.btn-tt-box {
  margin-bottom: 30px;
}
.btn-tt {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 10px; 
  border-radius: 100px;
  background-color: #f33;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}
.btn-tt:hover {
  color: #fff;
  text-decoration: none;
  opacity: .8;
  transition: .3s;
}

.arrow-d-white::after {
  content: '';
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 45%;
  right: 23px;
  transform: translateY(-45%) rotate(135deg);
}
.arrow-r-white::after {
  content: '';
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  display: inline-block;
  width: 6px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-45%) rotate(45deg);
}

@media (max-width: 991px) {
  .btn-tt {
    font-size: 16px;
  }
}