footer .wrapper {
  max-width: 1170px;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #000000;
}

.fatFooter {
  background-color: #fcf0d2;
}
.fatFooter .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 40px 0 30px;
}
.fatFooter dl {
  
  box-sizing: border-box;
}
@media screen and (max-width: 400px) {
  .fatFooter dl {
    width: 100%;
    padding: 0 30px 10px;
  }
}@media screen and (min-width: 401px) {
  .fatFooter dl {
    width: calc(100% / 2);
    padding: 0 50px 10px;
  }
}
@media screen and (min-width: 768px) {
  .fatFooter dl {
    width: calc(100% / 4);
    padding: 0 30px 10px;
  }
}
@media screen and (min-width: 960px) {
  .fatFooter dl {
    width: calc(100% / 5);
    padding: 0 20px 20px;
  }
}
.fatFooter dt {
  color: #64686d;
  font-size: 1rem;
  font-weight: 500;
  padding: 15px 0;
}
.fatFooter dd a {
  display: block;
  font-size: 0.9375rem;
  color: #64686d;
  line-height: 1.25;
  padding: 5px 0;
  padding-left: 1em;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}
.fatFooter dd a::before {
  /* content: '\f054'; */
  position: absolute;
  left: 4px;
  top: 4px;
  z-index: 0;
  color: #e63265;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
  transform: scale(0.5);
}
.fatFooter dd a:hover, 
.fatFooter dd a:focus, 
.fatFooter dd a:active,
.fatFooter dd a.active {
  color: #e63265;
  text-shadow: 1px -1px 3px rgba(230,20,101,0.5);
}
.fatFooter dd a:hover::before, 
.fatFooter dd a:focus::before, 
.fatFooter dd a:active::before,
.fatFooter dd a.active::before {
  opacity: 1;
}
.footerInfo {
  background-color: #FFE7AC;
  position: relative;
}
.footerInfo .wrapper {
  padding: 20px 15px 10px;
  
}
@media screen and (min-width: 600px) {
  .footerInfo .wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
  }
}
.footerInfo address > span {
  margin-right: 10px;
}
@media screen and (max-width: 1080px) {
  .footerInfo address span,
  .footerInfo address a {
    display: inline-block;
  }
}
.footerInfo a {
  color: #C78400;
}
.footerInfo .wrapper a:hover,
.footerInfo .wrapper a:focus,
.footerInfo .wrapper a:active {
  text-decoration: underline;
}


.footerBottom {  
  background-color: #E1B43C;
}
.footerBottom .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.footerBottom a {
  padding: 0 20px;
  color: #FFFFFF;
  line-height: 20px;
  transition: text-shadow 0.3s;
}
.footerBottom a + a {
  border-left: 1px solid #ffffff;
}
.footerBottom a:hover,
.footerBottom a:focus,
.footerBottom a:active {
  text-shadow: 2px -2px 4px rgba(0,0,0,0.25);
}

/* 返回頂端 */
.scrollup {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  right: 10px;
  bottom: 15vh;
  overflow: hidden;
  background-color: #f26109;
  color: #ffffff;
  font-size: 1.125rem;
  z-index: 20;
  transition: box-shadow 0.3s;
}
.scrollup:hover,
.scrollup:focus {
  box-shadow: 0 0 15px rgba(0,0,0,0.9);
}
.scrollup span {
  float: left;
  text-indent: -9999;
  font-size: 0;
}
/* 返回頂端 END */