@charset "UTF-8";
/**************************************
* news, column共通
***************************************/
.post-page__no-entry {
  font-size: 1.6rem;
}

.post__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;
  margin-left: calc((100vw - min(1550px, 90vw)) / 2);
  gap: 5%;
}
@media (max-width: 834px) {
  .post__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px 0;
    width: 90%;
    margin: 0 auto;
  }
}

.post-page__thumbnail img {
  width: 100%;
  height: auto;
}

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

.post-sidebar__heading {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
@media (max-width: 499px) {
  .post-sidebar__heading {
    font-size: 2.2rem;
  }
}

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

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

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

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

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

.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: 40px;
}
.circle-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 1px solid #bbbbbb;
  border-radius: 50%;
}
.circle-list a::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #111;
  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;
}

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

.post-sidebar__category-item a::after {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
}

.post-sidebar__category-item a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

.post-sidebar__select-wrapper {
  position: relative;
  display: inline-block;
  font-family: Inter, sans-serif;
}
.post-sidebar__select-wrapper .post-sidebar__select-box {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 30px;
}
.post-sidebar__select-wrapper .post-sidebar__select-box:hover {
  cursor: pointer;
}
.post-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);
}

/* タグ */
.post-sidebar__tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  font-size: 1.6rem;
  color: var(--pink);
}

/* アーカイブ */
.post-sidebar__select-wrapper {
  width: 100%;
  max-width: 250px;
}

.post-sidebar__select-box {
  font-size: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent;
  padding: 8px 0;
  font-size: 16px;
}

/**************************************
* News / お知らせ
***************************************/
/* 個別記事 */
.post-page__thumbnail {
  margin-bottom: 64px;
}
@media (max-width: 834px) {
  .post-page__thumbnail {
    margin-bottom: 40px;
  }
}

.post-page__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.post-page__date {
  color: #999999;
  font-size: 1.4rem;
}

.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-page__ttl {
  font-size: 2.8rem;
  margin: 20px 0 24px;
  font-weight: bold;
}
@media (max-width: 834px) {
  .post-page__ttl {
    margin: 8px 0 12px;
  }
}

.post-archive .post-page__ttl {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 12px 0 24px;
}

.post-page__tag {
  color: var(--pink);
  font-size: 1.4rem;
}

/* メインコンテンツ箇所 */
.post-page__content {
  max-width: 1055px;
  width: 85%;
  /* 目次 */
}
@media (max-width: 834px) {
  .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 #toc_container {
  border: none;
  position: relative;
  padding: 70px 5%;
  margin-bottom: 76px;
}
@media (max-width: 834px) {
  .post-page__content #toc_container {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.post-page__content #toc_container::after {
  background-size: contain;
  content: "Contents";
  display: inline-block;
  position: absolute;
  pointer-events: none;
  font-weight: 400;
  font-size: 8rem;
  color: rgba(17, 17, 17, 0.05);
  font-family: Noto Serif JP, serif;
  top: 0px;
  left: 0;
  z-index: 1;
  line-height: 0.7;
}
@media (max-width: 834px) {
  .post-page__content #toc_container::after {
    font-size: clamp(5rem, 8vw, 6rem);
  }
}
.post-page__content #toc_container a[href^="#H2"] {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  display: block;
  padding-left: 26px;
  position: relative;
}
.post-page__content #toc_container a[href^="#H2"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #bbbbbb;
  top: 1rem;
  left: 0;
  z-index: 1;
  width: 15px;
  height: 4px;
  border-radius: 2px;
}
.post-page__content #toc_container a[href^="#H3"] {
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  padding-left: 12px;
  position: relative;
}
.post-page__content #toc_container a[href^="#H3"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #bbbbbb;
  top: 1rem;
  left: 0;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 2px;
}
.post-page__content #toc_container a[href^="#H4"] {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  padding-left: 3rem;
}
.post-page__content #toc_container a[href^="#H5"] {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  padding-left: 5rem;
}
.post-page__content #toc_container a[href^="#H6"] {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding-left: 7rem;
}
.post-page__content #toc_container .toc_list > li + li {
  margin-top: 45px;
}
@media (max-width: 834px) {
  .post-page__content #toc_container .toc_list > li + li {
    margin-top: 30px;
  }
}
.post-page__content #toc_container li,
.post-page__content #toc_container ul {
  margin-top: 30px;
}
@media (max-width: 834px) {
  .post-page__content #toc_container li,
  .post-page__content #toc_container ul {
    margin-top: 20px;
  }
}

/* 各見出し */
.post-page__content-body p {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 499px) {
  .post-page__content-body p {
    font-size: 1.4rem;
  }
}
.post-page__content-body .wp-block-heading {
  margin-top: 60px;
}
@media (max-width: 834px) {
  .post-page__content-body .wp-block-heading {
    margin-top: 40px;
  }
}
.post-page__content-body .wp-block-heading [id^=H2],
.post-page__content-body .wp-block-heading [id^=H3],
.post-page__content-body .wp-block-heading [id^=H4],
.post-page__content-body .wp-block-heading [id^=H5],
.post-page__content-body .wp-block-heading [id^=H6] {
  margin-bottom: 27px;
}
@media (max-width: 834px) {
  .post-page__content-body .wp-block-heading [id^=H2],
  .post-page__content-body .wp-block-heading [id^=H3],
  .post-page__content-body .wp-block-heading [id^=H4],
  .post-page__content-body .wp-block-heading [id^=H5],
  .post-page__content-body .wp-block-heading [id^=H6] {
    margin-bottom: 10px;
  }
}
.post-page__content-body .wp-block-heading [id^=H2] {
  font-weight: bold;
  font-size: 2.4rem;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  padding-left: 26px;
  position: relative;
}
.post-page__content-body .wp-block-heading [id^=H2]::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #bbbbbb;
  top: 1.3rem;
  left: 0;
  z-index: 1;
  width: 15px;
  height: 4px;
  border-radius: 2px;
}
.post-page__content-body .wp-block-heading [id^=H3] {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  padding-left: 12px;
  position: relative;
}
.post-page__content-body .wp-block-heading [id^=H3]::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: #bbbbbb;
  top: 1rem;
  left: 0;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 2px;
}
.post-page__content-body .wp-block-heading [id^=H4] {
  background: #aaaaaa;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
  padding: 0 6px;
}
.post-page__content-body .wp-block-heading [id^=H5] {
  font-size: 1.8rem;
  font-weight: bold;
  color: #262626;
  display: inline-block;
}
.post-page__content-body .wp-block-heading [id^=H6] {
  font-size: 1.6rem;
  font-weight: 500;
  color: #aaaaaa;
  display: inline-block;
}

.post-page__back-btn {
  margin: 120px auto 0;
  background: #000;
  color: #fff;
  border-radius: calc(infinity * 1px);
  width: 165px;
  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;
  }
}

/* アーカイブ */
@media (max-width: 834px) {
  .post-archive .post-page__ttl {
    font-size: 2.2rem;
  }
}
@media (max-width: 499px) {
  .post-archive .post-page__ttl {
    font-size: 1.8rem;
  }
}
.post-archive .post-page__ttl-wrap {
  width: 58%;
}
@media (max-width: 639px) {
  .post-archive .post-page__ttl-wrap {
    width: 100%;
  }
}

.post-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 639px) {
  .post-archive__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
}

.news-archive .post-archive__item:not(:first-child) a {
  padding: 50px 0;
}
@media (max-width: 639px) {
  .news-archive .post-archive__item:not(:first-child) a {
    padding: 30px 0;
  }
}
.news-archive .post-archive__item:first-child a {
  padding: 0 0 50px;
}
@media (max-width: 639px) {
  .news-archive .post-archive__item:first-child a {
    padding: 0 0 30px;
  }
}

.post-archive__img {
  max-width: 368px;
  aspect-ratio: 368/250;
  width: 34%;
  height: auto;
}
@media (max-width: 834px) {
  .post-archive__img {
    width: 40%;
  }
}
@media (max-width: 639px) {
  .post-archive__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.post-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

/**************************************
* column / コラム
***************************************/
/* アーカイブページ */
.column-archive .post-archive {
  width: 85%;
}
@media (max-width: 834px) {
  .column-archive .post-archive {
    width: 100%;
  }
}
.column-archive .post-page__ttl-wrap {
  width: 100%;
}
.column-archive .post-page__content {
  max-width: none;
  width: 100%;
}
.column-archive .post-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 4%;
}
@media (max-width: 639px) {
  .column-archive .post-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 4%;
  }
}
.column-archive .post-archive__link {
  border-bottom: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 639px) {
  .column-archive .post-archive__link {
    padding: 0;
  }
}
.column-archive .post-archive__img {
  max-width: none;
  width: 100%;
  margin-bottom: 30px;
  aspect-ratio: 368/250;
  height: auto;
  overflow: hidden;
}
@media (max-width: 639px) {
  .column-archive .post-archive__img {
    margin-bottom: 20px;
  }
}
.column-archive .post-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 499px) {
  .column-archive .post-archive__img {
    margin-bottom: 20px;
  }
}
.column-archive .post-page__ttl {
  font-size: 1.8rem;
  font-weight: normal;
}
@media (max-width: 499px) {
  .column-archive .post-page__ttl {
    font-size: 1.6rem;
  }
}
.column-archive .post-page__category {
  background-color: #9eaaca;
}

/* 個別記事ページ */
.column-single .post-page__category {
  background-color: #9eaaca;
}
.column-single #toc_container {
  background-color: #fdeee2;
}
.column-single #toc_container::after {
  color: rgba(219, 133, 62, 0.1);
}
.column-single #toc_container a[href^="#H2"]::after {
  background: #e8c09f;
}
.column-single #toc_container a[href^="#H3"] {
  color: #dca374;
}
.column-single #toc_container a[href^="#H3"]::after {
  background: #e8c09f;
}
.column-single .post-page__content-body .wp-block-heading [id^=H2]::after {
  background: #e8c09f;
}
.column-single .post-page__content-body .wp-block-heading [id^=H3] {
  color: #dca374;
}
.column-single .post-page__content-body .wp-block-heading [id^=H3]::after {
  background: #e8c09f;
}
.column-single .post-page__content-body .wp-block-heading [id^=H4] {
  background: #d28b8b;
}/*# sourceMappingURL=post.css.map */