@charset "UTF-8";
/**************************************/
/**************************************
* news / お知らせ
***************************************/
.post-page__ttl-wrap {
  font-weight: 500;
}

.post-page__no-entry {
  font-size: 1.6rem;
}

.news__container {
  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-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6%;
}
@media (max-width: 834px) {
  .news__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6rem 0;
    width: 90%;
    margin: 0 auto;
  }
}

.post-page {
  width: 76%;
}
@media (max-width: 834px) {
  .post-page {
    width: 100%;
  }
}

.news-sidebar__heading {
  margin-bottom: 3rem;
  font-weight: 500;
  border-top: 1px solid #2b2c2c;
  border-bottom: 1px solid #2b2c2c;
  text-align: center;
  padding-block: 1rem;
}

@media (max-width: 499px) {
  .news-sidebar__category-list {
    font-size: 1.6rem;
  }
}

.news-sidebar__list {
  font-size: 1.8rem;
}

.news-sidebar__item + .news-sidebar__item {
  margin-top: 64px;
}
@media (max-width: 834px) {
  .news-sidebar__item + .news-sidebar__item {
    margin-top: 30px;
  }
}

/* サイドバー */
.news-sidebar {
  width: 24%;
  max-width: 250px;
}
@media (max-width: 834px) {
  .news-sidebar {
    max-width: none;
    width: 100%;
  }
}

/* カテゴリー */
.news-sidebar__category-list li + li {
  margin-top: 18px;
}

.circle-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-list a {
  position: relative;
  padding-left: 26px;
  line-height: 1;
}
.circle-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  border: 1px solid #c1bfbc;
  border-radius: 50%;
}
.circle-list a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-color: var(--accent-color);
  border-radius: 50%;
  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;
}
.circle-list a:hover {
  cursor: pointer;
}
.circle-list 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-sidebar__select-wrapper {
  position: relative;
  display: inline-block;
  font-family: Inter, sans-serif;
}
.news-sidebar__select-wrapper .news-sidebar__select-box {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 30px;
}
.news-sidebar__select-wrapper .news-sidebar__select-box:hover {
  cursor: pointer;
}
.news-sidebar__select-wrapper::after {
  content: "";
  pointer-events: none;
  z-index: 3;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* タグ */
.news-sidebar__tag-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: 8px;
}

/* アーカイブ */
.news-sidebar__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: 8px;
}

/* -------------------------
 * アコーディオン
 * ------------------------- */
.accordion__item {
  display: grid;
  grid-template-rows: -webkit-min-content 0fr;
  grid-template-rows: min-content 0fr;
  -webkit-transition: grid-template-rows 300ms ease;
  transition: grid-template-rows 300ms ease;
  transition: grid-template-rows 300ms ease, -ms-grid-rows 300ms ease;
  cursor: pointer;
  overflow: hidden;
}
.accordion__item.open {
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
}
.accordion__item.open .open-close-btn::before {
  content: "";
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
}

.accordion__item .accordion__detail {
  overflow: hidden;
}

.accordion__item + .accordion__item {
  margin-top: 2rem;
}

.accordion__summary {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 0.8em;
     -moz-column-gap: 0.8em;
          column-gap: 0.8em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 1rem;
}

.open-close-btn {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: grid;
  position: relative;
}
.open-close-btn::before, .open-close-btn::after {
  content: "";
  position: absolute;
  background: #222;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.open-close-btn::after {
  width: 13px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.open-close-btn::before {
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/**************************************
* News / お知らせ
***************************************/
/* 個別記事 */
.post-page__thumbnail {
  margin-bottom: 3rem;
}
@media (max-width: 834px) {
  .post-page__thumbnail {
    margin-bottom: 2rem;
  }
}
.post-page__thumbnail img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.post-page__ttl-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2b2c2c;
  margin-bottom: 5rem;
  gap: 1em;
}
@media (max-width: 834px) {
  .post-page__ttl-container {
    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;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
}

.post-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 499px) {
  .post-page__meta {
    -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;
    gap: 1rem;
    margin-bottom: 0;
  }
}

@media (max-width: 499px) {
  .post-archive .post-page__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.post-page__date {
  color: #464544;
}
@media (max-width: 834px) {
  .post-page__date {
    font-size: 1.3rem;
  }
}

.post-page__category {
  color: #fff;
  background: #dddddd;
  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;
  font-size: 1.2rem;
  border-radius: 50px;
  padding: 0 12px;
}

.post-archive .post-page__ttl {
  font-weight: 500;
  margin-bottom: 2rem;
}

.post-page__tag {
  color: #89c1be;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: solid 1px #c1bfbc;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.3rem;
}
@media (max-width: 834px) {
  .post-page__tag {
    margin-bottom: 0rem;
  }
}

/* メインコンテンツ箇所 */
.post-page__content {
  width: 100%;
}
.post-page__content .post-page__ttl-wrap {
  margin-bottom: 64px;
}
@media (max-width: 834px) {
  .post-page__content .post-page__ttl-wrap {
    margin-bottom: 20px;
  }
}

/* 各見出し */
.post-page__content-body {
  padding-bottom: 9.3rem;
  border-bottom: 1px solid #2b2c2c;
}
@media (max-width: 834px) {
  .post-page__content-body {
    padding-bottom: 5rem;
  }
}
.post-page__content-body p {
  font-size: 1.4rem;
  line-height: 2.5;
}
.post-page__content-body .wp-block-heading {
  margin-top: 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.post-page__content-body .wp-block-heading + p {
  margin-top: 3rem;
}
.post-page__content-body p + .wp-block-heading {
  margin-top: 4rem;
}
.post-page__content-body h2.wp-block-heading {
  font-size: 2rem;
  padding: 0.3rem 1.6rem;
  background-color: #222;
  color: #fff;
}
.post-page__content-body h3.wp-block-heading {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: 2px solid #222;
  padding-inline: 0.5rem;
}
.post-page__content-body h3.wp-block-heading::first-letter {
  color: var(--sub-color);
  font-size: 120%;
}
.post-page__content-body h4.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  border-left: 6px solid var(--sub-color);
  padding-left: 0.9rem;
  line-height: 1.4;
}
.post-page__content-body h5.wp-block-heading {
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 50px;
  border: solid 1px var(--sub-color);
  color: var(--sub-color);
  background-color: #fff;
  padding: 0.2rem 1.5rem;
}

.post-page__back-btn {
  margin: 6rem auto 0;
  background-color: #464544;
  color: #fff;
  border-radius: calc(infinity * 1px);
  padding-block: 1rem;
  min-width: 18.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  font-size: 1.6rem;
}
@media (max-width: 834px) {
  .post-page__back-btn {
    margin-top: 30px;
  }
}

/* -------------------------
 * アーカイブ
 * ------------------------- */
.post-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) {
  .post-archive__link .post-page__meta {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 834px) {
  .post-archive__link .post-archive__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 834px) {
  .post-archive__link .post-page__ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.post-archive__img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  position: relative;
}
.post-archive__img::after {
  background: url(../img/news/thumbnail-pin.webp) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 15px;
  aspect-ratio: 15/20;
  top: 11px;
  right: 13px;
  z-index: 1;
}

.post-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 296/211;
}

.new-badge {
  color: #fff;
  background: var(--sub-color);
  border-radius: 50%;
  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;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.new-badge--archive {
  position: absolute;
  left: -1rem;
  top: -1rem;
  color: #fff;
  background: var(--sub-color);
  border-radius: 50%;
  width: 3.8rem;
  height: 3.8rem;
  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;
  line-height: 1;
}

.new-badge--single {
  width: 6rem;
  height: 6rem;
  font-size: 1.9rem;
}

.post-archive .post-page__content .post-page__ttl-wrap {
  margin-bottom: 0;
}

.post-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) {
  .post-archive__list {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
 * ページネーション
 * ------------------------- */
.news__pagination {
  margin: 9rem auto 0;
  text-align: center;
  line-height: 1;
}
@media (max-width: 834px) {
  .news__pagination {
    margin-top: 5rem;
    font-size: 1.5rem;
  }
}
.news__pagination .next,
.news__pagination .prev {
  font-size: 2rem;
  border-radius: 50%;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  width: 4.5rem;
  height: 4.5rem;
  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;
    height: 3rem;
    font-size: 1.5rem;
  }
}
.news__pagination .next:hover,
.news__pagination .prev:hover {
  color: #f9f9f7;
  background: var(--accent-color);
}
.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: #f9f9f7;
  background: var(--accent-color);
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  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;
  }
}/*# sourceMappingURL=news.css.map */