.tableContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  box-sizing: border-box;
  font-family: "Marcellus", "Pretendard", serif;
}
.tableContainer_inner {
  background-color: rgb(208,233,232);
}
.top-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0,100% 0,100% 100%,20% 100%,0 70%);
 
}
.top-image img {
  width: 100%;
  height: auto;
  display: block;
}
.programTable {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  color: #333;
  margin: 0 auto 70px auto;
  font-size: 0.95rem;
  margin-left: 70px;
  font-family: "Marcellus", "Pretendard", serif;
}
.gradientRow .gradientHead {
  position: relative;
  text-align: left;
  padding: 3rem;
  font-size: 2rem;
  font-weight: 300;
  background: linear-gradient(to right, rgb(208,233,232) 30%, #fff 30%);
  color: #333;
  
  white-space: nowrap;
}
.gradientRow .makeup {
  position: absolute;
  top: 0.2rem;
  left: 0.5rem;
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}
.programTable tbody tr {
  border:none;
}
.programTable tbody tr:last-child {
  border-bottom: none;
}
.leftCell,
.rightCell {
  vertical-align: top;
  padding: 2rem 0;
  line-height: 32px;
}
.leftCell {
  position: relative;
  display: flex;
  border-top: 1px solid #000;
}
.rightCell {
  padding-left: 1rem;
  border-top: 1px solid #eee;
 
}
.numBox {
  display: block;
  width: 32px;
  height: 32px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 32px;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
}
.leftCell strong {
  display: block;
  font-weight: 600;
  line-height: 32px;
  margin-left: 10px;
}

@media (max-width:768px) {
  .tableContainer {
    padding: 0;
    margin-top: 30px;
  }
  .tableContainer_inner {
    background-color: white;
  }
 
  .gradientRow .gradientHead {
    background: none !important;
    white-space: normal;
    margin-bottom: 20px;
  }
  .programTable {
    margin-left: 0;
    margin-bottom: 30px;
  }
  colgroup { display: none; }
  thead {
    display: block;
    width: 100%;
  }
  thead tr.gradientRow {
    display: block;
    width: 100%;
  }
  .programTable tbody,
  .programTable tbody tr,
  .programTable tbody td {
    display: block;
    width: 100%;
  }
  .programTable tbody tr {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
    padding-left: 5px;
  }
  .leftCell,
  .rightCell {
    display: block;
    width: 100%;
    border-top: 1px solid #000;
    padding: 1rem 0 0 0;
  }
  .rightCell {
    border: none;
  }
  .leftCell {
    margin-bottom: 0.5rem;
  }
  .numBox {
    margin-bottom: 0;
    margin-right: 0.5rem;
    float: left;
  }
  .leftCell strong {
    display: inline-block;
    margin-left: 0;
    font-size: 1rem;
  }
}