@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Noto+Serif+TC:wght@200..900&display=swap");
section.topMenu {
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 58px;
  background-color: #064a45;
  /* Menu Button 1 */
  /* 點擊後，讓兩條線變成 100% 再交叉 */
}
section.topMenu .wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px 0 18px;
}
section.topMenu .companyBox {
  padding-right: 20px;
}
section.topMenu .navPC {
  display: flex;
}
section.topMenu .navMB {
  display: none;
  width: 40px;
  height: 30px;
}
section.topMenu .menu-btn {
  position: relative;
  height: 32px;
  width: 40px;
  cursor: pointer;
}
section.topMenu .menu-btn .inner {
  position: absolute;
  z-index: 3;
  bottom: 2px;
}
section.topMenu .menu-btn .close {
  display: none;
}
section.topMenu .menu-btn .line {
  display: none;
}
section.topMenu .menu-btn::before, section.topMenu .menu-btn::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #dcd9d2;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
section.topMenu .menu-btn::before {
  width: 80%; /* 初始狀態，上面線條 80% */
  top: 5px;
  left: 0;
}
section.topMenu .menu-btn::after {
  width: 30%; /* 初始狀態，下面線條 30% */
  top: 10px;
  right: 0; /* 讓它靠右 */
}
section.topMenu .menu-btn.active::before {
  width: 100%;
  transform-origin: center;
  transform: rotate(20deg);
  top: 30%;
}
section.topMenu .menu-btn.active::after {
  width: 100%;
  transform-origin: center;
  transform: rotate(-20deg);
  top: 30%; /* 移動到中間 */
}

.openMenu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #2c4c47;
  transition: opacity 0.3s ease-in-out;
}
.openMenu .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative;
  height: calc(100% - 58px);
}
.openMenu nav {
  display: flex;
  justify-content: center;
  margin-top: -70px;
  margin-left: 40px;
}
.openMenu .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 55px;
  row-gap: 30px;
}
.openMenu .nav-links li {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 120px;
}
.openMenu .nav-links li::before {
  content: "";
  position: absolute;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.openMenu .nav-links li:hover::before {
  opacity: 1;
}
.openMenu .nav-links li.active::before {
  opacity: 1;
}
.openMenu .nav-links li.active a span, .openMenu .nav-links li:hover a span {
  transform: translateX(100%);
  opacity: 0;
}
.openMenu .nav-links li.active a[data-en]::before, .openMenu .nav-links li:hover a[data-en]::before {
  opacity: 1;
  transform: translateX(0);
  color: #dcd9d2;
}
.openMenu .nav-links li a {
  position: relative;
  overflow: visible;
  font-family: "Noto Serif TC", "Cormorant", serif;
  display: inline-block;
  min-width: 100%;
}
.openMenu .nav-links li a span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
  opacity: 1;
  white-space: nowrap;
}
.openMenu .nav-links li a[data-en]::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease-in-out, transform 0.5s ease-in-out;
  text-transform: uppercase;
  white-space: nowrap;
}
.openMenu .nav-links li a[data-en]:hover::before, .openMenu .nav-links li a.active[data-en]::before {
  opacity: 1;
  transform: translateX(0);
}
.openMenu .nav-links a {
  text-decoration: none;
  color: #dcd9d2;
  display: block;
  transform: translateY(50px);
  opacity: 0;
  text-transform: uppercase;
  font-size: 20px;
}
.openMenu .socialBox {
  display: flex;
  margin-right: auto;
  padding-left: 40px;
  margin-bottom: 25px;
}
.openMenu .socialBox .outer {
  display: flex;
  align-items: center;
}
.openMenu .socialBox .follow {
  color: #dcd9d2;
  letter-spacing: 2.25px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Cormorant", serif;
}
.openMenu .socialBox .iconBox {
  display: flex;
  margin-left: 15px;
  gap: 5px;
}
.openMenu .socialBox .iconBox a {
  margin-right: 5px;
  text-decoration: none;
}
.openMenu .socialBox .iconBox img {
  width: 22px;
  height: 22px;
}
.openMenu .socialBox {
  position: absolute;
  bottom: 0;
  padding-left: 30px;
  margin-bottom: 35px;
}
.openMenu .decoTop {
  position: absolute;
  pointer-events: none;
  top: 35px;
  width: 40vw;
}
.openMenu .decoTop img {
  width: 100%;
}
@media (max-width: 575px) {
  .openMenu .decoTop {
    width: 54vw;
  }
}
.openMenu .decoBottom {
  position: absolute;
  bottom: 50px;
  right: 0;
  pointer-events: none;
  width: 65vw;
}
.openMenu .decoBottom img {
  width: 100%;
}
@media (max-width: 575px) {
  .openMenu .decoBottom {
    width: 100vw;
  }
}
.openMenu.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .openMenu.active {
    top: 100px;
  }
}
section.topMenu-PC {
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: #064a45;
}
section.topMenu-PC .wrap {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
section.topMenu-PC .menu-btn {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  width: 170px;
  cursor: pointer;
  z-index: 0;
}
section.topMenu-PC .menu-btn .inner {
  position: absolute;
  z-index: 3;
  right: 0;
}
section.topMenu-PC .menu-btn .inner span {
  font-family: "Cormorant", serif;
  color: white;
  font-size: 24px;
  text-transform: uppercase;
}
section.topMenu-PC .menu-btn .close {
  display: none;
}
section.topMenu-PC .menu-btn .lineBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  z-index: 3;
  width: 92px;
  transition: gap 0.2s ease;
}
section.topMenu-PC .menu-btn .line1 {
  display: block;
  width: 80%;
  height: 1px;
  background-color: #dcd9d2;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
section.topMenu-PC .menu-btn .line2 {
  margin-left: auto;
  width: 40%;
  height: 1px;
  background-color: #dcd9d2;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
section.topMenu-PC .menu-btn:hover .line1,
section.topMenu-PC .menu-btn:hover .line2 {
  width: 100%;
}
section.topMenu-PC .menu-btn:hover .lineBox {
  gap: 0px;
  transition-delay: 0.3s;
}

.openMenu-PC {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100dvh;
  background-color: #2c4c47;
  transition: opacity 0.3s ease-in-out;
  z-index: 99;
}
.openMenu-PC.active {
  opacity: 1;
  pointer-events: auto;
}
.openMenu-PC .inner {
  margin: 0 auto;
  width: calc(100% - 265px);
  height: 100%;
  position: relative;
}
.openMenu-PC .upper {
  width: 100%;
  position: absolute;
  max-width: 1740px;
  margin-top: 70px;
}
.openMenu-PC .closeBtn {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
}
.openMenu-PC .closeBtn .lineBox {
  position: relative;
  width: 24px;
  height: 24px;
}
.openMenu-PC .closeBtn .line1,
.openMenu-PC .closeBtn .line2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background-color: #dcd9d2;
  transform-origin: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.openMenu-PC .closeBtn .line1 {
  transform: translate(-50%, -50%) rotate(40deg);
}
.openMenu-PC .closeBtn .line2 {
  transform: translate(-50%, -50%) rotate(-40deg);
}
.openMenu-PC .closeBtn.active .line1 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.openMenu-PC .closeBtn.active .line2 {
  transform: translate(-50%, -50%) rotate(0deg);
}
.openMenu-PC .closeBtn .text {
  margin-top: 8px;
}
.openMenu-PC .closeBtn .text span {
  letter-spacing: 2px;
  font-size: 24px;
  color: #dcd9d2;
  transition: opacity 0.3s;
}
.openMenu-PC .middle {
  width: 100%;
  position: absolute;
  max-width: 1740px;
  top: 40%;
}
.openMenu-PC nav {
  display: flex;
  justify-content: center;
  margin-left: 30px;
}
.openMenu-PC .nav-links {
  display: grid;
  grid-template-columns: repeat(4, 230px);
  grid-template-rows: 50px 50px 50px;
}
.openMenu-PC .nav-links li {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 120px;
}
.openMenu-PC .nav-links li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 60%;
  transform: translateY(50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}
.openMenu-PC .nav-links li:hover::before {
  opacity: 1;
}
.openMenu-PC .nav-links li:hover a span, .openMenu-PC .nav-links li.active a span {
  transform: translateX(100%);
  opacity: 0;
}
.openMenu-PC .nav-links li a {
  width: 100%;
  position: relative;
  overflow: visible;
  font-family: "Noto Serif TC", "Cormorant", serif;
  display: inline-block;
  min-width: 100%;
}
.openMenu-PC .nav-links li a span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
  white-space: nowrap;
}
.openMenu-PC .nav-links li a[data-en]::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
  text-transform: uppercase;
  white-space: nowrap;
}
.openMenu-PC .nav-links li a[data-en]:hover::before, .openMenu-PC .nav-links li a.active[data-en]::before {
  opacity: 1;
  transform: translateX(0);
}
.openMenu-PC .nav-links a {
  text-decoration: none;
  color: #dcd9d2;
  display: block;
  transform: translateY(15px);
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 2px;
}
.openMenu-PC .bottom {
  width: 100%;
  position: absolute;
  max-width: 1740px;
  bottom: 70px;
  display: flex;
}
.openMenu-PC .bottom .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(120px, 11.6vw, 230px);
}
.openMenu-PC .bottom .contactBox {
  color: #dcd9d2;
  font-family: "Noto Serif TC", "Cormorant", serif;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 18px;
  flex-shrink: 0;
}
.openMenu-PC .bottom .contactBox .add {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.openMenu-PC .bottom .contactBox a {
  text-decoration: none;
  color: #dcd9d2;
}
.openMenu-PC .bottom .rightBox {
  display: flex;
  gap: clamp(40px, 19.2vw, 100px);
  color: #dcd9d2;
  font-family: "Cormorant", "Noto Serif TC", serif;
}
.openMenu-PC .bottom .socialBox {
  display: flex;
}
.openMenu-PC .bottom .socialBox .outer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.openMenu-PC .bottom .socialBox .follow {
  letter-spacing: 2.25px;
  font-size: 20px;
  font-weight: 500;
  margin-right: 25px;
  flex-shrink: 0;
}
.openMenu-PC .bottom .socialBox .iconBox {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.openMenu-PC .bottom .socialBox .iconBox a {
  margin-right: 5px;
  text-decoration: none;
}
.openMenu-PC .bottom .socialBox .iconBox img {
  width: 30px;
  height: 30px;
}
.openMenu-PC .bottom .copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  flex-shrink: 0;
}
.openMenu-PC .decoTop {
  position: absolute;
  top: 60%;
  left: 40px;
  width: 15.2vw;
}
.openMenu-PC .decoBottom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 23.4vw;
}

@media (max-width: 1620px) {
  .openMenu-PC .inner {
    width: calc(100% - 120px);
  }
  .openMenu-PC .bottom .inner {
    justify-content: space-evenly;
    gap: 100px;
  }
}
@media (max-width: 1024px) {
  section.topMenu .navPC {
    display: none;
  }
  section.topMenu .navMB {
    display: flex;
    cursor: pointer;
    position: relative;
  }
  section.topMenu-PC {
    display: none;
  }
  .openMenu.active {
    top: 57px;
  }
}
.btnBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 20;
}
@media (max-width: 768px) {
  .btnBox {
    gap: 8px;
    right: 10px;
    bottom: 20px;
  }
}
.btnBox .btn {
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .btnBox .btn {
    width: 45px;
    height: 45px;
    right: 25px;
    bottom: 25px;
  }
}
.btnBox .btn:hover {
  animation: move 0.6s ease;
}
@keyframes move {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(6deg);
  }
  60% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}