@charset "UTF-8";
/*---------------------------
  フォントの読み込み
---------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap");
/*---------------------------
  関数
---------------------------*/
/*---------------------------
  セレクトボックス
---------------------------*/
.newsSelectBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .newsSelectBlock {
    display: block;
  }
}

.newsSelectBlock__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .newsSelectBlock__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px;
  }
}

.newsSelectBlock__list {
  font-size: 1.4rem;
  text-align: center;
  white-space: nowrap;
  background-color: #EFEFEF;
  padding: 1.5px 13px 2.5px;
  margin-right: 10px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .newsSelectBlock__list {
    padding: 3px 13px 4px;
    margin: 0 5px 15px;
  }
  .newsSelectBlock__list:nth-child(3n) {
    margin-right: 0;
  }
}

.newsSelectBlock__list--current {
  color: #003D81;
  background-color: #EBF2F9;
}

.newsSelectBlock__search {
  font-size: 1.4rem;
  border: 1px solid #000;
  width: 160px;
  height: 24px;
  padding-left: 9px;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.16);
}

.newsSelectBlock__search select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: url(../img/news/news-search.svg);
  background-position: right 0px center;
  background-repeat: no-repeat;
  block-size: 15px 8px;
  padding-right: 38.5px;
}

@media screen and (max-width: 767px) {
  .newsSelectBlock__search {
    line-height: 30px;
    width: 160px;
    height: 30px;
    margin: 0 auto;
  }
}

/*---------------------------
  ページネーション
---------------------------*/
.NewsPageNation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 767px) {
  .NewsPageNation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.NewsPageNation__title {
  font-size: 2.2rem;
  margin-right: 2.19619vw;
}

.NewsPageNation__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #000000;
}

.NewsPageNation__btn--imgActive {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.NewsPageNation__btn:hover {
  background: #000000;
}

.NewsPageNation__btn:hover .NewsPageNation__btn--imgActive {
  opacity: 1;
}

.NewsPageNation__btn img {
  width: 17px;
  position: absolute;
  display: inline-block;
  left: 35%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.NewsPageNation__btn--left {
  margin-left: 2.19619vw;
  margin-right: 1.46413vw;
}

.NewsPageNation__num {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  margin-right: 1.68375vw;
}

@media screen and (max-width: 767px) {
  .NewsPageNation__num {
    margin-right: 0vw;
  }
}

.NewsPageNation__num--current {
  font-family: "Oswald", sans-serif;
  color: #003D81;
  background-color: #EBF2F9;
  width: 14px;
  height: 23px;
}
/*# sourceMappingURL=news.css.map */