@charset "utf-8";
.section-page-back {
  padding: 90px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section-page-back {
    padding: 50px 0;
    text-align: center;
  }
}
.page-back-link {
  position: relative;
  color: #333 !important;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 16px;
  text-decoration: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media screen and (max-width: 900px) {
  .page-back-link {
    position: relative;
    color: #333 !important;
    font-size: 15px;
    line-height: 1.4;
    padding-left: 12px;
    text-decoration: none;
  }
}
.page-back-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.page-back-link[data-sb-icon='arrow-l']::after {
  content: '';
  display: block;
  border-top: solid 3px #333;
  border-right: solid 3px #333;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(-135deg);
}
@media screen and (max-width: 900px) {
  .page-back-link[data-sb-icon='arrow-l']::after {
    content: '';
    display: block;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(-135deg);
  }
}
@media screen and (min-width: 901px) {
  @keyframes arrow-l {
    0% {
      -webkit-transform: translate3d(0, 0, 0) rotate(-135deg);
      transform: translate3d(0, 0, 0) rotate(-135deg);
    }
    50% {
      -webkit-transform: translate3d(-30%, 0, 0) rotate(-135deg);
      transform: translate3d(-30%, 0, 0) rotate(-135deg);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0) rotate(-135deg);
      transform: translate3d(0, 0, 0) rotate(-135deg);
    }
  }
  .page-back-link[data-sb-icon='arrow-l']:hover::after {
    animation: arrow-l 0.4s ease-in-out 0s 2 alternate;
    -webkit-animation: arrow-l 0.4s ease-in-out 0s 2 alternate;
  }
}