@charset "UTF-8";
/*
お知らせページ用
============================================== */
/* お知らせ一覧
-----------------*/
#page--news .pageTitle {
  width: max(20%, 64px);
}
#page--news .formSelect {
  width: 100%;
  padding: 1em 1.5em;
  font-weight: 700;
  font-size: clamp(15px, 2.8vw, 20px);
  color: #000;
  background: #fff url(../img/icon-down.svg) no-repeat right 25px center/12px 6px;
  border-radius: 5px;
  outline: none;
}
@media (min-width: 769px) {
  #page--news .archiveSelector {
    text-align: right;
  }
  #page--news .formSelect {
    width: 395px;
    background-position: right 40px center;
    background-size: 18px 9px;
  }
}
#page--news .newsContainer {
  margin: 0 auto 5rem;
  border-top: solid 1px #c4c4c4;
}
.newsContainer__wrap{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 4rem 0;
  text-align: left;
  border-bottom: solid 1px #c4c4c4;
}
@media (max-width: 767px) {
  .newsContainer__wrap {
    width: 100%;
    grid-template-columns: 80px auto;
    min-height: calc(80px - 12px);
    column-gap: 13px;
    padding: 3rem 0;
  }
}
#page--news .newsContainer .newsContainer__item {
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
  min-height: 160px;
  align-content: center;
  align-items: start;
}
@media (max-width: 767px) {
  #page--news .newsContainer .newsContainer__item {
    min-height: 80px;
  }
}
#page--news .newsContainer .newsContainer__item .item__title {
  margin-top: 5px;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.12vw + .88rem, 2rem);
  color: #333;
}
#page--news .newsContainer .item__pubdate {
  font-weight: 500;
  font-size: clamp(1.3rem, 1.12vw + .88rem, 2rem);
  color: #333;
}
#page--news ul.page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
#page--news ul.page-numbers li {
  flex-basis: 3rem;
  margin-right: .5rem;
  font-weight: 500;
  font-size: clamp(17px, 2.8vw, 21px);
  font-family: "Crimson Text", sans-serif;
}
@media (min-width: 769px) {
  #page--news ul.page-numbers li {
    flex-basis: 3.6rem;
    margin-right: .7rem;
  }
}
#page--news ul.page-numbers li a {
  display: block;
  height: 3rem;
  padding: .2rem .5rem .5rem;
  text-align: center;
}
@media (min-width: 769px) {
  #page--news ul.page-numbers li a {
    height: 3.6rem;
    padding: .2rem 1.5rem .7rem;
  }
}
#page--news ul.page-numbers li .prev::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #19191a;
  border-right: 1px solid #19191a;
  transform: rotate(225deg) translateY(1px);
}
@media (min-width: 769px) {
  #page--news ul.page-numbers li .prev::before {
    width: 11px;
    height: 11px;
  }
}
#page--news ul.page-numbers li .next::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #19191a;
  border-right: 1px solid #19191a;
  transform: rotate(45deg) translateY(-1px);
}
@media (min-width: 769px) {
  #page--news ul.page-numbers li .next::before {
    width: 11px;
    height: 11px;
  }
}
#page--news ul.page-numbers li .dots {
  padding: 0.5rem 1.5rem 0.7rem;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li .dots {
    padding: 0.4rem 1rem 0.5rem;
  }
}
#page--news ul.page-numbers li .current {
  display: block;
  width: 100%;
  height: 3rem;
  padding: .2rem .5rem .5rem;
  text-align: center;
  color: #fff;
  background: #a31a1a;
  border-radius: 50%;
}
@media (min-width: 769px) {
  #page--news ul.page-numbers li .current {
    height: 3.6rem;
    padding: .2rem .5rem .7rem;
  }
}
.item__img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .item__img {
    max-width: 80px;
    height: 80px;
  }
}
/* お知らせ詳細
-----------------*/
.newsDetail {
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #333;
}
.newsDetail .post .postTitle {
  font-weight: 400;
  font-size: clamp(2rem, .73vw + 1.73rem, 2.6rem);
}
.newsDetail .post .postTitle::after {
  content: "";
  display: block;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #c4c4c4;
}
@media (min-width: 769px) {
  .newsDetail {
    padding-top: 12rem;
    padding-bottom: 15rem;
  }
  .newsDetail .post .postTitle::after {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.newsDetail .post .postImg {
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 480px;
}
@media (min-width: 769px) {
  .newsDetail .post .postImg {
    margin-bottom: 4rem;
  }
}
.newsDetail .post .postDate {
  font-weight: 500;
  font-size: clamp(1.5rem, .8vw + 1.2rem, 2rem);
}
.newsDetail .post .postBody img {
  margin-bottom: 1.5rem;
}
.newsDetail .post .postBody > p {
  margin-bottom: 1em;
  font-size: clamp(1.4rem, .96vw + 1.04rem, 2rem);
}
.newsDetail .post .btn.type-default > .arrow {
  right: 3em;
}
