.news-wrap {
  max-width: 1280px;
  width: 89%;
  margin: 150px auto 175px auto;
  display: flex;
  justify-content: space-between;
  color: #333333;
}

.news-ttl {
  position: relative;
  line-height: 1;
}
.news-ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  left: -25px;
  top: -8px;
  background-color: #03BFB5;
  border-radius: 50%;
}

.news-ttl h2 {
  font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
  color: #333333;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.news-ttl p {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.news-list {
  width: 66%;
  display: flex;
  flex-direction: column;
  gap: 95px;
}

.news-item-ttl {
  position: relative;
}
.news-item-ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  margin: 0 0 28px 0;
}
.news-item-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #707070;
  margin: 28px 0 0 0;
}

.news-date {
  margin-right: 19px;
}

.news-date br{
  display: none;
}

.news-item-desc {
  margin: 28px 0 0 0;
}

@media screen and (max-width: 768px) {
  .news-wrap {
    max-width: 1280px;
    width: 89%;
    margin: 60px auto;
    display: block;
    justify-content: space-between;
  }

  .news-ttl {
    position: relative;
    width: fit-content;
    margin: auto;
  }

  .news-ttl h2 {
    font-size: clamp(2.75rem, -0.625rem + 7.0313vw, 5rem);
    color: #333333;
    font-weight: 500;
    margin: 0 0 3px 0;
  }

  .news-ttl p {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: center;
  }

  .news-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
  }

  .news-item-desc {
    margin: 28px 0 0 0;
    
  }

  .new-item-ttl {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .news-date br{
    display: block;
  }
}