.news-list-section {
  padding: 80px 20px;
  background: #f9f9fb;
  margin-top: 60px;
}

.news-list-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #00205b;
  border-bottom: 1px solid #00205b;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  border-bottom: 1px solid #ddd;
}

.news-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-item a:hover {
  background: #eef1f6;
}

.news-meta{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.news-label {
  display: inline-block;
  padding: 6px 0px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  width: 160px;
  text-align: center;
    background-color: #00205b;
}

.news-date {
  font-weight: bold;
  color: #00205b;
  white-space: nowrap;
}

.news-title {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  max-lines: 2;
  max-width: 800px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-arrow {
  font-size: 24px;
  color: #00205b;
  margin-left: auto;
}

/* News　記事ページ */

.news-article-detail-section {
  background: #f5f7fa;
  padding: 80px 20px;
  color: #222;
  margin-top: 60px;
}

.news-article-detail-section .container {
  max-width: 1080px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 12px;
  color: #555;
  margin-bottom: 16px;
}

.news-article-page-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #001e5a;
}

.news-article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  font-family: 'din-2014', 'sans-serif';
    font-size: 12px;
}

.news-article-tag {
  background-color: #001e5a;
  color: white;
  padding: 6px 0px;
  width: 130px;
  text-align: center;
  border-radius: 16px;
}

.news-article-title {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 30px;
  color: #001e5a;
  border-bottom: 1px solid #ddd;
}

.news-article-description {
  font-size: 14px;
  margin-bottom: 32px;
}

.news-article-list {
  
  padding-top: 32px;
}

.news-article-item {
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
}

.news-article-item::before {
  content: "\f1ea";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #001e5a;
}

.news-article-date {
  display: inline-block;
  font-weight: bold;
  color: #001e5a;
  margin-right: 8px;
}

.news-article-source {
  font-weight: bold;
}

.news-article-link {
  display: block;
  font-size: 13px;
  color: #0066cc;
  margin-top: 8px;
  text-decoration: underline;
}


@media (max-width: 767px) {

    .news-item a{
        display: flex;
        flex-direction: column;
        align-items: start;
    }

.news-title{
    /* width: 90%; */
}
}