@charset "UTF-8";
/*
お知らせページ用
============================================== */
/* お知らせ一覧
-----------------*/
#page--news .archiveSelector {
  text-align: left;
  margin: 0 auto 5rem;
}
@media (max-width: 767px) {
  #page--news .archiveSelector {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
#page--news .newsContainer {
  max-width: 1080px;
  margin: 0 auto 42px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border-top: solid 2px #DEDEDE;
}
@media (max-width: 767px) {
  #page--news .newsContainer {
    width: 100%;
  }
}
#page--news .newsContainer .newsContainer__item {
  display: grid;
  gap: 28px;
  grid-template-columns: 160px 1fr;
  text-align: left;
  border-bottom: solid 2px #DEDEDE;
  padding: 2.3% 0;
  text-decoration: none;
}
@media (max-width: 767px) {
  #page--news .newsContainer .newsContainer__item {
    flex-basis: 100%;
    width: 100%;
    grid-template-columns: 80px auto;
    min-height: calc(80px - 12px);
    column-gap: 13px;
    padding: 12px 0;
  }
}
.item__inner{
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
  min-height: 160px;
  align-content: center;
  align-items: start;
}
@media (max-width: 767px) {
  .item__inner{
  min-height: 80px;
  }
}
#page--news .newsContainer .newsContainer__item .item__img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #page--news .newsContainer .newsContainer__item .item__img {
    max-width: 80px;
    max-height: 80px;
  }
}
#page--news .newsContainer .newsContainer__item .item__data .item__pubdate {
  font-size: 2rem;
  color: #575757;
  padding-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  #page--news .newsContainer .newsContainer__item .item__data .item__pubdate {
    font-size: 1.2rem;
  }
}
#page--news .newsContainer .newsContainer__item .item__data .item__title {
  font-size: 2rem;
  color: #000000;
  font-weight: normal;
}
#page--news .newsContainer .newsContainer__item .item__data .item__title:hover {
  color: #AC000C;
}
@media (max-width: 767px) {
  #page--news .newsContainer .newsContainer__item .item__data .item__title {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}
#page--news ul.page-numbers {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#page--news ul.page-numbers li {
  font-size: clamp(17px, 2.8vw, 21px);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  flex-basis: 3.6rem;
  margin-right: 0.7rem;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li {
    font-size: 1.4rem;
    flex-basis: 3rem;
    margin-right: 0.5rem;
  }
}
#page--news ul.page-numbers li a {
  color: #1a1a1a;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.2rem 1.5rem 0.7rem;
  height: 3.6rem;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li a {
    padding: 0.2rem 0.5rem 0.5rem;
    height: 3rem;
  }
}
#page--news ul.page-numbers li .prev {
  content: '';
  background: url(/wp-content/themes/mngtr_basic/img/icon--paginationLeftArrow.svg) no-repeat center center/8px 13px;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li .prev {
    background: url(/wp-content/themes/mngtr_basic/img/icon--paginationLeftArrow.svg) no-repeat center center/7px 11px;
  }
}
#page--news ul.page-numbers li .next {
  content: '';
  background: url(/wp-content/themes/mngtr_basic/img/icon--paginationRightArrow.svg) no-repeat center center/8px 13px;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li .next {
    background: url(/wp-content/themes/mngtr_basic/img/icon--paginationRightArrow.svg) no-repeat center center/7px 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;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  background: #A33335;
  padding: 0.2rem 0.5rem 0.7rem;
  width: 100%;
  height: 3.6rem;
}
@media (max-width: 767px) {
  #page--news ul.page-numbers li .current {
    padding: 0.2rem 0.5rem 0.5rem;
    height: 3rem;
  }
}

/* お知らせ詳細
-----------------*/
#page--newsDetail .pageBody {
  font-size: 1.6rem;
}
#page--newsDetail .post .postHeader {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3%;
}
@media (max-width: 767px) {
  @supports (display: flex;) {
    #page--newsDetail .post .postHeader {
      flex-direction: column;
    }
  }
  #page--newsDetail .pageBody {
    font-size: 1.2rem;
    padding-top: 0;
  }
}
#page--newsDetail .post .postHeader .postHeader__img {
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postHeader .postHeader__img {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 1.8rem;
  }
  @supports (display: flex;) {
    #page--newsDetail .post .postHeader .postHeader__img {
      flex-basis: 100%;
    }
  }
}
#page--newsDetail .post .postHeader .postHeader__meta {
  flex-basis: 100%;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postHeader .postHeader__meta {
    width: 100%;
  }
  @supports (display: flex;) {
    #page--newsDetail .post .postHeader .postHeader__meta {
      flex-basis: 100%;
    }
  }
}
#page--newsDetail .post .postHeader .meta__title {
  font-size: 2.8rem;
  color: #212121;
  margin-bottom: 1.3rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postHeader .meta__title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
}
#page--newsDetail .post .postHeader .meta__pubdate {
  font-size: 1.7rem;
  color: #575757;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postHeader .meta__pubdate {
    font-size: 1.2rem;
  }
}
#page--newsDetail .post .postHeader .meta__tags {
  padding: 0 0 1.8rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
#page--newsDetail .post .postHeader .meta__tags .meta__tag {
  padding: 0.3rem 1.8rem;
  font-size: 1.1rem;
  border: solid 1px #1a1a1a;
  color: #1a1a1a;
  border-radius: 3rem;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}
#page--newsDetail .post .postBody h2 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 1.2rem 2rem;
  background: #991010;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postBody h2 {
    font-size: 1.8rem;
    padding: 1.4rem 2.4rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
  }
}
#page--newsDetail .post .postBody h3 {
  color: #991010;
  font-size: 2.8rem;
  font-weight: bold;
  border-left: solid 3px #991010;
  padding: 5px 15px;
  margin-bottom: 1.8rem;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postBody h3 {
    font-size: 1.8rem;
  }
}
#page--newsDetail .post .postBody h4 {
  color: #991010;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postBody h4 {
    font-size: 1.6rem;
  }
}
#page--newsDetail .post .postBody ul {
  list-style-type: none;
  margin-left: 0;
}
#page--newsDetail .post .postBody ul li {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #page--newsDetail .post .postBody ul li {
    font-size: 1.4rem;
  }
}
#page--newsDetail .postBody {
  margin-bottom: 8rem;
}
#page--newsDetail .postBody p {
  margin-bottom: 2rem;
  line-height: 2.7rem;
}
@media (max-width: 767px) {
  #page--newsDetail .postBody {
    margin-bottom: 4rem;
  }
  #page--newsDetail .postBody p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 2.2rem;
  }
}
#page--newsDetail .post .postBody img {
  margin-bottom: 1.5rem;
}
.post .postBody .btn-round{
  border:solid 1px #231815;
  color: #19191A;
  margin:7.5% auto 15%;
  padding: .35em 0;
  border-radius: 100vh;
  display: block;
  text-align: center;
  width: 60%;
  transition: .4s;
  -webkit-tap-highlight-color: rgba( 0, 0, 0, 1);
}
.post .postBody .btn-round:active,
.post .postBody .btn-round:focus,
.post .postBody .btn-round:hover{
  background: #000;
  color: #fff;
  border: solid 1px #000;
}
@media (max-width: 767px){
  .post .postBody .btn-round:active,
  .post .postBody .btn-round:focus,
  .post .postBody .btn-round:hover {
    background: #fff;
    color: #000;
    border: solid 1px #000;
  }
}
#page--newsDetail .sectionTitle {
  width: 100%;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 4.2rem;
}
@media (max-width: 767px) {
  #page--newsDetail .sectionTitle {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}

#page--newsDetail .post .btnContainer {
  max-width: 1080px;
  margin: auto;
}

/*#page--newsDetail .shareBtnContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8.4rem;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer {
    margin-bottom: 7.2rem;
  }
}
#page--newsDetail .shareBtnContainer .btn--shareTwitter {
  background: #1da1f2;
  flex-basis: calc((100% - 6.8rem) / 3);
  text-align: center;
  height: 6.3rem;
  padding: 2rem 2rem 1.9rem;
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareTwitter {
    height: 3.9rem;
    padding: 1rem 2rem 1.1rem;
    flex-basis: calc((100% - 2rem) / 3);
  }
}
#page--newsDetail .shareBtnContainer .btn--shareTwitter .icon--twitter {
  width: 3.1rem;
  height: 2.4rem;
  content: '';
  display: inline-block;
  background: url(img/icon--twitter.svg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareTwitter .icon--twitter {
    width: 2.2rem;
    height: 1.8rem;
  }
}
#page--newsDetail .shareBtnContainer .btn--shareFacebook {
  background: #385898;
  flex-basis: calc((100% - 6.8rem) / 3);
  text-align: center;
  height: 6.3rem;
  padding: 1.7rem 2rem 1.5rem;
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareFacebook {
    height: 3.9rem;
    padding: 0.9rem 2rem 0.8rem;
    flex-basis: calc((100% - 2rem) / 3);
  }
}
#page--newsDetail .shareBtnContainer .btn--shareFacebook .icon--facebook {
  width: 1.4rem;
  height: 3.1rem;
  content: '';
  display: inline-block;
  background: url(img/icon--facebook.svg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareFacebook .icon--facebook {
    width: 1rem;
    height: 2.2rem;
  }
}
#page--newsDetail .shareBtnContainer .btn--shareLine {
  background: #00B900;
  flex-basis: calc((100% - 6.8rem) / 3);
  text-align: center;
  height: 6.3rem;
  padding: 1.6rem 2rem 2.3rem;
  border-radius: 0.4rem;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareLine {
    height: 3.9rem;
    padding: 0.7rem 2rem 1rem;
    flex-basis: calc((100% - 2rem) / 3);
  }
}
#page--newsDetail .shareBtnContainer .btn--shareLine .icon--line {
  width: 3.2rem;
  height: 3rem;
  content: '';
  display: inline-block;
  background: url(img/icon--line.svg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #page--newsDetail .shareBtnContainer .btn--shareLine .icon--line {
    width: 2.3rem;
    height: 2.2rem;
  }
}*/
#page--newsDetail .newsContainer {
  display: flex;
  margin-bottom: 4rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
#page--newsDetail .newsContainer .newsContainer__item {
  flex-basis: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
  border-top: solid 1px #d3d3d3;
  border-bottom: solid 1px #d3d3d3;
  padding: 18px 0 25px;
  text-decoration: none;
}
@media (max-width: 767px) {
  #page--newsDetail .newsContainer .newsContainer__item {
    flex-basis: 100%;
    width: 100%;
    padding: 12px 0;
  }
}
#page--newsDetail .newsContainer .newsContainer__item:first-child {
  border-bottom: none;
}
#page--newsDetail .newsContainer .newsContainer__item:nth-child(2) {
  border-bottom: none;
}
#page--newsDetail .newsContainer .newsContainer__item .item__img {
  flex-basis: 122px;
  max-width: 122px;
  margin-right: 28px;
  height: 122px;
}
@media (max-width: 767px) {
  #page--newsDetail .newsContainer .newsContainer__item .item__img {
    flex-basis: 80px;
    max-width: 80px;
    height: 80px;
    margin-right: 13px;
  }
}
#page--newsDetail .newsContainer .newsContainer__item .item__data .item__pubdate {
  font-size: 1.6rem;
  color: #575757;
  padding-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  #page--newsDetail .newsContainer .newsContainer__item .item__data .item__pubdate {
    font-size: 1.2rem;
  }
}
#page--newsDetail .newsContainer .newsContainer__item .item__data .item__title {
  font-size: 1.6rem;
  color: #000000;
  font-weight: normal;
}
@media (max-width: 767px) {
  #page--newsDetail .newsContainer .newsContainer__item .item__data .item__title {
    font-size: 1.4rem;
  }
}
#page--newsDetail .btnContainer > .btn {
  width: 100%;
  max-width: 480px;
}

.formSelect {
  width: 24rem;
  padding: .5em 2em .5em 1em;
  outline: none;
  font-size: 1.8rem;
  font-weight: 700;
  background: url(../img/icon-down.svg) no-repeat right 10px center/11px 7px;
  color: #575757;
  border: solid 1px #575757;
}
@media (max-width: 767px) {
  .formSelect {
    width: 40%;
    max-width: 24rem;
    font-size: 1.5rem;
  }
}
