#archive-blog .wp-pagenavi {
  padding-top: calc(8px * 8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 959px) {
  #archive-blog .wp-pagenavi {
    padding-top: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi {
    padding-top: calc((8px * 8) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi {
    position: relative;
    padding-bottom: 52px;
  }
}

#archive-blog .wp-pagenavi .page,
#archive-blog .wp-pagenavi .current,
#archive-blog .wp-pagenavi .nextpostslink,
#archive-blog .wp-pagenavi .previouspostslink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border: solid 1px #333333;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #archive-blog .wp-pagenavi .page,
  #archive-blog .wp-pagenavi .current,
  #archive-blog .wp-pagenavi .nextpostslink,
  #archive-blog .wp-pagenavi .previouspostslink {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi .page,
  #archive-blog .wp-pagenavi .current,
  #archive-blog .wp-pagenavi .nextpostslink,
  #archive-blog .wp-pagenavi .previouspostslink {
    font-size: 1.6rem;
  }
}

#archive-blog .wp-pagenavi .page:not(.current):hover,
#archive-blog .wp-pagenavi .current:not(.current):hover,
#archive-blog .wp-pagenavi .nextpostslink:not(.current):hover,
#archive-blog .wp-pagenavi .previouspostslink:not(.current):hover {
  background: #333333;
  color: #ffffff;
}

#archive-blog .wp-pagenavi .current {
  border: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#F0ECE2), to(#E8DEC6));
  background: linear-gradient(#F0ECE2, #E8DEC6);
  color: #867548;
}

#archive-blog .wp-pagenavi .nextpostslink,
#archive-blog .wp-pagenavi .previouspostslink {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  white-space: nowrap;
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi .nextpostslink,
  #archive-blog .wp-pagenavi .previouspostslink {
    width: calc( 50% - 4px);
    border-radius: 4px;
    height: 40px;
  }
}

#archive-blog .wp-pagenavi .nextpostslink::before,
#archive-blog .wp-pagenavi .previouspostslink::before {
  content: '';
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 17px;
  height: 13px;
  background: #333333;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #archive-blog .wp-pagenavi .nextpostslink::before,
  #archive-blog .wp-pagenavi .previouspostslink::before {
    width: 15px;
    height: 11px;
  }
}

#archive-blog .wp-pagenavi .nextpostslink:hover::before,
#archive-blog .wp-pagenavi .previouspostslink:hover::before {
  background-color: #ffffff;
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi .previouspostslink {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

#archive-blog .wp-pagenavi .previouspostslink::before {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

#archive-blog .wp-pagenavi .nextpostslink {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 519px) {
  #archive-blog .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}

#archive-blog .hero {
  background: url("/wp-content/themes/itreat_base/dist/img/blog/hero-bg.jpg") center/cover no-repeat;
}

#archive-blog .cate-menu {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: calc(8px * 8);
}

@media screen and (max-width: 959px) {
  #archive-blog .cate-menu {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .cate-menu {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

@media screen and (max-width: 767px) {
  #archive-blog .cate-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

#archive-blog .cate-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 0 0;
  width: 100%;
  min-height: 64px;
  color: #ffffff;
  background: #7bba6b;
  border: 1px solid #7bba6b;
  border-radius: 2px;
}

@media screen and (max-width: 959px) {
  #archive-blog .cate-menu__item a {
    min-height: 56px;
  }
}

@media screen and (max-width: 767px) {
  #archive-blog .cate-menu__item a {
    min-height: 48px;
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .cate-menu__item a {
    min-height: 40px;
  }
}

#archive-blog .cate-menu__item a:hover {
  color: #7bba6b;
  background: #ffffff;
}

#archive-blog .cate-menu__item.current a {
  color: #7bba6b;
  background: #ffffff;
  border: 1px solid #7bba6b;
}

#archive-blog .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(8px * 2);
}

@media screen and (max-width: 959px) {
  #archive-blog .blog-list {
    gap: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .blog-list {
    gap: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #archive-blog .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 519px) {
  #archive-blog .blog-list {
    grid-template-columns: 1fr;
  }
}

#archive-blog .blog-list__item {
  background: #ffffff;
  -webkit-box-shadow: 0 0 8px rgba(85, 77, 58, 0.04);
  box-shadow: 0 0 8px rgba(85, 77, 58, 0.04);
  border-radius: 10px;
  contain: paint;
}

@media screen and (max-width: 519px) {
  #archive-blog .blog-list__item {
    border-radius: 4px;
  }
}

#archive-blog .blog-list__item .blog-vsl a {
  overflow: hidden;
  display: block;
  position: relative;
  aspect-ratio: 3/2;
}

#archive-blog .blog-list__item .blog-vsl a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  contain: paint;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#archive-blog .blog-list__item .blog-vsl a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#archive-blog .blog-list__item .blog-dtl {
  padding: 12px;
}

#archive-blog .blog-list__item .blog-dtl .blog-ttl {
  margin-bottom: 12px;
}

#archive-blog .blog-list__item .blog-dtl .blog-ttl a {
  min-height: 2lh;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 959px) {
  #archive-blog .blog-list__item .blog-dtl .blog-ttl a {
    font-size: 1.4rem;
  }
}

#archive-blog .blog-list__item .blog-dtl .blog-ttl a:hover {
  text-decoration: underline;
}

#archive-blog .blog-list__item .blog-dtl .blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#archive-blog .blog-list__item .blog-dtl .blog-meta__date {
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #999999;
}

#archive-blog .blog-list__item .blog-dtl .blog-meta__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 22px;
  padding: 1px 8px 2px 8px;
  background: #ffffff;
  border: 1px solid #333333;
  font-size: 1.2rem;
  border-radius: 2px;
}

#archive-blog .blog-list__item .blog-dtl .blog-meta__cate:hover {
  background: #333333;
  color: #ffffff;
}

#single-blog .post-eyecatch {
  position: relative;
  aspect-ratio: 3/2;
  max-width: 800px;
  margin-bottom: calc(8px * 5);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 959px) {
  #single-blog .post-eyecatch {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-eyecatch {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#single-blog .post-eyecatch img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
}

@media screen and (max-width: 519px) {
  #single-blog .post-eyecatch img {
    border-radius: 8px;
  }
}

#single-blog .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 959px) {
  #single-blog .post-meta {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-meta {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single-blog .post-meta__date {
  margin-right: calc(8px * 2);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  #single-blog .post-meta__date {
    margin-right: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-meta__date {
    margin-right: calc((8px * 2) * 0.5);
  }
}

#single-blog .post-meta__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1px 0 0;
  width: 136px;
  height: 26px;
  background: #999999;
  color: #ffffff;
  font-size: 1.4rem;
  border-radius: 2px;
}

#single-blog .post-meta__cate.--event {
  background: #5bb545;
  border: 2px solid #5bb545;
}

#single-blog .post-meta__cate.--event:hover {
  color: #5bb545;
  background: #f7f6f4;
}

#single-blog .post-meta__cate.--internship {
  background: #1da7eb;
  border: 2px solid #1da7eb;
}

#single-blog .post-meta__cate.--internship:hover {
  color: #1da7eb;
  background: #f7f6f4;
}

#single-blog .post-meta__cate.--recruit {
  background: #e9546a;
  border: 2px solid #e9546a;
}

#single-blog .post-meta__cate.--recruit:hover {
  color: #e9546a;
  background: #f7f6f4;
}

#single-blog .post-meta__cate.--session {
  background: #a3956f;
  border: 2px solid #a3956f;
}

#single-blog .post-meta__cate.--session:hover {
  color: #a3956f;
  background: #f7f6f4;
}

#single-blog .post-meta__cate.--other {
  background: #999999;
  border: 2px solid #999999;
}

#single-blog .post-meta__cate.--other:hover {
  color: #999999;
  background: #f7f6f4;
}

#single-blog .post-meta__cate.--blog {
  background: #f7f6f4;
  border: 2px solid #333333;
  color: #333333;
}

#single-blog .post-meta__cate.--blog:hover {
  color: #ffffff;
  background: #333333;
}

#single-blog .post-tag {
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  #single-blog .post-tag {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-tag {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#single-blog .post-tag__item a {
  color: #999999;
}

#single-blog .post-ttl {
  margin-bottom: calc(8px * 8);
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single-blog .post-ttl {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-ttl {
    margin-bottom: calc((8px * 8) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .post-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-ttl {
    margin-bottom: 36px;
    font-size: 2.4rem;
  }
}

#single-blog .post-dtl .editor-styles-wrapper {
  font-size: 1.6rem;
  font-family: YakuHanJP, "Inter", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl .editor-styles-wrapper {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

#single-blog .post-dtl .editor-styles-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}

#single-blog .post-dtl .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper {
  padding: 0 16px;
}

#single-blog .post-dtl .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper .editor-post-title {
  margin: 0;
}

#single-blog .post-dtl .editor-styles-wrapper .wp-block-post-content {
  padding: 0 16px;
}

#single-blog .post-dtl .editor-styles-wrapper .wp-block-post-content .wp-block {
  max-width: none;
}

#single-blog .post-dtl h2 {
  position: relative;
  margin-top: 72px;
  margin-bottom: 44px;
  padding-bottom: 32px;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h2 {
    margin-top: 56px;
    margin-bottom: 32px;
    padding-bottom: 26px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl h2 {
    margin-top: 40px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    font-size: 2rem;
  }
}

#single-blog .post-dtl h2::before, #single-blog .post-dtl h2::after {
  position: absolute;
  content: "";
  bottom: 0;
}

#single-blog .post-dtl h2::before {
  left: 0;
  width: calc( 100% - 44px);
  height: 8px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#027b22), to(#d2e954));
  background: linear-gradient(to right, #027b22, #d2e954);
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h2::before {
    width: calc( 100% - 31px);
    height: 6px;
  }
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl h2::before {
    width: calc( 100% - 24px);
    height: 4px;
  }
}

#single-blog .post-dtl h2::after {
  right: 0;
  width: 40px;
  height: 8px;
  background-color: transparent;
  background-image: radial-gradient(circle, #d2e954 4px, transparent 4px);
  background-size: 14px 8px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h2::after {
    width: 28px;
    height: 6px;
    background-image: radial-gradient(circle, #d2e954 3px, transparent 3px);
    background-size: 10px 6px;
  }
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl h2::after {
    width: 22px;
    height: 4px;
    background-image: radial-gradient(circle, #d2e954 2px, transparent 2px);
    background-size: 8px 4px;
  }
}

#single-blog .post-dtl h3 {
  position: relative;
  margin-top: 40px;
  padding-left: 16px;
  margin-bottom: calc(8px * 4);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h3 {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-dtl h3 {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h3 {
    margin-top: 36px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl h3 {
    padding-left: 12px;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-dtl h3 {
    margin-top: 20px;
    margin-bottom: 12px;
    padding-left: 10px;
    font-size: 1.8rem;
  }
}

#single-blog .post-dtl h3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#027b22), color-stop(#5bb545), color-stop(#7bba6b), color-stop(#9ae02b), to(#d2e954));
  background: linear-gradient(#027b22, #5bb545, #7bba6b, #9ae02b, #d2e954);
  border-radius: 0 2px 2px 0;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h3:before {
    width: 4px;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-dtl h3:before {
    width: 3px;
  }
}

#single-blog .post-dtl h4 {
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: bold;
  color: #027b22;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl h4 {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-dtl h4 {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 1.6rem;
  }
}

#single-blog .post-dtl .has-blk-color {
  color: #333333;
}

#single-blog .post-dtl .has-wht-color {
  color: #ffffff;
}

#single-blog .post-dtl .has-grn-color {
  color: #7bba6b;
}

#single-blog .post-dtl .has-red-color {
  color: #e9546a;
}

#single-blog .post-dtl .has-d-aqu-color {
  color: #1da7eb;
}

#single-blog .post-dtl .has-brn-color {
  color: #a3956f;
}

#single-blog .post-dtl .has-blk-background-color {
  background-color: #333333;
}

#single-blog .post-dtl .has-wht-background-color {
  background-color: #ffffff;
}

#single-blog .post-dtl .has-grn-background-color {
  background-color: #5bb545;
}

#single-blog .post-dtl .has-red-background-color {
  background-color: #e9546a;
}

#single-blog .post-dtl .has-d-aqu-background-color {
  background-color: #1da7eb;
}

#single-blog .post-dtl .has-brn-background-color {
  background-color: #a3956f;
}

#single-blog .post-dtl .has-d-gry-background-color {
  background-color: #999999;
}

#single-blog .post-dtl .marker-highlight {
  background-color: #fdf900;
}

#single-blog .post-dtl mark {
  font-weight: bold;
}

#single-blog .post-dtl p {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl p {
    margin-bottom: 16px;
  }
}

#single-blog .post-dtl strong {
  font-weight: bold;
}

#single-blog .post-dtl a {
  text-decoration: underline;
  color: #333333;
}

#single-blog .post-dtl a:hover {
  text-decoration: none;
}

#single-blog .post-dtl ul {
  margin-bottom: 24px;
  list-style: none;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl ul {
    margin-top: -4px;
    margin-bottom: 16px;
  }
}

#single-blog .post-dtl ul li {
  position: relative;
  padding-left: 16px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul li {
    padding-left: 12px;
  }
}

#single-blog .post-dtl ul li:not(:nth-last-of-type(1)) {
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul li:not(:nth-last-of-type(1)) {
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #027b22;
  border-radius: 50%;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul li::before {
    width: 8px;
    height: 8px;
  }
}

#single-blog .post-dtl ul li ul {
  padding-top: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul li ul {
    padding-top: 4px;
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ul li ul li:not(:nth-last-of-type(1)) {
  margin-bottom: 0;
}

#single-blog .post-dtl ul li ul li::before {
  background: rgba(2, 123, 34, 0.64);
}

#single-blog .post-dtl ul li ol {
  padding-top: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul li ol {
    padding-top: 4px;
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ul li ol li {
  padding-left: 0;
}

#single-blog .post-dtl ul li ol li:not(:nth-last-of-type(1)) {
  margin-bottom: 0;
}

#single-blog .post-dtl ul li ol li::before {
  display: none;
}

#single-blog .post-dtl ul li ol li::marker {
  color: rgba(2, 123, 34, 0.64);
}

#single-blog .post-dtl ul.is-style-check-list li {
  position: relative;
  padding-left: 28px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul.is-style-check-list li {
    padding-left: 22px;
  }
}

#single-blog .post-dtl ul.is-style-check-list li::before, #single-blog .post-dtl ul.is-style-check-list li::after {
  position: absolute;
  content: "";
}

#single-blog .post-dtl ul.is-style-check-list li::before {
  top: 3px;
  left: 0;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: solid 2px #e9546a;
  border-radius: 0;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul.is-style-check-list li::before {
    top: 2px;
    width: 18px;
    height: 18px;
  }
}

#single-blog .post-dtl ul.is-style-check-list li::after {
  top: 5px;
  left: 7px;
  width: 8px;
  height: 14px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #e9546a #e9546a transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ul.is-style-check-list li::after {
    top: 4px;
    left: 6px;
    width: 6px;
    height: 11px;
    border-width: 0 2px 2px 0;
  }
}

#single-blog .post-dtl ol {
  margin-bottom: 24px;
  list-style: auto;
  list-style-position: inside;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

#single-blog .post-dtl ol.wp-block {
  padding: 0 0 0 20px;
}

#single-blog .post-dtl ol li {
  margin-left: 1.3em;
  text-indent: -1.3em;
}

#single-blog .post-dtl ol li:not(:nth-last-of-type(1)) {
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ol li:not(:nth-last-of-type(1)) {
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ol li::marker {
  color: #027b22;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
}

#single-blog .post-dtl ol li div {
  display: inline;
}

#single-blog .post-dtl ol li ul {
  padding-top: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ol li ul {
    padding-top: 4px;
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ol li ul li {
  margin-left: 0;
  text-indent: 0;
}

#single-blog .post-dtl ol li ul li:not(:nth-last-of-type(1)) {
  margin-bottom: 0;
}

#single-blog .post-dtl ol li ul li::before {
  background: rgba(2, 123, 34, 0.64);
}

#single-blog .post-dtl ol li ol {
  padding-top: 6px;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl ol li ol {
    padding-top: 4px;
    margin-bottom: 4px;
  }
}

#single-blog .post-dtl ol li ol li:not(:nth-last-of-type(1)) {
  margin-bottom: 0;
}

#single-blog .post-dtl ol li ol li::marker {
  color: rgba(2, 123, 34, 0.64);
}

#single-blog .post-dtl .wp-block-quote {
  margin-bottom: 24px;
  padding: 16px;
  background: #eeeeee;
}

#single-blog .post-dtl .wp-block-quote p {
  margin: 0 0 4px;
}

#single-blog .post-dtl .wp-block-quote cite a {
  text-decoration: underline;
  font-size: 1.4rem;
  color: #999999;
}

#single-blog .post-dtl .wp-block-quote cite a:hover {
  text-decoration: none;
}

#single-blog .post-dtl .wp-block-image {
  margin-bottom: 24px;
}

#single-blog .post-dtl .wp-block-image img {
  width: auto;
}

#single-blog .post-dtl .wp-block-media-text {
  gap: 2em;
  margin-bottom: 24px;
}

#single-blog .post-dtl .wp-block-media-text__content {
  padding: 0;
}

#single-blog .post-dtl .wp-block-column .wp-block-image {
  margin: 0;
}

#single-blog .post-dtl .wp-block-column .wp-block-image img {
  width: 100%;
}

#single-blog .post-dtl .wp-block-file {
  margin-bottom: 24px;
}

#single-blog .post-dtl .wp-block-file a {
  font-size: 1.6rem;
  color: #5bb545;
  text-decoration: underline;
}

#single-blog .post-dtl .wp-block-file a:hover {
  text-decoration: none;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl .wp-block-file a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .post-dtl .wp-block-file a {
    font-size: 1.2rem;
  }
}

#single-blog .post-dtl .wp-block-file .wp-block-file__button {
  background: #5bb545;
  display: inline-block;
  padding: 4px 8px 2px 10px;
  text-decoration: none;
  color: #ffffff;
}

#single-blog .post-dtl .wp-block-separator {
  margin: 40px auto;
}

@media screen and (max-width: 959px) {
  #single-blog .post-dtl .wp-block-separator {
    margin: 24px auto 28px;
  }
}

#single-blog .post-dtl .wp-block-table {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl .wp-block-table {
    overflow-x: auto;
  }
}

#single-blog .post-dtl .wp-block-table table {
  width: 100%;
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl .wp-block-table table {
    table-layout: auto;
  }
}

#single-blog .post-dtl .wp-block-table table thead {
  border: none;
}

#single-blog .post-dtl .wp-block-table table thead tr th {
  padding: 16px;
  background: #027b22;
  color: #ffffff;
  border-color: #ffffff;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl .wp-block-table table thead tr th {
    padding: 8px;
    min-width: 104px;
  }
}

#single-blog .post-dtl .wp-block-table table tbody tr th,
#single-blog .post-dtl .wp-block-table table tbody tr td {
  padding: 16px;
  border-color: #cccccc;
}

@media screen and (max-width: 767px) {
  #single-blog .post-dtl .wp-block-table table tbody tr th,
  #single-blog .post-dtl .wp-block-table table tbody tr td {
    padding: 8px;
    min-width: 104px;
  }
}

#single-blog .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(8px * 2);
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  #single-blog .gallery {
    gap: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .gallery {
    gap: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .gallery {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .gallery {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

#single-blog .gallery__item {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/2;
  border: solid 1px #eeeeee;
  cursor: pointer;
}

#single-blog .gallery__item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#single-blog .gallery__item .gallery-mask {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.3);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#single-blog .gallery__item .gallery-zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 32px;
  padding: 0 8px;
  background: #333333;
  border: solid 1px #333333;
  color: #ffffff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #single-blog .gallery__item .gallery-zoom {
    height: 28px;
  }
}

#single-blog .gallery__item .gallery-zoom::before {
  content: '';
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background: linear-gradient(to right, transparent calc(50% - 1px), #ffffff calc(50% - 1px), #ffffff calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(to bottom, transparent calc(50% - 1px), #ffffff calc(50% - 1px), #ffffff calc(50% + 1px), transparent calc(50% + 1px));
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #single-blog .gallery__item .gallery-zoom::before {
    width: 14px;
  }
}

#single-blog .gallery__item:hover .gallery-mask {
  opacity: 0;
}

#single-blog .gallery__item:hover .gallery-zoom {
  background: #ffffff;
  color: #333333;
}

#single-blog .gallery__item:hover .gallery-zoom::before {
  background: linear-gradient(to right, transparent calc(50% - 1px), #333333 calc(50% - 1px), #333333 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(to bottom, transparent calc(50% - 1px), #333333 calc(50% - 1px), #333333 calc(50% + 1px), transparent calc(50% + 1px));
}

#single-blog .pagelink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-top: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  #single-blog .pagelink {
    padding-top: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .pagelink {
    padding-top: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .pagelink {
    gap: 12px;
  }
}

#single-blog .pagelink__prev a, #single-blog .pagelink__next a, #single-blog .pagelink__back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 4;
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: solid 1px #333333;
  color: #333333;
  font-size: 1.6rem;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 519px) {
  #single-blog .pagelink__prev a, #single-blog .pagelink__next a, #single-blog .pagelink__back a {
    font-size: 1.4rem;
  }
}

#single-blog .pagelink__prev a .ico-arrow, #single-blog .pagelink__next a .ico-arrow, #single-blog .pagelink__back a .ico-arrow {
  width: 20px;
  height: 20px;
  fill: #333333;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#single-blog .pagelink__prev a:hover, #single-blog .pagelink__next a:hover, #single-blog .pagelink__back a:hover {
  background: #333333;
  color: #ffffff;
}

#single-blog .pagelink__prev a:hover .ico-arrow, #single-blog .pagelink__next a:hover .ico-arrow, #single-blog .pagelink__back a:hover .ico-arrow {
  fill: #ffffff;
}

#single-blog .pagelink__back {
  width: 400px;
}

@media screen and (max-width: 959px) {
  #single-blog .pagelink__back {
    width: 240px;
  }
}

@media screen and (max-width: 767px) {
  #single-blog .pagelink__back {
    width: calc(100% - 276px);
  }
}

@media screen and (max-width: 519px) {
  #single-blog .pagelink__back {
    width: calc(40% - 8px);
  }
}

#single-blog .pagelink__prev, #single-blog .pagelink__next {
  width: 160px;
}

@media screen and (max-width: 959px) {
  #single-blog .pagelink__prev, #single-blog .pagelink__next {
    width: 120px;
  }
}

@media screen and (max-width: 519px) {
  #single-blog .pagelink__prev, #single-blog .pagelink__next {
    width: calc(30% - 8px);
  }
}

#single-blog .pagelink__prev a .ico-arrow {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

#single-blog .hero {
  background: url("/wp-content/themes/itreat_base/dist/img/blog/hero-bg.jpg") center/cover no-repeat;
}

#single-blog .page-layout {
  position: relative;
}

#single-blog .page-layout__content {
  width: calc(100% - 324px);
}

@media screen and (max-width: 1023px) {
  #single-blog .page-layout__content {
    width: calc(100% - 296px);
  }
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__content {
    width: 100%;
  }
}

#single-blog .page-layout__toc {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  #single-blog .page-layout__toc {
    right: -24px;
  }
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc {
    position: static;
    width: 100%;
  }
}

#single-blog .page-layout__toc .toc {
  position: sticky;
  top: 96px;
  width: 300px;
  background: #f7f6f4;
  border-radius: 6px;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

#single-blog .page-layout__toc .toc .toc-inner {
  padding: 16px;
  background: #ffffff;
  border-radius: 20px 4px 20px 4px;
  overflow-y: scroll;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 740px;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner {
    margin-bottom: 16px;
    border-radius: 14px 4px 14px 4px;
    overflow-y: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}

#single-blog .page-layout__toc .toc .toc-inner::-webkit-scrollbar {
  width: 6px;
}

#single-blog .page-layout__toc .toc .toc-inner::-webkit-scrollbar-track {
  background: #f7f6f4;
  border-radius: 3px;
}

#single-blog .page-layout__toc .toc .toc-inner::-webkit-scrollbar-thumb {
  background: #7bba6b;
  border-radius: 4px;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-ttl {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-ttl {
    margin-bottom: 0;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-ttl {
  margin: 0;
  text-align: left;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
  border-radius: 2px;
  font-size: 1.3rem;
  padding: 2px 8px;
  cursor: pointer;
  line-height: 1.6;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle:hover {
  background: #333333;
  color: #ffffff;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle .toc-toggle__label-open {
  display: none;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle .toc-toggle__label-close {
  display: inline;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle[aria-expanded="false"] .toc-toggle__label-open {
  display: inline;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-head .toc-toggle[aria-expanded="false"] .toc-toggle__label-close {
  display: none;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-body[hidden] {
  display: none !important;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list {
    margin-bottom: 0;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item::before {
  top: 5px;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list__item::before {
    top: 9px;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(233, 229, 220, 0.48);
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list__item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item a {
  position: relative;
  padding-right: 20px;
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list__item a {
    padding: 4px 20px 4px 0;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item a:hover {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist {
  margin-top: 4px;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist {
    margin-top: 8px;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist__item::before {
  display: none;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist__item::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 2px;
  background: #5bb545;
}

@media screen and (max-width: 959px) {
  #single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist__item::after {
    top: 13px;
  }
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist__item:not(:last-child) {
  margin-bottom: 4px;
}

#single-blog .page-layout__toc .toc .toc-inner .toc-list__item .toc-sublist__item a {
  padding-right: 0;
  padding-left: 6px;
  font-size: 1.3rem;
  font-weight: normal;
}

#single-blog .toc-content {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 959px) {
  #single-blog .toc-content {
    opacity: 1;
    visibility: visible;
    padding-top: 16px;
  }
}

@media screen and (max-width: 959px) {
  #single-blog .toc-content.passive {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    padding: 0;
  }
}

#single-blog [id*="autoid"] {
  margin-bottom: -90px;
  padding-bottom: 110px;
}

/*# sourceMappingURL=../../maps/pages/blog.css.map */
