@charset "UTF-8";

/**************************************/
/* -------------------------
 * 全体レイアウト
 * ------------------------- */
.news__container {
  display: grid;
  grid-template-columns: auto 280px;
  gap: 3rem 4%;
  /* -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;
  }
}

@media (max-width: 500px) {
  .news__container {
    gap: 4rem 0;
  }
}

.news-archive__category-list,
.news-single__category-list {
  display: flex;
  gap: 5px;
}

.news-archive__category-list {
  flex-direction: column;
}

@media (max-width: 1200px) {
  .news-archive__category-list {
    flex-direction: row;
  }
}

.news-archive__category-item,
.news-single__category-item {
  white-space: nowrap;
  text-align: center;
  border: 1px solid #eeeeee;
  border-radius: 3px;
  padding: 0.1em 1em 0.2em;
}


/* -------------------------
 * サイドメニュー
  * （共通）
 * ------------------------- */
.news-sidebar__heading {
  position: relative;
  font-weight: 500;
}

.news-sidebar__accordion .news-sidebar__heading::after {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  content: '\e5d8';
  font-family: "Material Symbols Outlined";
  font-size: 1rem;
  width: 2rem;
  aspect-ratio: 1 / 1;
  color: #fff;
  background-color: #25a71d;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-sidebar__accordion.accordion-open .news-sidebar__heading::after {
  transform: translate(0, -50%) rotate(180deg);
}

.news-sidebar__item {
  padding: 27px 10%;
  border-radius: 10px;
  background-color: #ffffff;
}

.news-sidebar__item+.news-sidebar__item {
  margin-top: 2rem;
}

@media (max-width: 500px) {
  .news-sidebar__item+.news-sidebar__item {
    margin-top: 1.5rem;
  }
}

.no-accordion__item {
  border-top: 1px solid #ebebeb;
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.accordion__item {
  display: none;
}

.news-sidebar__accordion.accordion-open .accordion__item {
  display: block;
  border-top: 1px solid #ebebeb;
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.news-sidebar__inner-list>li:not(:first-of-type) {
  margin-top: 1.8rem;
  line-height: 1;
}

.news-sidebar__tag-list>li:not(:first-of-type) {
  margin-top: 0;
}

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

.news-sidebar__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 15px;
  color: #25a71d;
}

.news-sidebar__tag-list>li+li {
  margin-top: 0;
}

/* -------------------------
 * 記事一覧箇所
 * ------------------------- */
.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;
  font-size: var(--f13);
  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: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 2rem 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;
  }
}

@media (max-width: 500px) {
  .news-archive__list {
    gap: 1.5rem 4%;
  }
}

.news-archive__item-link {
  display: flex;
  align-items: center;
  gap: 10px 4%;
  height: 100px;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 0px 5%;
  transition: all .3s ease;
}

.news-archive__item-link:hover {
  transform: scale(1.01);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.news-archive__item-date {
  width: 78px;
  color: #9e9e9e;
}

.news-archive__category-list {
  width: 115px;
}

.news-archive__ttl {}

@media (max-width: 1200px) {
  .news-archive__item-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: unset;
    gap: 10px 4%;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 30px 5%;
  }

  .news-archive__ttl {
    width: 100%;
  }

  .news-archive__category-list {
    width: fit-content;
  }
}

/* 
.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;
} */

/* journal */

.journal-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1000px) {
  .journal-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

.journal-archive__item-link {
  aspect-ratio: 280 / 380;
}

.journal-archive__item-cont {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  background: url(../img/home/journal-bg.webp) no-repeat center bottom / contain;
}

.journal-archive__ttl {
  margin: 10px 0;
}

.journal-archive__item-date {}

.journal-archive__category-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.journal-archive__category-item {
  white-space: nowrap;
  text-align: center;
  color: #333333;
  background-color: #fff;
  border-radius: 3px;
  padding: 0.2em 1em 0.3em;
}

.journal-archive__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.journal-sidebar__tag-item {
  position: relative;
  /* padding-left: 0.8em; */
  line-height: 1;
}

/* .journal-sidebar__tag-item::before {
  content: '#';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8em;
  height: 1em;
} */

/* -------------------------
 * アーカイブページ
 * ページネーション
 * ------------------------- */
.news__pagination {
  margin: 9rem auto 0;
  text-align: center;
  line-height: 1;
}

@media (max-width: 834px) {
  .news__pagination {
    margin-top: 5rem;
    font-size: var(--f15);
  }
}

.news__pagination .next,
.news__pagination .prev {
  font-size: var(--f15);
  font-family: var(--en02);
  border-radius: 5px;
  color: #333;
  border: 1px solid #ebebeb;
  width: 4rem;
  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;
    font-size: var(--f15);
  }
}

.news__pagination .next:hover,
.news__pagination .prev:hover {
  /* color: #f9f9f7;
  background: #000; */
  opacity: .7;
}

.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: #68bc4e;
  border-radius: 5px;
  width: 4rem;
  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-btn {
  height: 60px;
  margin-inline: auto;
}

/* -------------------------
 * 個別記事ページ
 * 見出し設定
 * ------------------------- */
.news-single__content {
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 5% 50px;
}

@media (max-width: 500px) {
.news-single__content {
  padding: 30px 5% 50px;
}
}

.news-single__meta {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 834px) {
  .news-single__meta {
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
  }
}

.news-single__meta-head {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  margin-bottom: 1rem;
}

@media (max-width: 1000px) {
  .news-single__meta-head {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-items: center;
    gap: 8px 20px;
    margin-bottom: 1rem;
  }
}

.news-single__date {
  color: #9e9e9e;
}

.news-single__tag-list {
  color: #24a71dc9;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}

@media (max-width: 1000px) {
  .news-single__tag-list {
    width: 100%;
  }
}

.news-single__thumbnail {
  margin-bottom: 4rem;
}

.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(--f16);
  line-height: 1.635;
}

.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: 2rem;
}

.news-single__content-body p+.wp-block-heading {
  margin-top: 5rem;
}

.news-single__content-body h2.wp-block-heading {
  position: relative;
  font-size: var(--f22);
  font-weight: 500;
  padding-left: 1.4em;
}

.news-single__content-body h2.wp-block-heading::before {
  content: '';
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 0.8em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid #25a71d;
}

.news-single__content-body h3.wp-block-heading {
  font-size: var(--f20);
  font-weight: 500;
  color: #32634b;
  /* border-bottom: 2px solid #222; */
  padding-inline: 0.5rem;
}

.news-single__content-body h4.wp-block-heading {
  font-size: var(--f22);
  font-weight: 500;
  line-height: 1.4;
  border-left: 3px solid #25a71d;
  padding-left: 0.9rem;
}

.news-single__content-body h5.wp-block-heading {
  position: relative;
  font-size: var(--f20);
  font-weight: 500;
  padding-left: 1.2em;
}

.news-single__content-body h5.wp-block-heading::before {
  content: '';
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.6em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #25a71d;
}

.news-single__content-body h6.wp-block-heading {
  font-size: var(--f20);
  font-weight: 500;
  color: #b1b1b1;
}

/* -------------------------
 * 個別記事ページ
 * プラグイン「Table of Contents Plus」使用時の設定
 * ------------------------- */
#toc_container p.toc_title {
  position: relative;
  z-index: 2;
  font-size: var(--f20);
  font-family: var(--en);
  text-align: left !important;
  padding-left: 2.2rem !important;
}

#toc_container p.toc_title::before {
  content: '';
  position: absolute;
  top: 28%;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/common/sec-icon.webp) no-repeat center / contain;
}

#toc_container p.toc_title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: calc(100% - 90px);
  height: 1px;
  background-color: #ebebeb;
}

.news-single__content-body p+#toc_container {
  margin-top: 5rem;
}

.news-single__content-body #toc_container {
  width: 100%;
  border: none;
  background: #f3faf0;
  border-radius: 10px;
  padding: 4rem 5%;
  margin-bottom: 5rem;
}

@media (max-width: 834px) {
  .news-single__content-body #toc_container {
    padding: 3rem 5%;
    margin-bottom: 4rem;
  }
}

.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"] {
  position: relative;
  padding-left: 1.4em;
  font-size: var(--f18);
  font-weight: 500;
  display: block;
}

.news-single__content-body #toc_container a[href^="#H2"]::before,
.news-single__content-body #toc_container a[href^="#h2"]::before {
  content: '';
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 0.8em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid #25a71d;
}

.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-size: var(--f16);
  font-weight: 500;
  display: block;
}

.news-single__content-body #toc_container a[href^="#H3"],
.news-single__content-body #toc_container a[href^="#h3"] {
  color: #32634b;
}

.news-single__content-body #toc_container a[href^="#H4"],
.news-single__content-body #toc_container a[href^="#h4"] {
  font-weight: 500;
  line-height: 1.4;
  border-left: 3px solid #25a71d;
  padding-left: 0.9rem;
}

@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"] {
  position: relative;
  font-weight: 500;
  padding-left: 1.2em;
  /* padding-left: 1rem; */
}

.news-single__content-body #toc_container a[href^="#H5"]::before,
.news-single__content-body #toc_container a[href^="#h5"]::before {
  content: '';
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.6em;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #25a71d;
}

@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;
  font-weight: 500;
  color: #b1b1b1;
}

@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 */