/*==================================================
    ページ共通
==================================================*/
.title-h2 {
  font-size: 2.6rem;
  font-weight: 600;
  padding-left: 2.6rem;
  position: relative;
  line-height: 1;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #000;
}

.title-h2::before {
  content: "";
  background-color: var(--color-orange);
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .title-h2 {
    font-size: 4.8vw;
    padding-bottom: 4.2667vw;
    padding-left: 4vw;
    margin-top: 4vw;
  }

  .title-h2::before {
    width: 2.1333vw;
    height: 2.1333vw;
    top: 1.2vw;
  }
}

/*==================================================
    パンくず
==================================================*/
.breadcrumb {
  padding: 2.8rem 0;
}

/*==================================================
    ページタイトル
==================================================*/
.pageHead {
  padding-top: 2.2rem;

  .inner {
    width: 1100px;
  }

  @media screen and (max-width: 767px) {
    padding: 17.8667vw 0 0 0;
  }
}

/*==================================================
    SCHEDULE
==================================================*/
#schedule {
  margin-top: 9.6rem;

  .schedule__link {
    align-items: center;
    background: #fff;
    border: .1rem solid #000;
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    line-height: 1;
    margin: 3.8rem auto 0;
    padding: 1.6rem 1.6rem 1.6rem 2.6rem;
    width: 100%;
    position: relative;
    transition: .3s;
    width: fit-content;
  }

  .schedule__link::before {
    background-image: url(../img/lesson-info/schedule-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 3rem;
    width: 3rem;
    margin-right: 1em;
  }

  .schedule__link::after {
    background-image: url(../img/lesson-info/icon_nav_arrow_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 1.5rem;
    width: 1.9rem;
    margin-left: 1em;
  }

  @media (hover: hover) {
    /* .schedule__link:hover {
      background: #000;
      color: #fff;
      opacity: 1;
    }

    .schedule__link:hover::after {
      background-image: url(../img/lesson-info/icon_nav_arrow_right_hover.png);
    } */
  }

  @media screen and (max-width: 767px) {
    margin-top: 11.47vw;

    .schedule__link {
      line-height: 1;
      padding: 5.33vw 2vw 5.33vw 4vw;
      margin-top: 9.33vw;
      border-radius: 2.67vw;
    }

    .schedule__link::before {
      height: 5.07vw;
      width: 5.33vw;
    }

    .schedule__link::after {
      height: 3.06vw;
      width: 4vw;
    }
  }
}

/*==================================================
    CHANGED INFO
==================================================*/
#scheduleInfo {
  margin-top: 12rem;
  padding-bottom: 10rem;

  .scheduleInfo__text {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 5rem;
  }

  .schoolList__text {
    line-height: 1.3;
  }

  .schoolList {
    display: grid;
    gap: 5.4rem;
    grid-template-columns: 1fr;
    padding: 3.9rem 5rem 4.4rem;
  }

  .schoolList {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
  }

  .schoolList__link {
    align-items: center;
    background: #fff;
    border: .1rem solid #000;
    border-radius: .5rem;
    display: flex;
    justify-content: space-between;
    padding: 1.6rem 1.6rem 1.6rem 2.6rem;
    width: 100%;
    position: relative;
    transition: .3s;
  }

  .schoolList__link::after {
    background-image: url(../img/lesson-info/icon_nav_arrow_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 1rem;
    width: 1.2rem;
  }

  @media (hover: hover) {
    .schoolList__link:hover {
      background: #000;
      color: #fff;
      opacity: 1;
    }

    .schoolList__link:hover::after {
      background-image: url(../img/lesson-info/icon_nav_arrow_right_hover.png);
    }
  }

  .schoolList__text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }

  @media screen and (max-width: 767px) {
    margin-top: 17.6vw;
    padding-bottom: 3.33vw;

    .scheduleInfo__text {
      font-size: 3.73vw;
      line-height: 2;
      text-align: left;
      margin-top: 8vw;
    }

    .schoolList {
      column-gap: 3.6vw;
      row-gap: 2.53vw;
      grid-template-columns: repeat(2, 1fr);
      padding: 6vw 0;
    }

    .schoolList__text {
      font-size: 3.73vw 3.33vw 3.73vw;
      line-height: 1.43;
    }

    .schoolList__link {
      padding: 2.93vw 4.27vw;
    }

    .schoolList__link::after {
      height: 2.13vw;
      width: 2.53vw;
    }
  }
}