@charset "UTF-8";
/**************************************/
/* -------------------------
 * 全体レイアウト
 * ------------------------- */
.news__container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 19%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6rem 0;
  }
}

/* -------------------------
 * サイドメニュー
  * （共通）
 * ------------------------- */
.news-sidebar__item + .news-sidebar__item {
  margin-top: 6rem;
}

.news-sidebar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .news-sidebar__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.news-sidebar__list > li {
  line-height: 1;
}

.news-sidebar__list-item {
  line-height: 1;
}

.news-sidebar__list-item--current-category a {
  border: 1px solid #2e2e2e;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.7rem;
  min-width: 15rem;
  line-height: 1;
  border-radius: 100vmax;
  font-size: var(--f13);
}
@media (max-width: 834px) {
  .news-sidebar__list-item--current-category a {
    padding: 1rem;
  }
}
.news-sidebar__list-item--current-category a.active {
  background: #2e2e2e;
  color: #fff;
}

.news-sidebar__list-item--all {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .news-sidebar__list-item--all {
    margin-bottom: 0;
  }
}

.news-sidebar__link.base-btn--black-line.active {
  background: #000;
  color: #fff;
}

/* -------------------------
 * アーカイブページ
 * ------------------------- */
.news-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .news-archive__list {
    gap: 3rem;
  }
}

.news-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 834px) {
  .news-archive__link .post-page__meta {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 834px) {
  .news-archive__link .news-archive__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 834px) {
  .news-archive__link .post-page__ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.news-archive__thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  position: relative;
}
.news-archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}

.news-archive__list li a {
  display: grid;
  grid-template-columns: 938fr 16fr;
  gap: 0rem 6.5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .news-archive__list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-archive__list li a:hover .news-archive__arrow {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.news-archive__list li a:hover .news-archive__thumbnail img {
  -webkit-transition: -webkit-transform 0.5s var(--ease-out-cubic);
  transition: -webkit-transform 0.5s var(--ease-out-cubic);
  transition: transform 0.5s var(--ease-out-cubic);
  transition: transform 0.5s var(--ease-out-cubic), -webkit-transform 0.5s var(--ease-out-cubic);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-archive__thumbnail {
  overflow: hidden;
}
.news-archive__thumbnail img {
  -webkit-transition: -webkit-transform 0.3s var(--ease-out-cubic);
  transition: -webkit-transform 0.3s var(--ease-out-cubic);
  transition: transform 0.3s var(--ease-out-cubic);
  transition: transform 0.3s var(--ease-out-cubic), -webkit-transform 0.3s var(--ease-out-cubic);
  aspect-ratio: 200/150;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 834px) {
  .news-archive__thumbnail {
    margin-block: 1rem 2rem;
  }
}

.news-archive__list-content {
  display: grid;
  grid-template-columns: 200fr 493fr;
  gap: 0rem 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-archive__ttl {
  font-size: var(--f16);
  font-weight: 400;
  margin-block: 1.5rem 1.7rem;
}
@media (max-width: 834px) {
  .news-archive__ttl {
    margin-block: 0.5rem;
    width: 100%;
  }
}

.news-archive__date {
  font-size: var(--f13);
  font-weight: 400;
  font-family: "Albert Sans", sans-serif;
}
@media (max-width: 834px) {
  .news-archive__date {
    width: 100%;
  }
}

.news-archive__arrow {
  -webkit-transform: translateX(0rem);
          transform: translateX(0rem);
  -webkit-transition: -webkit-transform 0.3s var(--ease-in);
  transition: -webkit-transform 0.3s var(--ease-in);
  transition: transform 0.3s var(--ease-in);
  transition: transform 0.3s var(--ease-in), -webkit-transform 0.3s var(--ease-in);
}
.news-archive__arrow .material-symbols-outlined {
  font-size: 1.8rem;
  font-weight: normal;
  color: #000;
}
@media (max-width: 834px) {
  .news-archive__arrow {
    margin-left: auto;
  }
}

.news-archive__category-item {
  font-size: var(--f13);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.7rem;
  min-width: 9rem;
  line-height: 1;
  border-radius: 100vmax;
}
@media (max-width: 834px) {
  .news-archive__category-item {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

/* -------------------------
 * アーカイブページ
 * ページネーション
 * ------------------------- */
.news__pagination {
  margin: 9rem auto 0;
  text-align: center;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 834px) {
  .news__pagination {
    margin-top: 5rem;
    font-size: var(--f15);
  }
}
.news__pagination .material-symbols-outlined {
  font-size: 1.8rem;
}
.news__pagination .next,
.news__pagination .prev {
  border: 1px solid #000;
  border-radius: 100vmax;
  width: 6rem;
  aspect-ratio: 60/30;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 834px) {
  .news__pagination .next,
  .news__pagination .prev {
    width: 4rem;
  }
}
.news__pagination .next:hover,
.news__pagination .prev:hover {
  color: #f9f9f7;
  background: #000;
}
.news__pagination .next .material-symbols-outlined,
.news__pagination .prev .material-symbols-outlined {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: var(--f18);
}
@media (max-width: 834px) {
  .news__pagination .next .material-symbols-outlined,
  .news__pagination .prev .material-symbols-outlined {
    font-size: 1rem;
  }
}
.news__pagination .next {
  color: #fff;
  background: #000;
}
.news__pagination .next:hover {
  color: #000;
  background: transparent;
}
.news__pagination .next:hover .material-symbols-outlined {
  -webkit-transform: translateX(0.3rem);
          transform: translateX(0.3rem);
}
.news__pagination .prev {
  color: #000;
  background: transparent;
}
.news__pagination .prev:hover {
  color: #fff;
  background: #000;
}
.news__pagination .prev:hover .material-symbols-outlined {
  -webkit-transform: translateX(-0.3rem);
          transform: translateX(-0.3rem);
}
.news__pagination .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 834px) {
  .news__pagination .pagination {
    gap: 1rem 5%;
  }
}
.news__pagination .page-numbers.current {
  position: relative;
}
.news__pagination .page-numbers.current::after {
  background: #000;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.5rem;
  height: 0.1rem;
  bottom: -0.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

/* -------------------------
 * 個別記事ページ
 * ------------------------- */
.news-single__go-top-btn {
  margin-inline: auto;
}

.news-single__meta {
  max-width: 1000px;
  margin-inline: auto;
}

.news-single__category-item {
  font-size: var(--f13);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 1.7rem;
  min-width: 9rem;
  line-height: 1;
  border-radius: 100vmax;
}
@media (max-width: 834px) {
  .news-single__category-item {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

.news-single__meta-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 834px) {
  .news-single__meta-top {
    margin-bottom: 1rem;
  }
}

.news-single__ttl {
  font-size: var(--f24);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.news-single__thumbnail {
  max-width: 78rem;
  margin-inline: auto;
}

/* -------------------------
 * 個別記事ページ
 * 見出し設定
 * ------------------------- */
.news-single__content-body {
  padding-bottom: 9rem;
}
@media (max-width: 834px) {
  .news-single__content-body {
    padding-bottom: 5rem;
  }
}
.news-single__content-body p {
  font-size: var(--f14);
  line-height: 2.5;
}
.news-single__content-body .wp-block-heading {
  margin-top: 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.news-single__content-body .wp-block-heading + p {
  margin-top: 1.5rem;
}
.news-single__content-body p + .wp-block-heading {
  margin-top: 4rem;
}
.news-single__content-body h2.wp-block-heading {
  font-size: var(--f20);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  width: 100%;
  padding-bottom: 2rem;
}
.news-single__content-body h2.wp-block-heading::before {
  background: #e3241e;
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 1.2rem;
  aspect-ratio: 12/6;
  height: 0.6rem;
  z-index: -1;
  margin-top: 0.6em;
}
.news-single__content-body h3.wp-block-heading {
  font-size: var(--f20);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  width: 100%;
}
.news-single__content-body h3.wp-block-heading::before {
  background: #2e2e2e;
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 1.2rem;
  aspect-ratio: 12/6;
  height: 0.6rem;
  z-index: -1;
  margin-top: 0.6em;
}
.news-single__content-body h4.wp-block-heading {
  font-size: var(--f16);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background: #676e73;
  padding: 0.4rem 1.2rem;
}
.news-single__content-body h5.wp-block-heading {
  font-size: var(--f16);
  font-weight: 500;
  color: #676e73;
  border-bottom: 1px solid #676e73;
}
.news-single__content-body h6.wp-block-heading {
  font-size: var(--f13);
  font-weight: 500;
  background: rgba(103, 110, 115, 0.05);
  padding: 0.4rem 1.2rem;
}

/* -------------------------
 * 個別記事ページ
 * プラグイン「Table of Contents Plus」使用時の設定
 * ------------------------- */
.news-single__content-body .toc_title {
  text-align: left !important;
  color: #000;
  font-family: "Albert Sans", sans-serif;
  font-size: var(--f42);
  line-height: 1;
}
.news-single__content-body #toc_container {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  max-width: 1100px;
  border: none;
  background: rgba(103, 110, 115, 0.05);
  padding: 4rem 5%;
  margin-block: 8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 11%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1240px) {
  .news-single__content-body #toc_container {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 5%;
    margin-block: 3rem;
    gap: 0;
  }
}
.news-single__content-body #toc_container a {
  color: inherit;
}
.news-single__content-body #toc_container a[href^="#H2"],
.news-single__content-body #toc_container a[href^="#h2"] {
  font-size: var(--f22);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5em;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container a[href^="#H2"],
  .news-single__content-body #toc_container a[href^="#h2"] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-single__content-body #toc_container a[href^="#H2"]::before,
.news-single__content-body #toc_container a[href^="#h2"]::before {
  background: #e3241e;
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 1.2rem;
  aspect-ratio: 12/6;
  height: 0.6rem;
  z-index: -1;
  margin-top: 0.6em;
}
.news-single__content-body #toc_container a[href^="#H3"],
.news-single__content-body #toc_container a[href^="#h3"] {
  font-size: var(--f18);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5em;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container a[href^="#H3"],
  .news-single__content-body #toc_container a[href^="#h3"] {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-single__content-body #toc_container a[href^="#H3"]::before,
.news-single__content-body #toc_container a[href^="#h3"]::before {
  background: #2e2e2e;
  border-radius: 3px;
  content: "";
  display: inline-block;
  width: 1.2rem;
  aspect-ratio: 12/6;
  height: 0.6rem;
  z-index: -1;
  margin-top: 0.6em;
}
.news-single__content-body #toc_container a[href^="#H4"],
.news-single__content-body #toc_container a[href^="#h4"] {
  font-size: var(--f16);
  font-weight: 500;
  padding-left: 0.5rem;
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container a[href^="#H4"],
  .news-single__content-body #toc_container a[href^="#h4"] {
    padding-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-single__content-body #toc_container a[href^="#H5"],
.news-single__content-body #toc_container a[href^="#h5"] {
  font-size: var(--f16);
  font-weight: 400;
  color: #676e73;
  padding-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container a[href^="#H5"],
  .news-single__content-body #toc_container a[href^="#h5"] {
    padding-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-single__content-body #toc_container a[href^="#H6"],
.news-single__content-body #toc_container a[href^="#h6"] {
  font-size: var(--f14);
  font-weight: 400;
  color: #111;
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container a[href^="#H6"],
  .news-single__content-body #toc_container a[href^="#h6"] {
    padding-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-single__content-body #toc_container .toc_list > li + li {
  margin-top: 4.5rem;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container .toc_list > li + li {
    margin-top: 3rem;
  }
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container ul ul {
    margin-left: 0;
  }
}
.news-single__content-body #toc_container p.toc_title + ul.toc_list {
  margin-top: 0;
}
.news-single__content-body #toc_container p.toc_title + ul.toc_list ul {
  margin-top: 2em;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container p.toc_title + ul.toc_list ul {
    margin-top: 1em;
  }
}
.news-single__content-body #toc_container a:hover {
  text-decoration: none;
}/*# sourceMappingURL=news.css.map */