@charset "UTF-8";
/*$Green: #0f795e;*/
.articles__list {
  margin: 0 0 80px 0; }
  @media screen and (max-width: 768px) {
    .articles__list {
      margin: 0 0 40px 0; } }
  .articles__list .articles__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    padding: 0 0 20px 0; }
    .articles__list .articles__item:not(:last-child) {
      margin: 0 0 20px 0; }
    @media screen and (max-width: 768px) {
      .articles__list .articles__item {
        text-align: left;
        display: block;
        padding: 0 0 15px 0;
        margin: 0　0 15px 0; } }
    .articles__list .articles__item dt {
      text-align: center;
      font-size: 14px;
      width: 120px;
      padding: 4px 0;
      font-weight: 500;
      display: inline-block;
      flex-shrink: 0; }
      @media screen and (max-width: 768px) {
        .articles__list .articles__item dt {
          margin: 0 0 10px 0; } }
      .articles__list .articles__item dt.notification {
        background-color: #fedb00; }
      .articles__list .articles__item dt.seminar {
        background-color: #317023;
        color: #ffffff; }
    .articles__list .articles__item dd {
      text-align: left;
      margin: 0 0 0 31px; }
      @media screen and (max-width: 768px) {
        .articles__list .articles__item dd {
          margin: 0; } }
      .articles__list .articles__item dd span {
        margin: 0 1em 0 0; }

/*
共通ページネーション
*/
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center; }
  .page-numbers li:not(:last-child) a {
    margin: 0 1em 0 0; }
  .page-numbers li .page-number.current {
    position: relative; }
    .page-numbers li .page-number.current:before {
      content: "";
      display: block;
      width: 12px;
      height: 4px;
      background-color: #fedb00;
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%); }
  .page-numbers li .page-number.next img {
    vertical-align: baseline; }
