<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 譁ｰ逹諠��ｱ */
.news {
  background-color: #F8F7F7;
  padding: 40px 20px;
  margin: 0 80px;
}

.news-title,
.news-box {
  box-sizing: border-box;
}

.news-title {
  background-color: #292d31;
  color: #fff;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px 0;
  margin: 0 auto;
  max-width: 1000px;
}

.news-box {
  border: 1px solid #292d31;
  border-top: none;
  padding: 0px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.news-item {
  border-bottom: 1px solid #ccc;
  padding: 12px 24px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

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

.news-text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
}


@media screen and (max-width: 480px) {

  .news {
    margin: 0 16px;
  }
  
  .news-title {
    font-size: 24px;
    padding: 12px 0;
  }
}</pre></body></html>