@charset "UTF-8";
/* 全画面サイズ共通 */

.news-category-icon {
  background-color: #fdf3e8;
  padding: 0 30px;
  font-size: 1.4rem;
  border-radius: 5px;
  color: #f0871e;
  white-space: nowrap;
}

.news-category-icon.frame {
  border: 1px solid #f6b778;
  background-color: #fff;
}

/* TOP＆一覧 */
.news-list article {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px dashed #f6b778;
  position: relative;
}

.news-list article::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #f0871e;
  border-right: 2px solid #f0871e;
  transform:translateY(-50%) rotate(45deg);
  right: 20px;
  top: 50%;
}

@media screen and (max-width: 768px) {
  .news-list article::before {
    right: 0;
  }
}

.news-list article:first-of-type {
  padding-top: 0;
}

.news-list article p {
  margin-top: 0;
  margin-bottom: 0;
}

.news-list article .date {
  flex-shrink: 0;
  padding-right: 15px;
}

.news-list article .title a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.7rem;
}

.news-list .news-category-icon {
  margin-right: 20px;
}

.news-archive .link-list {
  margin: 0 auto 60px;
}

/* お知らせ一覧 */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pager .pager-control {
  display: block;
}

.pager .pager-list,
.pager .pager-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pager .pager-list {
  display: flex;
  justify-content: space-evenly;
  margin: -6px 30px 0;
}

.pager .pager-list li {
  margin: 10px 12px;
  text-align: center;
}

.pager .pager-list li a {
  text-decoration: none;
}

.pager .pager-list li:hover,
.pager .pager-list li.current {
  color: #cfd0d2;
}
/* お知らせ詳細 */
.article-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.article-header .date {
  color: #7e7e7e;
  width: 105px;
}

.news-title {
  font-size: 2.8rem;
  border-bottom: 1px dashed #f0871e;
}

.article-contents {
  padding: 30px 0;
}

.article-contents p {
  line-height: 3.85rem;
  margin-bottom: 20px;
}

.article-contents a {
  color: #f0871e;
}

@media screen and (min-width: 769px) {
  /* PC・タブレット */
  .news-list article {
    padding: 20px;
    padding-right: 40px;
  }

  .news-list article .date {
    width: 100px;
  }

  .news-list article .title {
    /* width: 760px; */
  }

  /* お知らせ一覧 */
  .pager {
    margin: 50px auto 0;
  }

  /* お知らせ詳細 */
  .news-title {
    padding-bottom: 40px;
    margin-bottom: 10px;
    width: 100%;
  }
  .article-contents {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1060px) {
  /* タブレット～PCの小さい画面 */
  .news-list article .title {
    /* width: 440px; */
  }
}

@media screen and (max-width: 768px) {
  /* スマホ */
  .news-list article {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-right: 20px;
  }

  .news-list article .date {
    width: 100px;
  }

  .news-list article .news-category-icon {
    margin-right: 0;
  }

  .news-list article .title {
    margin-top: 10px;
    width: 100%;
  }

  .news-list article .title a {
    text-decoration: none;
    display: block;
    padding: 0 0 20px 0;
    width: 100%;
  }

  /* お知らせ一覧 */
  .pager {
    margin: 30px auto 20px;
  }

  /* お知らせ詳細 */
  .news-title {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
