.floatbtn__wrap {
  display: none;
  width: 160px;
  height: 180px;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 10;
}
.floatbtn__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

@media (max-width: 767px) {
  .floatbtn__wrap {
    width: 100px;
    height: 108px;
  }
}
/*========= to-contact ===============*/
#to-contact {
  padding: 18px 24px;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  background-image: linear-gradient(164deg, rgb(253, 206, 241), rgb(169, 201, 255) 100%, rgb(229, 203, 255) 45%);
}
#to-contact a {
  display: block;
  width: inherit;
  height: inherit;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

@media (max-width: 767px) {
  #to-contact {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 10px;
  }
}
#to-contact:hover,
#to-contact a:hover {
  opacity: 0.6;
}

/*========= pagetop ===============*/
#page-top a {
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.3;
}

@media (max-width: 767px) {
  #page-top {
    width: 40px;
    margin: 0 auto;
  }
}
#page-top a:hover {
  opacity: 1;
}