@charset 'utf-8';
.page-top-btn-wrap{
  position: fixed;
  bottom: 40px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  z-index: 99;
  will-change: opacity;
}
.page-top-btn{
  width: 248px;
  line-height: 46px;
  border: 1px solid #cdcdcd;
  color: #0c51c7;
  border-radius: 100px;
  padding-left: 20px;
  box-sizing: border-box;
  text-align: center;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: block;
  position: relative;
  font-size: 14px;
  background-color: #FFFFFF;
  transition: color,background-color 0.4s ease-in-out;
  -webkit-transition: color,background-color 0.4s ease-in-out;
  -moz-transition: color,background-color 0.4s ease-in-out;
  -ms-transition: color,background-color 0.4s ease-in-out;
  -o-transition: color,background-color 0.4s ease-in-out;
  will-change: background-color;
  text-decoration: none !important;
}

.page-top-btn::after{
  content: "";
  position: absolute;
  bottom: 50%;
  left: 34px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #0c51c7;
  border-left: 2px solid #0c51c7;
  -webkit-transform: rotate(45deg) translate(0%,92%);
  -moz-transform: rotate(45deg) translate(0%,92%);
  -ms-transform: rotate(45deg) translate(0%,92%);
  -o-transform: rotate(45deg) translate(0%,92%);
  transform: rotate(45deg) translate(0%,92%);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  transition: border-color 0.4s ease-in-out;
  -webkit-transition: border-color 0.4s ease-in-out;
  -moz-transition: border-color 0.4s ease-in-out;
  -ms-transition: border-color 0.4s ease-in-out;
  -o-transition: border-color 0.4s ease-in-out;
}

.page-top-btn::before{
  content: "";
  position: absolute;
  bottom: 50%;
  left: 34px;
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #0c51c7;
  transform: translate(-50%,50%);
  -webkit-transform: translate(-50%,50%);
  -moz-transform: translate(-50%,50%);
  -ms-transform: translate(-50%,50%);
  -o-transform: translate(-50%,50%);
  transition: background-color 0.4s ease-in-out;
  -webkit-transition: background-color 0.4s ease-in-out;
  -moz-transition: background-color 0.4s ease-in-out;
  -ms-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
}

@media screen and (max-width: 750px){
  .page-top-btn-wrap{
    display: none !important;
  }
}
.page-top-btn-wrap.active{
  opacity: 1;
  visibility: visible;
}

.page-top-btn:hover{
  background-color: #0c51c7;
  color: #FFFFFF;
}

.page-top-btn:hover::after{
  border-color: #ffffff;
}

.page-top-btn:hover::before{
  background-color: #ffffff;
}






