main {
  padding-bottom: 100px;
}

.main-title img {
  position: absolute;
  bottom: 0;
  left: calc(50% - 135px);
  width: auto;
}

.newslist {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.5;
  padding-bottom: 50px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 50px;

  & dt {
    width: 35%;
  }

  & dd {
    width: 62%;
  }

  & span {
    background-color: #ad9d6e;
    color: #fff;
    border-radius: 30px;
    padding: 2px 15px;
    font-weight: bold;
    display: inline-block;
    font-size: 1.4rem;
  }
}

.newslist:last-of-type {
  border-bottom: none;
}

.evrnt-time {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  text-align: left;
  color: #5CB531;
  margin: 10px 0 0;
}

.ev_btn {
  background-color: #ED9034;
  color: #fff;
  border-radius: 5px;
  padding: 10px 30px;
  position: relative;
  display: block;
  margin-top: 20px;
  width: 140px;
  line-height: 1;

  &::after {
    font-family: 'Material Symbols Rounded';
    content: "\e5cc";
    font-size: 2rem;
    line-height: 1;
    color: #FFF;
    position: absolute;
    right: 2px;
    top: 9px;
  }
}

.ev-tit {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.in-box {
  padding: 30px;
}

.lesson-image {
  display: flex;
  justify-content: space-between;

  & li {
    width: 32%;
  }
}

.profile {
  background-color: #F5EFE2;
  margin-top: 50px;
  padding: 20px 30px;
  line-height: 1.5;

  & h3 {
    color: #5CB531;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  & li {
    position: relative;
    padding-left: 1.2em;
  }

  & li::before {
    content: "〇";
    position: absolute;
    left: 0;
  }

  & p {
    margin-top: 15px;
  }
}

.h10 {
  margin-top: 10px;
}

.link-txt {
  text-decoration: underline;
  color: #ED9034;
}

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

  & dt {
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    width: 30%;
  }

  & dt span {
    font-size: 3rem;
    margin-right: 10px;
  }

  & dd {
    width: 65%;
    margin: 0 0 30px 0;
  }
}

@media screen and (max-width: 1029px) {
  .main-title img {
    position: absolute;
    bottom: 0;
    left: calc(50% - 18%);
    width: 36%;
  }

  .profile,
  .lesson-image {
    margin-right: 5%;
    margin-left: 5%;
  }
}

@media screen and (max-width:850px) {
  .newslist {
    width: 90%;
    margin: 0 auto 50px;

    & dt {
      width: 100%;
      margin-bottom: 20px;
    }

    & dd {
      width: 100%;
    }
  }

  .ev_btn {
    margin-right: auto;
    margin-left: auto;
    padding: 15px 30px;

    &::after {
      top: 14px;
    }
  }

  .schedule {
    & dt {
      width: 100%;
      margin: 0;
    }

    & dd {
      width: 100%;
      margin-bottom: 30px;
      padding-left: 40px;
      line-height: 1.5;
    }
  }
}