.footer {
  position: relative;
  margin: 0;
  padding: 20px;
  background-color: #0088cd;
  font-size: 16px;
}

/* 避免直接圓角有白底 */
.footer::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #0088cd;
  border-radius: 40px;
}

.footer * {
  color: #ffffff;
  font-weight: 300;
}


.footer-top{
  padding-bottom: 8px;
}

.footer-bottom {
  font-size: 16px;
  text-align: right;
  letter-spacing: 0.05rem;
  padding-top: 8px;
  border-top: 1px solid #fff;
}

.info-link{
  text-align: right;
}

.info-link a::after {
  content: "|";
  color: #ffffff;
  padding: 0 6px 0 8px;
}

.info-link a:last-child::after {
  display: none;
}

.hwlogo{
  width: 400px;
}

.itlogo{
  width: 120px;
}


@media (max-width:576px) {
   .info-link {
    display: grid;
    margin-bottom: 10px;
    text-align: left;
  }

   .info-link a::after {
    display: none;
  }

  .hwlogo{
    width: 320px;
  }
  
  .itlogo{
    width: 100px;
  }
  

}

/*--------------------------------------------------------------
# page-top
--------------------------------------------------------------*/
/*形状*/
#page-top a {
  display: flex;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  background: rgba(0,184,255, 0.5);
  border-radius: 10px 0 0 0;
  width: 50px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

#page-top a:hover {
  background: rgba(0,184,255, 0.9);
}

/*固定*/
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}

/*　動畫*/

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

@media (max-width:768px) {
  #page-top {
    bottom: 90px;
  }
}