.newsContent {
  padding: 140px 0px;
}

.newsInner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  gap: 60px;
}

.newsMain {
  flex: 1;
}

.newsList {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.newsItem {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsItemMeta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.newsItemCategory {
  position: relative;
  display: inline-block;  
  border: 1px solid #333333;
  padding: 0 8px;
}

.newsItemCategory span {
  font-weight: 300;
  font-size: 14px;
  color: #333333;
  line-height: 2.1;  
}

.newsItemDate {
  font-weight: 300;
  font-size: 14px;
  color: #333333;
  line-height: normal;
}

.newsItemTitle {
  margin-bottom: 0;
}

.newsItemTitle a {
  font-weight: 600;
  font-size: 24px;
  color: #000000;
  text-decoration: none;
  line-height: normal;
}

.newsItemTitle a:hover {
  color: #60c51d;
}

.newsItemExcerpt {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}

.newsItemMore {
  font-weight: 600;
  font-size: 14px;
  color: #60c51d;
  text-decoration: underline;  
  text-decoration-style: solid;
  line-height: normal;
}

.newsItemMore:hover {
  color: #60c51d;
}

.newsSidebar {
  flex: 0 0 280px;
}

.categorySection {  
  padding: 30px 25px;
}

.categoryTitle {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
  padding-bottom: 12px;  
}

.categoryList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.categoryItem a {
  display: block;
  color: #666666;
  text-decoration: none;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.categoryItem:last-child a {
  border-bottom: none;
}

.categoryItem a:hover {
  color: #60c51d;
}

.categoryItem a.current {
  color: #60c51d;
  font-weight: 500;
}

/* ---------------------------------------------------------
  980px以下
--------------------------------------------------------- */
@media (max-width: 980px) {
  .newsInner {
    padding: 0 25px;
  }

  .newsContent {
    padding: 40px 0;
  }

  .newsSidebar {
    display: none;
  }
}
