@charset "utf-8";

#page-title {
  width: 100%;
  font-size: 30px;
  padding: 150px 0 30px 0;
  text-align: center;
}

#page-title p {
  padding-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.header {
  position: fixed;   
  top: 0;            
  left: 0;
  width: 100%;  
    height: 80px;
}

.header {
  background-color: #ffffff;
}

.header-inner {
  color: #000000;
}

.news-section {
  margin-right: auto;
  margin-left: auto;
  max-width: 80%;
  padding-bottom: 60px;
}

.section-text h2 {
  width: 100%;
  font-size: 30px;
  padding: 150px 0 15px 0;
  text-align: center;
}

.section-text p {
  font-size: 20px;
  font-weight: bold;
    text-align: center;
}


.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.news-date {
  width: 200px;
  color: #000000;
  font-size: 15px;
}

.news-title {
  text-decoration: none;
  transition: color 0.2s;
  flex: 1;
  font-size: 20px;
}

.news-title:hover {
  color: #043152;
  text-decoration: underline;
}


.footer {
  color: #000000;
background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
  display: flex;
}

@media (max-width: 800px) {

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-date {
    width: auto;
    margin-bottom: 4px;
    font-size: 12px;
  }

  .news-title {
    width: 100%;
    font-size: 15px;
  }

  .news-section {
    margin-top: 30px;
    width: 90%;
  }

  .section-text h2 {
  padding-top: 100px;
  text-align: center;
}

.section-text p {
padding-bottom: 20px;

}
}