h2{
  font-size:2.6rem;
  color: #555;
  line-height: 1.8;
  margin: 0px auto 20px auto;
  justify-content: flex-start;
  border-left: 4px solid #0cbce2;
}
h2:before{
  display: none;
}
.schedule .day .flex{
  width: 1200px;
  max-width: 100%;
  margin: 80px auto;
  display: flex;
}
.schedule > p{
  margin-bottom: 80px;
}
.schedule .day .img{
  width: 50%;
  margin-right: 5%;
}
.schedule .day .text{
  width: 45%;
  position: relative;
}
.schedule .day .text:after{
  content: "";
  height: 100%;
  width: 5px;
  position: absolute;
  background-color: #0cbce2;
  left: 20px;
  top: 0;
  padding-bottom: 40%;
}
.schedule .day:last-child .text:after{
  content: none;
}

.schedule .time{
  background: #0cbce2;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
}

.schedule.schedule02 .time{
  background: #e2ac0c;
}
.schedule.schedule02 .day .text:after{
  background-color: #e2ac0c;
}

.schedule .day .contents{
  padding:30px 80px;
  box-sizing: border-box;
}
.schedule01 .day:nth-child(odd){
  background-color: #f0f7ff;
  padding: 40px 0;
  box-sizing: border-box;
}
.schedule02 .day:nth-child(odd){
  background-color: #fdffcf;
  padding: 40px 0;
  box-sizing: border-box;
}


footer{
  border-top: none;
  margin-top: 0;
}



  @media screen and (max-width: 1200px){
      .schedule .day .text:after{
        content: "";
        height: 100%;
        width: 5px;
        position: absolute;
        background-color: #0cbce2;
        left: 20px;
        top: 0;
        padding-bottom: 60%;
      }
    }
  @media screen and (max-width: 800px){

    .schedule .day .text:after{
      content: none;
    }
    .schedule .day .contents{
      padding: 20px;
    }
  }

  @media screen and (max-width: 600px){
    .schedule .day .flex{
      display:block;
    }
    .schedule .day .img{
      width: 100%;
    }
    .schedule .day .contents{
      width: 100%;
      padding: 0;
    }
    .schedule .day .text{
      width: 100%;
      padding: 20px;
      box-sizing: border-box;
    }
    .schedule .time{
      margin-bottom: 20px;
      font-size: 1.6rem;
    }
    .schedule .day .img{
      padding: 20px;
      box-sizing: border-box;
    }
    .schedule .day .flex{
      margin:20px auto;
    }
    .schedule01 .day:nth-child(odd){
      padding: 20px 0;
    }

  }  