/* News List Wrapper */
.news-list-wrapper {
  padding-top: 60px;
}

.news-list-content-section-wrapper {
  width: 1040px;
  margin-left: auto;
}

/* News List Content Section */
.news-list-content-section {
  width: 100%;
  box-sizing: border-box;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
}

/* News Item */
.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 40px;
  border-bottom: 1px solid #E9E9E9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #f8f8f8;
}

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

/* News Date */
.news-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  color: #666666;
  flex-shrink: 0;
  width: 100px;
}

/* News Title */
.news-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5em;
  color: #000000;
  flex: 1;
  text-decoration: underline;
}

/* News Arrow */
.news-arrow {
  width: 32px;
  height: 32px;
  background-color: #E9E9E9;
  border-radius: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.news-item:hover .news-arrow {
  background-color: #D9D9D9;
}

.news-arrow svg {
  width: 16px;
  height: 16px;
}


/* responsive */
@media (max-width: 1200px) {
  .top-header-title-section {
    margin-bottom: 40px;
  }
	.news-list-content-section-wrapper {
    width: 100%;
  }
  .news-list-wrapper {
    padding-top: 28px;
  }
  .news-title {
    font-size: 14px;
  }
  .news-list-content-section {
    padding: 24px;
    border-radius: 56px;
  }
  .news-item {
    gap: 24px;
    padding: 16px 12px;
    justify-content: space-between;
  }
	.news-date-mobile {
    margin-bottom: 8px;
  }
  .pagination-news-list {
    margin-top: 32px;
  }
}

/* Mobile News List */
@media (max-width: 768px) {
}
