#archive .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 .wp-pagenavi {
    padding-top: calc((8px * 8) * 0.75);
  }
}

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

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

#archive .wp-pagenavi .page,
#archive .wp-pagenavi .current,
#archive .wp-pagenavi .nextpostslink,
#archive .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 .wp-pagenavi .page,
  #archive .wp-pagenavi .current,
  #archive .wp-pagenavi .nextpostslink,
  #archive .wp-pagenavi .previouspostslink {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
}

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

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

#archive .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 .wp-pagenavi .nextpostslink,
#archive .wp-pagenavi .previouspostslink {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  white-space: nowrap;
}

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

#archive .wp-pagenavi .nextpostslink::before,
#archive .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 .wp-pagenavi .nextpostslink::before,
  #archive .wp-pagenavi .previouspostslink::before {
    width: 15px;
    height: 11px;
  }
}

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

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

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

#archive .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 .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}

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

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

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

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

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

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

#archive .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: 48px;
  color: #ffffff;
  background: #7bba6b;
  border: 1px solid #7bba6b;
  border-radius: 2px;
}

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

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

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

#archive .news-list__item {
  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;
  padding: 16px 8px;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 959px) {
  #archive .news-list__item {
    display: block;
    padding: 16px 4px;
  }
}

#archive .news-list__item:first-child {
  border-top: 1px solid #cccccc;
}

#archive .news-list__item .news-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;
}

@media screen and (max-width: 959px) {
  #archive .news-list__item .news-meta {
    margin-bottom: 12px;
  }
}

#archive .news-list__item .news-meta__date {
  width: 112px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  #archive .news-list__item .news-meta__date {
    width: 88px;
  }
}

#archive .news-list__item .news-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;
  border: solid 1px #999999;
  background: #999999;
  color: #ffffff;
  font-size: 1.4rem;
  border-radius: 2px;
}

#archive .news-list__item .news-meta__cate:hover {
  color: #999999;
  background: #999999;
}

#archive .news-list__item .news-meta__cate.--event {
  background: #5bb545;
  border-color: #5bb545;
}

#archive .news-list__item .news-meta__cate.--event:hover {
  color: #5bb545;
  background: #f7f6f4;
}

#archive .news-list__item .news-meta__cate.--internship {
  background: #1da7eb;
  border-color: #1da7eb;
}

#archive .news-list__item .news-meta__cate.--internship:hover {
  color: #1da7eb;
  background: #f7f6f4;
}

#archive .news-list__item .news-meta__cate.--recruit {
  background: #e9546a;
  border-color: #e9546a;
}

#archive .news-list__item .news-meta__cate.--recruit:hover {
  color: #e9546a;
  background: #f7f6f4;
}

#archive .news-list__item .news-meta__cate.--session {
  background: #a3956f;
  border-color: #a3956f;
}

#archive .news-list__item .news-meta__cate.--session:hover {
  color: #a3956f;
  background: #f7f6f4;
}

#archive .news-list__item .news-meta__cate.--other {
  background: #999999;
  border-color: #999999;
}

#archive .news-list__item .news-meta__cate.--other:hover {
  color: #999999;
  background: #f7f6f4;
}

#archive .news-list__item .news-ttl {
  width: calc(100% - 264px);
}

@media screen and (max-width: 959px) {
  #archive .news-list__item .news-ttl {
    width: 100%;
  }
}

#archive .news-list__item .news-ttl a {
  width: 100%;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

#single .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 .post-eyecatch {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

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

#single .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 .post-eyecatch img {
    border-radius: 8px;
  }
}

#single .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 .post-meta {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

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

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

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

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

#single .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 .post-meta__cate.--event {
  background: #5bb545;
  border: 2px solid #5bb545;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#single .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 .post-ttl {
    margin-bottom: calc((8px * 8) * 0.75);
  }
}

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

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

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

#single .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 .post-dtl .editor-styles-wrapper {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

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

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

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

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

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

#single .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 .post-dtl h2 {
    margin-top: 56px;
    margin-bottom: 32px;
    padding-bottom: 26px;
    font-size: 2.4rem;
  }
}

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

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

#single .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 .post-dtl h2::before {
    width: calc( 100% - 31px);
    height: 6px;
  }
}

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

#single .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 .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 .post-dtl h2::after {
    width: 22px;
    height: 4px;
    background-image: radial-gradient(circle, #d2e954 2px, transparent 2px);
    background-size: 8px 4px;
  }
}

#single .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 .post-dtl h3 {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

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

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

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

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

#single .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 .post-dtl h3:before {
    width: 4px;
  }
}

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

#single .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 .post-dtl h4 {
    margin-top: 24px;
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#single .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 .post-dtl ul li::before {
    width: 8px;
    height: 8px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#single .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 .post-dtl ul.is-style-check-list li::before {
    top: 2px;
    width: 18px;
    height: 18px;
  }
}

#single .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 .post-dtl ul.is-style-check-list li::after {
    top: 4px;
    left: 6px;
    width: 6px;
    height: 11px;
    border-width: 0 2px 2px 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#single .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 .post-dtl .wp-block-separator {
  margin: 40px auto;
}

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

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

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

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

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

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

#single .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 .post-dtl .wp-block-table table thead tr th {
    padding: 8px;
    min-width: 104px;
  }
}

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

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

#single .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 .gallery {
    gap: calc((8px * 2) * 0.75);
  }
}

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

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

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

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

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

#single .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 .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 .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 .gallery__item .gallery-zoom {
    height: 28px;
  }
}

#single .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 .gallery__item .gallery-zoom::before {
    width: 14px;
  }
}

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

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

#single .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 .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 .pagelink {
    padding-top: calc((8px * 5) * 0.75);
  }
}

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

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

#single .pagelink__prev a, #single .pagelink__next a, #single .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 .pagelink__prev a, #single .pagelink__next a, #single .pagelink__back a {
    font-size: 1.4rem;
  }
}

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

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

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

#single .pagelink__back {
  width: 400px;
}

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

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

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

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

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

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

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

#single .entry .entry-inner {
  margin: 0 auto;
  max-width: 960px;
}

#single .entry .entry-inner .entry-read {
  margin-bottom: calc(8px * 3);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single .entry .entry-inner .entry-read {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .entry .entry-inner .entry-read {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .entry .entry-inner .entry-read {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #single .entry .entry-inner .entry-read {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  #single .entry .entry-inner .entry-read {
    font-size: 1.6rem;
  }
}

#single .entry .entry-inner .note-txt {
  margin-bottom: calc(8px * 5);
  text-align: center;
}

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

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

#single .wpcf7-form {
  padding-top: calc(8px * 7);
  padding-right: calc(8px * 6);
  padding-bottom: calc(8px * 9);
  padding-left: calc(8px * 6);
  background: #ffffff;
  border-radius: 40px;
}

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

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

@media screen and (max-width: 959px) {
  #single .wpcf7-form {
    padding-right: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7-form {
    padding-right: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .wpcf7-form {
    padding-bottom: calc((8px * 9) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7-form {
    padding-bottom: calc((8px * 9) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .wpcf7-form {
    padding-left: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7-form {
    padding-left: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .wpcf7-form {
    border-radius: 32px;
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7-form {
    border-radius: 24px;
  }
}

#single .form-field {
  margin-bottom: calc(8px * 5);
}

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

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

#single .form-field__item {
  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;
}

#single .form-field__item:not(:last-child) {
  margin-bottom: calc(8px * 3);
  padding-bottom: calc(8px * 3);
  border-bottom: 1px solid #e9e5dc;
}

@media screen and (max-width: 959px) {
  #single .form-field__item:not(:last-child) {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .form-field__item:not(:last-child) {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .form-field__item:not(:last-child) {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .form-field__item:not(:last-child) {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

#single .form-field__item.--add dd {
  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;
}

@media screen and (max-width: 519px) {
  #single .form-field__item.--add dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
  }
}

#single .form-field__item.--add dd span {
  display: block;
}

#single .form-field__item.--add dd span:nth-of-type(1) {
  width: 160px;
}

@media screen and (max-width: 519px) {
  #single .form-field__item.--add dd span:nth-of-type(1) {
    width: 100%;
  }
}

#single .form-field__item.--add dd span:nth-of-type(2) {
  width: calc(100% - 168px);
}

@media screen and (max-width: 519px) {
  #single .form-field__item.--add dd span:nth-of-type(2) {
    width: 100%;
  }
}

#single .form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 304px;
}

@media screen and (max-width: 959px) {
  #single .form-field dt {
    gap: 8px;
    width: 100%;
    margin-bottom: 6px;
    font-size: 1.4rem;
  }
}

#single .form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  #single .form-field dd {
    width: 100%;
  }
}

#single .form-required,
#single .form-optional {
  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;
  width: 45px;
  height: 24px;
  padding: 1px 0 0;
  color: #ffffff;
  font-size: 1.4rem;
  border-radius: 4px;
}

@media screen and (max-width: 959px) {
  #single .form-required,
  #single .form-optional {
    width: 40px;
    height: 22px;
    font-size: 1.2rem;
  }
}

#single .form-required {
  background: #e9546a;
}

#single .form-optional {
  background: #1d6ceb;
}

#single .wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

#single .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

#single .wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  display: none;
}

#single .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

#single .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#single .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

#single .wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

#single .wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

#single .wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

@media screen and (max-width: 959px) {
  #single .wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
    margin-right: 16px;
  }
}

#single .wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  padding: 6px 0;
  cursor: pointer;
}

#single .wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  display: none;
}

#single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

@media screen and (max-width: 959px) {
  #single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 1.4rem;
    padding-left: 28px;
  }
}

#single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #f7f6f4;
  border: solid 2px #f7f6f4;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  #single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}

#single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #7bba6b;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 959px) {
  #single .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
    position: absolute;
    top: 50%;
    left: 4px;
    z-index: 1;
    width: 12px;
    height: 12px;
  }
}

#single .wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #7bba6b;
}

#single .wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

#single .form-send {
  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;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  background: -webkit-gradient(linear, left top, left bottom, from(#e9546a), to(#e97c54));
  background: linear-gradient(#e9546a, #e97c54);
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 24px 8px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

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

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

#single .form-send:hover {
  -webkit-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}

@media screen and (max-width: 1279px) {
  #single .form-send {
    height: 72px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 959px) {
  #single .form-send {
    height: 64px;
    font-size: 1.8rem;
    border-radius: 16px 4px;
  }
}

@media screen and (max-width: 519px) {
  #single .form-send {
    height: 56px;
    font-size: 1.6rem;
  }
}

#single .form-send input[type="submit"] {
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#single .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  bottom: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
}

#single .wpcf7-spinner::before {
  content: '';
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
  transform-origin: 8px 8px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

#single form.submitting .wpcf7-spinner {
  visibility: visible;
}

#single .wpcf7 form .wpcf7-response-output {
  display: none;
}

#single .wpcf7 form.sent .wpcf7-response-output,
#single .wpcf7 form.invalid .wpcf7-response-output,
#single .wpcf7 form.spam .wpcf7-response-output,
#single .wpcf7 form.invalid .wpcf7-response-output,
#single .wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  #single .wpcf7 form.sent .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.spam .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7 form.sent .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.spam .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .wpcf7 form.sent .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.spam .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #single .wpcf7 form.sent .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.spam .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  #single .wpcf7 form.sent .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.spam .wpcf7-response-output,
  #single .wpcf7 form.invalid .wpcf7-response-output,
  #single .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

#single .wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #5bb545;
  color: #5bb545;
}

#single .wpcf7 form.invalid .wpcf7-response-output,
#single .wpcf7 form.invalid .wpcf7-response-output,
#single .wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(233, 84, 106, 0.08);
  color: #e9546a;
  border: solid 1px #e9546a;
}

#single .wpcf7 form.invalid input::-webkit-input-placeholder, #single .wpcf7 form.invalid select::-webkit-input-placeholder, #single .wpcf7 form.invalid textarea::-webkit-input-placeholder, #single .wpcf7 form.invalid input::-webkit-input-placeholder, #single .wpcf7 form.invalid select::-webkit-input-placeholder, #single .wpcf7 form.invalid textarea::-webkit-input-placeholder, #single .wpcf7 form.unaccepted input::-webkit-input-placeholder, #single .wpcf7 form.unaccepted select::-webkit-input-placeholder, #single .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(233, 84, 106, 0.4);
}

#single .wpcf7 form.invalid input::-moz-placeholder, #single .wpcf7 form.invalid select::-moz-placeholder, #single .wpcf7 form.invalid textarea::-moz-placeholder, #single .wpcf7 form.invalid input::-moz-placeholder, #single .wpcf7 form.invalid select::-moz-placeholder, #single .wpcf7 form.invalid textarea::-moz-placeholder, #single .wpcf7 form.unaccepted input::-moz-placeholder, #single .wpcf7 form.unaccepted select::-moz-placeholder, #single .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(233, 84, 106, 0.4);
}

#single .wpcf7 form.invalid input:-ms-input-placeholder, #single .wpcf7 form.invalid select:-ms-input-placeholder, #single .wpcf7 form.invalid textarea:-ms-input-placeholder, #single .wpcf7 form.invalid input:-ms-input-placeholder, #single .wpcf7 form.invalid select:-ms-input-placeholder, #single .wpcf7 form.invalid textarea:-ms-input-placeholder, #single .wpcf7 form.unaccepted input:-ms-input-placeholder, #single .wpcf7 form.unaccepted select:-ms-input-placeholder, #single .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(233, 84, 106, 0.4);
}

#single .wpcf7 form.invalid input::-ms-input-placeholder, #single .wpcf7 form.invalid select::-ms-input-placeholder, #single .wpcf7 form.invalid textarea::-ms-input-placeholder, #single .wpcf7 form.invalid input::-ms-input-placeholder, #single .wpcf7 form.invalid select::-ms-input-placeholder, #single .wpcf7 form.invalid textarea::-ms-input-placeholder, #single .wpcf7 form.unaccepted input::-ms-input-placeholder, #single .wpcf7 form.unaccepted select::-ms-input-placeholder, #single .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(233, 84, 106, 0.4);
}

#single .wpcf7 form.invalid input::placeholder,
#single .wpcf7 form.invalid select::placeholder,
#single .wpcf7 form.invalid textarea::placeholder,
#single .wpcf7 form.invalid input::placeholder,
#single .wpcf7 form.invalid select::placeholder,
#single .wpcf7 form.invalid textarea::placeholder,
#single .wpcf7 form.unaccepted input::placeholder,
#single .wpcf7 form.unaccepted select::placeholder,
#single .wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(233, 84, 106, 0.4);
}

#single .wpcf7 form.spam .wpcf7-response-output {
  background: rgba(240, 183, 64, 0.08);
  color: #e9546a;
  border: solid 1px #f0b740;
}

#single .wpcf7 form.spam input::-webkit-input-placeholder, #single .wpcf7 form.spam select::-webkit-input-placeholder, #single .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(240, 183, 64, 0.4);
}

#single .wpcf7 form.spam input::-moz-placeholder, #single .wpcf7 form.spam select::-moz-placeholder, #single .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(240, 183, 64, 0.4);
}

#single .wpcf7 form.spam input:-ms-input-placeholder, #single .wpcf7 form.spam select:-ms-input-placeholder, #single .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(240, 183, 64, 0.4);
}

#single .wpcf7 form.spam input::-ms-input-placeholder, #single .wpcf7 form.spam select::-ms-input-placeholder, #single .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(240, 183, 64, 0.4);
}

#single .wpcf7 form.spam input::placeholder,
#single .wpcf7 form.spam select::placeholder,
#single .wpcf7 form.spam textarea::placeholder {
  color: rgba(240, 183, 64, 0.4);
}

#single .screen-reader-response {
  display: none;
}

#single .wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #e9546a;
  font-size: 1.4rem;
}

#single .screen-reader-response {
  display: none;
}

#single .wpcf7 .form.invalid .wpcf7-response-output {
  color: #e9546a;
  font-size: 1.4rem;
  background-color: rgba(233, 84, 106, 0.1);
}

#single .privacy-frame {
  margin: 0 auto 40px auto;
  padding: 40px 24px;
  max-width: 720px;
  border: 1px solid #e9e5dc;
  background: #ffffff;
  border-radius: 40px;
}

@media screen and (max-width: 959px) {
  #single .privacy-frame {
    margin: 0 auto 30px auto;
    padding: 32px 16px;
    border-radius: 24px;
  }
}

@media screen and (max-width: 767px) {
  #single .privacy-frame {
    padding: 28px 12px;
  }
}

@media screen and (max-width: 519px) {
  #single .privacy-frame {
    margin: 0 auto 20px auto;
    padding: 24px 8px;
    border-radius: 16px;
  }
}

#single .privacy-frame .privacy-inner {
  overflow-y: scroll;
  height: 240px;
  padding: 0 16px;
}

@media screen and (max-width: 959px) {
  #single .privacy-frame .privacy-inner {
    padding: 0 12px;
    height: 160px;
  }
}

@media screen and (max-width: 519px) {
  #single .privacy-frame .privacy-inner {
    padding: 0 8px;
  }
}

#single .privacy-frame .privacy-inner::-webkit-scrollbar {
  width: 8px;
}

#single .privacy-frame .privacy-inner::-webkit-scrollbar-track {
  background: #f7f6f4;
  border-radius: 4px;
}

#single .privacy-frame .privacy-inner::-webkit-scrollbar-thumb {
  background: #7bba6b;
  border-radius: 4px;
}

#single .privacy-frame .privacy-inner .privacy-ttl {
  margin-bottom: calc(8px * 3);
  text-align: center;
}

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

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

#single .privacy-frame .privacy-inner .privacy-ttl__main {
  margin-bottom: 4px;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 959px) {
  #single .privacy-frame .privacy-inner .privacy-ttl__main {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  #single .privacy-frame .privacy-inner .privacy-ttl__main {
    font-size: 2rem;
  }
}

#single .privacy-frame .privacy-inner .privacy-ttl__sub {
  margin-bottom: calc(8px * 5);
  display: block;
  color: #7bba6b;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

@media screen and (max-width: 519px) {
  #single .privacy-frame .privacy-inner .privacy-ttl__sub {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 959px) {
  #single .privacy-frame .privacy-inner p {
    font-size: 1.4rem;
  }
}

#single .policy-list {
  counter-reset: list-num 0;
}

#single .policy-list__item {
  padding: 24px 0;
}

@media screen and (max-width: 959px) {
  #single .policy-list__item {
    padding: 16px 0;
  }
}

#single .policy-list__item dt {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  #single .policy-list__item dt {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}

#single .policy-list__item dt::before {
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  font-family: "Montserrat", sans-serif;
  color: #5bb545;
  font-size: 2.4rem;
}

@media screen and (max-width: 959px) {
  #single .policy-list__item dt::before {
    font-size: 2rem;
  }
}

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

#single .form {
  margin-bottom: calc(8px * 8);
}

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

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

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