@charset "UTF-8";
/********************************************************/
/*-------------------------------------------
 * トップと下層の共通スタイル
-------------------------------------------*/
.news__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--en);
  font-weight: 400;
  color: var(--pink-dark);
  line-height: 1;
}
@media (max-width: 834px) {
  .news__item-date {
    margin-bottom: 0.5em;
  }
}

.news__item-category-list {
  margin-bottom: 2rem;
}

.news__item-category {
  border-radius: 100vmax;
  border: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 1.5rem 0.3rem;
  margin-bottom: 0.5rem;
}

.news__item-tag {
  border-radius: 100vmax;
  border: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 1.5rem 0.3rem;
  margin-bottom: 2rem;
}

.news__item-thumbnail img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------------
 * 全体レイアウト
 * -------------------------------------------*/
.news__container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 7%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .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-label {
  font-weight: 500;
  margin-bottom: 3rem;
}

.news__sidebar-item + .news__sidebar-item {
  margin-top: 6rem;
}

.news__sidebar-inner-list > li {
  line-height: 1;
}

.news__sidebar-inner-list > li + li {
  margin-top: 1.8rem;
}

.news__sidebar-list-item {
  line-height: 1;
}

/* -------------------------------------------
 * サイドメニュー
 * カテゴリー（現在のカテゴリーをハイライト）
 * -------------------------------------------*/
.news__sidebar-list-item--current-category a.active {
  border-bottom: 1px solid #000;
}

/* -------------------------------------------
 * サイドメニュー
 * カテゴリー（マーク付き）
 * -------------------------------------------*/
.news__sidebar-mark-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__sidebar-mark-list-item a {
  position: relative;
  padding-left: 2.6rem;
}
.news__sidebar-mark-list-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.7rem;
  aspect-ratio: 1;
  border: 1px solid #c1bfbc;
  border-radius: 100vmax;
}
.news__sidebar-mark-list-item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.7rem;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 100vmax;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news__sidebar-mark-list-item a:hover {
  cursor: pointer;
}
.news__sidebar-mark-list-item a:hover::after {
  opacity: 1;
}

.news__sidebar-category-item a.active::after {
  opacity: 1;
  /* 常に表示 */
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.news__sidebar-category-item a::after {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
}
.news__sidebar-category-item a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

/* -------------------------------------------
 * 記事一覧箇所
 * -------------------------------------------*/
.news-list > li + li {
  margin-top: 5rem;
}

.news-list__category {
  border-radius: 100vmax;
  border: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 1.5rem 0.3rem;
  margin-bottom: 2rem;
}

.news-list__img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------------
 * アーカイブページ
 * -------------------------------------------*/
.news-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .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;
  }
}

.news-archive__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* -------------------------------------------
 * アーカイブページ
 * ページネーション
 * -------------------------------------------*/
.news__pagination {
  margin: 9rem auto 0;
  text-align: center;
  line-height: 1;
}
@media (max-width: 834px) {
  .news__pagination {
    margin-top: 5rem;
  }
}
.news__pagination .next,
.news__pagination .prev {
  border-radius: 100vmax;
  color: #000;
  border: 1px solid #000;
  width: 4.5rem;
  aspect-ratio: 1;
  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: 3rem;
  }
}
.news__pagination .next:hover,
.news__pagination .prev:hover {
  color: #f9f9f7;
  background: #000;
}
.news__pagination .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -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 {
  color: #fff;
  background: #000;
  border-radius: 100vmax;
  width: 4.5rem;
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}
@media (max-width: 834px) {
  .news__pagination .page-numbers.current {
    width: 3rem;
    height: 3rem;
  }
}

/* -------------------------------------------
 * 個別記事ページ
 * -------------------------------------------*/
.news-single__go-top-button {
  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 {
  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: 3rem;
}
.news-single__content-body p + .wp-block-heading {
  margin-top: 4rem;
}
.news-single__content-body h2.wp-block-heading {
  padding: 0.3rem 1.6rem;
  background-color: #222;
  color: #fff;
}
.news-single__content-body h3.wp-block-heading {
  font-weight: 500;
  border-bottom: 2px solid #222;
  padding-inline: 0.5rem;
}
.news-single__content-body h4.wp-block-heading {
  font-weight: 500;
  border-left: 6px solid #000;
  padding-left: 0.9rem;
  line-height: 1.4;
}
.news-single__content-body h5.wp-block-heading {
  font-weight: 500;
  border-radius: 100vmax;
  border: solid 1px #000;
  color: #000;
  background-color: #fff;
  padding: 0.2rem 1.5rem;
}

/* -------------------------------------------
 * 個別記事ページ
 * プラグイン「Table of Contents Plus」使用時の設定
 * -------------------------------------------*/
.news-single__content-body .toc_title {
  text-align: left !important;
  color: #000;
}
.news-single__content-body p + #toc_container {
  margin-top: 6rem;
}
.news-single__content-body #toc_container {
  border: none;
  background: #f2f2f2;
  padding: 4rem 5%;
  margin-bottom: 6rem;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container {
    padding: 3rem;
    margin-bottom: 3rem;
  }
}
.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-weight: bold;
  display: block;
  color: #000;
}
.news-single__content-body #toc_container a[href^="#H3"],
.news-single__content-body #toc_container a[href^="#h3"],
.news-single__content-body #toc_container a[href^="#H4"],
.news-single__content-body #toc_container a[href^="#h4"],
.news-single__content-body #toc_container a[href^="#H5"],
.news-single__content-body #toc_container a[href^="#h5"],
.news-single__content-body #toc_container a[href^="#H6"],
.news-single__content-body #toc_container a[href^="#h6"] {
  font-weight: 500;
  display: block;
}
.news-single__content-body #toc_container a[href^="#H4"],
.news-single__content-body #toc_container a[href^="#h4"] {
  padding-left: 0.5rem;
}
@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;
  }
}
.news-single__content-body #toc_container a[href^="#H5"],
.news-single__content-body #toc_container a[href^="#h5"] {
  padding-left: 1rem;
}
@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;
  }
}
.news-single__content-body #toc_container a[href^="#H6"],
.news-single__content-body #toc_container a[href^="#h6"] {
  padding-left: 1.5rem;
}
@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;
  }
}
.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;
  }
}
.news-single__content-body #toc_container li,
.news-single__content-body #toc_container ul {
  margin-top: 2.4rem;
}
@media (max-width: 834px) {
  .news-single__content-body #toc_container li,
  .news-single__content-body #toc_container ul {
    margin-top: 1.6rem;
  }
}/*# sourceMappingURL=news.css.map */