@charset "UTF-8";
/* CSS Document */

.section-schedule__container {
  padding: 60px 0 30px 0;
  margin: 0 20px;
}
.section-schedule__container ol {
  list-style: none;
}
.schedule-date {
  width: 70px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  top: -1px;
  left: 0;
  margin: 11px 20px 0 0;
  letter-spacing: 0;
}
.month {
  font-size: 1.4rem;
  position: absolute;
  left: 9px;
}
.day {
  font-size: 3.0rem;
  font-weight: 500;
  position: relative;
  line-height: 1;
  left: 30px;
  top: 14px;
}
.day::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  position: absolute;
  background-color: #333333;
  top: 5px;
  left: -21px;
  transform: rotate(-42deg);
}
.schedule-content {
  display: flex;
}
.schedule-text {
  display: block;
  margin-top: 10px;
}
.schedule-tag {
  display: inline-block;
  background-color: #261b49;
  padding: 0 10px;
  color: #fafafafa;
  font-size: 1.2rem;
}
.section-schedule__container ol li {
  text-align: left;
  font-size: 1.4rem;
  color: #333333;
  font-weight: 600;
  padding: 30px 0;
  border-bottom: 1px solid #d1d1d1;
}
.section-schedule__container ol li:first-child {
  padding: 0 0 30px 0;
}
.section-schedule__container li a {
  display: block;
  text-decoration: none;
  color: #333333;
  padding-bottom: 5px;
  position: relative;
}
.section-schedule__container li a::before {
  background: #8c2ddd;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.section-schedule__container li a:hover {
  color: #8c2ddd;
}
.section-schedule__container li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*Pagenation*/
.pagenation {
  text-align: center;
  padding-bottom: 60px;
}
.pagenation ol {
  list-style: none;
}
.pagenation-list li {
  display: inline-block;
}
.pagenation-list li a {
  display: block;
  color: #261b49;
  font-size: 1.4rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  text-decoration: none;
  padding: 10px;
  background-color: #fafafafa;
}
.pagenation-list li a.selected {
  background-color: #261b49;
  color: #fafafafa;
  border-radius: 30px;
}
.pagenation-list li a:hover {
  color: #8c2ddd;
}
@media(min-width: 900px) {
  .section-schedule__container {
  padding: 100px 0 60px 0;
  max-width: 810px;
  margin: 0 auto;
 }
  .schedule-date {
  font-size: 1.6rem;
  color: #333333;
  font-weight: 600;
 }
  .section-schedule__container ol li {
  font-size: 2.0rem;
  padding: 50px 0;
}
  .schedule-topic {
    padding-top: 10px;
  }

}