/* sass¤Ê¤·¡¡Í¬ÆÚ¤ªîŠ¤¤¤·¤Þ¤¹ */
/* ¡¸OPEN CAMPUS¡¹¥Ú©`¥¸ÓÃ */

/* Reset */
.lower .section__block {
  margin-right: 0;
}

/* Common */
#opencampus .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
#opencampus p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #111111;
}
#opencampus h2.sec-ttl {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.2rem;
  color: #4E4194;
}

/* MV */
#opencampus .section__mv {
  margin-bottom: 80px;
}
#opencampus .section__mv img {
  width: 100%;
  height: auto;
}

/* Next OPEN CAMPUS */
#opencampus .section__nextcampus {
  margin-bottom: 60px;
}
#opencampus .section__nextcampus .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
#opencampus .section__nextcampus .txt-blk .sec-ttl {
  display: block;
  margin-bottom: 10px;
}
#opencampus .section__nextcampus .txt-blk .sec-ttl span {
  display: block;
  padding-top: 10px;
}
#opencampus .section__nextcampus .txt-blk .sec-ttl span time {
  font-size: 6rem;
}
#opencampus .section__nextcampus .txt-blk p {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
#opencampus .section__nextcampus .img-blk img {
  max-width: 580px;
  width: 100%;
  height: auto;
}
#opencampus .section__nextcampus .btn-blk .section__contents__box-v1__item__link {
  width: 353px;
  padding: 3rem 0;
}
#opencampus .section__nextcampus .btn-blk .section__contents__box-v1__item__link:after {
  top: 42%;
}
#opencampus .section__nextcampus .btn-blk .section__contents__box-v1__item__link.btn-border {
  color: #4e4194;
  background-color: #fff;
  border: 1px solid #4e4194;
  margin-bottom: 10px;
}
#opencampus .section__nextcampus .btn-blk .section__contents__box-v1__item__link.btn-border:after {
  background-image: url(/assets/images/common/right-arrow-color-main.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

/* SCHEDULE */
#opencampus .section__schedule {
  background: #F1EFFE;
  padding: 40px 0;
}
#opencampus .section__schedule h2.sec-ttl {
  margin-bottom: 30px;
}
#opencampus .section__schedule .schedule-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 60px;
  row-gap: 20px;
}
#opencampus .section__schedule .schedule-list a {
  display: block;
  transition: all 0.3;
}
#opencampus .section__schedule .schedule-list a:hover {
  opacity: 0.7;
}
#opencampus .section__schedule .schedule-list li {
  display: flex;
  align-items: center;
  gap: 20px;

  border-bottom: 1px dashed #c9c9c9;
  padding-bottom: 17px;
}
#opencampus .section__schedule .schedule-list li time {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #4E4194;
}

@media screen and (max-width: 767px) { 
  /* Common */
  #opencampus .wrapper {
    max-width: 100%;
    padding: 0 15px;
  }
  #opencampus p {
    font-size: 1.3rem;
  }
  #opencampus h2.sec-ttl {
    font-size: 3rem;
  }

  /* MV */
  #opencampus .section__mv {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  /* Next OPEN CAMPUS */
  #opencampus .section__nextcampus {
    margin-bottom: 40px;
  }
  #opencampus .section__nextcampus .wrapper {
    flex-direction: column;
    gap: 30px;
  }
  #opencampus .section__nextcampus .txt-blk h2 span time {
    font-size: 5rem;
  }
  #opencampus .section__nextcampus .txt-blk p {
    font-size: 2rem;
  }
  #opencampus .section__nextcampus .img-blk img {
    max-width: 100%;
  }
  #opencampus .section__nextcampus .btn-blk .section__contents__box-v1__item__link {
    width: 100%;
    padding: 2rem 0;
  }
  
  /* SCHEDULE */
  #opencampus .section__schedule h2.sec-ttl {
    margin-bottom: 20px;
  }
  #opencampus .section__schedule .schedule-list {
    grid-template-columns: auto;
    gap: 16px;
  }
  #opencampus .section__schedule .schedule-list li {
    padding-bottom: 13px;
  }
  #opencampus .section__schedule .schedule-list li time {
    font-size: 1.6rem;
  }
}