@charset "UTF-8";
/* CSS Document - for news */

.newsContainer {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;

  width: 100%;
  max-width: 1200px;
  min-height: 400px;

  display: flex;
  justify-content: center;
  align-items: top;
}

.archiveNewsTitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}
.newsPost {
  width: 100%;
  margin: 0 60px;
}
.newPostTitle {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 20px;
}
.newPostTitle_forList {
  display: block;
  font-size: 22px;
  font-weight: bold;
}
a.newPostTitle_forList {
  text-decoration: none;
  color: #009e53;
}
a.newPostTitle_forList:hover {
  text-decoration: underline;
  color: #5bbb24;
}
.newsPostDate {
  font-size: 14px;
  color: #666666;
  margin-bottom: 3px;
}
.newsExcerpt {
  font-size: 16px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 3px dotted #009e53;
}

.newsBreadCrumb {
  font-size: 14px;
  margin-bottom: 15px;
}
.newsBreadCrumb a {
  text-decoration: none;
  color: #009e53;
}
.newsBreadCrumb a:hover {
  text-decoration: underline;
  color: #5bbb24;
}
.newsSide {
  width: 300px;
}
.newsSideTitle {
  margin-bottom: 10px;
}
.newsSideList {
  list-style: none;
  padding: 0;
  padding-left: 24px;
}
.newsSideList li {
  margin-bottom: 3px;
}
.newsSideList li a {
  text-decoration: none;
  color: #009e53;
}
.newsSideList li a:hover {
  text-decoration: underline;
  color: #5bbb24;
}

/* ページネーション */
.pager {
  text-align: center;
  margin-top: 45px;
}
.pager ul {
  padding: 0;
}
.pager ul li {
  display: inline-block;
  margin: 0 2px;
}
.pager ul li a {
  text-decoration: none;
  color: #009e53;
}
.pager ul li .current {
  color: #666666;
}
.pager .page-numbers {
  padding: 8px 12px;
  border: 2px solid #009e53;
  border-radius: 100px;
}
.pager .page-numbers.current {
  border: 2px solid #666666;
}
.pager .page-numbers.dots {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.pager .page-numbers:hover {
  border-color: #5bbb24;
  background-color: #5bbb24;
  color: #FFFFFF;
}
.pager .page-numbers:hover.current {
  background-color: transparent;
  color: #666666;
  border-color: #666666;
}
.pager .page-numbers:hover.dots {
  background-color: transparent;
  border: none;
  color: #666666;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .newsContainer {
    flex-direction: column;
    align-items: center;
  }
  .newsPost {
    margin: 0 20px;
  }
  .newsSide {
    width: 100%;
    margin-top: 50px;
  }
  .toNewsTop {
    display: block;
  }
  .newsSideTitle {
    text-align: center;
  }
  ul.newsSideList {
    text-align: center;
    padding-left: 0;
  }
  ul.newsSideList li {
    display: inline-block;
  }
  ul.newsSideList li .bi {
    display: none;
  }
  ul.newsSideList li a {
    display: block;
    padding: 0 10px;
    border: #009e53 solid 2px;
    border-radius: 100px;
    margin: 5px 0px;
  }
  ul.newsSideList li a:hover {
    background-color: #5bbb24;
    border-color: #5bbb24;
    color: #FFFFFF;
    text-decoration: none;
  }
}
@media screen and (max-width: 480px) {
  .newsPost {
    margin: 0 10px;
  }
  .pager ul li {
    margin: 0 0px;
  }
  .pager .page-numbers {
    padding: 6px 8px;
  }
}