.both_border1:before {
  top: 0;
}
@media (max-width: 1290px) {
  .both_border1:before {
    height: 100%;
  }
}
.both_border1:after {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background: #eee;
  right: 6.5%;
}
@media (max-width: 1290px) {
  .both_border1:after {
    right: 45px;
  }
}
@media (max-width: 480px) {
  .both_border1:after {
    right: 30px;
  }
}

.single_news_con {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 480px) {
  .single_news_con {
    padding-bottom: 65px;
  }
}
.single_news_con:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #eee;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.single_news_con .c_inner {
  width: 87%;
  margin: 0 auto;
  border-right: 1px solid #eee;
}
@media (max-width: 1290px) {
  .single_news_con .c_inner {
    width: calc(100% - 90px);
  }
}
@media (max-width: 480px) {
  .single_news_con .c_inner {
    width: calc(100% - 60px);
  }
}
.single_news_con .c_inner .s_news_wrap {
  display: flex;
  gap: 25px;
  padding: 25px;
  align-items: center;
  border-bottom: 1px solid #eee;
}
@media (max-width: 480px) {
  .single_news_con .c_inner .s_news_wrap {
    padding: 15px;
    gap: 10px;
  }
}
.single_news_con .c_inner .s_news_wrap .date {
  font-size: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
.single_news_con .c_inner .s_news_wrap .cat {
  position: relative;
  padding: 4px 10px;
  padding-left: 27px;
  font-size: 12px;
  color: #0068e2;
  background: #fff;
  display: inline-block;
  border-radius: 9999px;
}
@media (max-width: 480px) {
  .single_news_con .c_inner .s_news_wrap .cat {
    padding: 5px 8px;
    padding-left: 26px;
    font-size: 10px;
  }
}
.single_news_con .c_inner .s_news_wrap .cat:before {
  position: absolute;
  background-image: url(../img/logo-i.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
@media (max-width: 480px) {
  .single_news_con .c_inner .s_news_wrap .cat:before {
    left: 10px;
  }
}
.single_news_con .c_inner h2.n_ttl {
  position: relative;
  font-size: 42px;
  padding: 25px;
  border-bottom: 1px solid #eee;
  z-index: 1;
  background: #fafafa;
}
@media (max-width: 480px) {
  .single_news_con .c_inner h2.n_ttl {
    font-size: 24px;
    padding: 15px;
  }
}
.single_news_con .c_inner p:not(.s_news_btn) {
  position: relative;
  padding: 25px;
  border-bottom: 1px solid #eee;
  z-index: 1;
  background: #fafafa;
}
@media (max-width: 480px) {
  .single_news_con .c_inner p:not(.s_news_btn) {
    font-size: 14px;
    padding: 15px;
  }
}
.single_news_con .c_inner .s_news_btn {
  margin-left: auto;
}
@media (max-width: 480px) {
  .single_news_con .c_inner .s_news_btn {
    width: 100%;
  }
}

.thanks_btn {
  margin-left: auto;
}

.heading-link--back {
  margin-top: 30px;
  width: 325px;
  height: 64px;
  border-radius: 4px;
  border: 1px solid #eee;
  position: relative;
  background-color: #20272e !important;
  color: #fff;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .heading-link--back {
    width: 100%;
    margin-top: 20px;
  }
}

.heading-link--back:hover {
  color: #20272e;
  background: #fafafa !important;
}

.heading-link--back a {
  height: 100%;
  width: 100%;
  position: relative;
  padding-left: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .heading-link--back a {
    padding-left: 70px;
  }
}
.heading-link--back .text-button1__anchor::before {
  right: inherit;
  left: -3px;
  background-image: url(../img/btn-back-arrow.svg);
}

.heading-link--back .text-button1__anchor::after {
  right: inherit;
  left: -25px;
  top: -25px;
  transform-origin: left bottom;
  border-radius: 4px 0 0 4px;
}

.heading-link--back .text-button1__anchor:hover::before {
  -webkit-animation: arrow-line-left 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
  animation: arrow-line-left 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
}

.heading-link--back .text-button1__anchor:hover::after {
  transform-origin: right bottom;
}

@-webkit-keyframes arrow-line-left {
  0% {
    transform: translateX(0) translateY(-5px) scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: translateX(-8px) translateY(-5px) scaleX(-0.1);
    transform-origin: left center;
  }
  50.1% {
    transform: translateX(8px) translateY(-5px) scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: translateX(0) translateY(-5px) scaleX(1);
    transform-origin: right center;
  }
}

@keyframes arrow-line-left {
  0% {
    transform: translateX(0) translateY(-5px) scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: translateX(-8px) translateY(-5px) scaleX(-0.1);
    transform-origin: left center;
  }
  50.1% {
    transform: translateX(8px) translateY(-5px) scaleX(0);
    transform-origin: right center;
  }
  100% {
    transform: translateX(0) translateY(-5px) scaleX(1);
    transform-origin: right center;
  }
}
.lower_fv .upper_b {
  border-bottom: 1px solid #eee;
}

@media (max-width: 1290px) {
  .lower_fv .upper_b h1.ttl:after {
    width: calc(50% - 0px);
    left: -45px;
  }
}
@media (max-width: 1340px) {
  .lower_fv .upper_b .fv_side_btn {
    height: 200px;
    bottom: 199px;
  }
  .lower_fv .upper_b .fv_side_btn .side_btn_b.b1 {
    height: 203px;
  }
  .lower_fv .upper_b .fv_side_btn .side_btn_b.b2 {
    height: 196px;
  }
}
@media (max-width: 1290px) {
  .lower_fv .upper_b h1.ttl:after {
    width: calc(50% - 0px);
    left: -45px;
  }
  .lower_fv .upper_b .fv_side_btn {
    height: 244px;
    width: 45px;
    bottom: 227px;
  }
  .lower_fv .upper_b .fv_side_btn .side_btn_b.b1 {
    height: 225px;
  }
  .lower_fv .upper_b .fv_side_btn .side_btn_b.b2 {
    height: 245px;
  }
}/*# sourceMappingURL=single-news.css.map */