@charset "UTF-8";
/* =====================
  お知らせ
 ======================= */
/** -------------------- 2カラム -------------------- **/
.news-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 4.167%;
     -moz-column-gap: 4.167%;
          column-gap: 4.167%;
}

.news-flex-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.news-flex-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21.25%;
          flex: 0 0 21.25%;
}

/** -------------------- カテゴリーリンク -------------------- **/
.news-category {
  margin-bottom: 11.173%;
}
.news-category-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.235% 1fr 2.235% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em 2.235%;
  text-align: center;
}
.news-category-list a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--c_blue);
  color: var(--c_wht);
  font-size: 125%;
  font-weight: 700;
  line-height: 1.44;
  padding: 0.6em 0.32em;
  border-radius: 100px;
}
.news-category-list a.is-inactive {
  background: #DCDCDC !important;
  color: #9B9B9B !important;
}

/** -------------------- 年月アーカイブ -------------------- **/
.news-sidenav {
  background: #E3F4FA;
  border-radius: 1.5em;
  padding: 0.75em 1em 1.5em;
}
.news-sidenav-ttl {
  text-align: center;
  font-size: 125%;
  font-weight: 700;
  line-height: 1.44;
  padding-bottom: 0.6em;
  border-bottom: 2px solid currentColor;
  margin-bottom: 1.2em;
  color: var(--c_blue);
}
.news-sidenav-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  margin: 0 auto;
}
.news-sidenav-list > li {
  font-size: 125%;
  line-height: 1.44;
}
.news-sidenav-list > li + li {
  margin-top: 1.5em;
}
.news-sidenav-list a {
  position: relative;
  display: inline-block;
}
.news-sidenav-list a:hover {
  color: var(--c_blue);
  opacity: 1;
}
.news-sidenav-list.is-date > li {
  position: relative;
}
.news-sidenav-list.is-date a .is-current {
  color: var(--c_blue);
}
.news-sidenav-list.is-date a .is-current:before, .news-sidenav-list.is-date a .is-current:after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: var(--c_blue);
  border-radius: 50%;
  position: absolute;
  right: calc(100% + 7px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.news-sidenav-list.is-date a .is-current:after {
  background: url(../img/common/arrow.png) no-repeat center/8px;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

/** -------------------- お知らせ一覧 -------------------- **/
.news-archive-list {
  border-top: 1px solid var(--c_border);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1em auto 1em 1fr;
  grid-template-columns: auto auto 1fr;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
.news-archive-list-item {
  border-bottom: 1px solid var(--c_border);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: subgrid;
  grid-template-columns: subgrid;
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.news-archive-list-item-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: subgrid;
  grid-template-columns: subgrid;
  -ms-grid-column-span: 3;
  grid-column: span 3;
  padding: 1.2em 0;
  font-size: 125%;
  line-height: 1.44;
}
.news-archive-list-item-date {
  letter-spacing: 0.2em;
  color: var(--c_border);
}
.news-archive-list-item-cat > span {
  text-align: center;
  display: block;
  font-weight: 700;
  border-radius: 100px;
  padding: 0 0.8em;
  background: var(--c_blue);
  color: var(--c_wht);
  max-width: 10em;
}
.news-archive-list-item-cat > span + span {
  margin-top: 0.32em;
}
.news-archive-list-item-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}

/** -------------------- お知らせ詳細 -------------------- **/
.news-single-head {
  margin-bottom: 3.352%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5em 2.235%;
}

.news-single-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
}
.news-single-cat > span {
  font-size: 125%;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  padding: 0.44em 1.6em;
  min-width: 11.4em;
}

.news-single-date {
  font-size: 125%;
  line-height: 1.44;
}

.news-single-ttl {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  font-size: 225%;
  font-weight: 700;
  line-height: 1.44;
}

.news-single-body {
  font-size: 125%;
  line-height: 1.8;
}
.news-single-body a {
  text-decoration: underline;
  color: var(--c_blue);
}

.pager {
  margin-top: 5.587%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  font-size: 125%;
  font-weight: 700;
}

.pager-item--all {
  background: var(--c_blue);
  color: var(--c_wht);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  padding: 0.36em 1.6em 0.36em 2em;
  border: 2px solid var(--c_blue);
}
.pager-item--all:after {
  content: "";
  width: 0.36em;
  height: 0.64em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.pager-item--all:hover {
  opacity: 1;
  background: var(--c_wht);
  color: var(--c_blue);
}
.pager-item--all:hover:after {
  -webkit-filter: var(--filter_blue);
          filter: var(--filter_blue);
}

.pager-item--prev,
.pager-item--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  color: var(--c_blue);
}
.pager-item--prev i,
.pager-item--next i {
  width: 2.64em;
  height: 2.64em;
  border-radius: 50%;
  background: var(--c_blue);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager-item--prev i:before,
.pager-item--next i:before {
  content: "";
  width: 0.48em;
  height: 0.88em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.pager-item--prev i {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

span.pager-item--prev,
span.pager-item--next {
  opacity: 0.2;
}

/* タブレット
  ------------------------ */
@media (max-width: 1000px) {
  /** -------------------- 2カラム -------------------- **/
  .news-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 60px;
  }
  .news-flex-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 225px;
            flex: 0 0 225px;
  }
}
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  /** -------------------- 2カラム -------------------- **/
  .news-flex {
    row-gap: 40px;
  }
  /** -------------------- カテゴリーリンク -------------------- **/
  .news-category {
    margin-bottom: 50px;
  }
  .news-category-list {
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
  .news-category-list a {
    font-size: 16px;
    padding: 8px 4px;
  }
  /** -------------------- 年月アーカイブ -------------------- **/
  .news-sidenav {
    border-radius: 12px;
    padding: 16px 16px 20px;
  }
  .news-sidenav-ttl {
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
  .news-sidenav-list > li {
    font-size: 16px;
  }
  .news-sidenav-list > li + li {
    margin-top: 16px;
  }
  .news-sidenav-list.is-date {
    padding-left: 30px;
  }
  .news-sidenav-list.is-date a .is-current:before, .news-sidenav-list.is-date a .is-current:after {
    width: 20px;
    height: 20px;
  }
  .news-sidenav-list.is-date a .is-current:after {
    background-size: 6px;
  }
  /** -------------------- お知らせ一覧 -------------------- **/
  .news-archive-list {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .news-archive-list-item {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
  .news-archive-list-item-link {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    gap: 12px 20px;
    padding: 16px 0;
    font-size: 14px;
  }
  .news-archive-list-item-ttl {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    font-size: 16px;
    -webkit-line-clamp: 2;
  }
  /** -------------------- お知らせ詳細 -------------------- **/
  .news-single-head {
    margin-bottom: 20px;
    gap: 16px 8px;
  }
  .news-single-cat {
    gap: 4px 2px;
  }
  .news-single-cat > span {
    font-size: 12px;
    padding: 4px 12px;
    min-width: 80px;
  }
  .news-single-date {
    font-size: 12px;
  }
  .news-single-ttl {
    font-size: 20px;
  }
  .news-single-body {
    font-size: 16px;
  }
  .pager {
    margin-top: 30px;
    font-size: 14px;
  }
  .pager-item--all {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    padding: 8px 16px 8px 20px;
  }
  .pager-item--all:after {
    width: 6px;
    height: 12px;
  }
  .pager-item--prev,
  .pager-item--next {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .pager-item--prev i,
  .pager-item--next i {
    width: 28px;
    height: 28px;
  }
  .pager-item--prev i:before,
  .pager-item--next i:before {
    width: 6px;
    height: 12px;
  }
}