@charset "UTF-8";
/**
 * SCSS Mixins
 *
 * 利用例:
 * @use 'mixin' as m;
 *
 * .example {
 *   font-size: 14px;
 *   @include m.mq('pc') {
 *     font-size: 18px;
 *   }
 * }
 */
/**
 * Blog / NEWS ページ
 */
/* =========================================================
   Layout
   ========================================================= */
.l-blog__inner {
  width: 100%;
  max-width: 385px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .l-blog__inner {
    max-width: 1050px;
    padding-inline: 25px;
    margin-bottom: 100px;
  }
}

.l-blog-detail__inner {
  width: 100%;
  max-width: 385px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-blog-detail__inner {
    max-width: 1050px;
    padding-inline: 25px;
  }
}

.l-blog-detail__layout {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .l-blog-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 48px;
    align-items: start;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  .l-blog-detail__layout {
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 64px;
  }
}

.c-section-ttl {
  margin-bottom: 60px;
}

/* =========================================================
   Filter tabs (archive)
   ========================================================= */
.p-blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .p-blog-filter {
    gap: 14px;
    margin-bottom: 48px;
  }
}

.p-blog-filter__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid #4c4948;
  border-radius: 999px;
  background-color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4c4948;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-filter__btn {
    min-height: 44px;
    padding-inline: 28px;
    font-size: 18px;
  }
}
.p-blog-filter__btn.is-active {
  background-color: #4c4948;
  color: #fff;
}

/* =========================================================
   Archive list
   ========================================================= */
.p-blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-blog-list__item {
  border-bottom: 1px solid #d8d8d8;
}

.p-blog-list__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  padding-block: 24px;
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .p-blog-list__link {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
    padding-block: 32px;
  }
}

.p-blog-list__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f5f5f5;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-blog-list__thumb {
    width: 440px;
    max-width: 440px;
  }
}
.p-blog-list__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-blog-list__body {
  min-width: 0;
}

.p-blog-list__cat {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #4c4948;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #fff;
}

.p-blog-list__date {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #8d8d8e;
  font-family: "EB Garamond", serif;
}

.p-blog-list__title {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.p-blog-list__excerpt {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

/* =========================================================
   Pagination
   ========================================================= */
.p-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-blog-pagination {
    gap: 80px;
    margin-top: 56px;
  }
}

.p-blog-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #898989;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-pagination__arrow {
    width: 44px;
    height: 44px;
  }
}

@media (any-hover: hover) {
  .p-blog-pagination__arrow:hover {
    opacity: 0.7;
  }
}
.p-blog-pagination__arrow-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #4c4948;
  border-right: 1px solid #4c4948;
}

/* prev は arrow-common.svg を左右反転して使用 */
.p-blog-pagination__arrow--prev {
  border: 0;
  background: url(../../img/common/arrow-common.svg) no-repeat center/contain;
  transform: scaleX(-1);
}

.p-blog-pagination__arrow--prev .p-blog-pagination__arrow-icon {
  display: none;
}

/* next は arrow-common.svg（円＋右矢印の完成画像）に置き換え */
.p-blog-pagination__arrow--next {
  border: 0;
  background: url(../../img/common/arrow-common.svg) no-repeat center/contain;
}

.p-blog-pagination__arrow--next .p-blog-pagination__arrow-icon {
  display: none;
}

.p-blog-pagination__nums {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-blog-pagination__nums {
    gap: 8px;
  }
}

.p-blog-pagination__num {
  display: block;
  min-width: 20px;
  padding-block: 2px;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #4c4948;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-blog-pagination__num {
    min-width: 20px;
    font-size: 18px;
  }
}
.p-blog-pagination__num.is-current {
  border-bottom-color: #479b60;
  color: #479b60;
}

.p-blog-pagination__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.p-blog-empty {
  margin: 48px 0 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #8d8d8e;
  text-align: center;
}

/* =========================================================
   Single article
   ========================================================= */
.p-blog-article__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #32312F;
}
@media screen and (min-width: 768px) {
  .p-blog-article__header {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }
}

.p-blog-article__cat {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background-color: #4c4948;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-blog-article__cat {
    font-size: 12px;
    padding: 5px 14px;
  }
}

.p-blog-article__date {
  display: block;
  margin-bottom: 13px;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-family: "EB Garamond", serif;
  line-height: 1.6;
  color: #8d8d8e;
}
@media screen and (min-width: 768px) {
  .p-blog-article__date {
    font-size: 13px;
  }
}

.p-blog-article__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__title {
    font-size: 26px;
  }
}

.p-blog-article__content {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__content {
    font-size: 15px;
  }
}
.p-blog-article__content p {
  margin: 0 0 1em;
  line-height: 1.5;
}
.p-blog-article__content strong {
  font-weight: 700;
}
.p-blog-article__content ol,
.p-blog-article__content ul {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
.p-blog-article__content ol {
  counter-reset: blog-ol;
}
.p-blog-article__content ol > li {
  counter-increment: blog-ol;
  position: relative;
  padding-left: 1.6em;
}
.p-blog-article__content ol > li::before {
  content: counter(blog-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #4c4948;
  font-weight: 600;
  line-height: 2;
}
.p-blog-article__content ol > li + li {
  margin-top: 0.4em;
}
.p-blog-article__content ol ol {
  counter-reset: blog-ol-nested;
  margin-top: 0.4em;
  margin-bottom: 0;
}
.p-blog-article__content ol ol > li {
  counter-increment: blog-ol-nested;
}
.p-blog-article__content ol ol > li::before {
  content: counter(blog-ol-nested) ".";
}
.p-blog-article__content ul > li {
  position: relative;
  padding-left: 1.4em;
}
.p-blog-article__content ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #479b60;
  transform: translateY(-50%);
}
.p-blog-article__content ul > li + li {
  margin-top: 0.4em;
}
.p-blog-article__content ul ul {
  margin-top: 0.4em;
  margin-bottom: 0;
}
.p-blog-article__content ul ul > li::before {
  background-color: #fff;
  border: 1px solid #479b60;
  box-sizing: border-box;
}

.p-blog-article__photo {
  display: block;
  margin: 32px 0;
  aspect-ratio: 16/9;
  background-color: #b8b8b8;
  text-align: center;
  line-height: 0;
}
.p-blog-article__photo span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  font-family: "EB Garamond", serif;
  font-size: 28px;
  letter-spacing: 0.2em;
  color: #fff;
}

.p-blog-article__h2,
.p-blog-article__content h2 {
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #479b60;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__h2,
.p-blog-article__content h2 {
    font-size: 20px;
    margin-top: 48px;
  }
}

.p-blog-article__h3,
.p-blog-article__content h3 {
  margin: 32px 0 12px;
  padding: 10px 14px;
  background-color: #f5f5f5;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__h3,
.p-blog-article__content h3 {
    font-size: 17px;
  }
}

.p-blog-article__h4,
.p-blog-article__content h4 {
  margin: 28px 0 12px;
  padding: 12px 16px;
  border: 1px solid #d8d8d8;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__h4,
.p-blog-article__content h4 {
    font-size: 16px;
  }
}

.p-blog-article__h5,
.p-blog-article__content h5 {
  position: relative;
  margin: 24px 0 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #32312F;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (min-width: 768px) {
  .p-blog-article__h5,
.p-blog-article__content h5 {
    font-size: 15px;
  }
}

.p-blog-article__blockquote,
.p-blog-article__content blockquote {
  position: relative;
  margin: 32px 0;
  padding: 28px 24px;
  background-color: #f5f5f5;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #4c4948;
}
.p-blog-article__blockquote::before, .p-blog-article__blockquote::after,
.p-blog-article__content blockquote::before,
.p-blog-article__content blockquote::after {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  line-height: 1;
  color: #8d8d8e;
}
.p-blog-article__blockquote::before,
.p-blog-article__content blockquote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 12px;
}
.p-blog-article__blockquote::after,
.p-blog-article__content blockquote::after {
  content: "”";
  position: absolute;
  bottom: 8px;
  right: 12px;
}
@media screen and (min-width: 768px) {
  .p-blog-article__blockquote,
.p-blog-article__content blockquote {
    padding: 32px 36px;
    font-size: 14px;
  }
}

/* the_content()（エディタ出力）対応：画像・ボタンブロック */
.p-blog-article__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-blog-article__content img {
    margin: 20px 0;
  }
}

.p-blog-article__content .wp-block-button {
  margin-top: 40px;
  text-align: center;
}

/* 前後ナビの無効状態 */
.p-blog-article__nav-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.p-blog-article__btn-wrap {
  text-align: center;
}

.p-blog-article__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(250px, 100%);
  min-height: 48px;
  padding-inline: 24px;
  border: 1px solid #479b60;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #479b60;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-article__btn {
    min-width: 220px;
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .p-blog-article__btn:hover {
    opacity: 0.7;
  }
}
/* Article footer nav */
.p-blog-article__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-blog-article__nav {
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
  }
}

.p-blog-article__nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #898989;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-blog-article__nav-arrow:hover {
    opacity: 0.7;
  }
}
.p-blog-article__nav-arrow-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #4c4948;
  border-right: 1px solid #4c4948;
}

/* 記事ナビの前後矢印も arrow-common.svg に統一（prev は左右反転） */
.p-blog-article__nav-arrow--prev,
.p-blog-article__nav-arrow--next {
  border: 0;
  background: url(../../img/common/arrow-common.svg) no-repeat center/contain;
}

.p-blog-article__nav-arrow--prev {
  transform: scaleX(-1);
}

.p-blog-article__nav-arrow--prev .p-blog-article__nav-arrow-icon,
.p-blog-article__nav-arrow--next .p-blog-article__nav-arrow-icon {
  display: none;
}

.p-blog-article__nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  min-height: 52px;
  padding-inline: 24px;
  background-color: #479b60;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #fff !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-article__nav-back {
    min-width: 320px;
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .p-blog-article__nav-back:hover {
    opacity: 0.85;
  }
}
/* =========================================================
   Sidebar
   ========================================================= */
.p-blog-sidebar {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar {
    margin-top: 0;
  }
}

.p-blog-sidebar__block + .p-blog-sidebar__block {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar__block + .p-blog-sidebar__block {
    margin-top: 48px;
  }
}

.p-blog-sidebar__ttl {
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: #4c4948;
  position: relative;
}
.p-blog-sidebar__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgb(144, 195, 160) 0%, rgb(137, 122, 182) 50%, rgb(239, 178, 127) 100%);
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar__ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.p-blog-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-blog-sidebar__item {
  margin-bottom: 8px;
}

.p-blog-sidebar__link {
  display: block;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #32312F;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar__link {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .p-blog-sidebar__link:hover {
    opacity: 0.6;
  }
}
.p-blog-sidebar__sublist {
  list-style: none;
  margin: 4px 0 12px;
  padding-left: 12px;
}

.p-blog-sidebar__subitem {
  margin-bottom: 4px;
}

.p-blog-sidebar__sublink {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  color: #32312F;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar__sublink {
    font-size: 13px;
  }
}

@media (any-hover: hover) {
  .p-blog-sidebar__sublink:hover {
    opacity: 0.6;
  }
}
.p-blog-sidebar__cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-blog-sidebar__cat-item + .p-blog-sidebar__cat-item {
  margin-top: 12px;
}

.p-blog-sidebar__cat-link {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: #4c4948;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-blog-sidebar__cat-link {
    font-size: 16px;
  }
}

@media (any-hover: hover) {
  .p-blog-sidebar__cat-link:hover {
    opacity: 0.6;
  }
}
/* SP：サイドバー各項目に全幅の下線。下層（月）もインデントせず横いっぱい */
@media screen and (max-width: 767px) {
  .p-blog-sidebar__item {
    margin-bottom: 0;
  }
  .p-blog-sidebar__link {
    padding: 16px 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .p-blog-sidebar__sublist {
    margin: 0;
    padding-left: 0;
  }
  .p-blog-sidebar__subitem {
    margin-bottom: 0;
  }
  .p-blog-sidebar__sublink {
    padding: 16px 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .p-blog-sidebar__cat-item + .p-blog-sidebar__cat-item {
    margin-top: 0;
  }
  .p-blog-sidebar__cat-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #d8d8d8;
  }
}
/*# sourceMappingURL=blog.css.map */