
.footer {
    position: relative;
    margin: 0;
    padding: 20px;
    background-color: #21BD73;
    font-size: 16px;
}

/* 避免直接圓角有白底 */
.footer::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #21BD73;
  border-radius: 40px;
}

.footer * {
    color: #ffffff;
    font-weight: 300;
}

.footer h1 {
    font-weight: 700;
    margin-bottom: 0;
}

.footer h6 {
    font-weight: 400;
    letter-spacing: 0.05rem;
}

.footer ul {
    list-style-type: square;
    padding-left: 25px;
}

.footer-year {
    margin-bottom: 30px;
}

.footer-bottom {
    font-size: 16px;
    letter-spacing: 2px;
    padding-top: 15px;
    border-top: 1px solid #fff;
}

.footer-bottom .info-link a::after {
    content: "|";
    color: #ffffff;
    padding: 0 6px 0 8px;
}

.footer-bottom .info-link a:last-child::after{
    display: none;
}

.footer-bottom .info-logo{
    text-align: right;
}

@media (max-width:576px) {
    .footer-bottom .info-link{
        display: grid;
        margin-bottom: 10px;
    }

    .footer-bottom .info-link a::after{
        display: none;
    }

    .footer-bottom .info-cr{
        font-size: 13px;
        text-align: right;
        font-weight: 400;
        margin-top: 5px;
    }
}

/*--------------------------------------------------------------
# page-top
--------------------------------------------------------------*/
/*形状*/
#page-top a{
	display: flex;
  font-size: 30px;
	justify-content:center;
	align-items:center;
	background:rgba(0,107,94,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,107,94,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;
  }
}