@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* news index*/
/* ============================================ */
.news-list li {
  border-top: 1px solid #e8e8e8;
}
.news-list li:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.news-list li p {
  display: inline-block;
  position: relative;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.news-list li a {
  display: block;
  padding: 16px;
}
.news-list li a:hover {
  background: rgba(30, 57, 99, 0.05);
  color: #1e3963;
  opacity: 1;
}
.news-list li a:hover time, .news-list li a:hover p {
  text-decoration: underline;
}
.news-list li a[target=_blank] p {
  padding-right: 20px;
}
.news-list li a[target=_blank] p::after {
  right: 3px;
  width: 12px;
  height: 12px;
  background: url(../images/common/ico_blank.svg) no-repeat center/cover;
}
.news-list li a[href$=".pdf"] p::after {
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../images/common/ico_pdf.svg) no-repeat center/cover;
}
.news-list li a[href$=".xls"] p::after, .news-list li a[href$=".xlsx"] p::after, .news-list li a[href$=".xlsn"] p::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_excel.svg) no-repeat center/cover;
}
.news-list li a[href$=".doc"] p::after, .news-list li a[href$=".docx"] p::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_word.svg) no-repeat center/cover;
}
.news-list li a[href$=".ppt"] p::after, .news-list li a[href$=".pptx"] p::after, .news-list li a[href$=".ppsx"] p::after, .news-list li a[href$=".pptm"] p::after, .news-list li a[href$=".zip"] p::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_file.svg) no-repeat center/cover;
}

.property {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.property span {
  flex: none;
  min-width: 92px;
  max-width: 100%;
  padding: 4px 12px 6px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
.property span.tag-info {
  background: #1e3963;
}
.property span.tag-note {
  background: #a28037;
}
.property span.tag-plan {
  background: #00715a;
}
.property span.tag-facility {
  background: #94214d;
}
.property span.tag-important {
  background: #c53a3c;
}
.property time {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/*
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  @include g.landscape {
    gap: 8px;
    margin-top: 24px;
  }
  .latest, .prev, .next, .oldest {
    a, span {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid g.$main_c;
      background: g.$main_c;
      color: #fff;
      font-size: 0;
      @include g.landscape {
        width: 30px;
        height: 30px;
        border-width: 1px;
      }
      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        @include g.landscape {
          width: 8px;
          height: 8px;
          margin-top: -4px;
          border-top-width: 1px;
          border-left-width: 1px;
        }
      }
    }
    span, a:hover {
      background: #fff;
      color: g.$main_c;
      opacity: 1;
      &::before {
        border-color: g.$main_c;
      }
    }
  }
  .latest, .prev {
    a, span {
      &::before {
        margin-left: -2px;
        transform: rotate(-45deg);
      }
    }
  }
  .oldest, .next {
    a, span {
      &::before {
        margin-left: -7px;
        transform: rotate(135deg);
        @include g.landscape {
          margin-left: -6px;
        }
      }
    }
  }
  .latest, .oldest {
    a, span {
      &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        margin-top: -5px;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
        @include g.landscape {
          width: 8px;
          height: 8px;
          margin-top: -4px;
          border-top-width: 1px;
          border-left-width: 1px;
        }
      }
    }
    span, a:hover {
      &::after {
        border-color: g.$main_c;
      }
    }
  }
  .latest {
    a, span {
      &::before {
        margin-left: 0;
      }
      &::after {
        margin-left: -9px;
        transform: rotate(-45deg);
        @include g.landscape {
          margin-left: -6px;
        }
      }
    }
  }
  .oldest {
    a, span {
      &::before {
        margin-left: -2px;
      }
      &::after {
        margin-left: -10px;
        transform: rotate(135deg);
        @include g.landscape {
          margin-left: -8px;
        }
      }
    }
  }
  ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    @include g.landscape {
      gap: 5px;
    }
    li {
      a, span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid g.$main_c;
        background: g.$main_c;
        color: #fff;
        @include g.landscape {
          width: 30px;
          height: 30px;
          padding: 0 0 2px 1px;
          border-width: 1px;
        }
      }
      span, a:hover {
        background: #fff;
        color: g.$main_c;
        opacity: 1;
      }
    }
  }
}
*/
#cms_paging {
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  #cms_paging {
    margin-top: 24px;
  }
}
#cms_paging ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media all and (max-width: 896px) {
  #cms_paging ul {
    gap: 5px;
  }
}
#cms_paging ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #1e3963;
  opacity: 1;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  #cms_paging ul li {
    width: 30px;
    height: 30px;
  }
}
#cms_paging ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #1e3963;
  pointer-events: none;
}
@media all and (max-width: 896px) {
  #cms_paging ul li::before {
    border-width: 1px;
  }
}
#cms_paging ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #1e3963;
  color: #fff;
}
@media all and (max-width: 896px) {
  #cms_paging ul li a {
    width: 30px;
    height: 30px;
    padding: 0 0 2px 1px;
  }
}
#cms_paging ul li a:hover {
  background: #fff;
  color: #1e3963;
  opacity: 1;
}
#cms_paging ul li.previous-off::after, #cms_paging ul li.next-off::after, #cms_paging ul li.previous a::after, #cms_paging ul li.next a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 2px solid #1e3963;
  border-left: 2px solid #1e3963;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  #cms_paging ul li.previous-off::after, #cms_paging ul li.next-off::after, #cms_paging ul li.previous a::after, #cms_paging ul li.next a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top-width: 1px;
    border-left-width: 1px;
  }
}
#cms_paging ul li.previous a::after, #cms_paging ul li.next a::after {
  border-color: #fff;
}
#cms_paging ul li.previous a:hover::after, #cms_paging ul li.next a:hover::after {
  border-color: #1e3963;
}
#cms_paging ul li.previous-off::after, #cms_paging ul li.previous a::after {
  margin-left: -2px;
  rotate: -45deg;
}
#cms_paging ul li.next-off::after, #cms_paging ul li.next a::after {
  margin-left: -6px;
  rotate: 135deg;
}

.entry .ttl {
  margin-top: 16px;
  text-align: left;
}
.entry-img {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media all and (max-width: 896px) {
  .entry-img {
    flex-direction: column;
    gap: 20px;
  }
}
.entry-img li {
  width: calc((100% - 30px) / 2);
  text-align: center;
}
.entry-img li:only-child {
  width: 100%;
}
@media all and (max-width: 896px) {
  .entry-img li {
    width: 100%;
  }
}
.entry-body {
  line-height: 1.75;
}
.entry-body a {
  position: relative;
  color: #1e3963;
  text-decoration: underline;
}
.entry-body a:hover {
  text-decoration: none;
  opacity: 1;
}
.entry-body a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.entry-body a[target=_blank] {
  padding-right: 20px;
}
.entry-body a[target=_blank]::after {
  right: 3px;
  width: 12px;
  height: 12px;
  background: url(../images/common/ico_blank.svg) no-repeat center/cover;
}
.entry-body a[href$=".pdf"]::after {
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../images/common/ico_pdf.svg) no-repeat center/cover;
}
.entry-body a[href$=".xls"]::after, .entry-body a[href$=".xlsx"]::after, .entry-body a[href$=".xlsn"]::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_excel.svg) no-repeat center/cover;
}
.entry-body a[href$=".doc"]::after, .entry-body a[href$=".docx"]::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_word.svg) no-repeat center/cover;
}
.entry-body a[href$=".ppt"] p::after, .entry-body a[href$=".pptx"] p::after, .entry-body a[href$=".ppsx"] p::after, .entry-body a[href$=".pptm"] p::after, .entry-body a[href$=".zip"] p::after {
  right: 0;
  width: 16px;
  height: 19px;
  background: url(../images/common/ico_file.svg) no-repeat center/cover;
}
.entry-body p {
  margin-block: 1em;
}
.entry-body ol {
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-block: 1em;
}
.entry-body ol li {
  position: relative;
  padding-left: 36px;
}
.entry-body ol li::before {
  counter-increment: num;
  content: counter(num);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #1e3963;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .entry-body ol li::before {
    top: 0;
  }
}
.entry-body ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-block: 1em;
}
.entry-body ul li {
  position: relative;
  padding-left: 20px;
}
.entry-body ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e3963;
}
@media all and (max-width: 896px) {
  .entry-body ul li::before {
    top: 6px;
  }
}
.entry .back {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.entry .back a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 512px; /*仮*/
  padding: 20px 40px;
  border: 2px solid #e6ecf2;
  border-radius: 100px;
  background: #fff;
  color: #1e3963;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
@media all and (max-width: 896px) {
  .entry .back a {
    padding: 10px 20px;
  }
}
.entry .back a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 10px;
  height: 9px;
  margin-top: -5px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  transform: scaleX(-1);
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .entry .back a::before {
    right: 10px;
  }
}
.entry .back a:hover {
  border-color: #1e3963;
  background: #1e3963;
  color: #fff;
  opacity: 1;
}
.entry .back a:hover::before {
  filter: brightness(0) invert(1);
}

/*# sourceMappingURL=news.css.map */
