.inlineBlock {
    display: inline-block;
}
.colorRed {
    color: #f03b3b;
}
.tableContent {
  max-width: 1032px;
  width: 90%;
  margin: 0 auto;
}
.basicTable {
  width: 100%;
  margin: 2em 0 1em;
  background: #fff;
  border-collapse: collapse;
  border: 1px solid #c9c9c9;
  font-size: 12px;
  line-height: 1.6;
}
.basicTable thead {
  background: #f1f1f1;
}
.basicTable tr {
  border: 1px solid #c9c9c9;
}
.basicTable tr th, .basicTable tr td {
  border-right: 1px solid #c9c9c9;
  padding: 10px;
}
.basicTable tr td:nth-child(n+3){
  text-align: right;
}
.basicTable .w15 {
  width: 15%;
}
.basicTable .w20 {
  width: 20%;
}
.basicTable .w50 {
  width: 50%;
}
.basicTable .bg01 {
  background: #fae4e4;
}
.basicTable .bg02 {
  background: #e1ebf5;
}
.basicTable .bg03 {
  background: #e2efda;
}
.basicTable .bg04 {
  background: #fff2cc;
}
.basicTable .bg05 {
  background: #f2f2f2;
}
.basicTable .bg06 {
  background: #e8e8ff;
}
.basicTable a {
  color: currentColor;
  font-weight: bold;
}
.basicTable a:hover {
  opacity: .7;
  transition: .3s all;
}
.notes>li {
  font-size: 11px;
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (max-width: 768px) {
  .tableScroll {
    overflow-x: auto;
  }
  .basicTable {
    min-width: 680px;
  }
}

@media print, screen and (min-width: 769px) {
  .basicTable {
    font-size: 14px;
  }
  .notes>li {
    font-size: 12px;
  }
}


.courseCampusList {
    display: flex;
    flex-wrap: wrap;
}

.courseCampusList li {
    flex: 0 0 50%;
    max-width: 50%;
    line-height: 1.3;
}

.courseCampusList li:nth-child(1n) {
    margin-right: -1px;
}

.courseCampusList li a {
    margin: -1px 0 0;
}

.courseCampusList li a .inner {
    padding: 14px 0;
}

.courseCampusList li a .inner .label {
font-size: 10px;
}
@media print, screen and (min-width: 769px) {
.courseCampusList {
        flex-flow: row wrap;
        margin: 0 -7px;
    }
    .courseCampusList li {
        display: flex;
        padding: 0 7px;
        flex: 0 0 33.33%;
        max-width: 33.33%;
        margin: 0;
        line-height: 1.8;
    }
    .courseCampusList li:nth-child(1n) {
    rgin-right: 0;
    }
    .courseCampusList li a {
        display: flex;
        flex: 1 1 auto;
        margin: 0 0 10px;
    }
    .courseCampusList li a .inner {
        display: flex;
        flex: 1 1 auto;
        padding: 11px 0;
    }
    .courseCampusList li a .inner .label {
        display: flex;
        flex: 1 1 auto;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }
}