@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");
body {
  font-family: "PT Sans", Arial, Helvetica, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #666;
  -webkit-text-size-adjust: 100%;
  background: #FFF;
}

a {
  text-decoration: none;
  color: #666;
}
a:hover {
  color: #666;
}

.wrapper {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 30px 4.75%;
  box-sizing: border-box;
  z-index: 10;
  -moz-transition: opacity 0.6s, padding 0.6s, background 0.6s;
  -o-transition: opacity 0.6s, padding 0.6s, background 0.6s;
  -webkit-transition: opacity 0.6s, padding 0.6s, background 0.6s;
  transition: opacity 0.6s, padding 0.6s, background 0.6s;
}
.header.onscroll {
  padding: 15px 4.75%;
  background: #FFF;
  box-shadow: 0 0 3px #ddd;
}
.header-btn {
  position: absolute;
  font-size: 0.875em;
  color: #FFF;
  cursor: pointer;
  -moz-transition: opacity 1s, bottom 0.6s;
  -o-transition: opacity 1s, bottom 0.6s;
  -webkit-transition: opacity 1s, bottom 0.6s;
  transition: opacity 1s, bottom 0.6s;
}
.onscroll .header-btn {
  text-shadow: none;
}
.header-menu {
  right: 4.75%;
  bottom: 50px;
}
.show-menu .header-menu {
  opacity: 0;
}
.onscroll .header-menu {
  text-shadow: none;
  bottom: 35px;
}
.header-menu-bar {
  width: 35px;
  height: 1px;
  margin: 8px 0;
  background: #000;
  -moz-transition: opacity 1s, bottom 0.6s, width 0.3s, background 0.6s;
  -o-transition: opacity 1s, bottom 0.6s, width 0.3s, background 0.6s;
  -webkit-transition: opacity 1s, bottom 0.6s, width 0.3s, background 0.6s;
  transition: opacity 1s, bottom 0.6s, width 0.3s, background 0.6s;
}
.onscroll .header-menu-bar {
  background: #000;
  box-shadow: none;
}

.logo {
  width: 50px;
  height: 64.13px;
}
.logo img {
  width: 100%;
}
.logo .svg path, .logo .svg polygon {
  fill: #000;
  -moz-transition: all 0.3s 0.1s;
  -o-transition: all 0.3s 0.1s;
  -webkit-transition: all 0.3s;
  -webkit-transition-delay: 0.1s;
  transition: all 0.3s 0.1s;
}
.onscroll .logo .svg {
  -webkit-filter: drop-shadow(0 0 0 transparent);
  filter: drop-shadow(0 0 0 transparent);
}
.onscroll .logo .svg path, .onscroll .logo .svg polygon {
  fill: #000;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 11;
}
.menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  background: #222222;
  padding: 100px 4.75%;
  box-sizing: border-box;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.show-menu .menu-wrap {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.menu-wrap ul {
  display: -ms-flexbox;
  display: flex;
  padding: 0 4.75%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.menu-wrap li {
  margin: 0 25px;
  font-family: "PT Sans", Arial, Helvetica;
  width: 120px;
  position: relative;
  opacity: 0;
  -moz-transition: opacity 0.8s 0.6s;
  -o-transition: opacity 0.8s 0.6s;
  -webkit-transition: opacity 0.8s;
  -webkit-transition-delay: 0.6s;
  transition: opacity 0.8s 0.6s;
}
.menu-wrap li:hover .en {
  opacity: 0;
}
.menu-wrap li:hover .tw {
  opacity: 1;
}
.menu-wrap li:hover .menu-img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.show-menu .menu-wrap li {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu-wrap li .en {
  font-size: 0.875rem;
  color: #FFF;
  letter-spacing: 0.15rem;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.menu-wrap li .tw {
  font-size: 0.875rem;
  color: #ccc;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.menu-img {
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.menu-img img {
  width: 100%;
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}
.menu-text {
  text-align: center;
  position: relative;
}
.menu-social {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 5;
  opacity: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -moz-transition: opacity 1s 0.6s;
  -o-transition: opacity 1s 0.6s;
  -webkit-transition: opacity 1s;
  -webkit-transition-delay: 0.6s;
  transition: opacity 1s 0.6s;
}
.show-menu .menu-social {
  opacity: 1;
}
.menu-social div {
  margin: 0 12px;
  font-size: 20px;
}
.menu-social div a {
  color: #ccc;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.menu-social div a:hover {
  color: #FFF;
}
.menu-close {
  position: absolute;
  top: 25px;
  left: 50%;
  margin-left: -15px;
  cursor: pointer;
  opacity: 0;
  -moz-transition: opacity 0.8s 0.6s;
  -o-transition: opacity 0.8s 0.6s;
  -webkit-transition: opacity 0.8s;
  -webkit-transition-delay: 0.6s;
  transition: opacity 0.8s 0.6s;
}
.menu-close:hover .menu-close-bar {
  background: #FFF;
}
.menu-close:hover .menu-close-bar:nth-child(1) {
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
}
.menu-close:hover .menu-close-bar:nth-child(2) {
  opacity: 0;
}
.menu-close:hover .menu-close-bar:last-child {
  -moz-transform: rotate(-23deg);
  -ms-transform: rotate(-23deg);
  -webkit-transform: rotate(-23deg);
  transform: rotate(-23deg);
}
.show-menu .menu-close {
  opacity: 1;
}
.menu-close-bar {
  width: 30px;
  height: 1px;
  background: #ccc;
  margin: 5px 0;
  -moz-transition: background 0.3s, -moz-transform 0.3s, opacity 0.3s;
  -o-transition: background 0.3s, -o-transform 0.3s, opacity 0.3s;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s, opacity 0.3s;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.menu-close-bar:nth-child(1) {
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.menu-close-bar:last-child {
  -moz-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
}

.top {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}
.top-img {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.top-title {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #FFF;
  text-shadow: 0px 0px 5px #666;
  letter-spacing: 0.1em;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.top-title .en {
  font-size: 1.5rem;
  font-family: "PT Sans", Arial, Helvetica;
  letter-spacing: 0.15rem;
}
.top-title .tw {
  font-size: 0.875rem;
}
.top-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.top-video-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#aboutVideo {
  width: 100%;
  height: 100%;
}

.main {
  margin-top: -6vw;
  position: relative;
  background: #FFF;
  z-index: 6;
  padding: 10vw 0;
}

.section {
  padding: 10vw 0;
}

.title {
  padding-bottom: 50px;
}
.title .en {
  font-size: 1.5rem;
  color: #000;
  font-family: "PT Sans", Arial, Helvetica;
}
.title .tw {
  font-size: 0.875rem;
  color: #999;
}

.text {
  font-size: 0.875em;
}
.text p {
  margin-bottom: 20px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text p.en {
  font-size: 0.75rem;
  color: #aaa;
}

.btn {
  padding-top: 50px;
  font-family: "PT Sans", Arial, Helvetica;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  width: fit-content;
}
.btn-link {
  color: #111;
  position: relative;
  display: block;
  padding-bottom: 15px;
  overflow: hidden;
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.btn-link:hover {
  color: #666;
}
.btn-link:hover:after {
  -moz-animation: btn-line 1.5s;
  -webkit-animation: btn-line 1.5s;
  animation: btn-line 1.5s;
}
.btn-link:hover .btn-arrow {
  background: #999;
}
.btn-link:hover .btn-arrow:before {
  background: #999;
}
.btn-link:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn-link:after {
  content: "";
  width: 0%;
  height: 1px;
  background: #444;
  position: absolute;
  bottom: 0;
  left: 0;
}
.btn p {
  padding-right: 50px;
}
.btn-arrow {
  width: 15px;
  height: 1px;
  background: #666;
  position: absolute;
  top: 10px;
  right: 0;
  -moz-transition: background 0.6s;
  -o-transition: background 0.6s;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}
.btn-arrow:before {
  content: "";
  width: 6px;
  height: 2px;
  background: #666;
  position: absolute;
  top: -3px;
  right: 0;
  -moz-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  -moz-transition: background 0.6s;
  -o-transition: background 0.6s;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}

@-moz-keyframes btn-line {
  0% {
    left: 0;
    width: 0%;
  }
  20% {
    width: 100%;
    left: 0;
  }
  80% {
    width: 100%;
    left: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
@-webkit-keyframes btn-line {
  0% {
    left: 0;
    width: 0%;
  }
  20% {
    width: 100%;
    left: 0;
  }
  80% {
    width: 100%;
    left: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
@keyframes btn-line {
  0% {
    left: 0;
    width: 0%;
  }
  20% {
    width: 100%;
    left: 0;
  }
  80% {
    width: 100%;
    left: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}
.footer {
  position: relative;
  background: #FFF;
  z-index: 6;
  padding: 20px 0;
}
.footer-inner {
  padding: 0 calc(4.75% * 2) 30px;
}
.footer-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.footer-social {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer-social li {
  margin-right: 20px;
  font-size: 20px;
}
.footer-social li a {
  -moz-transition: color 0.6s;
  -o-transition: color 0.6s;
  -webkit-transition: color 0.6s;
  transition: color 0.6s;
}
.footer-social li a:hover {
  color: #000;
}
.footer-content {
  width: 60%;
  text-align: right;
}
.footer-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-right: -15px;
  font-size: 0.875rem;
}
.footer-list li {
  position: relative;
  margin: 0 15px;
}
.footer-list a {
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-list a:hover {
  color: #000;
}
.footer-copyright {
  font-size: 0.75rem;
  padding-top: 20px;
  color: #999;
}

.scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  z-index: 5;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.scroll-down-line {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  box-shadow: 0 0 5px #666;
  -moz-animation: line-down 2.4s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-animation: line-down 2.4s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: line-down 2.4s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -moz-transition: bottom 0.6s, opacity 0.6s;
  -o-transition: bottom 0.6s, opacity 0.6s;
  -webkit-transition: bottom 0.6s, opacity 0.6s;
  transition: bottom 0.6s, opacity 0.6s;
}
.scroll-top:hover .scroll-top-text {
  color: #000;
}
.scroll-top:hover .scroll-top-arrow {
  background: #666;
}
.scroll-top:hover .scroll-top-arrow:before {
  border-left: 1px solid #666;
}
.scroll-top-text {
  font-size: 0.75rem;
  font-family: "PT Sans", Arial, Helvetica;
  letter-spacing: 0.1rem;
  position: absolute;
  top: 5px;
  right: 0;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.scroll-top-arrow {
  position: absolute;
  top: 0;
  left: 10px;
  background: #999;
  width: 1px;
  height: 30px;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.scroll-top-arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  border-left: 1px solid #999;
  position: absolute;
  top: 3px;
  left: -7px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: border-left 0.3s;
  -o-transition: border-left 0.3s;
  -webkit-transition: border-left 0.3s;
  transition: border-left 0.3s;
}

@-moz-keyframes line-down {
  0% {
    top: 0;
    height: 0%;
  }
  35% {
    height: 100%;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
    height: 0%;
  }
}
@-webkit-keyframes line-down {
  0% {
    top: 0;
    height: 0%;
  }
  35% {
    height: 100%;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
    height: 0%;
  }
}
@keyframes line-down {
  0% {
    top: 0;
    height: 0%;
  }
  35% {
    height: 100%;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
    height: 0%;
  }
}
/* 動態 */
.fadeDown {
  opacity: 0;
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.fadeDown.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.fadeUp {
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.fadeUp.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.fadeLeft {
  opacity: 0;
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.fadeLeft.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeRight {
  opacity: 0;
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.fadeRight.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.imgLeft {
  position: relative;
}
.imgLeft:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.imgLeft.show:after {
  width: 0;
}

.imgRight {
  position: relative;
}
.imgRight:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.imgRight.show:after {
  width: 0;
}

.imgTop {
  position: relative;
}
.imgTop:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.imgTop.show:after {
  height: 0;
}

.imgBottom {
  position: relative;
}
.imgBottom:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.imgBottom.show:after {
  height: 0;
}

@media screen and (max-width: 1300px) {
  .main {
    margin-top: -3vw;
  }
}
@media screen and (max-width: 1100px) {
  /* set tablet */
  .menu-wrap li {
    width: 85px;
  }
  .menu-wrap li .tw {
    white-space: nowrap;
  }

  .main {
    margin-top: 50px;
  }

  .footer-inner {
    padding: 0 4.75% 30px;
  }
  .footer-wrap {
    display: block;
  }
  .footer-social {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .footer-content {
    text-align: left;
    padding-top: 30px;
    width: 100%;
  }
  .footer-list {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-left: -15px;
  }
}
@media screen and (max-width: 800px) {
  .menu-wrap ul {
    display: block;
  }
  .menu-wrap li {
    width: unset;
    margin: 0px 0;
  }
  .menu-wrap li:hover .en {
    opacity: 1;
  }
  .menu-wrap li a {
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .menu-wrap li span {
    display: block;
  }
  .menu-wrap li .tw {
    font-size: 0.75rem;
    position: relative;
    left: unset;
    top: unset;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
  .menu-img {
    width: 65px;
  }
  .menu-text {
    text-align: left;
    margin-left: 30px;
    width: fit-content;
  }
}
@media screen and (max-width: 800px) and (max-height: 520px) {
  .menu-wrap li {
    -moz-transition: letter-spacing 0.6s;
    -o-transition: letter-spacing 0.6s;
    -webkit-transition: letter-spacing 0.6s;
    transition: letter-spacing 0.6s;
  }
  .menu-wrap li:hover {
    letter-spacing: 0.15rem;
  }
  .menu-wrap li a {
    display: block;
  }
  .menu-wrap li span {
    display: initial;
  }
  .menu-wrap li .tw {
    margin-left: 5px;
  }
  .menu-text {
    text-align: center;
    margin: 10px auto;
  }
  .menu-img {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  /* set mobile */
  .loading-logo {
    width: 85px;
  }

  .header-menu {
    bottom: 45px;
  }
  .onscroll .header-menu {
    bottom: 30px;
  }
  .header-menu-bar {
    width: 30px;
  }

  .menu-wrap li {
    margin: 0px 0;
  }
  .menu-wrap li .tw {
    font-size: 0.75rem;
  }
  .menu-img {
    width: 65px;
  }
  .menu-text {
    margin-left: 30px;
  }

  .logo {
    width: 45px;
    height: 57.7px;
  }

  .top-title .en {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }

  .main {
    margin-top: 80px;
  }

  .title {
    padding-bottom: 30px;
  }
  .title .en {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }

  .btn {
    padding-top: 30px;
    font-size: 0.75rem;
  }
  .btn-link {
    padding-bottom: 12px;
  }
  .btn p {
    padding-right: 45px;
  }
  .btn-arrow {
    width: 12px;
    top: 8px;
  }
  .btn-arrow:before {
    width: 5px;
    top: -2px;
  }

  .footer-social li {
    font-size: 18px;
    margin-right: 15px;
  }
  .footer-content {
    padding-top: 20px;
  }
  .footer-list {
    display: block;
  }
  .footer-list li {
    margin: 0 15px 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #ddd;
  }

  .scroll-top {
    right: 2.75%;
  }
}
@media screen and (max-width: 800px) and (max-height: 520px) {
  .menu-text {
    margin: 10px auto;
  }
}
