@charset "utf-8";

section {
  width: 70%;
  margin: 5rem auto;
}

.col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col>* {
  width: 48%;
}

.col h2 {
  color: #17458f;
    font-size: 1.5em;
    margin: 3rem 0 1.5rem 0;
}

.info h2 {
  margin-bottom: 1rem;
}

.info p {
  font-size: 1.1rem;
  line-height: 1.8rem;
}

.info .venue_p {
  margin-bottom: 1rem;
}

.info p span {
  font-weight: 700;
}

.venue .gmap {
  min-height: 310px;
  position: relative;
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gmap::after {
  content: "";
  display: block;
  padding-top: 30px;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
}

.schedule h2 {
  font-weight: 800;
  border-bottom: solid 1px #17458f;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.7rem;
}

.month {
  position: relative;
  margin-bottom: 2rem;
}

.month::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 7.4rem;
  width: 2px;
  height: 100%;
  background: #a9d8f2;
}

.month h3 {
  position: absolute;
  left: 0;
  width: 5.4rem;
  text-align: right;
  font-size: 1.3rem;
  font-weight: bolder;
  color: #17458f;
}

.month ul {
  padding-left: 8.8rem;
}

.month ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}

.month ul li {
  display: flex;
}

.month ul li .date {
  font-weight: bold;
  margin-right: 2.4rem;
  width: 4.4rem;
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.8;
}

.month ul li .title {
  font-size: 1.1rem;
  font-weight: lighter;
  width: 20rem;
  line-height: 1.8;
}

@media screen and (max-width:767px){
  section {
    width: 90%;
  }

  .info h2 {
    font-size: 1.8rem;
  }

  .info p {
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .col {
    flex-direction: column;
  }

  .col>* {
    width: 90%;
  }

  .venue .gmap {
    margin-top: 4rem;
    margin: 0 auto;
  }

  .month h3 {
    font-size: 1.5rem;
  }

  .month ul li .date {
    font-size: 1.3rem;
  }

  .month ul li .title {
    font-size: 1.3rem;
  }

}