@charset "utf-8";

/* ---------------------------
  お知らせ
------------------------------ */
.news_list {
  margin-bottom: 3.6rem; 
}

.news_link {
  display: block;
  padding: 1.5em 0;
  border-top: 1px solid var(--font_color);
  text-decoration: none;
}

.news_list .news_item:last-child .news_link {
  border-bottom: 1px solid var(--font_color);
}

.news_link dl {
  display: flex;
  gap: 1em;
}

.news_date {
  width: 5.5em;
  flex-shrink: 0;
}

.news_date,
.news_ttl {
  font-weight: 500;
  line-height: 1.25;
}

/* ---------------------------
  ニュースレター
------------------------------ */
.letter_link {
  display: block;
  padding: 1rem 3rem;
  border: 1px solid var(--accent_color);
  font-size: 1.3rem;
  text-decoration: none;
  margin-bottom: 1.1rem;
}

.letter_link:hover {
  opacity: 0.5;
  text-decoration: none;
}

.letter_time {
  border-bottom: 1px solid #7b7b7b;
  width: fit-content;
}


/* ---------------------------
  ページネーション
------------------------------ */
.pagenate_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.page.current,
.page:not(.current) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--font_color);
  text-align: center;
  flex-shrink: 0;
  text-decoration: none;
  font-family: "Helvetica",
               "Overused Grotesk",
               "Arial",
               sans-serif;
}

.page:not(.current) a:hover {
  background-color: var(--accent_color);
  color: #fff;
  transition: .3s all ease;
  border: 1px solid var(--accent_color);
}

.page.current {
  background-color: var(--accent_color);
  border: 1px solid var(--accent_color);
  color: #fff;
}

.download_link {
  display: block;
  border: 1px solid var(--accent_color);
  border-radius: 1rem;
  font-size: 1.7rem;
  padding: 1em;
  color: var(--accent_color);
  text-decoration: none!important;
  font-weight: 500;
  text-align: center;
}

.download_link::after {
  display: inline-block;
  content: url(../img/common/red_arrow.svg);
  width: 25px;
  margin-left: 2rem;
}

.download_link + .download_link {
  margin-top: 1.6rem;
}

.download_link.system_link {
  width: fit-content;
  color: var(--font_color);
}

.download_link.system_link:hover {
  color: var(--accent_color);
}

@media all and (min-width: 769px) {
  .news_list {
    margin-bottom: 7.5rem;
  }

  .download_link {
    border-radius: 0;
    border: 1px solid #aeaeae;
  }

  .download_link::after {
    content: url(../img/common/gray_arrow.svg);
  }

  .download_link:hover {
    border-radius: 1rem;
    border: 1px solid var(--accent_color);
    text-decoration: none;
  }

  .download_link:hover::after {
    content: url(../img/common/red_arrow.svg);
  }
}