.scroll a {
    position: absolute;
    bottom: 0px;
    left: 50%;               /* 水平中心點 */
    transform: translate(-50%, -45%); /* 往左移50% → 完整置中 */
    z-index: 2;
    display: inline-block;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .01em;
    text-decoration: none;
    transition: opacity .3s;
    font-size: 28px;
    line-height: 2em;
}
.scroll a:hover {
  opacity: .5;
}





#section10 a {
  padding-top: 50px;
}
#section10 a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #fff;
	border-radius: 50px;
	box-sizing: border-box;
	line-height: 2em;
}
#section10 a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 2px;
  height: 10px;
  margin-left: -1px;
  background-color: #fff;
  border-radius: 0%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media(max-width:992px){
	

.scroll a {
    position: absolute;
    bottom: 0px;
    left: 50%;               /* 水平中心點 */
    transform: translate(-50%, -45%); /* 往左移50% → 完整置中 */
    z-index: 3;
    display: inline-block;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .01em;
    text-decoration: none;
    transition: opacity .3s;
    font-size: 18px;
    line-height: 2em;
}	
	}
	
@media(max-width:380px){	
	
.scroll a {
    position: absolute;
    bottom: 0px;
    left: 50%;               /* 水平中心點 */
    transform: translate(-50%, -45%); /* 往左移50% → 完整置中 */
    z-index: 2;
    display: inline-block;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .01em;
    text-decoration: none;
    transition: opacity .3s;
    font-size: 15px;
    line-height: 2em;
}}