.news_p {
  max-width: 800px;
  margin: 80px auto;
  padding: 80px 50px;
  background: #fff;
}

/* タイトル */
.news-title1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}
.news-title2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.news-day {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.news-sub {
  text-align: center;
  font-size: 12px;
  color: #ff7a00;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

/* リスト */
.news-list1 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list1 li {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

/* 日付 */
.date {
  color: #ff7a00;
  font-size: 14px;
  min-width: 110px;
}

/* 右側 */
.content {
  flex: 1;
}

/* タグっぽいやつ */
.tag {
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
}

/* 本文 */
.text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.news-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.news-link:hover .text {
  color: #ff7a00;
}

.newstext {
  font-size: 14px;
  margin-top: 80px;
}

.newstext img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.newstext p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 20px;
}

.back-news {
  text-align: center;
  margin-top: 60px;
}

.back-news a {
  color: #ff7a00;
  text-decoration: none;
  font-size: 14px;
}

.back-news a:hover {
  text-decoration: underline;
}

.event-list {
  margin-top: 20px;
  padding-left: 20px;
  line-height: 1.8;
  font-size: 14px;
  color: #333;
}

.event-list li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {

  .news_p {
    margin: 40px 15px;
    padding: 40px 20px;
  }

  .news-list1 li {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .date {
    width: auto;
    font-size: 12px;
  }

  .tag {
    font-size: 12px;
  }

  .text {
    font-size: 13px;
    line-height: 1.6;
  }

  .news-title1 {
    font-size: 22px;
  }

  .news-sub {
    font-size: 11px;
    margin-bottom: 30px;
  }
}