.navContainer {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
.header {
  background-image: url(../images/header.jpg);
  background-image: url(../images/header.webp);
  height: 105px;
  max-width: 1000px;
  overflow: hidden;
  font-family: "Noto Sans TC", sans-serif;
  display: flex;
  justify-content: right;
  position: relative;
}
.header .navbuttons a {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  text-align: center;
  padding: 3% 0 3% 0;
  color: #fff;
  padding: 0 15px 0 15px;
}
.header .navbuttons a:hover {
  transform: translateY(5%);
  transition: .2s;
}
.header a:last-child {
  margin-right: 20px;
  border-right: unset;
}
.navbuttons {
  display: flex;
  align-items: center;
}
.hamburger-wrapper {
  display: none;
}
/* 抓高度調整 */
#ctaEnd{
  transform: translateY(-93px);
}
@media screen and (max-width: 768px) {
  #ctaEnd{
    transform: translateY(-60px);
  }
  .header {
    display: block;
    overflow: hidden;
    background-size: 145%;
    height: 60px;
    transition: height 0.3s;
  }
  .navbuttons {
    margin-top: 3%;
    display: flex;
    justify-content: right;
  }
  .header .navbuttons a {
    font-size: 1.4rem;
  }
}
/* 平板 */
@media screen and (width: 768px) {
  .header {
    background-size: 100%;
  }
  .header .navbuttons > a {
    line-height: 1.4;
  }
}
