@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: #333;
}

strong {
  font-weight: 600;
}

label {
  cursor: pointer;
}

img {
  max-width: 100%;
}

body.customize-support .section-featured-post {
  margin-top: 152px;
}
body.customize-support .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.customize-support .section-featured-post {
    margin-top: 166px;
  }
  body.customize-support .site-header {
    top: 46px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.heading-2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .heading-2 {
    font-size: min(21px, 6vw);
  }
}

.site-header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.site-header.is-scrolled .site-header__inner {
  height: 60px;
}
.site-header__wrapper {
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: 80px;
  margin-inline: auto;
  padding-inline: 20px;
  transition: height 0.3s 0s ease;
}
.site-header__inner .site-logo__link {
  transition: opacity 0.3s 0s ease;
}
.site-header__inner .site-logo__link:hover {
  opacity: 0.7;
}
.site-header__inner .site-logo__svg,
.site-header__inner .site-logo__svg image {
  width: 80px;
  height: 40px;
}
.site-header__sub {
  position: relative;
  width: 100%;
  height: 0;
  background: #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  /* overflow: hidden; */
  color: #fff;
  transition: height 0.3s 0s ease;
}
.site-header__sub--inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.site-header__sub--inner.is-active {
  opacity: 1;
  visibility: visible;
}
.site-header__sub--inner .category-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.site-header__sub__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.site-header__sub__sns-link svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: fill 0.3s 0s ease;
}
.site-header__sub__sns-link svg.sns-logo__x, .site-header__sub__sns-link svg.sns-logo__feed {
  width: 28px;
  height: 28px;
}
.site-header__sub__sns-link:hover svg {
  fill: #66b933;
}
.site-header__sub--item {
  width: 33.3333333333%;
}
.site-header__sub--link {
  display: block;
  padding: 5px;
  color: #fff;
  transition: color 0.3s 0s ease;
}
.site-header__sub--link:hover {
  color: #66b933;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-nav__link {
  position: relative;
  display: block;
  padding: 10px 10px;
  position: relative;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #66b933;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s 0s ease;
}
.site-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.site-nav__icon {
  width: 30px;
  fill: #333;
  cursor: pointer;
  transition: fill 0.3s 0s ease;
}
.site-nav__icon.js-toggle-search {
  width: 25px;
}
.site-nav__icon:hover {
  fill: #66b933;
}
.site-nav__burger {
  width: 30px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.site-nav__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transform-origin: center;
  transition: transform 0.3s 0s ease, opacity 0.3s 0s ease, background-color 0.3s 0s ease;
}
.site-nav__burger span:nth-child(1) {
  top: 0;
}
.site-nav__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.site-nav__burger span:nth-child(3) {
  bottom: 0;
}
.site-nav__burger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
  width: 100%;
}
.site-nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-nav__burger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
  width: 100%;
}

.search-form {
  text-align: center;
}

.search-field {
  width: 300px;
  height: 30px;
  padding: 3px 5px;
  font-size: 18px;
}

.search-submit {
  cursor: pointer;
  height: 30px;
  padding: 3px 10px;
  font-size: 18px;
  line-height: 1.2;
  border: none;
  background: rgb(90.9788135593, 165.0105932203, 45.4894067797);
  color: #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list__link {
  color: #fff;
  transition: color 0.3s 0s ease;
}
.tag-list__link:hover {
  color: #66b933;
}

@media (max-width: 1024px) {
  .site-nav__list {
    display: none;
  }
  .site-nav__burger {
    display: flex;
    padding: 0;
    background: none;
    border: none;
  }
}
footer {
  margin-top: 80px;
}

.footer__sns {
  padding: 20px;
  text-align: center;
  background: #333;
}
.footer__sns a {
  transition: opacity 0.3s 0s ease;
}
.footer__sns a:hover {
  opacity: 0.7;
}

.footer__site-logo {
  filter: invert(1);
}

.footer__site-logo,
.footer__site-logo image {
  width: 50px;
  height: 30px;
}

.footer__sns-nav {
  margin-top: 20px;
}

.footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-sns__link svg {
  fill: #fff;
  transition: fill 0.3s 0s ease;
}
.footer-sns__link:hover svg {
  fill: #66b933;
}

.footer__links {
  padding: 30px;
  background: #000;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-nav__link {
  padding: 5px;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.footer-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #66b933;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s 0s ease;
}
.footer-nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.footer__copyright {
  padding: 0 0 30px;
  background: #000;
  text-align: center;
  font-size: 12px;
}

.main {
  flex: 1;
  width: calc(100% - 350px);
  overflow: hidden;
}

@media (max-width: 767px) {
  .main {
    width: 100%;
  }
}
.section-mv {
  width: 100%;
  margin: 80px auto 0;
}

.post-detail__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 25/9;
  width: 100%;
  max-height: 300px;
  padding: 30px 50px;
  color: #fff;
}
@media (max-width: 767px) {
  .post-detail__header {
    aspect-ratio: 16/9;
    padding: 20px;
  }
}
.post-detail__header::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: -webkit-backdrop-filter 0.3s 0s ease;
  transition: backdrop-filter 0.3s 0s ease;
  transition: backdrop-filter 0.3s 0s ease, -webkit-backdrop-filter 0.3s 0s ease;
}
.post-detail__header--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 300px;
  aspect-ratio: 25/9;
}
@media (max-width: 767px) {
  .post-detail__header--image {
    aspect-ratio: 16/9;
  }
}
.post-detail__header--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-detail__title {
  position: relative;
  display: block;
  z-index: 2;
  padding: 5px 20px;
  border-bottom: 1px solid #ececef;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .post-detail__title {
    font-size: min(32px, 5vw);
  }
}
.post-detail__meta {
  position: relative;
  z-index: 2;
  padding: 8px;
}

.post-header {
  padding: 20px 10px;
  background: #eceff1;
  border-radius: 3px;
  border: 1px solid #eceff1;
}
.post-header__dates {
  display: flex;
  gap: 0 10px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .post-header__dates {
    flex-direction: column;
    font-size: min(14px, 3.5vw);
  }
}
.post-header__taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}
.post-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.post-header__category {
  margin-top: 5px;
}
.post-header__category-link {
  display: inline-block;
  padding: 4px 10px;
  background: #39842A;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  transition: opacity 0.3s 0s ease;
}
.post-header__category-link:hover {
  opacity: 0.7;
}
.post-header__tag-link {
  display: inline-block;
  padding: 4px 10px;
  background: #999;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  transition: opacity 0.3s 0s ease;
}
.post-header__tag-link:hover {
  opacity: 0.7;
}

.post-content {
  margin-top: 30px;
}
.post-content * {
  max-width: 100%;
}
.post-content__inner {
  line-height: 1.8;
  font-size: 18px;
}
@media (max-width: 767px) {
  .post-content__inner {
    font-size: min(18px, 4.5vw);
  }
}
.post-content__inner figure.wp-block-image {
  text-align: center;
}
.post-content__inner a {
  color: #66b933;
}
.post-content__inner a[target=_blank]:not(:has(img))::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.25em;
  -webkit-mask-image: url("../images/external-link.svg");
          mask-image: url("../images/external-link.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #39842A;
}
.post-content__inner a:hover {
  opacity: 0.8;
}
.post-content h2 {
  position: relative;
  margin: 50px 0 30px;
  padding: 3px 1em;
  border-bottom: solid 3px #ccc;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .post-content h2 {
    margin: 50px 0 20px;
    font-size: min(28px, 6vw);
  }
}
.post-content h2::after {
  width: 20%;
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #68829e;
  left: 0;
  bottom: -3px;
}
.post-content h3 {
  margin: 50px 0 30px;
  padding: 0.25em 0.5em;
  border-left: solid 5px #68829e;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .post-content h3 {
    font-size: min(21px, 5vw);
  }
}
.post-content p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}

/* =========================================
   Prev / Next Navigation
   ========================================= */
.post-nav {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #ececef;
  border-bottom: 1px solid #ececef;
}
.post-nav__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.post-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-nav__item {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
  display: flex;
}
.post-nav__item--prev {
  justify-content: flex-start;
}
.post-nav__item--next {
  justify-content: flex-end;
  margin-left: auto;
}
@media (max-width: 767px) {
  .post-nav__item {
    flex: 1 1 100%;
    max-width: 100%;
    justify-content: center;
  }
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  padding: 15px;
  background: #eceff1;
  border: 1px solid #ececef;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s 0s ease, box-shadow 0.2s 0s ease, background 0.2s 0s ease;
}
.post-nav__link:hover {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.post-nav__link:hover .post-nav__title {
  color: #66b933;
}
.post-nav__label {
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-nav__thumb {
  width: 30%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}
.post-nav__thumb .post-nav__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s 0s ease;
}
.post-nav__link:hover .post-nav__img {
  transform: scale(1.05);
}
.post-nav__title {
  width: calc(70% - 10px);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
}

@media (max-width: 767px) {
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
  }
}
.related-posts {
  margin-top: 4rem;
}
.related-posts__title {
  font-size: 28px;
  font-weight: 700;
  margin: 50px 0 30px;
  padding: 0.25em 0.5em;
  border-left: 4px solid #66b933;
}
.related-posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .related-posts .related-posts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.related-posts__item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.related-posts__item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.related-posts__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.related-posts__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #fafafa;
}
.related-posts__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.related-posts__item:hover .related-posts__thumb img {
  transform: scale(1.05);
}
.related-posts__item-title {
  display: block;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.bubble-r {
  flex-direction: row-reverse;
}

.wp-block-base-blocks-bubble-base01 {
  display: flex !important;
  margin-bottom: 1.4em;
  width: 100%;
}

.bubble-r {
  display: flex !important;
  flex-direction: row-reverse;
}

.bubble-person {
  width: 10%;
  min-width: 10%;
}

.bubble-person {
  min-width: 10%;
  width: 10%;
}

.bubble-icon img {
  border: 2px solid #ccc !important;
  border-radius: 50%;
  width: 100%;
}

.bubble-line {
  background-color: #85e249;
  border-radius: 20px;
  height: 100%;
  margin-left: 20px !important;
  margin-right: 20px !important;
  max-width: 86%;
  padding: 10px 15px !important;
  position: relative;
  width: 86%;
}

.wp-block-embed {
  overflow-wrap: break-word;
  margin: 0 0 1em;
}

.blog-card {
  position: relative;
  width: 100%;
  margin: 50px auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.blog-card figure {
  float: left;
  display: block;
  width: 200px;
  height: 150px;
}

.blog-card figure a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 200px;
  height: 150px;
}

.blog-card section {
  float: right;
  display: block;
  position: relative;
  width: calc(100% - 210px);
  padding: 15px 10px;
}

@media only screen and (max-width: 640px) {
  .blog-card figure,
  .blog-card figure a img {
    width: 120px;
    height: 120px;
  }
  .blog-card section {
    width: calc(100% - 120px);
  }
  .blog-card section p {
    display: none;
  }
}
.blog-card div.blog-card-site {
  position: absolute;
  display: flex;
  align-content: center;
  font-size: 14px;
  right: 10px;
  bottom: 10px;
}

.blog-card:before {
  position: absolute;
  display: block;
  right: 20px;
  content: "合わせて読みたい！";
  background: #a5081a;
  border-radius: 15px;
  font-weight: 700;
  color: #fff;
  top: -15px;
  right: 20px;
  padding: 3px 15px;
  border-radius: 15px;
  font-size: 14px;
}

.blog-card:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

div.wp-block-cocoon-blocks-icon-box {
  position: relative;
  margin: 50px 0 1em;
  padding: 15px;
  border: 3px solid #607d8b;
  border-radius: 5px;
  background: #f0f0f0;
}

div.wp-block-cocoon-blocks-icon-box:before {
  position: absolute;
  top: -25px;
  left: 10px;
  padding: 3px 15px 0;
  content: "POINT";
  background: #607d8b;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.speech-wrap {
  display: flex;
  margin-bottom: 1.4em;
}

.sbp-r {
  flex-direction: row-reverse;
}

.speech-person {
  width: 12%;
  min-width: 12%;
}

.speech-balloon {
  border-width: 1px;
  margin-right: 20px;
  background-color: #85e249;
  border-color: #85e249;
  height: 100%;
  position: relative;
  padding: 10px 20px;
  border-radius: 6px;
  max-width: 86%;
}

.speech-icon img {
  border-radius: 50%;
  border: 2px solid #ccc;
  width: 100%;
}

.post-archive .post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-archive .post-card__link {
  display: flex;
  gap: 20px;
}
.post-archive .post-card__link:hover img {
  transform: scale(1.1);
}
.post-archive .post-card__link:hover .post-card__title {
  opacity: 0.7;
}
.post-archive .post-card__thumb {
  width: 30%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.post-archive .post-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s 0s ease;
}
.post-archive .post-card__body {
  width: calc(70% - 20px);
}
.post-archive .post-card__body .post-card__title {
  font-size: 21px;
  transition: opacity 0.3s 0s ease;
}
.post-archive .post-card__excerpt {
  margin-top: 10px;
  font-size: 16px;
}

.nas-subcategories {
  margin-top: 50px;
}
.nas-subcategories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 10px;
  background: #eceff1;
  border-radius: 3px;
  border: 1px solid #ececef;
}
@media (max-width: 767px) {
  .nas-subcategories__list {
    flex-direction: column;
  }
}
.nas-subcategories__list > li {
  width: calc((100% - 30px) / 2);
}
.nas-subcategories__list > li a {
  transition: color 0.3s 0s ease;
}
.nas-subcategories__list > li a:hover {
  color: #66b933;
}
.nas-subcategories__list > li > a {
  display: block;
  padding: 0 10px 5px;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 767px) {
  .nas-subcategories__list > li > a {
    font-size: min(18px, 5vw);
  }
}
@media (max-width: 767px) {
  .nas-subcategories__list > li {
    width: 100%;
  }
}
.nas-subcategories__list > li .sub-menu li a {
  display: block;
  padding: 5px 0;
}
.nas-subcategories__list > li .sub-menu li:not(:last-child) a {
  border-bottom: dashed 1px #333;
}
.nas-subcategories__list > li__title {
  border-bottom: 1px solid #000;
  padding: 0 10px 5px;
  font-weight: bold;
}
.nas-subcategories__list > li .post-card .post-card__link {
  display: block;
  padding: 5px 0;
}
.nas-subcategories__list > li .post-card:not(:last-child) .post-card__link {
  border-bottom: dashed 1px #333;
}
.nas-subcategories__list > li .post-card__title {
  padding: 0;
  font-weight: normal;
}

.nas-subcategory {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 767px) {
  .nas-subcategory {
    width: 100%;
  }
}
.nas-subcategory__title {
  border-bottom: 1px solid #000;
  padding: 0 10px 5px;
  font-weight: bold;
}
.nas-subcategory .post-card .post-card__link {
  display: block;
  padding: 5px 0;
}
.nas-subcategory .post-card:not(:last-child) .post-card__link {
  border-bottom: dashed 1px #333;
}
.nas-subcategory .post-card__title {
  padding: 0;
  font-weight: normal;
}

.sidebar {
  position: sticky;
  top: 80px;
  width: 300px;
  flex-shrink: 0;
}
.sidebar__title {
  margin-bottom: 7px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sidebar {
    position: relative;
  }
}

.wpp-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-list__item:not(:nth-of-type(1)) {
  margin-top: 10px;
}
.wpp-list__item img {
  display: block;
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin: 0;
  transition: opacity 0.3s 0s ease;
}
.wpp-list__item a:hover img {
  opacity: 0.7;
}

.wpp__title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}
.wpp__title a {
  transition: color 0.3s 0s ease;
}
.wpp__title a:hover {
  color: #66b933;
}

.wpp-time {
  margin-top: 5px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
  .wpp-list__item:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
  .wpp-list__item img {
    width: 30vw;
    min-width: 30vw;
    height: auto;
    aspect-ratio: 107/80;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wpp__title {
    font-size: min(16px, 4vw);
  }
}
.sidebar-section__title {
  padding: 5px 10px;
  border-bottom: 1px solid #000;
  text-align: center;
}
.sidebar-section--links {
  margin-top: 30px;
}
.sidebar-section--ad {
  margin-top: 30px;
}

.sidebar-links li a {
  display: inline-block;
  padding: 5px;
  position: relative;
}
.sidebar-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #66b933;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s 0s ease;
}
.sidebar-links li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section-pickup {
  padding: 20px 10px;
  background: #eceff1;
  border-radius: 3px;
  border: 1px solid #ececef;
}

.section-pickup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-pickup__item {
  width: calc((100% - 20px) / 3);
}

.section-pickup__link {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #ececef;
  transition: background-color 0.3s 0s ease, color 0.3s 0s ease;
}

.section-pickup__link:hover {
  background: #66b933;
  color: #fff;
}

@media (max-width: 767px) {
  .container {
    flex-direction: column;
  }
  .section-pickup__item {
    width: calc((100% - 10px) / 2);
  }
}
.breadcrumb {
  margin: 1em 0;
  font-size: 14px;
}
.breadcrumb span {
  padding: 5px 0;
}
.breadcrumb span:has(a) {
  padding: 0;
}
.breadcrumb a {
  padding: 5px 0;
  position: relative;
}
.breadcrumb a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #66b933;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s 0s ease;
}
.breadcrumb a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.breadcrumb_last {
  font-weight: 700;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 50px;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 16px;
  transition: background 0.3s 0s ease;
}
.pagination a.next, .pagination a.prev {
  width: auto;
}
.pagination a:hover {
  background: #eceff1;
}
.pagination span.current {
  font-weight: 700;
}
.pagination span.next, .pagination span.prev {
  width: auto;
}

.ad__post--before {
  margin: 30px auto;
  text-align: center;
}
@media (max-width: 767px) {
  .ad__post--before {
    margin: 0 auto 30px;
  }
}

.widget--single-content-before {
  margin-top: 30px;
}

.widget--single-content-after {
  margin-top: 30px;
}

.widget-in-content {
  margin: 80px auto;
}
@media (max-width: 767px) {
  .widget-in-content {
    margin: 40px auto;
  }
}

img.scaled-image {
  border: initial !important;
  margin: initial !important;
}

.pochipp-box a:after {
  content: none !important;
}

input[type=text],
input[type=email],
textarea {
  width: 600px;
  padding: 10px;
  font-size: 16px;
}

input[type=submit] {
  font-size: 16px;
  padding: 2px 10px;
}

.section-featured-post {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 30px;
  padding-inline: 20px;
}

.post-card--featured {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 25/9;
  color: #fff;
}
.post-card--featured a {
  color: #fff;
}
.post-card--featured .post-card__title {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.6;
}
.post-card--featured .post-card__date {
  display: inline-block;
}
.post-card--featured span.post-card__category {
  position: relative;
  top: initial;
  right: initial;
}
.post-card--featured span.post-card__category:hover {
  opacity: 1;
}
.post-card--featured::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: -webkit-backdrop-filter 0.3s 0s ease;
  transition: backdrop-filter 0.3s 0s ease;
  transition: backdrop-filter 0.3s 0s ease, -webkit-backdrop-filter 0.3s 0s ease;
}
.post-card--featured:hover::before {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .post-card--featured {
    margin-top: 80px;
  }
}

.post-card__image--featured {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 25/9;
}
.post-card__image--featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-card__body--featured {
  position: relative;
  z-index: 2;
  width: 70%;
  margin-inline: auto;
}

.section-latest-posts {
  margin-top: 20px;
}
.section-latest-posts__title {
  padding: 5px 10px;
  border-bottom: 1px solid #000;
}
.section-latest-posts__list {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
}
.section-latest-posts__list .post-card {
  width: calc((100% - 20px) / 3);
}

.section-latest-posts .post-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.section-latest-posts .post-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(0);
  transition: filter 0.5s 0s ease;
}
.section-latest-posts .post-card__image::after {
  content: "READ MORE";
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s 0s ease;
}

.post-card {
  position: relative;
  display: block;
}
.post-card__title {
  position: relative;
  display: inline;
  padding: 0 0 5px;
  font-weight: bold;
  transition: color 0.3s 0s ease;
  /*
          &::after {
              content: "";
              position: absolute;
              left: 50%;
              bottom: 0;
              width: 100%;
              height: 1px;
              background: v.$color-bg-inverse;
              transform: translateX(-50%) scaleX(0);
              transform-origin: center;
              @include mixins.transition-by(transform);
          }
  */
}
.post-card__body {
  align-items: flex-start;
  margin-top: 10px;
}
.post-card__body .post-card__category {
  position: relative;
  top: initial;
  right: initial;
}
.post-card__date {
  display: block;
  padding: 5px 0;
  font-size: 12px;
}
.post-card__category {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 10;
  display: inline-block;
  padding: 4px 6px;
  background: rgb(90.9788135593, 165.0105932203, 45.4894067797);
  background: #39842A;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  transition: opacity 0.3s 0s ease;
}
@media (max-width: 767px) {
  .post-card__category {
    top: initial;
    bottom: 0;
  }
}
.post-card__category:hover {
  opacity: 0.7;
}
.post-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
  font-size: 14px;
}
.post-card__link:hover .post-card__image img {
  filter: blur(4px);
}
.post-card__link:hover .post-card__image::after {
  opacity: 1;
}
.post-card__link:hover h3.post-card__title {
  color: #66b933;
}

.post-card__link:hover .post-card__title::after {
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 1024px) {
  .section-latest-posts__list .post-card {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 767px) {
  .post-card--featured {
    aspect-ratio: 16/9;
  }
  .post-card__image--featured {
    aspect-ratio: 16/9;
  }
  .post-card--featured .post-card__title {
    font-size: min(24px, 4vw);
  }
  .section-latest-posts__list {
    gap: 10px;
  }
  .section-latest-posts__list .post-card {
    width: 100%;
  }
  .post-card__link {
    display: flex;
    gap: 10px;
  }
  .post-card__image {
    width: 30vw;
    flex-shrink: 0;
  }
  .post-card__body {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 60%;
    margin-top: 0;
  }
  .post-card__title {
    padding: 0;
    font-size: min(16px, 4vw);
  }
  .post-card__excerpt {
    display: none;
  }
  .post-card__date {
    padding: 0;
  }
  a.post-card__category {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */