/* ---------------------
  news
--------------------- */
.post-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .post-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}

.post-main {
  max-width: 820px;
  width: 68%;
}
@media screen and (max-width: 834px) {
  .post-main {
    max-width: none;
    width: 100%;
  }
}
.post-main__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
}
@media screen and (max-width: 834px) {
  .post-main__wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .post-main__wrap {
    width: 97.5%;
    margin: 0 0 0 auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.post-main .link__box {
  position: relative;
  margin: 6rem auto 0;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .post-main .link__box {
    margin-top: 3rem;
  }
}
.post-main .link__box .chevron_right {
  position: absolute;
  left: 2rem;
}

.news-item {
  position: relative;
}
.news-item .top__news-slider-item-ttl {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .news-item .top__news-slider-item-ttl {
    font-size: 1.8rem;
  }
}
.news-item .top__news-slider-item-date {
  margin-top: 0;
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .news-item .top__news-slider-item-date {
    font-size: 1.4rem;
  }
}

.news-flex {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}
@media screen and (max-width: 834px) {
  .news-flex {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .news-flex {
    margin-top: 1rem;
  }
}
.news-flex .post-tag__item {
  font-size: 1.4rem;
}
.news-flex .top__news-slider-item-date {
  margin-top: 6px;
}

.news-cate {
  display: block;
  padding: 0 1em;
  line-height: 3rem;
  font-size: 1.4rem;
  color: var(--wh);
  font-weight: 600;
  background-color: #1ca967;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .news-cate {
    font-size: 1.2rem;
  }
}

.post-side {
  max-width: 300px;
  width: 100%;
}

.post-dl:not(:first-of-type) {
  margin-top: 6rem;
}
@media screen and (max-width: 834px) {
  .post-dl:not(:first-of-type) {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 450px) {
  .post-dl:not(:first-of-type) {
    margin-top: 3rem;
  }
}
.post-dl.accordion__item {
  cursor: pointer;
}
.post-dl.accordion__item .post-dd {
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.post-dl.accordion__item.open .acd-btn {
  transform: rotate(-180deg);
}
.post-dl.accordion__item.open .post-dd {
  height: 100%;
  opacity: 1;
}

.post-dt {
  position: relative;
  padding-bottom: 1.5rem;
  color: #1ca967;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .post-dt {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
}
.post-dt::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-image: repeating-radial-gradient(circle, #dfedd1 0px, #dfedd1 2px, transparent 2px, transparent 6px);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 6px 4px;
}
.post-dt:has(.acd-btn) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}

.post-dd {
  padding-top: 3rem;
  color: #005b43;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .post-dd {
    padding-top: 1.5rem;
  }
}

.acd-btn {
  position: relative;
  width: 1em;
  transition: all 0.3s ease-in-out;
}
.acd-btn::before {
  position: absolute;
  content: "\e313";
  font-family: "Material Icons";
  font-weight: 400;
}

.post-cate__list li:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (max-width: 834px) {
  .post-cate__list li:not(:first-of-type) {
    margin-top: 0.5em;
  }
}

.post-archive__list {
  font-family: "Poppins";
}
.post-archive__list li:not(:first-of-type) {
  margin-top: 1em;
}
@media screen and (max-width: 834px) {
  .post-archive__list li:not(:first-of-type) {
    margin-top: 0.5em;
  }
}

.post-tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 834px) {
  .post-tag__list {
    gap: 1rem;
  }
}

.post-tag__item {
  padding: 0 1em;
  font-size: 1.6rem;
  line-height: 3.4rem;
  background-color: #c2e6ce;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 500px) {
  .post-tag__item {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

.post-hg {
  margin-bottom: 8rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #dfedd1;
}
@media screen and (max-width: 834px) {
  .post-hg {
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
  }
}
.post-hg__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 450px) {
  .post-hg__top {
    gap: 1rem;
  }
}
.post-hg__top-catetag {
  width: calc(100% - 73px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-hg__top .top__news-slider-item-date {
  margin-top: 5px;
  margin-right: 5px;
  font-size: 1.7rem;
}
@media screen and (max-width: 834px) {
  .post-hg__top .top__news-slider-item-date {
    font-size: 1.4rem;
  }
}
.post-hg__top .news-cate, .post-hg__top .post-tag__item {
  font-size: 1.6rem;
}
@media screen and (max-width: 834px) {
  .post-hg__top .news-cate, .post-hg__top .post-tag__item {
    font-size: 1.4rem;
  }
}

.post-ttl {
  margin-top: 1.5rem;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .post-ttl {
    margin-top: 1rem;
    font-size: 2.2rem;
  }
}

.post-art__tumn {
  margin-bottom: 5rem;
  width: 100%;
  display: block;
}
.post-art__tumn img {
  width: 100%;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}

.post-art__single p {
  font-weight: inherit;
}

/* wp pagenavi */
.wp-pagenavi_wrap {
  margin: 8rem auto 0;
  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;
  gap: 9px;
}
@media screen and (max-width: 834px) {
  .wp-pagenavi_wrap {
    margin-top: 6rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media screen and (max-width: 834px) {
  .wp-pagenavi_wrap {
    margin-top: 4rem;
  }
}

.wp-pagenavi {
  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;
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .wp-pagenavi {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  width: 50px;
  line-height: 50px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  font-family: "Poppins";
}
@media screen and (max-width: 834px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 30px;
    line-height: 30px;
  }
}
.wp-pagenavi .current {
  background-color: #fff600;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.previouspostslink,
.nextpostslink,
.first,
.last {
  position: relative;
  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;
  width: 50px;
  aspect-ratio: 1/1;
  line-height: 50px;
  background-color: #c2e6ce;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .previouspostslink,
  .nextpostslink,
  .first,
  .last {
    width: 30px;
    line-height: 30px;
  }
}
.previouspostslink::after,
.nextpostslink::after,
.first::after,
.last::after {
  position: absolute;
  font-family: "Material Icons";
  font-weight: normal;
  font-size: normal;
}
.previouspostslink:hover,
.nextpostslink:hover,
.first:hover,
.last:hover {
  opacity: 0.6;
}

.previouspostslink::after {
  content: "\e5cb";
}

.first::after {
  content: "\eac3";
}

.nextpostslink::after {
  content: "\e5cc";
}

.last::after {
  content: "\eac9";
}

span.previouspostslink:hover,
span.nextpostslink:hover {
  opacity: 1;
}

.extend {
  position: relative;
  top: -0.3em;
}

/* easy table of contents */
.post-main {
  /* post detail */
}
.post-main #ez-toc-container {
  padding: 3.6% 6%;
  width: 100%;
  display: block;
  border: 3px solid #dfedd1;
  background-color: var(--wh);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
.post-main #ez-toc-container .ez-toc-title-container {
  text-align: center;
}
.post-main #ez-toc-container .ez-toc-title {
  position: relative;
  display: block;
  margin-bottom: 35px;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1ca867;
}
@media screen and (max-width: 834px) {
  .post-main #ez-toc-container .ez-toc-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.post-main #ez-toc-container .ez-toc-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-image: repeating-radial-gradient(circle, #dfedd1 0px, #dfedd1 2px, transparent 2px, transparent 6px);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 6px 4px;
}
.post-main .ez-toc-title-toggle {
  display: none;
}
.post-main div#ez-toc-container ul li {
  list-style: none;
  font-weight: 600;
}
.post-main div#ez-toc-container ul li.ez-toc-heading-level-2 {
  margin-top: 20px;
}
@media screen and (max-width: 834px) {
  .post-main div#ez-toc-container ul li.ez-toc-heading-level-2 {
    margin-top: 15px;
  }
}
.post-main div#ez-toc-container ul li a {
  position: relative;
  margin-bottom: 15px;
  padding-left: 25px;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #005b43;
}
@media screen and (max-width: 834px) {
  .post-main div#ez-toc-container ul li a {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 18px;
  }
}
.post-main div#ez-toc-container ul li a::before {
  position: absolute;
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  top: calc(50% - 7px);
  left: 0;
  background-color: #fff600;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .post-main div#ez-toc-container ul li a::before {
    width: 10px;
    top: calc(50% - 5px);
  }
}
.post-main #ez-toc-container ul ul, .post-main .ez-toc div.ez-toc-widget-container ul ul {
  margin-left: 0;
}
.post-main div#ez-toc-container ul li ul li a,
.post-main div#ez-toc-container ul li ul li ul li a,
.post-main div#ez-toc-container ul li ul li ul li ul li a,
.post-main div#ez-toc-container ul li ul li ul li ul li ul li a {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom-width: 0;
  font-size: 17px;
  font-weight: 600;
}
.post-main div#ez-toc-container ul li ul li a::before {
  display: none;
}
.post-main div#ez-toc-container ul li ul li ul li a {
  margin-left: 2em;
}
.post-main div#ez-toc-container ul li ul li ul li ul li a {
  margin-left: 4em;
}
.post-main div#ez-toc-container ul li ul li ul li ul li ul li a {
  margin-left: 5em;
}
.post-main .wp-block-heading {
  margin: 40px 0 25px;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .post-main .wp-block-heading {
    margin: 25px 0 10px;
  }
}
.post-main h2.wp-block-heading {
  position: relative;
  display: block;
  padding: 0.5em 1em;
  font-size: 24px;
  background-color: #fff600;
  border-radius: 6px;
  -webkit-border-radius: 6px;
}
@media screen and (max-width: 834px) {
  .post-main h2.wp-block-heading {
    font-size: 20px;
  }
}
.post-main h3.wp-block-heading {
  position: relative;
  padding-left: 3rem;
  display: block;
  line-height: 2;
  font-size: 24px;
}
@media screen and (max-width: 834px) {
  .post-main h3.wp-block-heading {
    padding-left: 2rem;
    line-height: 1.5;
    font-size: 20px;
  }
}
.post-main h3.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1ca867;
}
@media screen and (max-width: 834px) {
  .post-main h3.wp-block-heading::before {
    width: 3px;
  }
}
.post-main h4.wp-block-heading {
  position: relative;
  width: fit-content;
  padding: 0 10px;
  font-size: 24px;
}
@media screen and (max-width: 834px) {
  .post-main h4.wp-block-heading {
    font-size: 20px;
  }
}
.post-main h4.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.6em;
  bottom: 0;
  left: 0;
  background-color: #fff600;
  z-index: -1;
}
.post-main h5.wp-block-heading {
  width: fit-content;
  padding: 0.5em 1em;
  font-size: 22px;
  background-color: #c2e6ce;
  border-radius: 6px;
  -webkit-border-radius: 6px;
}
@media screen and (max-width: 834px) {
  .post-main h5.wp-block-heading {
    font-size: 19px;
  }
}
.post-main h6.wp-block-heading {
  font-size: 22px;
  color: #1ca867;
}
@media screen and (max-width: 834px) {
  .post-main h6.wp-block-heading {
    font-size: 19px;
  }
}