@charset "UTF-8";
@import url("https://use.typekit.net/sys6mxd.css");
:root {
  --remBasicSize: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

body,
html {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  background: #ddd;
  background-color: #fff;
  color: #000;
  font-size: 16px;
}

input,
select,
textarea,
button,
option,
li {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  color: #212121;
}

a,
button {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  -webkit-appearance: none;
  cursor: pointer;
}
a:focus, a:hover, a:active,
button:focus,
button:hover,
button:active {
  outline: none;
  text-decoration: none;
}

::-webkit-scrollbar {
  display: none;
}

.ctr_both {
  clear: both;
}

.m_auto {
  display: block;
  margin: 0 auto;
}

.flex_r {
  display: flex;
  flex-direction: row;
}

.flex_c {
  display: flex;
  flex-direction: column;
}

#hamburger.on {
  position: fixed;
  z-index: 999;
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/menu/bg.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  #hamburger.on {
    height: 100dvh;
  }
}
#hamburger.on::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#hamburger .menu_toggle {
  border: 0;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  margin: calc(0.625 * var(--remBasicSize));
  padding-top: calc(0.1875 * var(--remBasicSize));
  border-radius: calc(3.125 * var(--remBasicSize));
  background: #fff;
  display: block;
}
#hamburger .menu_toggle .title {
  display: none;
}
@media screen and (max-width: 750px) {
  #hamburger .menu_toggle {
    width: calc(5 * var(--remBasicSize));
    height: calc(5 * var(--remBasicSize));
  }
}
#hamburger .menu_toggle .one,
#hamburger .menu_toggle .two,
#hamburger .menu_toggle .three {
  width: calc(1.875 * var(--remBasicSize));
  height: calc(0.125 * var(--remBasicSize));
  margin: calc(0.375 * var(--remBasicSize)) auto;
  background: rgb(255, 84, 163);
  transition-duration: 0.3s;
}
@media screen and (max-width: 750px) {
  #hamburger .menu_toggle .one,
  #hamburger .menu_toggle .two,
  #hamburger .menu_toggle .three {
    width: calc(2.75 * var(--remBasicSize));
    height: calc(0.25 * var(--remBasicSize));
    margin: calc(0.625 * var(--remBasicSize)) auto;
  }
}
#hamburger .menu_toggle .one {
  width: calc(1.875 * var(--remBasicSize));
  height: calc(0.5625 * var(--remBasicSize));
  background: url(../images/index/menu.png) no-repeat top center/contain;
}
@media screen and (max-width: 750px) {
  #hamburger .menu_toggle .one {
    width: calc(2.8125 * var(--remBasicSize));
    height: calc(0.625 * var(--remBasicSize));
  }
}
#hamburger .menu_toggle.on .one {
  opacity: 0;
}
#hamburger .menu_toggle.on {
  background: transparent;
  padding-top: 0;
}
#hamburger .menu_toggle.on .two, #hamburger .menu_toggle.on .three {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(2.75 * var(--remBasicSize));
  height: calc(0.125 * var(--remBasicSize));
  margin: 0;
  background: #fff;
}
#hamburger .menu_toggle.on .two {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #hamburger .menu_toggle.on .two {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
#hamburger .menu_toggle.on .three {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 750px) {
  #hamburger .menu_toggle.on .three {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
#hamburger .nav {
  position: fixed;
  top: 0;
  display: none;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 750px) {
  #hamburger .nav {
    height: 100dvh;
  }
}
#hamburger .nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 750px) {
  #hamburger .nav .container {
    height: 100dvh;
  }
}
#hamburger .nav .container .inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: calc(5.9375 * var(--remBasicSize));
  width: calc(47.5 * var(--remBasicSize));
  z-index: 1;
}
@media screen and (max-width: 750px) {
  #hamburger .nav .container .inner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    padding-top: calc(7.5 * var(--remBasicSize));
    overflow: hidden;
  }
}
#hamburger .nav.nav--change {
  display: none;
}
#hamburger .nav.hidden {
  display: block;
}
#hamburger {
  /*------------
       圖
  --------------*/
}
#hamburger .burger_img {
  position: relative;
  width: calc(19.375 * var(--remBasicSize));
  height: calc(16.25 * var(--remBasicSize));
  display: flex;
  flex-direction: column;
  background: none;
  perspective: calc(62.5 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #hamburger .burger_img {
    order: 1;
    width: calc(20 * var(--remBasicSize));
    height: calc(17.5 * var(--remBasicSize));
    margin-top: 0;
  }
}
#hamburger .burger_img .nav_img {
  position: relative;
  z-index: 2;
  display: block;
  width: calc(19.375 * var(--remBasicSize));
  height: calc(16.25 * var(--remBasicSize));
  background: url(../images/index/kv/logo.png) no-repeat center/contain;
  left: 0;
  top: 0;
}
@media screen and (max-width: 750px) {
  #hamburger .burger_img .nav_img {
    width: calc(20 * var(--remBasicSize));
    height: calc(17.5 * var(--remBasicSize));
    left: 0;
    top: 0;
  }
}
#hamburger .burger_img .nav_clound_front {
  display: none;
}
@media screen and (max-width: 750px) {
  #hamburger .burger_img .nav_clound_front {
    width: calc(16.4375 * var(--remBasicSize));
    top: calc(17.4375 * var(--remBasicSize));
    right: calc(-3.75 * var(--remBasicSize));
  }
}
#hamburger .burger_img .nav_clound_back {
  display: none;
}
@keyframes clound {
  50% {
    transform: translateX(calc(1.875 * var(--remBasicSize)));
  }
}
@keyframes clound2 {
  50% {
    transform: translateX(calc(3.75 * var(--remBasicSize)));
  }
}
@media screen and (max-width: 750px) {
  #hamburger .burger_img .nav_clound_back {
    width: calc(14.4375 * var(--remBasicSize));
    top: calc(9.3125 * var(--remBasicSize));
  }
}
#hamburger {
  /*------------
      選單內容
  --------------*/
}
#hamburger ul {
  position: relative;
  z-index: 2;
  width: calc(20.625 * var(--remBasicSize));
  height: auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  top: 0;
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  #hamburger ul {
    width: calc(35.625 * var(--remBasicSize));
    margin: 0 auto;
    height: auto;
    top: 0;
    margin-top: calc(2.625 * var(--remBasicSize));
    overflow: visible;
    order: 2;
  }
}
#hamburger ul.hidden {
  display: none;
  z-index: 999;
}
#hamburger ul li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#hamburger ul li a {
  width: 100%;
  display: block;
  margin: 0 auto;
  line-height: 1.25;
  height: calc(5.625 * var(--remBasicSize));
  letter-spacing: calc(0.0125 * var(--remBasicSize));
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #hamburger ul li a {
    line-height: 1.15;
    height: calc(8 * var(--remBasicSize));
  }
}
#hamburger ul li a.no_hover {
  cursor: default;
}
#hamburger ul li a.is-disabled {
  pointer-events: none;
  cursor: default;
}
#hamburger ul li a.is-disabled .nav_txt {
  color: rgba(255, 255, 255, 0.45);
}
#hamburger ul li a .nav_txt {
  width: 100%;
  font-size: calc(1.4375 * var(--remBasicSize));
  position: absolute;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: block;
  transition-duration: 0.5s;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  #hamburger ul li a .nav_txt {
    font-size: calc(2.25 * var(--remBasicSize));
  }
}
#hamburger ul li a .nav_txt.shine:hover {
  color: #ffd7ec;
  text-shadow: 0 0 calc(0.5 * var(--remBasicSize)) rgba(255, 255, 255, 0.9), 0 0 calc(1.125 * var(--remBasicSize)) rgba(255, 214, 236, 0.75);
}
#hamburger ul li a .nav_en {
  display: block;
  margin-top: calc(0.5 * var(--remBasicSize));
  font-size: calc(0.9375 * var(--remBasicSize));
  line-height: 1;
  letter-spacing: 0;
  font-family: "mendl-sans-dusk-black", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 750px) {
  #hamburger ul li a .nav_en {
    font-size: calc(1.5 * var(--remBasicSize));
    margin-top: calc(0.75 * var(--remBasicSize));
  }
}
#hamburger ul li a.border_no {
  border-bottom: 1px solid transparent;
}
#hamburger ul li a .comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(6.875 * var(--remBasicSize));
  height: calc(1.25 * var(--remBasicSize));
  position: absolute;
  z-index: 3;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  pointer-events: none;
  color: #ff1490;
  background: #fff;
  border: 0;
  font-family: "mendl-sans-dusk-black", sans-serif;
  font-size: calc(0.9375 * var(--remBasicSize));
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  text-indent: 0;
  box-shadow: none;
}
@media screen and (max-width: 750px) {
  #hamburger ul li a .comingsoon {
    width: calc(10 * var(--remBasicSize));
    height: calc(1.875 * var(--remBasicSize));
    font-size: calc(1.375 * var(--remBasicSize));
  }
}
#hamburger ul li a .nav_img {
  position: relative;
  display: block;
  width: calc(13.75 * var(--remBasicSize));
  height: calc(1.125 * var(--remBasicSize));
  top: auto;
  left: auto;
  margin: calc(0.5 * var(--remBasicSize)) auto 0;
}
@media screen and (max-width: 750px) {
  #hamburger ul li a .nav_img {
    width: calc(24.375 * var(--remBasicSize));
    height: calc(2.25 * var(--remBasicSize));
    top: calc(0.9375 * var(--remBasicSize));
    left: calc(8.125 * var(--remBasicSize));
  }
}
#hamburger ul li a .nav1 {
  background: url(../images/nav/nav1@2x.png) no-repeat center/contain;
  background-size: 100%;
}
#hamburger ul li a .nav2 {
  background: url(../images/nav/nav2@2x.png) no-repeat center/contain;
  background-size: 100%;
}
#hamburger ul li a .nav3 {
  background: url(../images/nav/nav3@2x.png) no-repeat center/contain;
  background-size: 100%;
}
#hamburger ul li a .nav4 {
  background: url(../images/nav/nav4@2x.png) no-repeat center/contain;
  background-size: 100%;
}
#hamburger ul li a .nav5 {
  background: url(../images/nav/nav5@2x.png) no-repeat center/contain;
  background-size: 100%;
}
#hamburger {
  /*------------
    logo+社群媒體
  --------------*/
}
#hamburger .social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: calc(13.125 * var(--remBasicSize));
  height: calc(2.75 * var(--remBasicSize));
  margin-top: calc(2.375 * var(--remBasicSize));
}
@media screen and (max-width: 750px) {
  #hamburger .social {
    width: calc(20.625 * var(--remBasicSize));
    height: calc(4.875 * var(--remBasicSize));
    margin-top: calc(2.625 * var(--remBasicSize));
    margin-bottom: 0;
  }
}
#hamburger .social .flex_r {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  #hamburger .social .flex_r {
    justify-content: space-around;
    height: calc(4.875 * var(--remBasicSize));
    margin-top: 0;
  }
}
#hamburger .social .flex_r a {
  width: calc(2.625 * var(--remBasicSize));
  height: calc(2.625 * var(--remBasicSize));
  margin: 0 calc(0.5625 * var(--remBasicSize));
  display: inline-block;
}
@media screen and (max-width: 750px) {
  #hamburger .social .flex_r a {
    width: calc(3.875 * var(--remBasicSize));
    height: calc(3.875 * var(--remBasicSize));
    margin: 0;
  }
}
#hamburger .social .flex_r a.ig {
  background: url(../images/menu/social_ig_w.png) no-repeat center/contain;
}
#hamburger .social .flex_r a.fb {
  background: url(../images/menu/social_fb_w.png) no-repeat center/contain;
}
#hamburger .social .flex_r a.line {
  background: url(../images/menu/social_line_w.png) no-repeat center/contain;
}
#hamburger .social .flex_r a.ig:hover {
  filter: drop-shadow(0 0 calc(0.5 * var(--remBasicSize)) rgba(255, 255, 255, 0.9)) drop-shadow(0 0 calc(0.875 * var(--remBasicSize)) rgba(255, 214, 236, 0.75));
  opacity: 0.92;
}
#hamburger .social .flex_r a.fb:hover {
  filter: drop-shadow(0 0 calc(0.5 * var(--remBasicSize)) rgba(255, 255, 255, 0.9)) drop-shadow(0 0 calc(0.875 * var(--remBasicSize)) rgba(255, 214, 236, 0.75));
  opacity: 0.92;
}
#hamburger .social .flex_r a.line:hover {
  filter: drop-shadow(0 0 calc(0.5 * var(--remBasicSize)) rgba(255, 255, 255, 0.9)) drop-shadow(0 0 calc(0.875 * var(--remBasicSize)) rgba(255, 214, 236, 0.75));
  opacity: 0.92;
}/*# sourceMappingURL=nav.css.map */