

html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  padding: 20px;
}

footer {
  margin-top: auto; /* フッターを一番下に押し出す */
}


.container{
  margin-top: 150px;

}
.news-archive {
  padding: 60px 20px;
  text-align: center;
}

.news-title {
  font-size: 24px;
  font-weight: bold;
  color: #7DBE55;
  margin-bottom: 60px;
}


.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.news-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
    padding: 15px 10px;
  border-bottom: 1px solid #C4E0AE;
    color: #7DBE55;
}


.news-date {
  font-size: 14px;
  color: #666;
  width: 100px;
  text-align: left;
  letter-spacing: 1.6px;
}

.news-text {
  text-align: left;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.news-text:hover {
  color: #7DBE55;
}



@media screen and (max-width: 768px) {
.news-item {
    align-items: flex-start;

    flex-direction: column;
}

.container {
    margin-top: 100px;
}
}