

*{
  margin:0;
  padding:0;
  line-height: 1.3em;
}
/* time-schedule */
.time-schedule {
  min-width: 400px;
  max-width: 900px;
  list-style: none;
  margin: 0 auto 0 6em;
  padding-left: 25px;
  border-left: 6px solid #a7be18;
  box-sizing: border-box;
}

.time-schedule li {
  width: 100%;
  margin: 0 0;
  padding: 2px 0 10px 0;
  position: relative;
}

.time-schedule span.time {
  width: 5em;
  display: inline-block;
  margin-left: -8em;
  padding: 0 0 5px;
  margin-top: 5px;
  vertical-align: top;
  position: relative;
  text-align: right;
  box-sizing: border-box;
}

.time-schedule span.time::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 0;
  background: #a7be18;
  width: 20px;
  height: 20px;
  border-radius: 10px;
}

.time-schedule .sch_box1 {
  display: inline-block;
  width: 100%;
  margin-left: 45px;
  padding: 5px 10px 15px 5px;
  vertical-align: bottom;
  background: #efefef;
  box-sizing: border-box;
  border-radius: 6px;
}
.time-schedule .sch_box2 {
  display: inline-block;
  width: 100%;
  margin-left: 45px;
  padding: 5px 10px 15px 5px;
  vertical-align: top;
  background: white;
  box-sizing: border-box;
  border-radius: 6px;
}
.time-schedule .sch_title {
  font-size: 20px;
  font-weight: 700;
}

.time-schedule .sch_tx {
  font-size: 16px;
  font-weight: normal;
}

.time-schedule .sch_com {
  font-size: 14px;
  font-weight: normal;
}

.box1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin-left: 50px
    }
    .box1 div:nth-child(1) {grid-row: 3; grid-column: 1;}
    .box1 div:nth-child(2) {grid-row: 3; grid-column: 2;}
    .box1 div:nth-child(3) {grid-row: 5; grid-column: 1;}
    .box1 div:nth-child(4) {grid-row: 5; grid-column: 2;}


