@charset "UTF-8";

/*-------------------------------------------------------------------------
                            /共通コンポーネント/
    このファイルには複数ページで使用される共通スタイルを集約しています
-------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------
                            /ニュースリスト/
-------------------------------------------------------------------------*/
.news__list {
  border-bottom: 1px solid #efefef;
}
.news__list:last-of-type {
  border-bottom: unset;
}
.news__container {
  padding: 40px 0 34px 0;
}
.news__box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.news__date {
  color: #707070;
}
.news_cat {
  padding-left: 11px;
  font-size: 14px;
  position: relative;
  color: var(--sub-color);
}
.news_cat::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100vw;
  background-color: var(--sub-color);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news__title {
  line-height: 1.75;
  color: #2b2b2b;
}

@media screen and (max-width: 767px) {
  .news__container {
    padding: 32px 0 26px 0;
  }
}

/*-------------------------------------------------------------------------
                            /ページネーション/
-------------------------------------------------------------------------*/
ul.page-numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 56px;
}
ul.page-numbers li {
  margin-right: 8px;
}
ul.page-numbers li:last-of-type {
  margin-right: 0;
}
li .page-numbers {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--eng-font);
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: 0.6s;
  outline: 1px solid #2b2b2b;
  outline-offset: -1px;
}
.page-numbers.current {
  background-color: #2b2b2b;
  color: #fff;
}
.page-numbers.next,
.page-numbers.prev {
  outline: none;
}
.page-numbers.dots {
  border: unset;
  padding: 0;
}
a.page-numbers:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  ul.page-numbers {
    margin-top: 32px;
  }
}

/*-------------------------------------------------------------------------
                            /スペーサー（ユーティリティ）/
-------------------------------------------------------------------------*/
.spacer_1 {
  height: 120px;
}
.spacer_2 {
  height: 80px;
}
.spacer_3 {
  height: 40px;
}

/*-------------------------------------------------------------------------
                            /サイドバー共通/
-------------------------------------------------------------------------*/
.sidebar-article {
  width: 260px;
}

@media screen and (max-width: 767px) {
  .sidebar-article {
    width: 100%;
  }
}
