@charset "UTF-8";

/*--日程表--*/
#schedule + section table{
  border-color:var(--i_btn_color)!important;
}

#schedule + section .color_blue{
  color:blue;
}

#schedule + section .color_red{
  color:red;
}

#schedule + section .bg_blue1{
  background-color: rgb(222, 236, 244);
}

#schedule + section .bg_blue2{
  background: #d2e1ea;
}

#schedule + section table tr td {
  padding:1rem;
  box-sizing:border-box;
}

#schedule + section .note{
  width: 100%;
  margin: 2rem auto 0;
  max-width: 1000px;
}

/*--テーブルのインナー幅--*/
#schedule + section .table_scroll {
    margin: 0px auto;
    width: 100%;
    max-width: 1000px;
}


/*--テーブルの横スクロール--*/
@media screen and (max-width: 768px) {
  #schedule + section .table_scroll {
    overflow: scroll;
  }

  #schedule + section table {
   white-space: nowrap;
  }
}